.chromestyle{
width: 950px;
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%;
padding: 4px 0;
margin: 0;
text-align: left; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
font-size:14px;
font-weight:bold;
color: #3d5660;
padding: 4px 3px;
margin: 0;
text-decoration: none;
}
.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
text-decoration:underline; /*THEME CHANGE HERE*/
}
/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	top: 0;
	font-size:0px;
	margin:2px 0 0 1px;
	line-height:18px;
	z-index:100;
	width: 150px;
	height:0px;
	visibility: hidden;
	border-bottom:#54727f solid 2px;
	border-right:#54727f solid 1px;
	border-left:#54727f solid 1px;
}


.dropmenudiv a{
background-color: #deecef;
font-size:11px;
width: auto;
display: block;
text-indent: 3px;
padding: 2px 4px;
text-decoration: none;
font-weight: bold;
color: #3d5660;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #b9ccd3;
}

