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

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:130px;
	/*background-color:#181818;*/
	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:#FFB119;*/
	width:90px;
}

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

.dropdown ul a{
	text-decoration:none;
	/*color:#FFB119;*/
	width:100%;
}

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


/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	position:absolute;
	left:-24px;
	/*top:10px;*/
	border:1px solid #606060;
	border-top:0;
	margin-left:-1px;
	background-color:#484848;
}

.dropdown ul ul {
	border:0;
	/*border-bottom:1px solid #606060;*/
}
.dropdown ul ul li{
	position:absolute;
	left:0px;
	border:1px solid #606060;
	border-bottom:0;
	/*top:-1px;*/
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:/*#181818*/ url('expand_down.gif') center left no-repeat;
	padding-left:20px;
	
	width:80px;
	margin-right:25px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselves*/
.dropdown li.submenu-left{
	background:#484848 url('expand_right.gif') center right no-repeat;
	padding-right:20px;
	width:230px;
	
}

