.menu {
font-family:"Trebuchet MS",Helvetica,Verdana,sans-serif;
font-weight:normal;
list-style-type:none;
margin-top:6px;margin-bottom:10px;
margin-left:0;
padding:0;
width:700px;
z-index:19;
position:relative;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu 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 */
.menu ul li {
float:left; 
position:relative;
margin:0;
margin-right:18px;
margin-bottom:8px;
padding:0;
display:block;
}
/* 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. */
.menu ul li a, .menu ul li a:visited {
font-family:"Trebuchet MS",Helvetica,Verdana,sans-serif;
font-weight:normal;
display:block;  
text-decoration:none;
color:#FFF; 
font-size:16px;
}
/* make the dropdown ul invisible */
.menu ul li ul {
display: none;
background: url(../../images/bg_topnav.png);
width:250px;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
color:#036; 
text-decoration:none;
font-weight:normal;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
display:block; 
position:absolute; 
top:21px;
font-size:14px;  
}

.menu ul li:hover ul li {
display:table;
position:relative; 
}

/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
display:table; 
color:#036;
font-weight:normal;
margin-left:4px;
font-size:14px;
width:250px;
}

/* style the background and forground colors of the links on hover */
.menu ul li li a:link, .menu ul li li  a:active, .menu ul li li  a:visited{
font-size:14px;
color:#036;
font-weight:normal;
text-decoration: none;
}

/* style the background and forground colors of the links on hover */
.menu ul li li a:hover {
color:#036;
font-weight:normal;
text-decoration: underline;
}
/*
.menu ul li a:hover ul li a {
color:#036;
}
*/
