#dropdown, #dropdown ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
	width: 910px;
}

#dropdown li {
	float: left;
	position: relative;
}

.mainitems {
	border-top: 4px solid #FFFFFF;
	border-bottom: 4px solid #FFFFFF;
	border-right: 4px solid #FFFFFF;
	background-color: #9E9DBC;
	text-align: center;
	height: 20px;
	vertical-align: middle;
/* 	font-variant: small-caps;*/
}

.mainitems a {
	text-decoration: none;
	color: #000000;
	font-size: 12px;
	vertical-align: middle;
}

.subuls {
	display: none;
	position: relative;
	background-color: #C5C5D8;
}

.subuls li {
	border-top: 1px solid #FFFFFF;
	width: 100%;
	background-color: #C5C5D8;
}

.subuls li a {
	text-decoration: none;
	color: #000000;
	font-size: 12px;
	font-weight: none;
	letter-spacing: 0;

}

/* 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 */

#dropdown li>ul { 
	top: auto;
	left: auto;
}

/* lists nested under hovered list items */

#dropdown li:hover ul, li.over ul { 
	display: block;
}

/*wrap rest of content of the page inside this div*/

#restofcontent { 
	clear: left;
}

