﻿
.hmenu {
z-index:1000;
	height:25px;
	clear:both;
  background:#006ab6;
  width:100%;
  
}

/* remove all the bullets, borders and padding from the default list styling */
.hmenu ul {
padding:0;
font-size:11px;
margin:0;
list-style-type:none;

}

/* hack for IE5.5 */
* html .hmenu ul {margin-left:-16px; margin-left:0;}
/* position relative so that you can position the sub levels */

.hmenu li {
position:relative;
background:url(../images/menu_sep.gif) no-repeat right;
float:left;
background:#006ab6;

}



/* get rid of the table */
.hmenu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; }
.hmenu ul li a
{
    display:block;
    padding:5px;
    padding-right:12px;
    color:White;
    text-decoration:none;
    font-weight:bold;
    margin:0 6px; 
    border-right:1px #fff solid;
}

/* hack for IE5.5 */
* html .hmenu a, * html .hmenu a:visited {background:none;}
/* style the link hover */
* html .hmenu a:hover {color:#3d6438;background:#fff;text-decoration:underline;}

.hmenu :hover > a {
color:#006ab6;
background:#fff;
text-decoration:underline;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.hmenu ul ul {
visibility:hidden;
position:absolute;
padding-top:5px;
top:20px;
left:0px; 

}
.hmenu li li a
{
clear:both;
border:0px #fff solid;
background-color:#006ab6;
width:170px;
border:1px solid #fff;
margin:0;
}
.hmenu li li li
{
    left:190px;
    top:-25px !important;
 
}
/* make the second level visible when hover on first level list OR link */
.hmenu ul li:hover ul,
.hmenu ul a:hover ul {
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.hmenu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.hmenu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.hmenu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.hmenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}