#cssdropdown, #cssdropdown ul {
	padding: 0;
	margin: 0;
	list-style: none;
	
}

#cssdropdown li {
	float: left;
	position: relative;
	height: 18px;
	
}

.mainitems{
	color: #00294d;
}

.mainitems a{
	margin-left: 6px;
	margin-right: 8px;
	text-decoration: none;
}

.mainitems li {
	border-top: 1px #004785 solid;
}

.subuls{
	display: none;
	width: 160px;
	position: absolute;
	top: 1.2em;
	left: 0;
	z-index: 3;
	text-align: left;
	background-color: #c4d4e3;
	border-left: 1px solid #004785;
	border-right: 1px solid #004785;
	border-bottom: 1px solid #004785;
}

.subuls li{
	width: 100%;
}

.subuls li a{
	text-decoration: none;
}

#cssdropdown 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: 18px;
	left: 0;
}

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

#restofcontent { /*wrap rest of content of the page inside this div*/
	clear: left;
}

