/* YADM relative dropdown example */
.hiddenChild{
	position: absolute;
	left: -999em;
}
.shownChild{
	left:-1px;
}
p{clear:both;float:none;}

ul#nav.dhtml{
	position:relative;
	width:auto;
	background:#cf9;
	margin:0;
	padding:0;
	list-style-type:none;
	height:1.5em;
}

ul#nav.dhtml li{
	position:relative;
	float:left;
	width:9.5em;
	border-right:1px solid #333;
}
ul#nav.dhtml ul{
	top:1.4em;
	position:absolute;
	border:1px solid #333;
	border-top:none;
	background:#dfa;
	width:10em;
	z-index:10;
}
ul#nav.dhtml li a,ul#nav.dhtml li a:hover{
	border:none;
}
ul#nav.dhtml li a{
	padding:0 .5em;
}
ul#nav.dhtml ul li{
	border:none;
	width:10em;
}
ul#nav.dhtml li.isParent{
	background:url(vertarrow.gif) 90% 50% no-repeat #cf9;
}
ul#nav.dhtml li.isActive{
	background:url(vertarrow.gif) 90% 50% no-repeat #ffc;
}
ul#nav.dhtml li.isActive a{
	background:transparent;
}
ul#nav.dhtml li.isActive ul a{
	padding:0 .5em;
}
ul#nav.dhtml a:hover{
 	background:#ffc;
}
ul#nav.dhtml li.isParent a:hover{
	background:url(vertarrow.gif) 90% 50% no-repeat #9c6;
}
ul#nav.dhtml li.isActive ul a:hover{
	background:#ffc;
}
