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

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

#cssdropdown li {
float: left;
position: relative;
margin-top:0px;
}

.mainitems{
font:Verdana, Arial, Helvetica, sans-serif;
color:#fff;
margin-bottom:0px;
margin-top:20px;
border-right:thin solid #CCCCCC;

}

.mainitems a{
	color:#fff;
	margin-left: 10px;
	margin-right: 8px;
	padding-bottom:12px;
	padding-top:10px;
	text-decoration: none;
	
}

.mainitems a:hover{
color:#99CC33;
}

.subuls{
	display: none;
	width: 10em;
	height: 12em;
	position: absolute;
	top: 1.2em;
	left: 0;	
	background-image:url(../images/dropBox.png);
	background-repeat: repeat-x;
}

.subuls li{
width: 100%;
padding:5px 0px 0px 0px;
}

.subuls li a{
text-decoration: none;
padding-top:5px;
}

.subuls li a:hover{
color:#99CC33;
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;
margin-top:10px;

}

#restofcontent { /*wrap rest of content of the page inside this div*/
clear: left;
}