<style type="text/css">

.ds_menu ul{
list-style-type:none;
padding:0;
margin:0;

margin-right:20px;
margin-left:20px;
margin-bottom:5px;

}
/* make the top level links horizontal and position relative so that we can position the sub level */
.ds_menu li{
float:left;
position:relative;
margin-right:20px;

}

/* use the table to position the dropdown list */
.ds_menu table{
position:absolute;
border-collapse:collapse;

left:-1px;
top:25px;
}

/* style all the links */
.ds_menu a {
display:block;
font-size:11px;
padding-left:10px;
margin-top:-3px;
color:#444;

text-decoration:none;
margin-right:1px;
text-align:left;
}
/* style the links hover */
.ds_menu :hover{
color:#444;
background:#e5e5e5;
}

/* hide the sub level links */
.ds_menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.ds_menu ul li:hover ul,
.ds_menu ul a:hover ul{
visibility:visible;
}
li.ds_sub
{
	background:#e5e5e5;
	height:auto;
	
	padding-left:10px;
	width:150px;
	border-top:#fff solid 1px;
	border-right:#999 solid 1px;
	border-bottom:#999 solid 1px;
	margin-top:-1px;
	
	
}

ul.ds_sub
{
	background:none;
	height:auto;
	width:150px;
	font-size:10px;
	margin-left:10px;
	z-index:100;
	padding-top:5px;
	
}
li.ds_sub a{
font-size:10px;
text-decoration:none;
padding:10px 0;
margin-top:0;
}
li.ds_sub a:hover{
text-decoration:underline;
}
</style>