/* CSS Document */

#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
position: relative;
}

.mainitems {
height: 20px;
}


.subuls{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
margin: 0px;
width: 170px;
display: none;
position: absolute;
top: 20px;
left:0;
background-color: #A7C226;
}

.subuls li{
width: 100%;
border-bottom: 1px solid #6B7C18;
}

.subuls li a{
padding: 2px 5px 2px 5px;
color: #000000;
display: block;
width: 100%;
text-decoration: none;
}

.subuls li a:link, a:visited{
text-decoration: none;
}

.subuls li a:hover{
color: #000000;
background-color:#E4EDBD;
}

html>body .subuls li a:hover{
width: 95%;
color: #000000;
background-color:#E4EDBD;
}

#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;
margin-top: -4px;
height: 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;
}



