/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0px;
	padding:0;
    background-color:#72706F;
	list-style:none;
	width:800px;
	float:left;
	position:relative;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	margin-top:-1px;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding-bottom:5px;
	padding-top:5px;
	padding-left:22px;
	padding-right:22px;
	background-color:#72706F;
	cursor:pointer;
	border-left:0px;
	border-top:1px solid #72706F;
	border-bottom:1px solid #72706F;
	border-right:1px solid #ffffff;
	height:25px;
}

/* 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:#ffffff;
	text-align:center;
	font-family:"trebuchet MS", Arial;
	font-size:13px;
	width:100%;
}



.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #72706F;
	border-top:0;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#72706F;
	padding-left:22px;
	padding-right:22px;
	text-align:left;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li._left{
	background:#72706F;
	width:68px;
	text-align:left;
	padding-left:0px;
}

.dropdown li._left2{
	background:#72706F;
	width:85px;
	text-align:left;
	padding-left:0px;
}
