/* common styling */
/* set up the overall width of the menuhcss div, the font and the margins */

li { margin-left: 0;}

.menuhcss {
font-family: arial, sans-serif; 
margin:0 0;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menuhcss ul {
padding:0px; 
margin:0;
list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menuhcss ul li {
z-index: 99;
float:left; 
position:relative;
list-style-type: none;
border-bottom: 0px solid #ededed;

}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menuhcss ul li a, .menuhcss ul li a:visited {
display:block;
position:relative;
left: 0px;
font-face: arial; 
text-decoration:none;
text-align: center;
width:110px;
height:40px;
color:#304b86; 
background-image:url(/themes/default/button_1_nonactive.png); 
background-image: no-repeat;
font-size:10px;
font-weight: bold;
line-height: 110%;
list-style-type: none;
}











/* make the dropdown ul invisible */
.menuhcss ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menuhcss li on hover */
.menuhcss ul li:hover  a{
display:block;
color:#ffffff;
font: arial;
width: 110px;
height:40px;
line-height: 110%;
font-size: 10px;
background-image:url(/themes/default/p_sample_2.gif)

}



/* make the sub menuhcss ul visible and position it beneath the main menuhcss list item */
.menuhcss ul li:hover ul {
display:block;
font-family: arial;  
position:absolute; 
top:40px; 
left: 4px;
}

/* style the background and foreground color of the submenu links */
.menuhcss ul li:hover ul li a {
display:table-cell;
width:106px;
height: 40px;
font-face: arial;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 100%;
background-image: url(/themes/default/drop_down_l.gif);
background-repeat: no-repeat;
color:#304b86;
margin: 0px;

}

/* style the background and forground colors of the links on hover */
.menuhcss ul li:hover ul li a:hover {
display:block;
width: 106px;
height: 40px;
padding-top: 0px;
background-image: url(/themes/default/drop_down_d.gif);
color:#ffffff;
font-face: arial;
font-size: 10px;
line-height: 100%;
font-weight: bold;
margin: 0px;

}


