.menuH
{
    margin: 0; width: 100%; float:none;
    height: 70px;
    /* background: #D4D4D4 url(../images/meny_bg.gif) repeat-x 0 0; */
    /* border: 1px solid #BBB; */
    position:relative;/*! for IE htc*/
    z-index:999;/*H2*/
    font-family: Arial, Helvetica, sans-serif;
    list-style: none;
    padding: 0;
}

.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: 70px;
    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: white url(../images/meny_bg.gif) repeat-x 0 -48px; */
    /* background: white url(../images/meny_izbor.gif) repeat-x 0; */
}

ul.menuH a
{
    padding: 0 8px;
    line-height: 70px; /*Note: keep this value the same as the height of .menuH and .menuH li */
    text-transform: uppercase;
    font-size: 14px;
    /* font-weight: bold; */
    color: #4e4e4e;
    display: block;
    outline: 0;
    text-decoration: none;
}
.menuH a:hover
{
    color: #800000;
}
.menuH a.arrow
{
    background: url(../images/arrow.gif) no-repeat right center;
}
.menuH ul a.arrow
{
    background: url(../images/right.gif) no-repeat 97% center;
}
.menuH .menuRight
{
    float: right;
    margin-right: 0px;
}
.menuH li.separator
{
    font-size:0;
    overflow:hidden;
    border-left:1px solid #F7F7F7;
    border-right:1px solid #BBBBBB;
}
ul.menuH ul
{
    /* width:200px; */
    position: absolute;
    left: -9999px;
    border: 0px solid #DDD;
    border-top: 10px solid #232323;
     /* border-top: 0; */ 
    background: #FFF;    
    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: 10px 1px 8px 0;
}
.menuH li li
{
    float: none;
    white-space:nowrap;
    height: 26px;
}
.menuH li li:hover, .menuH li li.onhover
{
    background:#e4e4e4;
}
.menuH ul a
{
    padding: 0 20px;
    line-height: 26px;
    font-size: 1.1em;
    font-weight: normal;
    color: #4e4e4e;
    text-transform: capitalize;
    text-align: left;
}

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

.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;
}

.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 ##########*/
        
.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 0px 4px #eee; /* Firefox */
    -webkit-box-shadow: 0px 0px 4px #eee; /* Safari and Chrome */
    box-shadow: 0px 0px 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 3px 3px #154569;
    -webkit-box-shadow: 0px 3px 3px #154569;
    box-shadow: 0px 3px 3px #154569;  

    /*for older IE browsers, the htc file fix will disable this feature when box-shadow was also applied.*/
    filter:alpha(opacity=95);
    opacity: 0.96;  

    /* Gradient background */
    background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFFF), to(#EEEEEE)); 
}