/* CSS Document */

#cssdropdown, #cssdropdown ul {
padding: 0;
margin-left: 15px;
list-style: none;
padding-top:0px;
}

#cssdropdown li {
float: left;
position: relative;
border: none;
}

.mainitems{
border: 0px
background-color: none;

}

.mainitems a{


color: white; font-size: 12px;   font-family: Tahoma; text-decoration: none 
}

.subuls{
display: none;
width: 140px;
position: absolute;
top: -1px;
left: 0px;
background-color: #1e6bd7;
border: 0px

padding-left:-10px;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;

}


.subuls li{
width: 100%;

}

.subuls li a{
text-decoration: none;
margin-left: 5px;
font-size: 12px;
font-weight: normal;
color: white;

}

#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: -20px;
padding-left:10px;
padding-bottom: 10px;
}

#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;
}