
#cssdropdown, #cssdropdown ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#cssdropdown li {
	float: left;
	position: relative;
	padding-bottom:4px;
}

.mainitems{
}

.mainitems a{
	margin-left: 6px;
	margin-right: 8px;
	text-decoration: none;
}

.subuls{
	display: none;
	width: 10em;
	position: absolute;
	top: 1.8em;
	left: 0;
	background-color: #55752b;
	padding-top:10px;
	border:1px solid #FFFFFF;
	
	
	filter:alpha(opacity: 87);
	-moz-opacity:0.87;
	opacity: 0.87;
}

.subuls li{
	width: 96%;
	border-bottom:1px solid #3d541e;
	padding:3px;
}

.subuls li a{
	text-decoration: underline;
	font-size:12px;
}

#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;
}
