@charset "utf-8";
/* CSS Document */
<style type="text/css">  #cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}
#cssdropdown li {
	float: right;
	position: relative;
	text-align:right;
}
.mainitems {
	/*border: 1px solid black;*/
}
.mainitems a {
	margin-left: 6px;
	margin-right: 8px;
	text-decoration: none;
}
.subuls {
	display: none;
	min-width:180px;
	position: absolute;
	top: 41px;
	/*border: 1px solid black;*/
	right: 0px;
	background:#7B927A;
}
.subuls li {
	width: 100%;
}
.subuls li a {
	text-decoration: underline;
	text-align: right;
}
#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;
}
#cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	/*right: auto;*/
	top: 41px;
	
}
#restofcontent { /*wrap rest of content of the page inside this div*/
	clear: right;
}
 </style>

