
#wrap{
width:750px;
text-align:left;
margin:0px auto;
padding:0;
}
#menu {
position: relative;
}

#menu ul {
margin: 0;
padding: 0;
border: 0;
list-style-type: none;
}

#menu li {
margin: 0;
padding: 0;
border: 0;
display: block;
float: left;
position: relative;
}

#menu a {
display: block;
color: #000;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#menu li li ul {
top: 0;
left: 0;
}

/* ...and then place it where it should be when shown */
#menu li li:hover ul {
left: 100%;
}

/* initialy hide all sub menus */
#menu li ul {
display: none;
position: absolute;
z-index: 10;
top: 20px;
}

/* display them on hover */
#menu li:hover>ul {
display: block;
}

/* this is needed if you want to style #menu div - force containment of floated LIs inside of main UL */
#menuList:after {
content: ".";
height: 0;
display: block;
visibility: hidden;
overflow: hidden;
clear: both;
}

/* Clear-fix for IE5/Mac \*//*/
#menu a {
float: left;
}

#menuList {
display: inline-block;
}
/* */

/* ------ Make-up -------- */

#menu {
width: 750px;

}

#menu a {
text-decoration: none;
text-align: center;
}

#menu li {
margin: 1px;
padding: 1px;
width: 118px;
cursor:pointer;
}
#menu li li{margin:0 0 0 1px;}
#menu li.margine {
margin-left:7px;
margin-right:7px;
padding: 4px 10px;
font-weight:bold;
width: 88px
}
#menu li:hover {
background-color: #f90;

}

/* we can't use 100% because LIs have margin and padding (although latter is more important) */
#menu li li {
width: 146px;
border: 1px solid #f90;
margin-top:-1px;;
background: #FFD63A;
padding: 4px 5px 5px;
}

/* tendina per IE : il width è riferito alla larghezza della tendina */
* html #menu li ul {

width: 150px;
left:-1px;
}
* html #menu li ul.lunga {
color: #000;
width: 170px;
left:-1px;
}
* html #menu li ul.lunga2 {
color: #000;
width: 200px;
left:-1px;
}

/* tendina per firefox : il width è riferito alla larghezza della tendina */
#menu li ul {
color: #000;
left:-1px;
}

#menu li ul a {
text-align: left;
}


/* firefox : voci delle tendine */
#menu li ul li {
width:96px;
}

#menu li ul li a {

}

/* IE : voci delle tendine */
* html #menu li ul{
padding-left:1px;
}
* html #menu li ul li {
width: 96px;
margin-left:0
}

* html #menu li ul li a {
width: 96px;
}