/***************************  Modified Drop down menu code from Direct Drive
************* halfmoon.css  ***************************************/

.halfmoon{							/* This styles the mainmenu div as a whole */
	margin-bottom: 1em;  			/* was 1 */
	background-color: #e7e7cf;		/* Med gray tan */
}
.halfmoon ul{						/* Styles for the top-level unordered list */
	padding: 3px 9px 0px 5px;
	margin-left: 0;
	margin-top: 0px;
	margin-bottom: 0;
	font: bold 12px;
	list-style-type: none;
	color: black;
	text-align: left; /*set to left, center, or right to align the menu as desired*/
	border-bottom: 1px solid #FFF;
}

.halfmoon li{						/* Each item in the top-level list */
	display: inline;
	margin: 0;
}

.halfmoon li a{						/* Each anchor a tag in the top-level list */
	text-decoration: none;
	padding: 3px 9px 0px 5px;
	margin: 0;
	margin-right: 0px; 					/*distance between each tab*/
	/* border-left: 1px solid gray;
	border-right: 1px solid gray; */
	color: black;
	font-size: 12px;
	/*background: #e5febc;  url(media/halfmoontab.gif) top right no-repeat; */
	background: #e7e7cf;				/*Tab background color - was #d3dde7light blue-grey */
}

.halfmoon li a:visited{					/* Don't change the visited look */
	/* color: #777; */
}

.halfmoon li.selected a{			/* Tab rollover color */
	background-color: #e7e7cf;
}
.halfmoon li a:hover {
	color: #a32121;						/* Rust red */
	background-color: #e7e7cf;
}

/**************** Styles for Drop Down Menus ******************/

.dropmenudiv_e{
position:absolute;
top: 0;
border: 1px solid #c8e181;  /*THEME CHANGE HERE*/
border-width: 0 1px;
font:normal 10px;  /*  Verdana; */
line-height:18px;
z-index:100;
background-color: #e7e7cf;  /* Submenu background color */
width: 200px;
visibility: hidden;
}

.dropmenudiv_e a{
width: auto;
display: block;
font-size: 10px;
text-indent: 5px;
border: 0 solid #E3EDF7; /*THEME CHANGE HERE*/
border-bottom-width: 1px;
padding: 2px 0;
text-decoration: none;
color: #000;			/* Rollover link color */
}

* html .dropmenudiv_e a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv_e a:hover{ /*THEME CHANGE HERE*/
	/*background-color: #fff; */
	color: #a32121;			/* Rollover link color */
}

