/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	list-style:none;
	/*border-bottom:1px solid #444;*/
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
	display:inline;
	
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	
	background-color:transparent;
	cursor:pointer;
	width:70px;
}

/* 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:#666;
}

.dropdown a:hover{
	text-decoration:none;
	color:#900;
	background-color:#FFF;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	
	border-top:0;
	margin-left:-1px;
	width:80px;
	background-color:#fff;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url('down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
	width:80px;
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url('right.gif');
	background-position:center right;
	padding:5px;
	width:80px;
}