#dropMenu {
}

.dropstyle {
	margin: 0px auto;
	background-color: #868789;
	width: 870px;
	height: 28px;
}

.dropstyle:after { /*Add margin between menu and rest of content in Firefox*/
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.dropstyle ul {
	position: relative;
	border: 0px solid #BBB;
	width: 100%;
	padding: 0px 0;
	margin: 0;
	text-align: left; /*set value to "left", "center", or "right"*/
}

.dropstyle ul li {
	display: inline;
}

.dropstyle ul li a {
	display: block;
	float: left;
	color: white;
	width: 134px;
	height: 28px;
	line-height: 28px;
	padding-left: 10px;
	vertical-align: middle;
	text-align: left;
	text-decoration: none;
	border-right: 1px solid white;
}

.dropstyle ul li a:hover,.dropstyle ul li a.selected {
	/*script dynamically adds a class of "selected" to the current active menu item*/
	/*background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
	color: #949695;
	background-color: #FFE200;
}

.dropstyle ul li a:active,.dropstyle ul li a.selected:active {
}

/* ######### Style for Drop Down Menu ######### */
.dropmenudiv {
	position: absolute;
	top: 0;
	border: 0px solid #BBB; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	font: normal 12px Arial;
	line-height: 22px;
	z-index: 100;
	background-color: #868789;
	visibility: hidden;
	width: 180px;
}

.dropmenudiv a {
	/*min-width: 121px;*/
	height: 28px;
	line-height: 28px;
	display: block;
	padding: 0px;
	padding-left: 5px;
	padding-right: 20px;
	border-top: 1px solid white; /*THEME CHANGE HERE*/
	text-decoration: none;
	color: white;
	text-align: left;
}

* html .dropmenudiv a { /*IE only hack*/
	width: 100%;
}

.dropmenudiv a:hover { /*THEME CHANGE HERE*/
	background-color: #FFE200;
	color: #949695;
}

.dropmenudiv a:active { /*THEME CHANGE HERE*/
}