/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	z-index:100;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	background-color: #1e1b18;
	visibility: hidden;
	/*filter: progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=80,strength=8); Add Shadow in IE. Remove if desired*/
	display: block;
	margin-top: -3px; /* adjusts space between top menu item and drop down box " */
	width: 150px;
}


.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 3px;
	/*border-bottom: 1px solid #BBB;*/
	text-decoration: none;
	color: #676767;
	padding-top: 6px;
	padding-right: 12px;
	padding-bottom: 6px;
	padding-left: 12px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #7b7977;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

* html .dropmenudiv a{ /*IE only hack*/
	width: 150;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
	/*background-color: #cc0000;*/
	color: #fdffc2;
	background-color: #000000;
	text-decoration: none;
}

