/* CSS Drop Down Menu */
ul {
font-size:10px;
	margin: 0px;
	padding: 0px;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	width: 150px;
	top: 26px; 
	left: 0px; /* Set 1px less than menu width */
	display: NONE; /*DISPLAY*/
	}

/* Styles for Menu Items */
ul li a {
	font-size:10px;
	display: block;
	text-decoration: none;
	}

li.dropdown{
background: #ffffff;
border-left: 1px solid #eae6d5;
border-right: 1px solid #eae6d5;
border-top: 1px dashed #eae6d5;
padding-top: 10px;
height: 25px;
text-align:center;
}

li.dropdownSelected{
background:#eae6d5;
padding-top: 10px;
height: 25px;
text-align:center;
color:#9a8b60;
}


/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
		


a.dropdown:link {
color:#767676;
}

a.dropdown:visited {
color:#767676;
}

a.dropdown:active {
color:#767676;
}

a.dropdown:hover {
color:#39321f;
}

li:hover ul { 
	display: block; /*  The magic */
	} 

li.dropdown:hover {
background:#d5cdab;
color:#767676;
}