/* 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:104px;
height:29px;
color:#ffffff; 
background-image:url(/themes/default/button_1_active.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;
position:relative;
left: 0px;
font-face: arial; 
text-decoration:none;
text-align: center;
width:104px;
height:29px;
color:#F69E3D; 
background-image:url(/themes/default/a_sample1.png); 
background-image: no-repeat;
font-size:10px;
font-weight: bold;
line-height: 110%;
list-style-type: none;


}



/* 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:29px; 
left: 1px;
}

/* style the background and foreground color of the submenu links */
.menuhcss ul li:hover ul li a {
display:table-cell;
width:101px;
height: 30px;
font-face: arial;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 100%;
background:#FFFFFF;
background-repeat: no-repeat;
color:#F69E3D;
margin: 0px;
border-left: 1px;
border-color: #000000;

}

/* style the background and forground colors of the links on hover */
.menuhcss ul li:hover ul li a:hover {
display:block;
width: 101px;
height: 30px;
padding-top: 0px;
background: #F69E3D;
color:#ffffff;
font-face: arial;
font-size: 10px;
line-height: 100%;
font-weight: bold;
margin: 0px;

}

