#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
position: relative;
}

.mainitems{
width:164px;font-family:"Times New Roman", Times, serif; font-size:13px; font-weight:bold; 			text-transform:uppercase;background-color: #b5b5b5;color: #000;}

.mainitems a{
display: block;text-transform:uppercase;
padding: 10px 5px 10px 30px;
background-color: #b5b5b5;
color: #000;
text-decoration: none;
width:164px;
}

.subuls{width:164px;
font-family:"Times New Roman", Times, serif; font-size:13px; font-weight:bold; 			text-transform:uppercase;
background-color: #8f4915;
color: #333;
display: none;
position: absolute;

left: 0;
}

.subuls li{
border-bottom: 2px solid #fff;
		margin: 0;
}

.subuls li a{
display: block;
padding: 10px 5px 10px 30px;
background-color: #f4f4f4;
color: #000;
text-decoration: none;
width:164px;
}

.subuls li a:hover {
		background-color: #b5b5b5;
		color: #000;
}
#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;

}

