#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
position: relative;
}

.mainitems{
/*border: 1px solid black;*/
font-size:12px;
height:20px;
padding-top:10px;
padding-top:5px;
font-family:Verdana, Arial, Helvetica, sans-serif;
background-color: #505050;
}

.mainitems a{
margin-left: 18px;
margin-right: 18px;
color:#ffffff;
background-color: #505050;
text-decoration: none;
}

.subuls{
display: none;
width: 10em;
position: absolute;
left: 0;
border:0;
background-color: #666666;
border: 1px solid black;
	
}

.subuls li{
width: 100%;
}

.subuls li a{
text-decoration:none;
display:block;
padding-top:2px;
}

.subuls li a:hover{
text-decoration:none;
display:block;
background-color:#999999;
width:107px;
}


#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 */
padding-left:15px;
top:auto;
font-size:11px;
padding:0;
}
*HTML #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 */
margin-top:0px;
padding-left:15px;
top:auto;
font-size:11px;
}

#cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
border:1px solid #666666;
width:128px;
}

#restofcontent { /*wrap rest of content of the page inside this div*/
clear: left;
}
