#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
position: relative;
}

.mainitems{
	border: solid #8B9C81 1px;
	border-right-width: 0;
	border-bottom-width: 0;
	background-color:#f1f1f1;
	width: 139px;
	text-align: center; 
	color:#8B9C81;
	font-weight:bold;
	font-size:13px;
}

.mainitems a{
text-decoration: none;
	display: block;
	color:#8B9C81;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
}

.mainitems a:hover{
	width: 100%; 
	background-color: #FFFFCC;
	color:#222;

}

.subuls{
display: none;
width: 165px;
position: absolute;
top: 1.5em;
left: 0;
background-color:#f1f1f1;
border: solid #8B9C81 1px;
text-align: left;
}

.subuls li{
	position:absolute; 
        border: solid #8B9C81 1px;
	border-bottom-width: 0;
	border-right-width: 0;
	border-left-width: 0;
	width: 100%; 
}

.subuls li a{
	width: 100%;
	display: block;
	text-indent: 3px; 	
	padding: 2px; 
	text-decoration: none; 
	text-indent: 1px; 
	color:#8B9C81;
	font-size:11px;
}

.subuls li a:hover{
	width: 100%; 
	background-color: #FFFFCC;
	color:#222;
}

#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;
}

#restofcontent { /*wrap rest of content of the page inside this div*/
clear: left;
}