body {
   width: 1000px;
   margin: auto; /* Pour centrer notre page */
   margin-top: 5px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
   margin-bottom: 5px;    /* Idem pour le bas du navigateur */
   font-family: sans-serif; 
   font-size: 100%;
   background-color: rgb(20,40,60);
}

#en_tete
{
   width: 1000px;
   height: 94px;
   color: yellow;
   background-image: url("images/bandeau2.jpg");
   border: 1px solid silver;
   margin-bottom: 5px;
}

#menu
{
   float: left; /* Le menu flottera à gauche */
   width: 175px; /* Très important : donner une taille au menu */
}

.element_menu
{
   font-size: 90%;
   padding: 2px;
   color: rgb(20,40,60);
   background-color: silver;
/*   border: 1px solid silver;*/
   margin-bottom: 5px; /* Pour éviter que les éléments du menu ne soient trop collés */
}

#corps
{
   margin-left: 0px; /* Une marge à gauche pour pousser le corps, afin qu'il ne passe plus sous le menu */
   margin-bottom: 5px; /* Ca c'est pour éviter que le corps colle trop au pied de page en-dessous */
   padding: 5px; /* Pour éviter que le texte à l'intérieur du corps ne colle trop à la bordure */
   color: silver;
   background-color: rgb(20,40,60);
}

#pied_de_page
{
   height: 94px;
   clear: both;
   color: yellow;
   border: 1px solid silver;
   background-image: url("images/bandeau2.jpg");
}

a
{
/*   text-decoration: none; /* Les liens ne seront plus soulignés */
   color: navy;
   background-color: silver;
}
a:hover /* Quand le visiteur pointe sur le lien */
{
   color: red; /* Le lien sera écrit en rouge quand on pointera dessus */
}

p {
  margin: 3px;
  padding: 3px;
  text-align: justify;
  font-family: Arial,sans-serif; 
  font-size: 100%;
}
h1 {
  margin: 3px;
  padding: 3px;
  text-align: center;
  font-family: Arial,sans-serif; 
  font-size: 200%;
  font-weight: bold;
}
h2 {
  margin: 3px;
  padding: 3px;
  text-align: center;
  font-family: Arial,sans-serif; 
  font-size: 150%;
  font-weight: bold;
}
h3 {
  margin: 3px;
  padding: 3px;
  font-family: Arial,sans-serif; 
  font-size: 120%;
  font-weight: bold;
  text-decoration: underline;
}
h4 {
  margin: 3px;
  padding: 3px;
  text-align: center;
  font-family: Arial,sans-serif; 
  font-size: 100%;
  font-weight: normal;
}
h5 {
  margin: 3px;
  padding: 3px;
  font-family: Arial,sans-serif; 
  font-size: 80%;
  font-weight: normal;
}
h6 {
  margin: 3px;
  padding: 3px;
  text-align: center;
  font-family: Arial,sans-serif; 
  font-size: 80%;
  font-weight: normal;
}

