#menu_bar {
	width: 688px;
	height: 30px;
	background-image: url(image/bg_menu.gif);
	background-repeat: repeat-x;
	margin-bottom: 25px;
}
/* style the outer div to give it width */
.menu {
	font-size: 10px;
	padding-bottom: 35px;
	font-weight: bold;
	background-image: url(image/bg_menu.gif);
	background-repeat: repeat-x;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	height: 20px;
}

/* dimensione sotto menu */
.menu ul ul {
	width: 190px;
}

/* menu principale */
.menu ul li {
	float: left;
	height: 30px;
	line-height: 20px;
	padding-right: 25px;
}

/* STILE SOTTO MENU */
.menu ul ul li {
	display: block;
	width: 190px;
	height: 30px;
	line-height: 20px;
	background-image: url(image/bg_menu.gif);
	background-repeat: repeat-x;
	border-left: 2px solid #9AA9DA;
	border-right: 1px solid #9AA9DA;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	float: left;
	height: 30px;
	font-size: 10px;
	text-decoration: none;
	padding: 0 0 0 10px;
}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {
	display: block;
	width: 190px;
	height: 20px;
	line-height: 20px;
	padding: 8px 0 0 8px;
}
* html .menu ul ul a, * html .menu ul ul a:visited  {width:14em; w\idth:190px;}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; left:1px; top:0; width:0; height:0; font-size:1em; z-index:1;}


/* style the level hovers */
/* first */
* html .menu a:hover {
	position: relative;
	z-index: 100;
}
.menu li:hover {position:relative;}
/* MENU PRINCIPALE HOVER*/	
.menu :hover > a {
	text-decoration: underline;
}

.menu ul ul li:hover {position:relative;}


/* SOTTO MENU HOVER */
.menu ul ul :hover > a {
   text-decoration: underline;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:20px;left:0;width:190px;}


/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{visibility:visible; height:auto; padding-bottom:3em; background:transparent url(images/trans.gif);}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}

