ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 153px; /* Width of Menu Items */
	border-bottom: 0px solid #A9B494; /* light olive green*/
	border-left:none;
	border-right:none;
	border-top:none;
	}
	
ul li {
	position: relative;
	background-color: #55653E; /* dark green */
	display:block
	}
	
li ul {
	
	left: 154px; /* Set 1px less than menu width */
	top: 0px;
	display: none; /* was none*/
	}
ul li a:hover, a:focus, a:active{
background:#E8F0DB; /* med. yellow beige */
color:#55653E;
}
ul li ul li a:hover, a:focus, a:active{
background:#E8F0DB;
color:#55653E;
border-bottom:#A9B494 solid 1px;
/* added 20081209nln */


}
/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #E8F0DB;
	background:  #55653E; /* IE6 Bug */
	padding: 5px;
	border-bottom: 1px solid #A9B494 /* IE6 Bug */
	
	}
ul li ul li a {
	display: block;
	text-decoration: none;
background:#C9D1B9; /* also a light olive green */
color:#55653E;
	/* IE6 Bug */
	padding: 5px;
	border-bottom: 1px solid #A9B494 /* IE6 Bug */
	
	}
	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.hover ul { 
display: block;
color:#55653E;
background:#FFFFFF; } /* The magic */


/* *********** 20081215nln - ADDED FOR FLY OUT MENUS ************** */
#nav li {
	position: relative;
	}

#nav ul {
	z-index: 20; /* was 20 */
	position: absolute;
	display: none;
	top: 0px; /* was 0em */
	left: 150px;/* was 195 */
	width: 164px;
	list-style: none;
	margin: 0;
	padding: 0;
	/*background-color: #eeeeee;*/
	}

#nav ul li {
	padding: 0px;
	margin: 0px;
	/*width: 100px;*/
	}


/* fly out menu styles */
#nav ul li a {
	display: block;
	margin: 0px 2px -1px 2px; /* was 1px 2px 1px 2px; */
	width: 150px; /*was 130*/
	padding-right: 5px;
	padding-left: 5px;
	text-align: left;
	background-color: #D6DEC9;
	font-weight: normal;
	font-style: normal;
	/* added 20081215nln */
	border:#8c8a40 solid 1px;

	/* END added 20081215nln */
	}	
	
	
#nav ul li a:hover {
	background-color: #55653E;
	}
	

/* Fix IE. Hide from IE Mac \*/
* html #nav li { float: left; height: 1%; }
* html #nav li a { height: 1%; }
/* End */


#nav ul li a:hover { color: #55653E; background: #F0F6E8; } /* Hover Styles */
		
#nav li ul li a { padding: 4px 7px; } /* Sub Menu Styles */
		
#nav li:hover ul, #nav li.over ul { display: block; } /* The magic */

