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

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

.mainitems{

}

.mainitems a{
margin-left: 18px;
margin-right: 0px;
text-decoration: none;
color: #FFFFFF;
}

.mainitems a:hover{
margin-left: 18px;
margin-right: 0px;
color:#330000;
text-decoration: underline;
}

.subuls{
display: none;
width: 10em;
position: absolute;
top: 1.2em;
left: 0;
}

.subuls li{
width: 100%;
margin: 7px 0 0 0;
}

.subuls li a{
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;
}
