#cssdropdown
{
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	top: 15px;
	z-Index:5;

}

#cssdropdown ul {
padding: 3px;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
position: relative;
}

.mainitems{
 text-align:center;
 background-image:url(../images/button.png);
 width:100px;
 height:26px;
 color: white;
 background-repeat:no-repeat;
 font-size:11px;
 float: left;
 font-weight: bold; 
}

.mainitems a{
text-decoration: none;
color: White;
}

.subuls{
display: none;
position: absolute;
top: 1.7em;
left: 0;
background-color:#336633;
border: 1px solid black;
}

.subuls li{
width: 100%;
border: solid thin grey;
}

.subuls li a{
font-size: 10pt;
text-decoration: underline;
color: #FFFFCC;
}

.subuls li:hover{
background-color: #003300;
color: white;
}

.subuls li a:hover {
color: white;
text-decoration: none;

}

#cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
}
