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

#nav li{
	float: left;
	position: relative;
	padding: 0px;
	margin: 0;
	list-style: none;
}


*html #nav li { /* all list items */
	float: left;
	position: relative;
	padding: 0px;
	margin: 0;
	list-style: none;
}

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

#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: #fff;
	height: 22;
	list-style: none;
}

*html #nav li ul li{
	list-style: none;
	position: relative;
		top: 22px;
		left: 0;
	border: 1px solid #fff;
}

#content {
	clear: left;
	margin: 0;
	padding: 0;
}