/* YADM relative dropdown example */
/* added z-index: 999 to force menu always on top */
.hiddenChild{
	position: absolute;
	left: -999em;
}
.shownChild{
	left:-1px;
	z-index: 999;
}
p{
	clear:both;float:none;
}
/* sets background color and height of top level menu with no drop downs */
ul#nav.dhtml{
	position:relative;
	width:auto;
	background:#2D3157;
	margin:0;
	padding:0;
	list-style-type:none;
	height:1.5em;
	z-index: 999;
}
/* sets bar color between top level menu items and menu widths of top level menu items */
ul#nav.dhtml li{
	position:relative;
	float:left;
	width:8em;
	border-right:1px solid #ffffff;
	z-index: 999;
}
/* sets background color and widths of drop menu  */
ul#nav.dhtml ul{
	top:1.4em;
	position:absolute;
	border:1px solid #cccccc;
	border-top:none;
	background:#2D3157;
	width:12em;
	z-index:10;
	z-index: 999;
}
ul#nav.dhtml li a,ul#nav.dhtml li a:hover{
	border:none;
	z-index: 999;
}
ul#nav.dhtml li a{
	padding:0 .5em;
	z-index: 999;
}
/* sets widths of drop menu  */
ul#nav.dhtml ul li{
	border:1px solid #cccccc;
	width:12em;
	z-index: 999;
}
/* sets background of top level menu with drop downs  */
ul#nav.dhtml li.isParent{
	background:url(images/downarrow.gif) 90% 50% no-repeat #2D3157;
	z-index: 999;
}
/* sets background of top level menu with drop downs when active  */
ul#nav.dhtml li.isActive{
	background:url(images/downarrow.gif) 90% 50% no-repeat #2D3157;
	z-index: 999;
}
ul#nav.dhtml li.isActive a{
	background:transparent;
	z-index: 999;
}
ul#nav.dhtml li.isActive ul a{
	padding:0 .5em;
	z-index: 999;
}
/* sets background of hover of top level menu  */
ul#nav.dhtml a:hover{
 	background:#9193A7;
 	z-index: 999;
}
ul#nav.dhtml li.isParent a:hover{
	background:url(images/downarrow.gif) 90% 50% no-repeat #9c6;
	z-index: 999;
}
/* sets background of hover of drop menu  */
ul#nav.dhtml li.isActive ul a:hover{
	background:#9193A7;
	z-index: 999;
}
