﻿.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: 0px; 
    width: 100%; 
    /*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.*/
    height: 26px;
    position:relative;/*! for IE htc*/
    z-index:4;/*H2*/
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    list-style: none;
    padding: 0;
  border-radius: 3px;
  box-sizing:border-box;
}

.menuH li
{
  padding: 0px 0px 0px 0px;
    float: left;
    top: -5px;
    height: 26px;
    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
  {
  }

ul.menuH a
{
    padding: 2px 15px 0px 5px;
    line-height: 26px; /*Note: keep this value the same as the height of .menuH and .menuH li */
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    display: block;
    outline: 0;
    text-decoration: none;
}
.menuH a:hover
{
    color: #a0a0a0;
}
.menuH a.arrow
{
    background: url(../images/menu-arrow-v5.gif) no-repeat right center;
}
.menuH ul a.arrow
{
    background: url(../images/menu-right-v5.gif) no-repeat 97% center;
}
 
        
/*Used to align a top-level item to the right*/        
.menuH .menuRight
{
    float: left;
}
        
        
/*######sub level###########*/
        
ul.menuH ul
{
    width:160px;
    position: absolute;
    left: -9999px;
    border: 1px solid #a0a0a0;
    background: #fafafa;    
    text-align: left;
    list-style: none; 
    padding-top: 10px;
    margin: 0px;  
    /*Following 1px(padding-right) will determine how much it is overlapped by the sub-sub-menu */
    border-radius: 3px;
    box-sizing:content-box;
}

.menuH li li
{
    float: none;
    margin: -5px 0px 0px -20px; 
    white-space:nowrap;
    height: 26px;
}
.menuH li li:hover, .menuH li li.onhover
{
    
}
.menuH ul a
{
  padding: 0px 0px 0px 0px;
    line-height: 30px;
    font-size: 0.9em;
    font-weight: normal;
    color: #000000;
    text-align: left;
}

.menuH ul a:hover
{
    color: blue;
}

.menuH li:hover ul, .menuH li.onhover ul
{
    left: 0px;/*Use this property to change offset of the dropdown*/
    top: auto;
}

.menuH li:hover .dropToLeft, .menuH li.onhover .dropToLeft
{
    right: -1px;
    top: auto;
}
.menuH ul ul
  {
    border-top: 1px solid #d0d0d0;
  }

.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: 0px;
}

.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: 180px;
}
        
/*####### special effects ##########*/
        
.decor1 
{
    -moz-border-radius: 3px; /* Firefox */
    -webkit-border-radius: 3px; /* Safari and Chrome */
    border-radius: 3px; /* Opera 10.5+, future browsers, and now also our behavior htc file */

    -moz-box-shadow: 0px 1px 4px #eee; /* Firefox */
    -webkit-box-shadow: 0px 1px 4px #eee; /* Safari and Chrome */
    box-shadow: 0px 1px 4px #eee; /* Opera 10.5+, future browsers and IE6+ using our behavior htc file */
            
}
.menuH ul 
{
    -moz-border-radius: 0px 0px 4px 4px;
    -webkit-border-radius: 0px 0px 4px 4px;
    border-radius: 0px 0px 4px 4px;

    -moz-box-shadow: 0px 6px 6px #CCC;
    -webkit-box-shadow: 0px 6px 6px #CCC;
    
            
}