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

#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;
		top: 40px;
		left: 0;
	list-style: none;
	width: 200px;
}

*html #nav li ul{
	position: absolute;
		top: 40px;
		left: 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: 0;
	list-style: none;
}

#nav li:ul{
	top: auto;
	left: 0;
	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{
	display: block;
	background: #18287a;
	list-style: none;
	height: 40px;
	width: 100%;
	position: relative;
		top: 40px;
		left: 0px;
	border: #fff 1px solid;
}

*html #nav li ul li{
	list-style: none;
	height: 20px;
	position: relative;
		top: 10px;
		left: 0px;
}

#content {
	clear: left;
}