#menu1 {
  padding:0 0 0 0;
  margin:0;
  list-style:none;
  Font-family:SANS-SERIF;
  Font-size:15px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  line-height:15px;
  height: 280px;
  width: 160px;
  background-color: #fff;
  position:relative;
}

/* Link styles*/

#menu1 a {
  float:none;
  font-family: SANS-SERIF;
  text-decoration: none;
  text-align: left;
  color: #0055a5;
  font-weight: bold;
  font-size: 15px;
  vertical-align: middle;
  height: 25px;
  width: 160px;
  white-space:nowrap;
}

#menu1 a:hover {
  Font-family:SANS-SERIF;
  Font-size:15px;
  font-weight: bold;
  line-height:15px;
  color: #0055a5;
  height: 25px;
  width: 160px;
  white-space:normal;
}

/* Hide bullets in unordered list*/
#menu1 ul {
  list-style-type: none;
  Font-family:SANS-SERIF;
  Font-size:15px;
  font-weight: bold;
  vertical-align: middle;
  line-height:15px;
  height: 25px;
  margin: 0;
  padding: 0;
}

/* Set li styles*/

#menu1 li {
  Font-family:SANS-SERIF;
  Font-size:15px;
  Font-weight: bold;
  vertical-align: bottom;
  border: 0px;
  color: #0055a5;
  height: 25px;
  width: 160px;
  white-space:nowrap;
  /* this is to make the submenus position relative to this li */
  position: relative;
  background: url(Images/Bullet01MenuVerticale.jpg);
  background-repeat: no-repeat;
  background-position: left top;
}

#menu1 li li {
  float:none;
  Font-family:SANS-SERIF;
  Font-size:15px;
  Font-weight: bold;
  color: #0055a5;
  height: 25px;
  width: 160px;
  border:1px solid #000;
  border-color:#f4a62b;
  border-width: 0px 0px 0px 0px;
  border-bottom-width:0px;
  white-space:normal;
  background: none;
  background-color: #fff;
  }
/* a hack for IE5.x and IE6 */
* html #nav li li {float:left; border-bottom-width:2px;}

#menu1 li li a {
  float:none; 
  Font-family:SANS-SERIF;
  Font-size:15px;
  Font-weight: bold;
  color: #0055a5;
  height: 25px;
  width: 160px;
  border:1px solid #000;
  border-color:#f4a62b;
  border-width: 0px 0px 0px 0px;
  border-bottom-width:0px;
  white-space:normal;
  background: none;
  }

/* Mouseover li style*/
#menu1 li:hover {
  Font-family:SANS-SERIF;
  Font-size:15px;
  Font-weight: BOLD;
  border: 0px;
  color: #0055a5;
  height: 25px;
  width: 160px;
  background: url(Images/Bullet01MenuVerticaleHover.jpg);
  background-repeat: no-repeat;
  background-position: left top;
}

#menu1 li:hover li {
  float:none; 
  Font-family:SANS-SERIF;
  Font-size:15px;
  Font-weight: bold;
  color: #0055a5;
  line-height:15px;
  height: 30px;
  width: 160px;
  border:1px solid #000;
  border-color:#f4a62b;
  border-width: 0px 0px 2px 0px;
  background: none;
  white-space:normal;
}

/*Initially hide second level (or higher) pop-up*/
#menu1 ul ul {
  position: relative;
  top:-15px;
  left: 160px;
  visibility: hidden;
}

/*Mouseover: display second level (or higher) pop-up*/
#menu1 li:hover > ul {
  visibility: visible;
}



