/* CSS Document */
#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

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

.mainitems{
border: 0px solid black;
background-color: #ccc;
}

.mainitems a{
margin-left: 0px;
margin-right: 0x;
text-decoration: none;
}

.subuls{
	display: none;
	width: 12.6em;
	position: absolute;
	top: 2.4em;
	left: 0;
	background-color: #fff;
	border: 1px solid black;
	text-align: left;
	padding-top: 3px;
	padding-bottom: 2px;
	font-weight: bold;
	color: #0000FF;
}

.subuls li{
width: 100%;
}

.subuls li a{
	display: block;
	text-decoration: none;
	padding: 3px;
	width: 12.6em;
	background-color: #FFFFFF;
	border-bottom: 1px solid #eee;
	
}

.subuls li a:hover{
	display: block;
	padding: 3px;
	width: 12.6em;
	background-color: #999999;
	border-bottom: 1px solid #eee;
	color: #FFFFFF;
	text-decoration: none;
}

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


