/* common styling */
/* set up the overall width of the menutop div, the font and the margins */

.menutop {
font-family: arial, sans-serif; 
width: 600px; 
margin: 0; 
margin: 0px 0;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menutop 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 */
.menutop ul li {
float: left; 
position: relative;
margin-right: 0px;
}
/* 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. */
.menutop ul li a, .menutop ul li a:visited {
display: block; 
text-align: center; 
text-decoration: none; 
width: 110px; 
height: 20px; 
color: #FFF; 
font-weight: bold;
border: 1px solid #fff;
background: #cc0033; 
line-height: 25px; 
font-size: 11px;
font-family: arial, sans-serif; 
}
/* make the dropdown ul invisible */
.menutop ul li ul {
display:  none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menutop li on hover */
.menutop ul li:hover a {
color:#00A; 
background: white;
border: 1px solid maroon;
}
/* make the sub menutop ul visible and position it beneath the main menutop list item */
.menutop ul li:hover ul {
display: block; 
position: absolute; 
top: 31px; 
left: 0; 
width: 105px;
}
.menutop ul li:hover ul li {
margin-top: -10px;
}
/* style the background and foreground color of the submenutop links */
.menutop ul li:hover ul li a {
color:#FFF;
font-weight: bold;
border: 1px solid #fff;
background: #cc0033; 
width: 128px;
text-align: left;
padding-left: 5px;

}
/* style the background and forground colors of the links on hover */
.menutop ul li:hover ul li a:hover {
color:#00A; 
background: white;
border: 1px solid maroon;
}
