/*Darius Engineer*/
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav li{
	float: left;
	position: relative;
	background: url(../images/buttonBG.jpg);
	width: 108px;
	height: 29px;
	padding: 0px;
	border: .01em solid #fff;
	margin: 0;
	list-style: none;
}


*html #nav li { /* all list items */
	float: left;
	position: relative;
	background: url(../images/buttonBG.jpg);
	width: 111px;
	height: 29px;
	padding: 0px;
	border: .01em solid #fff;
	margin: 0;
	list-style: none;
}

*html #nav li{
	width: 108px;
}

#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 20px;
	left: 0;
	list-style: none;
}

#nav li>ul { /* 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 */
	top: auto;
	left: auto;
	list-style: none;
}

#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	display: block;
	list-style: none;
}

#nav li ul li{
	background: #598c50;
	height: auto;
	border: 1px solid #a8c6a3;
	list-style: none;
}

*html #nav li ul li{
	height: 20px;
	list-style: none;
}

#content {
	clear: left;
}