/* common styling */
/* set up the overall width of the menuhcss div, the font and the margins */

li { margin-left: 0;}

.menuhcss2 {
font-family: arial, sans-serif; 
margin:0 0;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menuhcss2 ul {
padding:0; 
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 */
.menuhcss2 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. */
.menuhcss2 ul li a, .menuhcss2 ul li a:visited {
display:block;
font-face: arial; 
text-decoration:none;
text-align: center;
width: 110px;
height:30px;
color:#ffffff;
background-image:url(/themes/default/upper_2.gif); 
background-image: no-repeat;
font-size:10px;
line-height: 100%;

}



/* make the dropdown ul invisible */
.menuhcss2 ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menuhcss li on hover */
.menuhcss2 ul li:hover  a{
display:block;
font-face: arial; 
text-decoration:none;
text-align: center;
width: 110px;
height: 30px;
color:#304b86; 
background-image:url(/themes/default/upper_1.gif); 
background-image: no-repeat;
font-size:10px;
line-height: 110%;

}



/* make the sub menuhcss ul visible and position it beneath the main menuhcss list item */
.menuhcss2 ul li:hover ul {
display:block;
font-family: arial;  
position:absolute; 
top:0px; 
left: -0px;
}

/* style the background and foreground color of the submenu links */
.menuhcss2 ul li:hover ul li a {
display:block;
width:110px;
font: arial;
font-size: 10px;
text-align: center;
line-height: 100%;
background-image: url(/themes/default/drop_down_l.gif);
color:#000066;
padding-top: 8px;
padding-bottom : 0px;
}
/* style the background and forground colors of the links on hover */
.menuhcss2 ul li:hover ul li a:hover {
width: 110px;
border-right: 0px solid #000000;
border-left: 0px solid #000000;
background-image: url(/themes/default/drop_down_l.gif);
color: #000000;
color:#c0af2c;
font-size: 10px;
line-height: 100%;
font-weight: bold;
padding-top: 8px;
padding-bottom : 0px;
}


