/* CSS Document */
body
{
   width: 95%;
   margin: auto;
   margin-top: 20px;
   margin-bottom: 20px;   
   background-image: url("images/fond.png");
   background-attachment: fixed; /* Le fond restera fixe */
   background-repeat: repeat-x;
   background-color:#e8f0f4;
}

/* L'en-tête */

#top
{
   width: 95%;
   height: 100px;
   background-image: url("images/maintenance.png");
   background-repeat: no-repeat;
   background-position: center;
   margin-bottom: 10px;
}

/* Le menu */

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

.element_menu
{
   background-color: #f5f5ff;
   background-image: url("images/cellpic1.gif");
   background-repeat: repeat-x;
   
   border: 1px solid black;
   
   margin-bottom: 20px;
   padding-top: 20px;
}


/* Quelques effets sur les menus */


.element_menu h3 /* Tous les titres de menus */
{   
   color: black;
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
   text-align: center;
}

.element_menu ul /* Toutes les listes à puces se trouvant dans un menu */
{
   list-style-image: url("images/puce.gif"); /* On change l'apparence des puces */
   padding: 0px; /* Tous les côtés ont une marge intérieure de 0 pixels */
   padding-left: 30px; /* ... mais on modifie ensuite la marge de gauche, donc celle-là fera finalement 20 pixels */
   margin: 0px; /* Idem pour margin, ça nous évite d'avoir à en écrire 4 (margin-left, margin-right...) */
   margin-bottom: 5px; /* Même chose que tout à l'heure, on modifie ensuite juste margin-bottom, mais tous les autres sont à 0px */
}

.element_menu a /* Tous les liens se trouvant dans un menu */
{
   color: black;
   text-decoration: none;
}

.element_menu a:hover /* Quand on pointe sur un lien du menu */
{
   
   color: red;
}
/* Le corps de la page */

#corps
{
   text-align: center;
   margin-left: 150px;
   margin-bottom: 20px;
   padding: 5px;
   padding-top: 10px;
   
   color: black;
   background-color: white;
   background-image: url("images/cellpic1.gif");
   background-repeat: repeat-x;
   
   border: 1px solid black;
}

#corps_principal
{
  
   margin-bottom: 20px;
   padding: 5px;
   padding-top: 10px;
   padding-left: 10px;
   
   color: black;
   background-color: white;
   background-image: url("images/cellpic1.gif");
   background-repeat: repeat-x;
   
   border: 1px solid black;
   list-style-image: url("images/puce.gif"); /* On change l'apparence des puces */
}

#corps h1
{
   color: #B3B3B3;
   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;
   
   padding-left: 30px;
   color: #B3B3B3;
   text-align: left;
}
#corps ul /* Toutes les listes à puces se trouvant dans un menu */
{
   text-align: left;
   list-style-image: url("images/puce.gif"); /* On change l'apparence des puces */
  
}

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

#down
{
  margin-left: 150px;
   padding: 10px;

   text-align: center;

   color: #B3B3B3;
   background-color: white;
   background-image: url("images/cellpic1.gif");
   background-repeat: repeat-x;
   
   border: 1px solid black;
}
#down_index
{

   padding: 10px;

   text-align: center;

   color: #B3B3B3;
   background-color: white;
   background-image: url("images/cellpic1.gif");
   background-repeat: repeat-x;
   
   border: 1px solid black;
}