
#cssdropdown ul
{

}

#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;

}

#cssdropdown li {
float: left;
position: relative;
width: 140px;

}


.mainitems{
border: 1px solid black;
background-color: #990000;
color:#FFFFFF;
font-size:12px;
margin-right:10px;
margin-left:10px;
}

.mainitems a{
text-decoration: none;
color:#FFFFFF;
}

.subuls{
display: none;
width: 140px;
position: absolute;
top: 1.2em;
left: 0;
background-color: #FFFFFF;
border: 1px solid black;
}

.subuls li{
text-align:left;
}

.subuls li a{
text-decoration: none;
background-color:#FFFFFF;
color:#990000;
text-align:left;
padding-left:2px;
}

.subuls li:hover{
text-align:left;
background-color:#990000;
}

.subuls li a:hover{
text-decoration: underline;
background-color:#990000;
color:#FFFFFF;
text-align:left;
}

#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;
}
