.chromestyle {
	width: 100%;
	font-size:10px;
	font-family:Arial, Helvetica, sans-serif;
	text-decoration:capitalize;
	background-color: #900028;
}
.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: center; /*set value to "left", "center", or "right"*/
}
.chromestyle ul li {
	display: inline;
	font-family:Arial, Helvetica, sans-serif;
	text-transform:capitalize;
	font-weight:bold;
}
.chromestyle ul li a {
	color: #fff;
	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*/
	color:#FFC559; /*THEME CHANGE HERE*/
}
/* ######### Style for Drop Down Menu ######### */

.dropmenudiv {
	position:absolute;
	top: 0;
	line-height:16px;
	font-family:Arial, Helvetica, sans-serif;
	padding:2px;
	z-index:100;
	background-color: #900028;
	width: 200px;
	visibility: hidden;
	text-align:left;
	text-transform:capitalize;
}
.dropmenudiv a {
	width: auto;
	display: block;
	text-indent: 3px;
	border-bottom: 0;
	font-family:Arial, Helvetica, sans-serif;
	padding: 2px 0;
	text-decoration: none;
	color: #fff;
}
* html .dropmenudiv a { /*IE only hack*/
	width: 100%;
}
.dropmenudiv a:hover { /*THEME CHANGE HERE*/
	color:#FFC559;
	text-decoration:underline;
}
