.chromestyle {
	width: 99%;
	font-weight: bold;
	font-size:12PX;
	text-transform: uppercase;
}
.chromestyle:after { /*Add margin between menu and rest of content in Firefox*/
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}
.chromestyle ul {
	width: 100%;
	margin: 0;
	padding: 4px 0;
	text-align: center; /*set value to "left", "center", or "right"*/
}
.chromestyle ul li {
	display: inline;
}
.chromestyle ul li a {
	margin: 0;
	padding: 4px 7px;
	color: #FFFFFF;
	background-color:#000000;
	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: #FFFFFF;text-decoration: underline;
}
/* ######### Style for Drop Down Menu ######### */

.dropmenudiv {
	top: 0;
	z-index:100;
	width: 200px;
	line-height:18px;
	position:absolute;
	visibility: hidden;
	text-align: left;
	border: 1px solid #BBB; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	background-color: white;
	font:normal 12px Verdana;
}
.dropmenudiv a {
	width: auto;
	display: block;
	padding: 6px 6px 6px 6px;
	color: #FFFFFF;
	text-indent: 3px;
	font-weight: bold;
	text-decoration: none;
	background-color:#000000;
	border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
}
* html .dropmenudiv a { /*IE only hack*/
	width: 100%;
}
.dropmenudiv a:hover { /*THEME CHANGE HERE*/
	text-decoration: underline;
}
