#cssdropdown, #cssdropdown ul {
	font-family:verdana;
	padding: 0;
	margin:0px;
	list-style: none;
}

#cssdropdown li {
	list-style-type:none;	/* No bullets */
	margin:0px;	/* No margin - needed for Opera */
	padding:0px;
	height:25px;
	color:#FFFFFF;
	background-color:#FFC852;
	font-family: georgia;
	font-size:12px;	
	width: 100%;
	text-decoration: none;
	font-weight: bold;
	
	
}

.mainitems{
}

.mainitems a{
	text-decoration: none;
	
}

.subuls{
	z-index:100;
	font-family:verdana;
	text-align:left;
	position:absolute;
	display: none;
	left:290px;
	top:100px;
	background:#FFC852;
	width:200px;


}

.subuls li{
	width: 100%;
	padding-left:20px;
	border:3px solid #61362D;
	line-height:2.0em;
	
}

.subuls li a{
	font-family: georgia;
	font-size:14px;	
	width: 100%;
	display: block;
	text-indent: 20px;
	height:100%;
	text-decoration: none;
	font-weight: bold;
	color:#B36F51;		
	background:#520000;
	
		
}
.subuls li a:hover{
	
	text-decoration: underline;
	color:#fff;
	background:#400000;

}

#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;
}


