/* All <ul> tags in the menu including the first level */
.menulistVertical, .menulistVertical ul {
	padding: 3px;
	list-style: none;
	background-color: #FFFFFF; /*sfondo campi*/
	display: block;
	margin: 0;
	border: 0px solid #0D2F6F;
	list-style: none;
	width: 180px;
	font-size:10px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulistVertical ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 180px;
 list-style: none;
 width: 180px;
 font-size:10px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulistVertical li {
 position: relative;
 list-style: none;
 border: 0px solid #0D2F6F;
 padding-bottom: 0px;
 font-size:10px;
 background-color: #ffffff; /*sfondo campi*/
 margin: 2px;
}

/* Links inside the menu */
.menulistVertical a {
 	color: #000000;
 	background-color: transparent;
 	display: block;
 	margin: 0;
 	padding: 2px;
 	border-left: 1px solid #0D2F6F;
  	border-bottom: 1px solid #0D2F6F;
 	text-decoration: none;
 	font-size:10px;
}

.menulistVertical a:hover, .menulistVertical a.highlighted:hover, .menulistVertical a:focus {
	color: #0D2F6F;
	background-color: #D6D6D6;
	display: block;
	margin: 0;
	padding: 2px;
	border-left: 1px solid #0D2F6F;
  	border-bottom: 1px solid #0D2F6F;
	text-decoration: none;
	font-size:10px;
}

.menulistVertical a.highlighted {
	color: #0D2F6F;
	background-color: #D6D6D6;
	border-left: 1px solid #0D2F6F;
  	border-bottom: 1px solid #0D2F6F;
	margin: 0;
	font-size:10px;
}



/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulistVertical a .subind {
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulistVertical li {
 float: left;
 height: 1%;
}
* html .menulistVertical a {
 height: 1%;
}
/* End Hack */

.menulistVertical img{
	vertical-align: middle;
}
