#menu{
width: 100%;
font-weight: normal;
background: transparent url(menu-pattern.gif) repeat-x 0 0;
}

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

#menu ul{
list-style-type: none;
float:left;
height: 32px;
background: transparent url(menu-pattern.gif) repeat-x 0 0;
font-size: 14px;
margin: 0;
}

#menu ul li{
display: block;
float: left;
border-right: 1px solid #e4e5e5;

}

#menu ul li a{
text-decoration: none;
color: #252525; /*THEME CHANGE HERE*/
display:block;
padding: 5px 12px 6px 12px;
}

#menu ul li a:hover, #menu ul li a.selected,.current_page_item{
background-color: #5eb2e5;/*script dynamically adds a class of "selected" to the current active menu item*/
color:#fff;
/*THEME CHANGE HERE*/
}


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

.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #B5E2FE; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
background-color: white;
width: 200px;
visibility: hidden;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}


.dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid #62bffc; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: black;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #EBF7FF;
}