.chromestyle{
width: 100%;
font-weight: bold;
}

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

.chromestyle ul{
width: 100%;
background: #DCDDEB; /*THEME CHANGE HERE*/
padding: 4px 0;
margin: 0;
text-align: left; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
margin-left: 3px;
}

.chromestyle ul li#first {
	margin-left: 20px;
	background: url(../images/menu_divider.gif) center left no-repeat;
}

.chromestyle ul li a{
color: #06357A;
padding: 4px 10px 4px 7px;
margin: 0;
text-decoration: none;
background: url(../images/menu_divider.gif) center right no-repeat;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
background: #606CA3; /*THEME CHANGE HERE*/
color: #FFF;
}

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

.dropmenudiv{
position:absolute;
top: 0;
border-bottom-width: 0;
font:normal 1em/*12px Verdana*/;
line-height:18px;
z-index:100;
background-color: #DCDDEB;
width: 200px;
visibility: hidden;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
padding: 2px 3px;
text-decoration: none;
font-weight: bold;
color: #606CA3;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background: #606CA3;
color: #FFF;
}