/* this is the main UL element*/
.dropdown{margin: 0; padding: 0; list-style: none; margin-top: 20px;}

/* these are the inner menus*/
.dropdown ul{width: 260px; padding: 15px 0; list-style: none; text-align: left; border: 1px solid #5f8ab3; border-top: none; background: url(/images/subList.png); font-size: 12px; font-family: Arial, Helvetica, sans-serif; font-weight: normal;}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	color:#FFF;
	width:100%; padding: 5px 15px; width: 200px;
}

.dropdown a:hover{
	text-decoration:underline;
	background: #333;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{border-top: 0;}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url('expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	width:105px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url('expand_right.png');
	background-position:center right;
	width: 250px;
}