﻿

caption /* Titre du tableau */
{
   
   margin: auto; /* Centre le titre du tableau */
   font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
   font-weight: bold;
   font-size: 1em;
   color: #006600;
   margin-bottom: 10px; /* Pour éviter que le titre ne soit trop collé au tableau en-dessous */
  
}

th /* Les cellules d'en-tête */
{
   background-color: #006600;
   border: 4px outset green;
   color: white;
   font-size: 0.8em;
   font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
}

td /* Les cellules normales */
{
    text-align:center;
	font-size: 0.8em;
	font-weight: bold;
	/*background-color : #99FF99; */
	padding: 4px;
	border:0px 
    /*border: 1px solid black;*/
    font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
	
   }
#tableau1
{
    margin-top:10px;
	text-align:center;
	font-size: 0.8em;
	font-weight: bold;
	background-color : #99FF99; 
	padding: 4px;
   /* border: 1px solid black ;*/
    font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
	border: 2px outset green; /* Bordure du tableau avec effet 3D (outset) */
    border-collapse: collapse; /* Colle les bordures entre elles */
}
#pied
{
    font-size:0.6em; 
	text-align:center;
	color : green;
   	font-weight: normal;
	background-color : #FBFBFA; 
	border: none ;
	padding: 4px;
    font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
}