/* YADM absolute dropdown example */
body{
	margin:0;
	padding:0;
}
.hiddenChild{
	left: -999em;
}
.shownChild{
	left:-1px
}
ul#nav.dhtml{
	position:absolute;
	top:0;
	left:0;
	height:1.5em;
	border:none;
	border-bottom:1px solid #333;
	border-top:1px solid #9c6;
	width:100%;
	background:#cf9;
	margin:0;
	padding:0;
	list-style-type:none;
}
ul#nav.dhtml li{
	position:relative;
	float:left;
	width:10em;
	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;
}
