body
{
   width: 760px;
   margin: auto; /* Pour centrer notre page */
   margin-top: 5px;
   margin-bottom: 20px;    /* Idem pour le bas du navigateur */
   background-image: url("images/fond.jpg"); /* Une petite image de fond pour éviter d'avoir un vieux fond blanc */
   background-attachment: fixed; /* Le fond restera fixe */
   background-repeat: no-repeat; /*le fond ne se repete pas*/
   background-position : center; /*le fond sera centre*/
}

p
{
	font-family: Postit-Penscript, Comic Sans MS, verdana, Arial, Arial Black, Times New Roman, Serif;
	font-size: 14px;
}

/* L'en-tête */
#en_tete
{
   width: 760px;
   height: 305px;
   background-image: url("images/header.jpg");
   background-repeat: no-repeat;
   margin-bottom: 10px;
}

#menu
{
   float: center; /* Le menu flottera au centre */
   width: 300px; /* Très important : donner une taille au menu */
}

.element_menu
{
   background-color: black;
   background-repeat: repeat-x;
   font-family: Postit-Penscript, Comic Sans MS, verdana, Arial, Arial Black, Times New Roman, Serif;
   border: 2px solid black;   
   margin-bottom: 20px; /* Pour éviter que les éléments du menu ne soient trop collés */
}

/* Quelques effets sur les menus */


.element_menu h3
{    
   color: #D29C37;
   font-family: Postit-Penscript, Comic Sans MS, verdana, Arial, Arial Black, Times New Roman, 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: #B3B3B3;
   font-family: Postit-Penscript, Comic Sans MS, verdana, Arial, Arial Black, Times New Roman, Serif;
}

.element_menu a:hover
{
   background-color: #B3B3B3;
   color: black;
   font-family: Postit-Penscript, Comic Sans MS, verdana, Arial, Arial Black, Times New Roman, Serif;
}


/* Le corps de la page */

#corps
{
   margin: auto;
   padding: 5px;   
   border: 2px solid black;
   text-align: justify;
}

#corps h1
{
   color: #D29C37;
   text-align: center;
   font-family: Postit-Penscript, Comic Sans MS, verdana, Arial, Arial Black, Times New Roman, Serif;
}

#corps h2
{
   color: #D29C37;
   height: 30px;      
   text-align: center;
   font-family: Postit-Penscript, Comic Sans MS, verdana, Arial, Arial Black, Times New Roman, Serif;

}


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

#pied_de_page
{
   margin: auto;
   padding: 5px;
   text-align: center;
   margin-bottom: 20px;
   font-style: italic;
   font-weight: bold;
}

