@charset "utf-8";
/* CSS Document */
#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
z-index:999;
}

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

.mainitems{
/*border: 1px solid black;*/
/*background-color: #FFEEC6;*/
}

.mainitems a{
margin-left: 6px;
margin-right: 8px;
text-decoration: none;
}

.subuls{
display: none;
width: 10em;
position: absolute;
top: 1.2em;
left: 0;
background:#222;/*222*/
opacity: 1;

/*border: 1px solid #666;*/
}

.subuls li{
width: 100%;
opacity: 1;
}

.subuls li a{
text-decoration: underline;
opacity: 1;
}

#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 */
background-image:none;
display: block;
}

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