#cssdropdown, #cssdropdown ul {
padding-left:20px;
margin-left:30px;
list-style: none;
}

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

.mainitems{
border: 0px solid black;
}

.mainitems a{
margin-left: 20px;
margin-right: 35px;
text-decoration: none;
font-weight:bold;
color:#FFFFFF;
}

.mainitems a:hover{
margin-left: 20px;
margin-right: 35px;
text-decoration: none;
font-weight:bold;
color:#FF0000;
}

.subuls{
display: none;
position: absolute;
top: 12px;
left: 0px;
background-color:#DEEBFF;
border: 1px solid #FFFFFF;
padding:3px;
}

.subuls li{
width: 100%;
padding:3px;
}

.subuls li a{
font-family:Tahoma;
color:#3399FF;
}

.subuls li a:hover{
font-family:Tahoma;
color:#FF0000;
}

#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: 0px;
}

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