/* YADM relative dropdown example */
.hiddenChild {
	position: absolute;
	left: -999em;
}

.shownChild { left: -1px; }

p {
	clear: both;
	float: none;
}

ul#nav.dhtml {
	position: absolute; /* relative */
	float: right;
	width: auto;
	top: 45px; /* -50px */
	right: 0px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	height: 1.5em;
}

ul#nav.dhtml li {
	position: relative;
	float: left;
	border: 1px solid #cacaca;
	margin-right: 1em;
	padding: .5em 1.9em;	
}

ul#nav.dhtml ul {
	position: absolute;	
	top: 2em;
	background-color: white;
	border: 1px solid #cacaca;
	list-style-type: none;	
	margin: 0;
	padding: 0;	
	width: auto;
	z-index: 10;
}

ul#nav.dhtml li a {
	text-decoration: none;
	font-weight: normal;
}

ul#nav.dhtml ul li {
	width: 10em;	
	margin: 0;
	padding: .5em;
	border: 0;
	border-bottom: 1px solid #cacaca;
}

ul#nav.dhtml ul li + li { border-top: none; }

ul#nav.dhtml li.isParent { background: url(../images/arrow.gif) 90% 50% no-repeat #fff; }
ul#nav.dhtml li.isActive { border-color: #ff7e03; }
ul#nav.dhtml li.isActive a { color: #ff7e03; }
ul#nav.dhtml li.isActive ul a { color: black; }
ul#nav.dhtml a:hover { color: #ff7e03; background: white; }
ul#nav.dhtml li.isParent a:hover { background: url(../images/arrow.gif) 90% 50% no-repeat #fff; }
ul#nav.dhtml li.isActive ul a:hover { color: #ff7e03; }
