/* Code from:  http://www.cssdrive.com/index.php/examples/exampleitem/css_drop_down_menu/ */

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

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

.thispage{
padding-left: 6px;
padding-right: 6px;
font-weight: bold;
color: #6965AE;
background-color: #000;
}


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

.mainitems a{

padding: 6px;
margin-bottom: 6px;
text-decoration: none;
color: #D7BB7B;
font-weight: bold;
}

.mainitems a:hover{
color: #6965AE;
background-color: #000;
}

.subuls{
display: none;
text-align: left;
width: 10em;
position: absolute;
top: 1.2em;
left: 0;
background-color: #000;
/* border: 1px solid black;  */
padding: 6px;
margin: 6px;
}

.menudivider {
/* padding-left: 12px; padding-right: 12px; */
font-weight: bold;
font-size: 135%;
}

.subuls li{
width: 100%;
}

.subuls li a{
text-decoration: none;
}

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