.hmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.hmenu ul li{
position: relative;
display: inline;
float: left;

}

/*Top level menu link items style*/
.hmenu ul li a{
display: block;
width: 125px; /*Width of top level menu link items*/
padding: 1px 0px;
/*border: 1px solid #0088ee;*/
/*border-left-width: 1;*/
text-decoration: none;
/*background: url(http://fhcint.org/pics/linkbg.png) center center repeat-x;*/
color: white;
font: bold 12px Tahoma;
}
	
/*Sub level menu*/
.hmenu ul li ul{
left: 0;
top: 0;
border-top: 1px solid #000000;
position: absolute;
display: block;
visibility: hidden;
z-index: 100;
}

/*Sub level menu list items*/
.hmenu ul li ul li{
display: inline;
float: left;
}


/* Sub level menu links style */
.hmenu ul li ul li a{
width: 115px; /*width of sub menu levels*/
font-weight: bold;
padding: 2px 1px;
background: #000099;
border-width: 0 1px 1px 1px;
}

/* Main Menu Background*/
.hmenu ul li a:hover{
/*background: url(pics/linkbg.png) center center repeat-x;*/
/*background: #0099ff;*/
}

/* Dropdown Menu Background */
.hmenu ul li ul li a:hover{
/*background: url(pics/linkbg.png) center center repeat-x;*/
background: #0000ff;
}

.hmenu .arrowdiv{
position: absolute;
right: 0;
background: transparent url(http://homewithaheart.com/pics/menuarrow.gif) no-repeat center left;
}

/* Holly Hack for IE \*/
* html .hmenu ul li { float: center; height: 1%; }
* html .hmenu ul li a { height: 1%; }
/* End */