#cssdropdown #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
font-size: 14px;
font-family: Helvetica,Arial,sans-serif;
}

#cssdropdown li {

}

.mainitems{
cursor: pointer;
padding-right: 5%;
list-style:none;
border: 0px;
padding:0;
margin:0;
}

.mainitems a{
margin-left: -1px;
margin-right: 0px;
text-decoration: none;
border: 0px;
}

.mainitems a img {border: 0px; padding:0px; margin:0px;}

.subuls{
list-style: none;
display: none;
position: absolute;
top: 50px;
left: 10px;
background-color: #FFF;
border: 1px solid #d91525;
float: left;
font-size: 12px;
font-weight:100;
padding: 5px 5px 5px 5px;
}

.subuls li{
width: 100%;
}

.subuls li a{
text-decoration: none;
float: left;
color: #000;
padding-left: 20px;
padding-top: 3px;
padding-bottom: 3px;
}

.subuls li a:hover{
text-decoration: underline;
color: #990000;
}

#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;
}
