/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	margin-top:25px;
	padding-left:40px;
	width:660px;
	float:left;
	font-family:"Tahoma";
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:0px solid #3E3935;
	margin-top:10px;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0px;
	cursor:pointer;
	float:left;
	margin-right:20px;
}

/* 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:#CECDCC;
	width:100%;
	font-size:20px;
}

.dropdown a:hover{
	color:#FFFFFF;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	width:130px;
	border-top:0;
	margin-left:-1px;
	float:left;
}
.dropdown ul li a:link,.dropdown ul li a:visited{
	width:100%;
	background-color:#1A1414;
	border:1px solid #2A2424;
	padding:5px;
	font-size:13px;
}
.dropdown ul li a:hover{
	background-color:#2A2424;
	padding:5px;
}
/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	padding-left:0px;
	width:100px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#000 url('expand_right.gif') center right no-repeat;
	padding-right:20px;
	width:105px;
}