

#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;

}

#cssdropdown li {
float: left;
position: relative;

}

.mainitems{
/*border: 1px solid #E0EEFC;
background-color: #FFF;*/
top:4px;
}

.mainitems a{
/* margin-left: 6px;
margin-right: 8px;
text-decoration: none;*/

}

.subuls{
display: none;
width: 10em;
position: absolute;
top: 1.2em;
left: 0;
background-color: #DCEDFF;
/*border: 1px solid black;*/
}

.subuls li{
width: 100%;
border-bottom: 1px solid #B8CEE5;
}

.subuls li a{
font-family: Verdana,Tahoma,"Times New Roman";
font-size: 10px;
text-decoration: none;
padding-left:6px;
padding-top:6px;
padding-bottom:6px;
height:20px;

}





#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;
}

