/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.menutop {
width:800px;
height: 20px;
margin:0; 
margin:0px 0;
font-size:8pt;

background-color: #a6a682;
}


/* 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:right;
margin-right: 10px;
position:relative;
}


/* style the links to be 70px wide by 20px high  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; 
color: #000; 
margin: 0px 0px 0px 0px;
background:#a6a682; 
line-height:20px; 



}


/* 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 menu li on hover */
.menutop ul li:hover a {}


/* make the sub menu ul visible and position it beneath the main menu list item */
.menutop ul li:hover ul {
display:block; 
position:absolute; 
top:20px; 
left:0; 
width:110px;
}


/* style the background and foreground color of the submenu links */
.menutop ul li:hover ul li a {
display:block; 
background:#a6a682; 
color: rgb(102, 102, 102);


}


/* style the background and forground colors of the links on hover */
.menutop ul li:hover ul li a:hover {
background:#a6a682; 
color:#fff;
}



