#mainMenu{
	width: 100%;
	font-weight: bold;
}

#mainMenu:after{ /*Add margin between menu and rest of content in Firefox*/
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

#mainMenu ul{
	width: 100%;
	margin: 0;
	text-align: center; /*set value to "left", "center", or "right"*/
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	top: 0;
	margin-top: -1px;
	border: 1px solid #999999; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	font:normal 12px Arial;
	line-height:16px;
	z-index:100;
	width: 200px;
	background: #f2f1f1;
	visibility: hidden;
}


.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid #999999; /*THEME CHANGE HERE*/
	padding: 5px;
	text-decoration: none;
	font-weight: bold;
	color: black;
	font: bold 12px/26px Georgia,"Times New Roman",Times,serif;
	color: #333;
}

* html .dropmenudiv a{ /*IE only hack*/
	width: 100%;
}

.dropmenudiv a:hover { /*THEME CHANGE HERE*/
	background-color: #fff;
	color: #E51937;
}





