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

#nav li{
	float: left;
	position: relative;
	background: url(../images/navBG.jpg) repeat-x;
	width: 109px;
	height: 30px;
	padding: 12px, 0, 0, 0;
	border: .01em solid #fff;
	margin: 0;
	list-style: none;
	text-align: center;
}


*html #nav li { /* all list items */
	width: 111px;
	padding: 3px;
	float: left;
}

#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 20px;
	left: 0;
	list-style: none;
	margin: 7px, 0, 0, 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: 30px;
	left: 0px;
	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: #d91c28;
	color: #fff;
	height: auto;
	border: 1px solid #efecec;
	list-style: none;
	width: 150px;
}

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

#content {
	clear: left;
}