	/* all of the below code is for the nav menus on the right hand side of every page */
ul#navmenuhoriz {
	margin: 0;
	margin-left:3px;
	padding: 0;
	list-style: none;
	width: 129px; /* Width of Menu Items */
	border-bottom: 1px solid #00483a;
	line-height: 100%;
	}

ul#navmenuhoriz li{
	position: relative;
	z-index:10;
	}
	
ul#navmenuhoriz li ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	left: 128px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	width: 129px; /* Width of Menu Items */
	z-index:11;
	}
/* Styles for Menu Items */
ul#navmenuhoriz li a {
	font-family:Arial, Helvetica, sans-serif;
	color: #006633;
	display: block;
	font-size:0.7em;
	font-weight:bold;
	text-decoration: none;
	padding:2px 2px 2px 10px;
	border-bottom: 1px solid #00483a;
	border-top-width: 0;
	border-right-width: 0;
	border-left-width: 0;
	background-attachment: scroll;
	background-image: url(../images/nav/arrow.gif);
	background-repeat: no-repeat;
	background-position: left top;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul#navmenuhoriz li { 
	float: left; 
	height: 1%;
}
* html ul#navmenuhoriz li a { 
	height: 1%; 
}


ul#navmenuhoriz li a:hover {
	background-color: #FFF; 
	color: #000;
} /* Hover Styles */
		
ul#navmenuhoriz li ul li a { 
	background-color: #dfeeeb; 
} /* Sub Menu Styles */
		
ul#navmenuhoriz li:hover ul,ul#navmenuhoriz li.over ul{ 
	display: block; 
	background-color: #a9beba;
} /* The magic */


