#dropMenu {
}

.dropstyle {
	margin: 0px auto;
	background-color: #b4b4b4;
	width: 900px;
	height: 30px;
}

.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: #6c6c6c;
	width: 90px;
	padding-top: 9px;
	height: 21px;
	margin: 0px;
	vertical-align: center;
	text-align: center;
	text-decoration: none;
	/*border-right: 1px solid #DADADA;*/
}

.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: #ff1171;
	background-color: white;
}

.dropstyle ul li a:active,.dropstyle ul li a.selected:active {
	color: white;
	background-color: #ff1171;
}

/* ######### Style for Drop Down Menu ######### */
.dropmenudiv {
	position: absolute;
	top: 0;
	border: 1px solid #BBB; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	font: normal 12px Verdana;
	line-height: 22px;
	z-index: 100;
	background-color: #cccccc;
	visibility: hidden;
	filter: progid : DXImageTransform . Microsoft .
		Shadow(color = #CACACA, direction = 135, strength = 4);
	/*Add Shadow in IE. Remove if desired*/
}

.dropmenudiv a {
	width: auto;
	display: block;
	padding: 0px;
	padding-left: 5px;
	padding-right: 20px;
	border-bottom: 1px solid #ddd; /*THEME CHANGE HERE*/
	text-decoration: none;
	color: #444;
	font-size: 10px;
	text-align: left;
}

* html .dropmenudiv a { /*IE only hack*/
	width: 100%;
}

.dropmenudiv a:hover { /*THEME CHANGE HERE*/
	background-color: white;
	/*background-color: #a0a0a0;
	color: #010080;*/
	color: #ff1171;
}

.dropmenudiv a:active { /*THEME CHANGE HERE*/
	color: white;
	background-color: #ff1171;
}