/* Licence Publique Générale GNU (GNU General Publique License), Copyright 2005-2008 Geffrotin Yann */

#menu {
  position: fixed;
  left: 10px;
  top:50px;

  width:97.62%;
  overflow:auto; /* ascenseur */
  margin:0px auto;
  padding-left:10px;
}

#menu dl {
  float: left;
  width: 14%;
  margin: 1px; /* espacement entre les boutons */
}

#menu dl dt { /* ex: banque, paiement */
  /* note : menu principal #A2B5CD */
  border: 1px solid  #050505; /* black-grey #7F7F7F*/
}

#menu dl dt a { /* liens hypertextes : menu principaux */
  background: #9BCD9B; /* darkseagreen 3 */ 
  color: black;
  text-decoration: none;
  display: block;
  height: 100%;
  border: 0 none;
}

#menu dd { /* tout ce qui est en desous du bouton */
  border: 1px solid black;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#menu ul { /* toute la liste */
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#menu ul li { /* un point de la liste : un sous menu */
  list-style-type: none;
}

#menu ul li a{ /* liens hypertextes : sous menus */
  background: #F5F5F5;
  color: black;
  text-decoration: none;
  display: block;
  height: 100%;
  border: 0 none;
}

#menu li a:hover, #menu dl dt a:hover { /* quand souris au dessus #B0C4DE*/
  background: #8FBC8F ;
  color: black;
  text-decoration: underline ;
}

/* menus dépliants en css */

a span{ /* position de départ */
  display: none; /* caché */
}

a:hover span{ /* position d'arrivée */
  display: block;
}
