/* Feuille de style CSS */

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

/* Corps de la page web */
body
{
	background-color: #D4C9C3;
	background-image: url(fond.jpg);
	background-attachment: fixed; 
	background-repeat: no-repeat;	
	background-position : center;
}

/* 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: 975px;
	/* 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: 975px;
	text-align: left;
}

/* Les balises HTML */

/* Décoration des tableaux */
table
{
	/* Pour centrer le tableau  */
	margin-left: auto;   
	margin-right: auto;
	font-family: "Arial";
	font-size: 12px;
}

/* 2. Décoration des liens */
a:link, a:visited
{
	color: #422321;
	text-decoration: none;
	position: relative;
	font-weight: bold;
}

a:hover, a:active
{
	color: #9A7A66;
	text-decoration: underline;
	position: relative;
	font-weight: bold;
}
