.chromestyle{
    background-image:url(../images/menu.gif);
	width:100%;
	height:39px;
	float:left;
}

.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: url(../images/menu.gif); /*THEME CHANGE HERE*/
padding: 0px 0;
margin: 0;
text-align: right; /*set value to "left", "center", or "right"*/

}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
	height:38px;
	display: table-cell;
	vertical-align: middle;
	color: #990033;
	padding-left:12px;
	padding-right:12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFFFFF;
	font-weight:bold;
	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*/
background-color: #4764a7; /*THEME CHANGE HERE*/
}

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

.dropmenudiv{
position:absolute;
margin-top: -20px;
border: 1px solid #CCCCCC; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:28px;
z-index:100;
background-color: white;
width: 200px;
visibility: hidden;
margin-left: -295px;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #CCCCCC; /*THEME CHANGE HERE*/
padding-left: 10px;
padding-top: 3px;
padding-bottom: 3px;
text-decoration: none;
font-weight: bold;
background-color: #EEA20E;
color: #FFFFFF;

}

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

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