﻿.menuH
{
    /* 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  */
    margin: 0 auto; /*width: 1000px; */   /*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("/horizontal/menuh/cssmenu.htc");
    height: 33px;
    position:relative;/*! for IE htc*/
    z-index:4;/*H2*/
    font-family:'Oswald', Arial, Helvetica, sans-serif;
    list-style: none;
    padding: 0 10px ;
	
}

.menuH li
{
    padding: 0;
    /*margin: 0;
    display: block; TODO: I am testing them if they can be removed. If can, remove them.*/
    float: left;
    height: 33px;
    position: relative;/*move it into .menuH if you want submenu to be positioned relative to the whole menu instead of this li element*/
}
.menuH li:hover, .menuH li.onhover
{
    /*background:#cd2129;*/ color:#9b7e9c;
}

ul.menuH a
{
    padding: 0px 14px 0px 14px;
    line-height: 33px; /*Note: keep this value the same as the height of .menuH and .menuH li */
    font-size: 12px;
    font-weight:400;
    color:#fff;
    display: block;
    outline: 0;
    text-decoration: none;
	text-transform:uppercase;

}
.menuH a:hover
{
    color:#9b7e9c; border-bottom:dashed 2px #9b7e9c;
}

.menuH a.select
{
    color:#9b7e9c; border-bottom:dashed 2px #9b7e9c;
} 
.menuH a.arrow
{
    background: url(arrow.gif) no-repeat right center;
}
.menuH ul a.arrow
{
    background: url(right.gif) no-repeat 97% center;
}
 
        
/*Used to align a top-level item to the right*/        
.menuH .menuRight
{
    float: right;
    margin-right: 0px;
}
        
/*for the top-level separators*/
.menuH li.separator
{
    font-size:0;
    overflow:hidden;
}
               
        
/*######sub level###########*/
        
ul.menuH ul
{
    width:200px;
    position: absolute;
    left: -9999px;
    text-align: left;
    list-style: none; margin: 0 0 0 1px;  
    /*Following 1px(padding-right) will determine how much it is overlapped by the sub-sub-menu */
    padding: 0 0px 10px 0;   
}

.menuH li li
{
    float: none;
    white-space:nowrap;
    height: 33px;
	background:#cd2129;
	/*border-bottom:#ed433c solid 1px;*/
}
.menuH li li:hover, .menuH li li.onhover
{
   background:#830006; color:#e8e8e8;
}
.menuH ul a
{
    padding: 3px 20px;
	line-height:26px;
    font-size:13px;
    font-weight:400;
    color: #fff;
    text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	
}

.menuH ul a:hover
{
   color:#e8e8e8;
}

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

.menuH li:hover .dropToLeft, .menuH li.onhover .dropToLeft
{
    left: auto;
    right: -1px;
    top: auto;
}
.menuH ul ul
{
    border-top: 1px solid #DDD;
	 margin-left:-1px;
}

.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: 200px;
}
        
/*####### special effects ##########*/
        
		
		ul.menuH 
{border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px; -khtml-border-radius:10px;}
