/********** MENU ***********/
/* all lists */
#ulMenu, #ulMenu ul { 
	padding: 0;
	margin: 0;
	list-style: none;
	height: auto;
}

/* all list items */
#ulMenu li, #ulMenu li li { 
	float: left;
	position: relative;
	width: 150px;
}
 
/* second-level lists */
#ulMenu li ul { 
	display: none;
	position: absolute;
	top: 1.6em;
	left: 0;
}
 
/* to override top and left in browsers other than IE, which will position 
 * to the top right of the containing li, rather than bottom left */
#ulMenu li>ul { 
	top: auto;
	left: auto;
}
 
/* lists nested under hovered list items */
#ulMenu li:hover ul, #ulMenu li.over ul { 
	display: block;
}

/* 
#a2411f red
#ffe9d0 lightwood
#678061 military green
#773e14 darkwood 
*/
/* and then some of my own styling */
#ulMenu li {
	background-color: #678061;
	color: #ffe9d0;		
	font: 10pt Arial;
	text-align: center;
}

#ulMenu li li {
	background-color: #a2411f;
	padding: 0.4em 0 0.4em 0;
	border-top: 1px dotted #ffe9d0;
}

/* lighten some of the inactive links now */
#ulMenu li li.inactive {
	background-color: #e07f5c;
}

/* no decorating links */
#ulMenu li li, #ulMenu a {
	color: #ffe9d0;
	text-decoration: none;
	font: 9pt Arial;
}

/* menu headers get some vertical margin */
#ulMenu div {
	margin: 0.3em 0 0.3em 0;
}

