/* make the dropdown ul invisible */
#topnav ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */


/* make the sub menu ul visible and position it beneath the main menu list item */
#topnav ul li:hover ul {
display:block; 
position:absolute; 
top:23px; 
left:0; 
width:120px;
}

.submenu {
display:block; 

}



.submenu li{
display:block; 
background-color:#719E41;
background-image:none;
width:120px;
padding: 5px;
float: left;
  margin: 1px;
  position: relative;
  text-align:center;
font-size:11px;
font-family:Verdana, Tahoma, Arial, Helvetica, sans-serif;
color:#ffffff;
text-decoration:none;
font-weight:bold;
}

