/*
index.css
---------

Par Sonia
Fichier créé le 25/04/07
*/

body
{
   
   width: 1060px;
   margin: auto;
   margin-top: 20px;
   margin-bottom: 20px;   
   background-image: url("test.jpg");
   color: yellow;
   text-align: center;
}

/* L'en-tête */

#en_tete
{
   width: 760px;
   height: 100px;
   background-image: url(".png");
   background-repeat: no-repeat;
   margin-bottom: 10px;
}


/* Le menu */

#menu
{
   float: left;
   width: 190px;

}

.element_menu
{
   background-color: yellow;
   background-image: url("testournesol.png");
   background-repeat: repeat-x;
   border: 5px solid black;
   margin-bottom:30px;
   text-align: center;
}


/* Quelques effets sur les menus */


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

.element_menu ul
{
   list-style-image: url("images/puce.png");
   padding: 15px;
   padding-left: 10px;
   margin: 15px;
   margin-bottom: 10px;
   text-align: center;
   color: green;
}

.element_menu a
{
   color: black;
    font-size: 20px;
}

.element_menu a:hover
{
   background-color: rgb(130,248,12);
   color: black;
  
}


/* Le corps de la page */

#corps
{
   margin-left: 240px;
   margin-bottom: 20px;
   padding: 5px;
   text-align: center;
   color:black;
   background-color: rgb(255,255,74);
   background-repeat: repeat-x;
   
   border: 2px solid black;
}


#corps h1
{
   height: 30px;
   color: black;
   text-align: rgb(0,255,58);
   font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
}

#corps h2
{

   height: 60px;
   padding-left: 60px;
   color: green;
   text-align: center;
   font-family: "arial black",arial,verdana,serif;
   
    
}

#corps h3
{
   height: 20px;

   font-weight: bold;
   padding-left: 30px;
   color: rgb(0,255,0);
   text-align: center;
  } 
  
#corps h4
{
   height: 20px;

   font-weight: bold;
   padding-left: 30px;
   color: red;
   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;
margin-left: 240px;
   margin-bottom: 20px;
   text-align: center;

   color:black;
   background-color: rgb(130,248,12);
   background-image: url("images/motif.png");
   background-repeat: repeat-x;
   
   border: 2px solid black;
   
   
   td /* Toutes les cellules des tableaux... */
{
   border: 1px solid black; /* ... auront une bordure de 1px */
}
   
   
   
   
   
}
   

   
   
   
 caption /* Titre du tableau */
{
   margin: auto; /* Centre le titre du tableau */
   font-family: Arial, Times, "Times New Roman", serif;
   font-weight: bold;
   font-size: 1.2em;
   color: orange;
   margin-bottom: 20px; /* Pour éviter que le titre ne soit trop collé au tableau en-dessous */
}


table /* Le tableau en lui-même */
{
   margin: 20px; /* Centre le tableau */
   border: 4px outset red; /* Bordure du tableau avec effet 3D (outset) */
   border-collapse: collapse; /* Colle les bordures entre elles */
}

th /* Les cellules d'en-tête */
{
   background-color: #006600;
   color: white;
   font-size: 1.1em;
   font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
   text-decoration: underline;
   }

td /* Les cellules normales */
{
   border: 1px solid black;
   font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
   text-align: center; /* Tous les textes des cellules seront centrés*/
   padding: 5px; /* Petite marge intérieure aux cellules pour éviter que le texte touche les bordures */
   text-decoration: underline;
   }
   


