/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	/*border-bottom:1px solid #444;*/
	background: #FFFFFF;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
	background: #FFFFFF;
	border: #dedede 1px solid;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:120px;
	cursor:pointer;
	border-top: #dedede 1px solid;
	border-left: #dedede 1px solid;
	border-right: #dedede 1px solid;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	text-align: left;
	width:100%;
}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-bottom:1px solid #dedede;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	/*background:#FFFFFF url(media/expand_down.gif) center left no-repeat;*/
	width:120px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	/*background:#000 url(media/expand_right.gif) center right no-repeat;*/
	width:120px;
}