.menu{
width: 900px; height:25px; 
}

.menu:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden; 

}

.menu ul{
 /*THEME CHANGE HERE*/
padding: 5px;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.menu ul li{
display: inline; 
}

.menu ul li a{
font: 9px Verdana; color: #FFF; font-weight:bold; letter-spacing:1.5px;
padding: 6px 15px;
text-decoration: none;
margin: 0;
}


.menu ul li a[rel]:after{ /*HTML to indicate drop down link*/
content: " v";
/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
}


/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute; 
top: 0;
border: 1px solid #C0D2DB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 9px Verdana; color:#FFF;
line-height:18px;
background-color: #1C743D;
width: 200px; 
visibility: hidden;
/*Add Shadow in IE. Remove if desired*/
z-index: 100; text-align:left;
}


.dropmenudiv a{
width: 200px; 
display: block;
text-indent: 5px;
border-bottom: 1px solid #C0D2DB; /*THEME CHANGE HERE*/
font:normal 9px Verdana; color:#FFF;
padding: 4px 0;
text-decoration: none; text-align:left;
}


* html .dropmenudiv a{ /*IE only hack*/
width: 200px; 
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #02984C; width: 200px; 
font: bold; color: #FFF; text-decoration: none; 
}

