/* test CSS design.css*/
body
{
   width: 900px;
   margin: auto;
   margin-top: 20px;
   margin-bottom: 20px;    
   background-image: url("http://franco.marasco.free.fr/fond.jpg");
}

/* L'en-tête */

#en_tete
{
   margin-left: auto;
   width: 900px;
   height: 125px;
   background-image: 
   background-repeat: no-repeat;
   margin-bottom: 10px;
   
}

/* Le menu */

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

.element_menu
{
   background-color: maroon;
   background-image: url("images/motif.png");
   background-repeat: repeat-x;
   
   border: 2px solid green;
   
   margin-bottom: 20px;
}


/* Quelques effets sur les menus */


.element_menu h3
{    
   color: #B3B3B3;
   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: #B3B3B3;
}

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


/* Le corps de la page */

#corps
{
   margin-left: 140px; /* Une marge Ã  gauche pour pousser le corps, afin qu'il ne passe plus sous le menu */
   margin-bottom: 20px; /* 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: #B3B3B3;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
   background-color: url("http://franco.marasco.free.fr/fond.jpg");
   background-image: url("http://franco.marasco.free.fr/fond.jpg");
   background-repeat: repeat-x; /* Une petite image de fond qui se rÃ©pÃ¨tera horizontalement en haut */
   text-align: justify;
   border: 2px solid green; /* Une bordure pour bien marquer les limites du corps et pour faire joli */
   height: 525px;
}



/* Le pied de page */

#pied_de_page
{
   margin-left: 278px;
   width: 900px;
   height: 100px;
   background-image: 
   background-repeat: no-repeat;
   margin-bottom: 10px;
}

/* mention legale */
#mention_legale
{
   margin-left: 140px;
   text-align: center;
   color: yellow;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
   width: 780px;
   margin-bottom: 10px;
}

