/* CSS Document */
#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
background-color:#000000;
color:#FFFFFF;
}

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

.mainitems{
border:0px;
/*background-color: #FFEEC6;*/
}

.mainitems a{
margin-left: 1px;
margin-right: 0px;
text-decoration: none;
/*background:#CCCCCC;*/
/*color:#000000;*/

}

.subuls{
display: none;
width: 150px;
position: absolute;
top: 40px;
left: 0;
/*padding:3px;*/
/*background:#000000;*/

color:#ffffff;
border:0px;
font-size:13px;
text-indent:inherit;
/*color:#ffffff;
background:#000000;*/

}

.subuls li{
width: 151px;
height:19px;
padding-left:2px;
padding-top:4%;

}

.subuls li a{
color:#FFFFFF;
/*background:#D5D8DB;*/
/*text-decoration: none;*/
/*text-transform:uppercase;*/
/*text-shadow:#999999;*/
}

#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;
width:154px;
/*background-color:#CCCCCC;*/


}

#cssdropdown li:hover{
background-color:#999999;

}


