#cssdropdown, #cssdropdown ul {
padding: 0px 0px 0px 10px;
margin: 0;
}

#cssdropdown li {
float: left;
position: relative;
background-image: none;
padding: 0px;
list-style: none;
}

.mainitems{
border: 0px solid black;
height:50px;
margin-bottom:-4px;
}

.mainitems a{
text-decoration: none;
overflow:visible;
}

.subuls{
display: none;
width: 200px;
position: absolute;
top: 45px;
left: 0;
background-color: #D20005;
border: 1px solid #FFFFFF;
}

.subuls li{
width: 100%;
padding-left: 0px;
}

.subuls li a{
text-decoration: none;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#FFFFFF;
}
.subuls li a:hover{
text-decoration: none;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#FFFFFF;
text-decoration:underline;
}

#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;
}
