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

#multi-ddm 
{
	background: url(../images/nav.png) bottom left no-repeat transparent ;
    clear:both;
    height:40px;
	list-style: none;
	padding-left: 40px;
	margin: 0;
}

#multi-ddm > li {
	float: left;
	
}

#multi-ddm > li > a {
	display: block;
	text-align:left;
	padding-top: 0;
	padding-bottom:0;
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
	background-color: transparent;
	
}

#multi-ddm > li > .parent-hover {
	background-color: #292929;
}

#multi-ddm > li ul {
	display: none;
	list-style: none;
	position: absolute;
	margin: -10px 0 0 0;
	z-index: 90;
	padding: 0;
}

#multi-ddm > li ul a {
	display: block;
	background: url(../images/dropdown.png) top center no-repeat #292929;
	width: 246px;
	height:26px;
	text-indent:10px;
	text-decoration: none;
	font-weight: 500;
	font-size: 8pt;
	color: #ffffff;
	line-height: 26px;
	

}

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

#multi-ddm > li ul .child-hover1 {
	background-color: #292929;
}

#multi-ddm > li ul .child-hover2 {
	background-color: black;
	color: white;
}

#multi-ddm > li ul .child-hover3 {
	background-color: purple;
	color: white;
}

#multi-ddm > li ul .child-hover4 {
	background-color: blue;
	color: white;
}

#multi-ddm > li ul li ul {
	margin: -29px 0 0 163px;
	position: absolute;
}

#multi-ddm span {
	float: right;
}
