/*!
 * Single Drop Down Menu 1.2 - CSS Temp
 * September 26, 2009
 * Corey Hart @ http://www.codenothing.com
 */

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

.ddmenu > li {

	background-image:url(/images/blue-button.png);
	float: left;
	position: relative;
	
}

.ddmenu > li > a {
	display: block;
	
	text-align:center;
	padding-top: 7px;
	padding-bottom: 7px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	
}

.ddmenu > li > .ddmenu-hover {
	
	
	background-image:url(/images/red-button.png);
}

.ddmenu > li ul {
	display: none;
	list-style: none;
	position: absolute;
	margin: -1px 0 0 0;
	z-index: 90;
	padding: 0;
	left: -10px;
	top:34px;
}

.ddmenu > li ul a {
	display: block;
	width: 168px;
	padding: 5px;
	border-bottom: 1px solid #000047;
	border-right: 1px solid #000047;
	border-left: 1px solid #000047;
	text-decoration: none;
	font-weight: bold;
	font-size: 10pt;
	color: white;
	background-color:#6A0030;
	opacity:0.90;
	-moz-opacity: 0.90; /* older Gecko-based browsers */
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90); /* For IE6&7 */
	
	
}

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

.ddmenu > li ul a.ddchildhover {
	background-color: #1E90FF;
}
