/*
-Verde scuro:  #067652
-Verde chiaro:  #8bbe8b
*/
/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	border-bottom:1px solid #FFF;
	font-family:Arial;
	font-size:14px;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px 10px;
	width:100px;
	background:#FFF;
	cursor:pointer;
	text-align:center;
	font-family:Arial;
	font-size:14px;
}
.dropdown li:hover{
	background-color:#8bbe8b;
	color:#FFF;
}

/* 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:#454547;
	width:100%;
}

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

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

/* these are the LIs that contains a submenu*/
/*
.dropdown li.submenu-down{
	background:#FFF url('expand_down.gif') center left no-repeat;
	padding-left:20px;
	width:99px;
}
.dropdown li.submenu-down:hover{
	background:#8bbe8b url('expand_down.gif') center left no-repeat;
	padding-left:20px;
	width:99px;
}
*/
.dropdown li.submenu-down{
	background:transparent;
	padding:10px;
	width:100px;
	padding:5px 10px;
	border-right:1px solid #8bbe8b;
	font-family:Arial;
	font-size:14px;
}
.dropdown li.submenu-down:hover{
	background:#8bbe8b;
	padding:5px 10px;
	width:100px;
	border-right:1px solid #FFF;
	font-family:Arial;
	font-size:14px;
}

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