body
{
   width: 1000px; /* Largeur */ 
   margin: auto;
   margin-top: 15px; /* Marge du haut */
   margin-bottom: 20px; /* Marge du bas  */
   background-image: url("images/fond.png"); /* Fond du Site  */
   background-color: #00A6EA; /* couleur fond de la fenetre  */
   background-attachment: scroll; /* fixed ou sroll */
   background-repeat: repeat-y; /* no-repeat, repeat-x (horizontal), repeat-y (vertical),repeat */
   background-position: top left; /* Le fond est aligné en haut à gauche */
   
}

/* L'en-tête */

#left
{
   width: 480px;
   height: 280px;
   background-image: url("images/mli.png");
   background-repeat: no-repeat;
   margin-bottom: 15px;
   margin-left: 0px;
   
}

#right
{
   width: 480px;
   height: 280px;
   background-image: url("images/caribook.png");
   background-repeat: no-repeat;
   margin-bottom: 15px;
   margin-left: 0px;
   
}


/* Le corps de la page */

#corps
{
   width: 510px;
   height:575px;
   margin-bottom: 20px;
   padding: 0px;
   margin-left: 500px;
   color: #FFFFFF;
   background-color: #EF7800;
   background-image: url("images/motif.png");
   background-repeat: repeat-x;
   
   border: 2px solid black;
}

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

#corps h2
{
   font-size: 14px; 
   padding-left: 15px;
   color: #FFFFFF;
   text-align: left;
}

#corps h3
{
   height: 15px;
   padding-left: 30px;
   color: #00A6EA;
   text-align: left;
}

#corps h4
{
   height: 30px;
   font-family: Arial, serif;
   font-size: 14px; /* Tailles des paragrahes  */
   text-indent: 30px; /* Les paragraphes commenceront 30 pixels sur la droite */
   background-image: url("ici");
   background-repeat: no-repeat;
   padding-left: 30px;
   color: #FFFFFF;
   text-align: left;
}

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

#pied_de_page
{
   padding: 2px;
   width: 1004px;
   text-align: center;

   color: white;
   background-color: black;
   /*background-image: url("images/motif.png");
   background-repeat: repeat-x;*/
   
   border: 2px solid #EF7800;
}


/* LES LIENS */

a:hover /* Quand le visiteur pointe sur le lien */
{
   color: #00A6EA;
}

a:visited /* Quand le visiteur a déjà vu la page concernée */
{
   text-decoration: italic;
   color: white;
}

a /* Lien normal */
{
   color: white;
}