@charset "utf-8";
/* CSS Document */
.menuH, .menuH2
{
    /* You will get totally diffrent menu alignment and layout by setting following margin, width, and float with different values.
    For detailed instruction please visit www.menucool.com/horizontal/change-menu-alignment  */
    /*following "behavior" works for IE6, IE7, and IE8. Other browsers will ignore it.*/
    /*Note: Unlike image file, htc file path is relative to the page, not this CSS file.*/
	behavior:url("https://hotelgoodprice.net/cssmenu.htc");
    position:relative;/*! for IE htc*/
    z-index:4;/*H2*/
    list-style: none;
	display:inline-block;
	margin:auto;
}
.clear {clear: both; position: relative;}
.menuH {float: left;}
.menuH2 {float: right;}
.menuH li, .menuH2 li
{
    /*margin: 0;
    display: block; TODO: I am testing them if they can be removed. If can, remove them.*/
	list-style:none;
	display:inline-block;
	color:rgba(255,255,255,1);
	line-height:39px;
    position: relative;/*move it into .menuH if you want submenu to be positioned relative to the whole menu instead of this li element*/
}

ul.menuH a, ul.menuH2 a
{
    display: block;
    outline: 0;
    text-decoration: none;
	line-height:39px;
	padding:0 25px;
	font-size:12px;
	font-weight:bold;
	text-transform:uppercase;
	color:#FFFFFF;
}
ul.menuH2 a {
	padding:0 15px;
	}

        
      
        
/*######sub level###########*/
        
ul.menuH ul
{
    width:auto;
    position: absolute;
	display:block;
	width:189px;
	overflow:hidden;
	height:auto;
	z-index:20;
    left: -9999px;
    /*border: 1px solid #417dd6;*/
    /*border-top: 0;*/ 
    background:#FFABC4; 
	border:1px solid #F06C9B;
    text-align: left;
    list-style: none; 
	margin:0;

    /*Following 1px(padding-right) will determine how much it is overlapped by the sub-sub-menu */
    /*padding: 0 1px 10px 0;*/   
}

.menuH li li
{
    float: none;
	background:none;
	margin:0;
	padding:0;
	display:block;
	padding:5px 0;
	/*border-top:1.5px solid #006;*/
}
.menuH li li:hover, .menuH li li.onhover
{
    background:#FFA1BD;
}
.menuH ul a
{
	width:155px;
	background:url(images/icon_bell.png) no-repeat 7px 3px;
	display:block;
    padding:0 9px 0 25px;
	margin:0;
    font-size: 13px;
	text-transform:none;
    /*font-weight: bold;*/
	line-height:18px;
    color:#000;
    text-align: left;
	overflow:visible;
}

.menuH li:hover ul, .menuH li.onhover ul
{
    left: -11px;/*Use this property to change offset of the dropdown*/
    top: 30px;
}

.menuH li:hover .dropToLeft, .menuH li.onhover .dropToLeft
{
    left: auto;
    right: -1px;
    top: auto;
}


.menuH li:hover ul ul, .menuH li:hover ul ul ul, .menuH li:hover ul ul ul ul,
.menuH li.onhover ul ul, .menuH li.onhover ul ul ul, .menuH li.onhover ul ul ul ul
{
    left: -9999px;
    top:0;
}

.menuH li li:hover ul, .menuH li li li:hover ul, .menuH li li li li:hover ul,
.menuH li li.onhover ul, .menuH li li li.onhover ul, .menuH li li li li.onhover ul
{
    left: 190px;
	top:-5px;
}
        
/*####### special effects ##########*/
       
.menuH ul 
{
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

}