
#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
margin-left:0em;
position: relative;
list-style: none;
}

.mainitems{
/*border: 1px solid black;*/
}

.mainitems a{
font-weight:bold;
text-decoration: none;
margin-right:25px;}

.subuls{
display:none; 
width: 12em;
position: absolute;
top: 100%;
left: 0;
background-color: #3990CD;
}

.subuls li{
width: 100%;
vertical-align:middle;
float:none;
padding:4px 0px 4px 0px;
margin-left:0em;
border-bottom:1px solid #072453;

}
#cssdropdown li ul.subuls li a{
color:#ffffff;
margin:5px 5px 5px 10px;
text-decoration: none;
font-weight:normal;
}

#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: 100%;
left: 0;
}

#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;
}
