@charset "utf-8";
/* CSS Document */

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

#cssdropdown li {
	float: right;
	position: relative;
}

.mainitems{
	background-color: #FFFFFF;
}

.mainitems a{
	margin-right: 10px;
	text-decoration: none;
}

.subuls{
	position: absolute;
	font-weight:normal;
	display: none;
	width: 190px;	
	bottom: 1.3em;
	left: 0;
	right: 0;
	background-color: #FFFFFF;
	border: 1px solid black;
}

.subuls li{
	padding-left:10px;
}

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

.subuls li a:hover{
	text-decoration: underline;
}

#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;
}