/**
 * Single Drop Down Menu - CSS Temp
 * March 24, 2009
 * Corey Hart @ http://www.codenothing.com
 */ 

.ddmenu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ddmenu > li {
	float: left;
}

.ddmenu li a {
	display: block;
	/*width:100%;	width: 100px;
	text-align:center;
	padding-top: 5px;
	padding-bottom: 5px;
	text-decoration: none;
	color: #232323;
	font-weight: bold;
	background-color: #f1f1f1;
	border: 1px solid #c5c5c5;*/
}

.ddmenu > li > .ddmenu-hover {
/*	background-color: #c5c5c5;
	border-left: 1px solid #545454; */
}

.ddmenu li ul {
	display: none;
	list-style: none;
	position: absolute;
	margin: 0px 0 0 0;
	z-index: 90;
	padding: 0;
	line-height: 15pt;
}

.ddmenu li ul a {
	display: block;
	width: 152px;
	padding: 2px 6px;
	border-bottom: 1px solid #545454;
	border-right: 1px solid #545454;
	border-left: 1px solid #545454;
	text-decoration: none;
	font-weight: bold;
	font-size: 9pt;
	color: #000;/*#232323*/
	background-color: #799C3E;
}

.ddmenu li ul li a.first {
	border-top: 1px solid #545454;
}

.ddmenu li ul a.ddchildhover {
	background-color: #000;
}

/* Uncomment for use of css hover functionality */
/*
.ddmenu > li ul a:hover {
	background-color: #f1f1f1;
}
*/

