/* Feuille de style CSS */

/*  Généralités  */
{
	margin: 0;
	padding: 0;	
	
}

/* Corps de la page web */
body
{
	background-image: url(fond.gif);
	background-attachment: fixed; 
	background-repeat: repeat-x;	
	font-family: Arial;
	font-size: 14px;	
	
}

/* Les zones de la page */

/* 1. "Conteneur" qui englobe tout le site  */
#Conteneur
{
	position: static;
	margin-left: auto;
	margin-right: auto;
	width: 1000 px;
	
}


/* 2. En-tête  qui contient notamment le titre  */
#Entete
{
	width: 800px;
	/* Pour centrer l'image  */
	margin-left: auto;   
	margin-right: auto;
}

#banniere
{
	border: none;	 /* Pour éviter une bordure sur les liens sans la bannière */	
}


/* 3. Zone de corps de la page */

#Corps
{
	margin-left: auto;
	margin-right: auto;
	width: 800px;
	text-align: left;
}


/* Image de bordure en haut du corps */
#corpshaut 
{
	background-image: url(corpshaut.jpg);
	background-repeat: no-repeat;
	width: 800px;
	height: 38px;
	margin-bottom: 0px;
}

#texte 
{
	width: 700px;
	/* Pour centrer  */
	margin-left: auto;   
	margin-right: auto; 

}
 /* Image + texte du corps */
#corpscentre
{
	background-image: url(bg.jpg);
	background-repeat: repeat-y;
	width: 800px;	
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* Image de bordure en bas du corps */
#corpsbas 
{
	background-image: url(corpsbas.jpg);
	background-repeat: no-repeat;
	width: 800px;
	height: 31px;
	margin-top: 0px;	
}

#centrage
{
	text-align: center ;
}

/* Les balises HTML */

H2 {
	font-weight: bold;
	text-align: center; color: #1D282E
}

H3 {
	font-weight: bold;  color: #1D282E;
	text-align: center
}

/* Décoration des tableaux */
table
{
	color: #1D282E;
	font-family: "Arial";
	/* Pour centrer le tableau  */
	margin-left: auto;   
	margin-right: auto;  
}

table.compet
{
	margin-left: 20px;   
}

td.centre
{
	text-align : center;
	font-family: "Arial";
	color: #1D282E;
}

td.italic
{
	font-family: "Arial";
	color: #1D282E;
	font-style: italic;
	font-weight: bold;
	font-size: 18px;
}

td.grasbis
{
	font-family: "Arial";
	color: #AA4949;
	font-weight: bold;
	font-size: 18px;
}

td.gras
{
	font-family: "Arial";
	font-weight: bold;
}

/* Décoration des paragraphes */
p
{
	text-align : center;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 15px;
	margin-right: 15px;
	font-size: 26px;
	color: #1D282E;
}

.bouton {
	color: #e7d8bb;
	background-color: #1D282E;
	font-size: 12px;
	font-family: arial;
}