.chromestyle{
	width: 100%;
	font-weight: bold;
	font-family: Arial;
	font-size: 12px;
	color: #000;
}

.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%; /*THEME CHANGE HERE*/
	padding: 4px 0;
	margin: 0;
	text-align: center;
	border-top: #BBB;
	border-right: 1px solid #BBB;
	border-bottom: #BBB;
	border-left: 1px solid #BBB;
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
	color: #000;
	margin: 0;
	text-decoration: none;
	border-right: 1px solid #DADADA;
	padding-top: 4px;
	padding-right: 11px;
	padding-bottom: 4px;
	padding-left: 11px;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
	color: #F00;

}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	top: 0px;
	margin-top:11px;
	font:normal 12px Arial;
	line-height:20px;
	z-index:100;
	width: 200px;
	visibility: hidden;
	background: url(../images/drop-bg.png) no-repeat center bottom;
	text-align: center;
	text-indent: 20px;
}


.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 3px; /*THEME CHANGE HERE*/
	padding: 2px 0;
	text-decoration: none;
	font-weight: bold;
	color: black;
	border-top: 1px solid #BBB;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
	color: #F00;

}

