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

.item{
text-decoration: underline;
list-style: none;
}

.item ul {
text-decoration: underline;
list-style: none;
z-index: 1000;
}



#cssdropdown li {
float: left;
position: relative;
}

.mainitems a{
text-decoration: none;
}

#subuls{
display: none; 
width: 150px;
position: absolute;
top: 30px;
left: 0;
background-color: #333333;
border: 0px solid black;
z-index: 1000;
}

#subuls li{
width: 100%;

}

#subuls li a{
text-decoration: none;
background: none;
color:#FFFFFF;
}

#subuls li a:hover{
text-decoration: underline;
background: none;
color:#FFFFFF;
width: 100%;
}

#subuls li a:current {
text-decoration: none;
background: none;
color:#FFFFFF;
}




#cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
z-index: 1000;

}

#restofcontent { /*wrap rest of content of the page inside this div*/
clear: left;
}