/* Corps de la page */
body
{
	width: 500px;
	margin: none; 
	font-family : comic sans ms, serif ;
	background-color : seashell ;
	color : darkblue ;
}

/* Titres */
h1, h2
{
	color : crimson ;
	text-align : center ;
}

h3
{
	color : darkblue ;
	text-decoration : underline ;
	text-align : center ;
}

h4, h5
{
	text-indent : 10px ;
}

h6
{
	text-indent : 10px ;
	text-align : center ;
}

/* class */
.titre
{
	font-size: 100%;
	font-weight: bold;
	width: 500px;
}
.detail
{
	font-size: 80%;
	font-weight: normal;
	list-style-type : none;
	text-align : left ;
	width: 150px;
}
.compteur
{
	font-size : xx-small ;
	color : rgb(141, 148, 166);
	border: 2px ridge ;
}
{
	color : rgb(90, 90, 90) ;
	font-size : x-small ;
}

.bienvenue
{
	font-size : 70%;
}
	
/* Identificateurs */
#image
{
	text-align : center ;
}


#menu
{
	text-align : left ;
	border : 1px solid black ;
	font-size: small ;   
	float: left; /* Le menu flottera  gauche */
	width: 130px; /* Trs important : donner une taille au menu */
	padding: 5px ;
	margin: 0px ;
}
#menu ul
{
	padding: 0px ;
	margin : 0px ;
	list-style-type: none ;
	color: rgb(74,103,220) ;
}
#menu a
{
	color: rgb(0, 0, 119) ;
	text-decoration : none ;
}
#menu a:hover	
{
	text-decoration: underline ;
}

#entete
{
	/* width: 760px;
	height: 120px;
	background-image: url("logo3c.jpg");
	background-repeat:no-repeat;
	margin-bottom: 10px; */

}

#pied_de_page
{
	font-size: x-small ;
	color : rgb(90, 90, 90) ;
	text-align: center;
	margin-top: 10px;
	padding: 0px;
	border : 1px solid black ;
	
}


#corps
{
	color : darkblue ;
	text-align : left ;
	margin-left: 160px ;
	border : no border ;
	padding-left: 10px ;
}

/* Paragraphes */
p
{
	text-indent : 0px ;
	font-size : 90% ;
}

/* Liens */
a:link
{
	color : blue;
	text-decoration : none ;
}

a:visited
{
	color : blue ;
	text-decoration : none ;
}

a:hover
{
	color: pink ;
	text-decoration: underline ;
}

/* Tableaux */
caption
{
	margin: auto ;
	font-family: Arial, Times, "Times New Roman", serif;
	font-weight: bold;
	font-size: 150%;
	color: black;
	text-align: left;
	margin-bottom: 20px; /* Pour viter que le titre ne soit trop collé au tableau en-dessous */
}
table /* Le tableau en lui-mme */
{
   margin: auto; /* Centre le tableau */
   border: no border; /* Bordure du tableau avec effet 3D (outset) */
   border-collapse: collapse; /* Colle les bordures entre elles */
}

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

td /* Les cellules normales */
{
   border: no border;
   font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
   text-align: center; /* Tous les textes des cellules seront centrs*/
   padding: 5px; /* Petite marge intrieure aux cellules pour viter que le texte touche les bordures */
   font-size: 100% ;
}
