/*----------------------------------------------------------------------*/
/*			DECORATION DE LA PAGE 										*/
/*----------------------------------------------------------------------*/
body
{
	width: 800px;
	margin: auto; 					/* Pour centrer la page */
	margin-top: 10px; 				/* Pour éviter de coller avec le haut de la fenêtre du navigateur */
	margin-bottom: 10px;    			/* Idem pour le bas du navigateur */
	background-image: url("../css/images/back.jpg");
	background-repeat: repeat;
	background-position: top left; 
	background-attachment: fixed; 

}
#en_tete
{
	width: 800px;
	height: 120px;
	background-image: url("../css/images/back1.jpg");
	border: 0px outset green;
	background-repeat: no-repeat;
	background-position: top left;
	margin-bottom: 10px;
}

#pied_de_page
{
	width: 1022px;
   	height: 20px;
   	margin: auto; 				/* Pour centrer la page */
	background-image: url("../css/images/back.jpg");
	border: 1px outset green;
   	background-repeat: no-repeat;
	background-position: center;
   	margin-bottom: 10px;
 }

/*----------------------------------------------------------------------*/
/*			DECORATION DES TABLEAUX 									*/
/*----------------------------------------------------------------------*/
table 		/* Le tableau en lui-même */
{
	margin: auto; 					/* Centre le tableau */
	border: 0px 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: #3a3a3a;
	color: #33FF33;
	border: 0px solid yellow;
	font-size: 100%;
	font-style: italic;
	font-family: "Comic Sans MS", Helvetica, Arial, sans-serif;
	text-align: left; 			/* Tous les titres sont alignés à gauche */
	padding: 5px
}

td		/* Les cellules normales */
{
	/* background-image: url("../images/objets/bg1.png"); */
	background-repeat: repeat;
	color: #EFEFAA;
	height: 15px;
	border: 0px solid yellow;			/* Bordures des cellules */
	vertical-align: top; 			/* Alignement vertical, le contenu des cellules sera placé en haut */
	font-size: 90%;
	font-family: Helvetica, Arial, sans-serif;
	/* padding: 0px; 	*/		/* Petite marge intérieure aux cellules pour éviter que le texte touche les bordures */
}
/*----------------------------------------------------------------------*/


/*----------------------------------------------------------------------*/
/*			DECORATION DES TITRES ET PARAGRAPHES 						*/
/*----------------------------------------------------------------------*/
p
{
	font-family: Helvetica, Arial, sans-serif;
	color: #FFFFFF;
	font-size: 100%;
	text-indent: 25px;
}

.ligne_l
{
	text-align: center;
	width: 70%;
	background-color: #009000;
	color: #009000;
	size: 3;
}
.ligne_c
{
	text-align: center;
	width: 50%;
	color: #009000;
	background-color: #009000;
	size: 3;
}.titre1
{
   	font-family: "Comic Sans MS", Helvetica, Arial, sans-serif;
}
.groupe
{
	color: #e8dc17;
   	font-style: italic;
}
.groupetext
{
   	font-family: "Comic Sans MS", Helvetica, Arial, sans-serif;
	text-align: justify;
	font-size: 85%;
	font-weight: normal;
	color: #FFFFFF;
}
.centre
{
	text-align: center;
}
.justif
{
	text-align: justify;
}
.droite
{	
	text-align: right;
}
.gauche
{	
	text-align: left;
}
.marge1
{
	padding: 0px
	margin: 0px;
}
.vertical_m
{
	vertical-align: middle;
}
.lien
{
	text-align: center;
	font-family: Helvetica, Arial, sans-serif;
   	font-style: italic; 			/* Les liens sont en italique */
	color: #33FF33;
}
.lien_index
{
	font-family: "Comic Sans MS", Helvetica, Arial, sans-serif;
	font-size: 100%;
   	font-style: normal;
	color: #EFEFAA;
}
.lien_haut
{
	font-size: 85%;
	color: #FFFFFF;
   	font-style: normal;
	text-align: right;	
}
h1, h2, h3, h4, h5, h6
{
	font-family: Helvetica, Arial, sans-serif;
  	font-style: italic;
	text-align: center;
	color: #E8E367;
}
/*----------------------------------------------------------------------*/
/*			DECORATION DES LIENS 										*/
/*----------------------------------------------------------------------*/
a 		/* Lien normal */
{
	text-decoration: none; 			/* Les liens ne sont pas soulignés */
	color: #FFFF00; 			/* Les liens ne sont pas en bleu FFFF00 */ 
	font-style: normal; 			/* Les liens sont en italique */
}

a:visited 					/* Quand le visiteur a déjà vu la page concernée */
{
	color: #FFFF00;
}
a:hover 					/* Quand le visiteur pointe sur le lien */
{
		/*   text-decoration: underline; */
	color: #EFEFAA;
}

a img 		/* Toutes les images contenues dans un lien */
{
	border: none; 				/* Pas de bordure */
}
