#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
position: relative;
margin:0;
padding:0;
height:28px;
margin-bottom:-2px; /*IE6 bug */
}

.mainitems{
}

.mainitems a{
text-decoration: none;
}
.mainitems img{
border:none;
}
.subuls{
display: none;
width: 10em;
position: absolute;
top: 28px;
left: 0;
background-color: #e3e9e3;
border-top:none;
border-right:1px solid #bcc1c7;
border-bottom:1px solid #bcc1c7;
border-left:1px solid #bcc1c7;
margin:0px;
}

.subuls li{
width: 100%;
}
.subuls li:hover{
background-color:#f5f7f5;
}

.subuls li a{
text-decoration: none;
font-family:"Times New Roman", Times, serif;
font-size:15px;
color:#004022;
line-height:26px;
padding-left:7px;
}
.subuls li a:hover{
background-color:#f5f7f5;
}


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