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

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

.mainitems{
border: 0px solid black;
font-family:century gothic;
font-size: 14px;
font-weight: bold;
color:#68c4e9;
}

.mainitems a{
text-decoration: none;
font:century gothic;
font-size:14px;
color:#68c4e9;
}

.subuls{
display: none;
width: 10em;
position:absolute;

top: 1.5em;
left: 0px;
right:0px;
background-color: transparent;
border: 0px;
}

.subuls li{
width: 100%;
}

.subuls li a{
text-decoration: none;
font:century gothic;
font-size:11px;
color:#1585b2;
}

#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: 15px;
left:0px;
}

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

