/*this is the css for the vertical version*/
.vertical ul{
	padding: 0;
	margin: 0;
	position: relative;
	list-style-type: none;
}
.vertical li{
	position: relative;
} 
.vertical li a{
	display: block;
	width: 160px;
	\width: 190px;
	w\idth: 160px;
	padding-left: 20px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.vertical li ul {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #C8C099;

	position: absolute;
	top: -1px;
	left: 190px;
} 
.vertical.left ul ul ul,.vertical .left ul{
	left: -190px;
}
.vertical li:first-child>a{

}
.vertical a.first{

}






/*colors for menu*/
.ambra li a{
	background-image: url(../images/menu_separatore.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	color: #5D562C;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-size: 11px;
}
.ambra li{
	background-image: url(../images/menu_dot.gif);
	background-repeat: no-repeat;
	background-position: 10px center;
	background-color: #E5DEB4;
}
.ambra  li a:hover {
	color: white;
	background-image: url(../images/menu_bg.jpg);
	background-repeat: repeat-y;
	background-position: left;
}
.ambra  li:first-child>a:hover{
}
.ambra  ul{
	border-color: black;
}
		/*here we use a little CSS to make a basic/backup dropdown menu in modern browsers *cough* not IE6 or less *cough* if javascript is disabled.Flickering never happens in these browsers*/
		.mlmenu li ul{
			display: none;
		}
		.mlmenu li:hover>ul{
			display: block;
		}
		/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
		.accessible li ul{
			display: block;
		}
		/*Code to show an element has a child*/
		.mlmenu.plus li a:first-child:not(:last-child):after{
			content: '+';
		}
		.plus a span{
			padding-left: .5em;
		}
		.noshow{
			visibility: hidden;
		}