.nav, .nav * {
	margin:0;
	padding:0;
}

.nav {
	float: left;
	position:relative;
}

.nav ul {
	background:#fff; /*IE6 needs this*/
	float: left;
	position:relative;
}

.nav li {
	float: left;
	list-style:none;
	z-index:999;
}

.nav a {
	display:block;
	float: left;
}

.nav li ul {
	left:0;
	top:-999em;
	position:absolute;
	width:304px;
}

.nav li:hover,
.nav li.sfHover,
.nav a:focus, .nav a:hover, .nav a:active {
	background-position:0 -29px;
}

.nav li:hover ul, /* pure CSS hover is removed below */
ul.nav li.sfHover ul {
	top:34px;
	left:0;
}

.nav li:hover li ul,
.nav li.sfHover li ul {
	top:-999em;
}

.nav li li:hover ul, /* pure CSS hover is removed below */
ul.nav li li.sfHover ul {
	top:29px;
	border-bottom:1px solid #38753c;
	border-top:1px solid #38753c;
}
.nav li li:hover li ul,
.nav li li.sfHover li ul {
	top:-999em;
}

.nav li li li:hover ul, /* pure CSS hover is removed below */
ul.nav li li li.sfHover ul {
	top:0;
}
/*following rule negates pure CSS hovers
so submenu remains hidden and JS controls
when and how it appears*/
.superfish li:hover ul,
.superfish li li:hover ul,
.superfish li li li:hover ul {
	top: -999em;
}
.nav li li {
	background:#348e50;
	position: relative; /* this makes the vertical third tiers line up under their parent li */
}
.nav li li li {
	background:#348e50;
	border-left:1px solid #38753c;
	border-right:1px solid #38753c;
	color:#c0dbab;
	height:20px;
	text-indent: 10px; 
	font-size: 10px;
	text-transform:uppercase;
	padding: 0; 
	/* only the css below this point (plus the line indicated a couple lines up from here) was added to turn the 3-tiered horizontal menu into the Richard Willis menu */
	float: left;
	width:140px;
	left: 0;
}
.nav li li ul {
	width:142px;
	}
	
.nav li li li a {
	float: none;
	color:#c0dbab;
	text-decoration:none;
	height:20px;
	padding:0;
	}

.nav li li li a:hover {
	float: none;
	color:#c0dbab;
	text-decoration:none;
	height:20px;
	padding:0;
	}
