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

#cssdropdown li {
	float: left;
	position: relative;
	padding-right:5px;
}

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

.subuls {
	display: none;
	width: 10em;
	position: absolute;
	top: 1.2em;
	left: 0;
	background-color: black;
	border: 1px solid black;
	text-align: left;
	z-index: 21;
}

.subuls li {
	width: 100%;
	font-weight:normal;
	text-transform: none;
	padding:2px;
	font-size:8pt;
}

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

.subuls li a:hover {
	text-decoration: underline;
	color:black;
	background-color: white;
}

#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: auto;
	left: auto;
}

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

#cssdropdown img {
	margin: 0pt;
}
