/* 
	LEVEL ONE
*/
ul.dropDown {
	position: absolute;
	padding: 2px 0 0 0;
	right: 0;
	z-index: 90;
}
ul.dropDown li {
	font-weight: bold;
	float: left;
	zoom: 1;
	list-style: none;
}
ul.dropDown a:hover {
	color: #000;
}
ul.dropDown a:active {
	color: #000;
}
ul.dropDown li a {
	display: block;
	padding: 4px 20px 4px 8px;
	text-decoration: none;
	color: #0E574C;
	background: url('/images-new/menu-separator.gif') no-repeat top right;
}
ul.dropDown li.hover, ul.dropDown li:hover {
	color: black;
	position: relative;
}
ul.dropDown li.hover a {
	color: black;
}

ul.dropDown li a.noSeparator {
	background-image: none;
}


/* 
	LEVEL TWO
*/
ul.dropDown ul {
	visibility: hidden;
	position: absolute;
	top: 90%;
	left: 10px;
	border: solid #007360 1px;
	z-index: 90;
}
ul.dropDown ul li {
	font-weight: normal;
	background-color: #F7F1E1;
	color: #000; 
	border-bottom: 1px solid #ccc;
	float: none;
	width: 150px;
}

ul.dropDown ul li:hover {
	background-color: #e6e0d0;
}

ul.subMenu li a {
	background: none;
	color: #0E574C;
}
									  
/* IE 6 & 7 Needs Inline Block */
ul.dropDown ul li a {
	border-right: none;
	width: 100%;
} 

/* 
	LEVEL THREE
*/
ul.dropDown ul ul {
	left: 100%; top: 0;
}
ul.dropDown li:hover > ul {
	visibility: visible;
}