/* MENU N°1 */
/*
.menutop {
  padding:0; 
  margin:0; 
  list-style-type:none;
  white-space:nowrap;
  }
.menutop li {
  float:left;
  min-width:100px;
  }
.menutop a {
  position:relative;
  display:block; 
  text-decoration:none; 
  min-width:100px; 
  float:left; 
  }
* html .menutop a {
  width:100px;
  }
.menutop a span {
  display:block; 
  color:#000; 
  background:#c4c4c4; 
  border:1px solid #fff; 
  border-width:2px 1px; 
  text-align:center; 
  padding:4px 16px; 
  cursor:pointer;
  }
* html .menutop a span {
  width:100px; 
  cursor:hand; 
  w\idth:66px;
  }
.menutop a b {
  display:block; 
  border-bottom:2px solid #06a;
  }
.menutop a em {
  display:none;
  }
.menutop a:hover {
  background:#fff;
  }
.menutop a:hover span {
  color:#fff; 
  background:#08c;
  }
.menutop a:hover em {
  display:block; 
  overflow:hidden; 
  border:6px solid #06a; 
  border-color:#06a #fff; 
  border-width:6px 6px 0 6px; 
  position:absolute; 
  left:50%; 
  margin-left:-6px;
  }
*/
/* MENU N°2 */

/* adding the active/focus state */
#navlist {
  list-style-type:none;
  padding:0;
  width:52em;
  height:0.5em;
  margin:0 auto;
  }
#navlist li {
  display:block;
  width:5.5em;
  height:1em;
  float:left;
  margin-right:0.2em;
  }
#navlist a {
  display:block;
  width:7.45em;
  height:1em;
  position:relative;
  text-decoration:none;
  }
#navlist a em {
  display:block;
  font-style:normal;
  font: bold 1em "Geneva", Verdana, Arial, sans-serif;
  width:7.45em;
  height:1em;
  color:#fff;
  border-bottom:0.25em solid #c00;
  position:absolute;
  top:0;
  left:0;
  cursor:pointer;
  padding-bottom:2px;
  }
#navlist a:hover {
  color:#c00;
  }
#navlist a:hover em {
  border-bottom:0.25em solid #f03;
  color:#ff0;
  }
#navlist a:active, #navlist a:focus {
  width:0;
  height:0;
  outline:0; /* for browsers that understand */
  }

#navlist a:active em, #navlist a:focus em {

  /* change the em bottom border and text to red on
  active/focus thus giving a suitable alternative to
  the dotted border */
  border-bottom:0.25em solid #ffc;
  color:#ffc;
  outline:0; /* for browsers that understand */
  }
