body
{
   width: 760px;
   margin: auto; /* Pour centrer notre page */
   margin-top: 20px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
   margin-bottom: 20px;    /* Idem pour le bas du navigateur */
   background-image: url("images/fond.png"); /* Une petite image de fond pour éviter d'avoir un vieux fond blanc :p */
   background-repeat: no-repeat;
}

h1
{
   color: green;
   margin-left: 210px; /* Pour centrer notre page */
   margin-top: 40px; /* Pour ajuster la ligne de texte de l'entête en haut ! */
   margin-bottom: 40px;    /* Pour ajuster la ligne de texte de l'entête du bas ! */



   }
   
   
  
/* L'en-tête */

#en_tete
{
   width: 760px;
   height: 200px;  /* Pour ajuster la hauteur du carré jaune de l'entête */
   background-color: rgb(255,255,128);
   background-image: url("images/impot.jpg");
   background-repeat: no-repeat;
   margin-bottom: 10px;
   border: 2px solid black;
}

/* Le menu */

#menu
{
   float: left;
   width: 120px;
}

.element_menu
{
   background-color: rgb(255,255,128);
   background-image: url("images/motif.png");
   background-repeat: repeat-x;
   border: 2px solid black;
   
   margin-bottom: 20px;
}


/* Quelques effets sur les menus */


.element_menu h3
{    
   color: green;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
   text-align: center;
}

.element_menu ul
{
   list-style-image: url("images/puce.png");
   padding: 0px;
   padding-left: 20px;
   margin: 0px;
   margin-bottom: 5px;
}

.element_menu a
{
   color: green;
}

.element_menu a:hover
{
   background-color: #B3B3B3;
   color: black;
}


/* Le corps de la page */

#corps
{
   margin-left: 140px;
   margin-bottom: 20px;
   padding: 10px;
   text-indent: 30px; 
   text-align: justify;
   font-size: large;
   color: black;
   background-color: rgb(255,255,128);   /* la couleur de fond du grand carré */
   background-image: url("Images/");
   background-repeat: no-repeat;
   
   border: 2px solid black;
}

#corps h1
{
   color: blue;
   text-align: center;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
}

#corps h2
{
   height: 30px;
   background-image: url("images/titre.png");
   background-repeat: no-repeat;
   text-decoration: underline;
   padding-left: 1px;
   color: blue;
   text-align: center;
}


/* Le pied de page (qui se trouve tout en bas, en général pour les copyrights) */

#pied_de_page
{
   padding: 5px;

   text-align: center;

   color: blue;
   background-color: rgb(255,255,128);
   background-image: url("images/motif.png");
   background-repeat: repeat-x;
   
   border: 2px solid black;
}

