.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-left: 0 solid #FFB9B9;
	border-right: 0 solid #FFB9B9;
	border-top: 1px solid #FFB9B9;
	border-bottom: 1px solid #FFB9B9;
	float: left; 
	font: bold 13px Arial;
	width: 814px;
	height: 32px;	
	background: #000000 url(../blackbar.jpg) repeat-x center;
	margin: 0;
	padding: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}
.chromestyle ul li{
display: inline;
}
.chromestyle ul li a{
	float: left;
	color: #FFFFFF;
	padding: 8px 18px;
	text-decoration: none;
	border-right: 1px solid #CCCCCC;
}

.chromestyle ul li a:hover{ /*script dynamically adds a class of "selected" to the current active menu item*/
	color: #FFFFFF;
	background: url(../redbar.jpg) repeat-x center; /*THEME CHANGE HERE*/
}

.chromestyle ul li a.current{ /*script dynamically adds a class of "selected" to the current active menu item*/
	background: url(../whitebar.jpg) repeat-x center;
	color: #FF0000;/*THEME CHANGE HERE*/
}
/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position: fixed;
	float: inherit;
	top: 0;
	border: 1px solid #BBBBBB; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	font:normal 12px Verdana;
	line-height:18px;
	z-index:100;
	background-color: white;
	width: 200px;
	visibility: hidden;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}
.dropmenudiv a{
	font-weight: bold;
	width: auto;
	display: block;
	text-indent: 3px;
	text-decoration: none;
	text-align:left;	
	color: #333333;
	border-bottom: 1px solid #F1F1F1; /*THEME CHANGE HERE*/
	padding: 2px 0;

	
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #FF0000;
color:#FFFFFF;
}
