.chromestyle{
width: 99%;
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.chromestyle ul{
width: 960;
background-color:#00669c;
font-family:Calibri,arial;
padding: 10px 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
color: white;
padding: 4px 7px;
margin: 0;
text-decoration: none;
font-weight:bolder;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
background: #99cc66; /*THEME CHANGE HERE*/
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
border: 2px solid white; /*THEME CHANGE HERE*/
line-height:18px;
z-index:100;
background-color: #00669c;
width: 300px;
font-size:90%;
visibility: hidden;
/*filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
filter:alpha(opacity=90);
opacity:.9;

}


.dropmenudiv a{
width: auto;
text-align:left;
display: block;
text-indent: 3px;
border-bottom: 2px solid white; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
color: white;
background-color:#00669C;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #99cc66;
}