ul.nav {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 160px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	font: 8pt Verdana;
	color: #000000;
}
	
ul.nav li {
	position: relative;
	list-style: none;
}
	
li ul.nav {
	position: absolute;
	left: 159px; /* Set 1px less than menu width */
	width: 207px;
	top: 0;
	display: none;
	list-style: none;
}

/* Styles for Menu Items */
ul.nav li a {
	display: block;
	text-decoration: none;
	color: #3D5229;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	background-image: url('images/header.gif');
	list-style: none;
}
	
/* Holly Hack. IE Requirement \*/

* html ul.nav li {
	float: left;
	height: 1%;
	list-style: none;
}

* html ul.nav li a {
	height: 1%;
	list-style: none;
}

/* End */

/* Hover Styles */

ul.nav li a:hover {
	color: #526F35;
	background: #f9f9f9;
	background-image: url('images/header_over.gif');
	list-style: none;
}

/* End */

/* The magic */
	
li:hover ul.nav, li.over ul.nav {
	display: block;
	list-style: none;
}

/* End */