/* Paolo Veronica | www.ektor.net | Ultima modifica 04.07.2007 */

.menu {
width:915px; 
height:33px;
position:relative;
background:transparent url(../immagini/bg_menu.gif) top left no-repeat;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu-nav ul {
padding:0;
margin:0;
margin-left:15px;
list-style-type:none;
font-size:0.85em;
}
.menu-nav ul ul {
width:150px;
margin:0;
font-size:1em;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu-nav li {
position:relative;
float:left;
/*width:150px;*/
}

/* style the links for the top level */
.menu-nav a, .menu-nav a:visited {
display:block;
text-decoration:none; 
color:#fff; 
/*width:139px; */
height:35px; 
padding-right:15px; 
line-height:29px;
font-weight:bold;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu-nav a, * html .menu-nav a:visited {
float:left;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu-nav ul ul a, * html .menu-nav ul ul a:visited {
display:block;
width:150px; /*all IE version*/
w\idth:139px; /*hidden from IE5.x/Win - OK for IE5/Mac and IE6/Win*/
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu-nav ul ul {
visibility:hidden;
position:absolute;
height:0;
top:31px;
left:0; 
width:150px;
}
/* another hack for IE5.5 */
* html .menu-nav ul ul {
top:30px;
t\op:31px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu-nav table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu-nav ul ul a, .menu-nav ul ul a:visited {
background:#eee; 
font-weight:normal;
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px;
width:129px;
border:solid #7c7c7c;
border-width:0 1px 1px 1px;

/* yet another hack for IE5.5 */
}
* html .menu-nav ul ul a{
width:150px;
w\idth:129px;
}

.menu-nav ul ul a.a_parent,
.menu-nav ul ul a.a_parent:visited {
  border-bottom:0;
  font-weight: bold;
}
/* style the second level links */
#menu-nav-sub {
  border-bottom:1px solid #7c7c7c;
}

#menu-nav-sub a {
  padding-top:3px;
  padding-left:15px;
  padding-bottom:3px;
  border-bottom:0;
  font-size: 0.9em;
  width:124px;
}
* html #menu-nav-sub a{
width:145px;
w\idth:124px;
}


/* style the top level hover */
.menu-nav a:hover{
color:#eee; 
background:transparent;
text-decoration:underline;
}

.menu-nav ul ul a:hover{background:#ef7700;color:#FFF;}

/*.menu-nav :hover > a{
color:#eee; 
background:transparent;
text-decoration:underline;
}*/
/*.menu-nav ul ul :hover > a{background:#ef7700;color:#FFF;} /*no IE*/

/* make the second level visible when hover on first level list OR link */
.menu-nav ul li:hover ul, .menu-nav ul a:hover ul{visibility:visible;}
