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