.chromestyle{
width: 99%;
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{
border-top: 0px solid #ffffff;
width: 100%;
background: #C1EBFF;
padding: 8px 2px;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
background: #C1EBFF;
color: #008dcf;
padding: 5px 5px;
margin: 5;
text-decoration: none;
border: 1px dotted #7ed2f6;
font: bold 10px Verdana;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
background: #008dcf; /*THEME CHANGE HERE*/
font: bold 10px Verdana;
color: #ffffff;
border: 1px dotted #008dcf;
text-decoration: none;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #ffffff; /*THEME CHANGE HERE*/
border-bottom-width: 1;
font: normal 10px Verdana;
text-align: left;
line-height:18px;
z-index:100;
background-color: #C1EBFF;
width: 200px;
visibility: hidden;
margin-top: 4;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=0); /*Add Shadow in IE. Remove if desired*/
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 8px;
border-bottom: 1px dotted #ffffff; /*THEME CHANGE HERE*/
padding: 4px 0;
text-decoration: none;
font-weight: normal;
color: #008dcf;

}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #7ed2f6;
color: #008dcf;
border-bottom: 1px solid #ffffff;
text-decoration: none;
}