.hmenu{
	font-size:90%;	
}

/* remove the bullets, padding and margins from the lists */
.hmenu ul{
list-style-type:none;
padding-left:0px;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.hmenu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.hmenu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.hmenu a, .hmenu :visited {
display:block;
*font-weight:bold;
width:137px;
padding:7px 0;
text-decoration:none;
margin-right:0px;
text-align:center;
}
/* style the links hover */
.hmenu :hover{
color:#444;
background:#d4d8bd;
}

/* hide the sub level links */
.hmenu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
padding-left:0;
}
/* make the sub level visible on hover list or link */
.hmenu ul li:hover ul,
.hmenu ul a:hover ul{
visibility:visible;
}