/* 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, Verdana;	
}

/* Les zones de la page */

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

#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: 750px;
}

/* 4. Zone "pied de page" qui contient les informations du pied de page */
#pied
{
	height : 22px;
	text-align :center; 
	color: #FFFFFF;
}

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

/* Les balises HTML */


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

a:hover, a:active
{
	color: #422321;
	font-weight: bold;
	text-decoration: none;
	position: relative;
}


/* Décoration des tableaux */
table
{
	/* Pour centrer le tableau  */
	margin-left: auto;   
	margin-right: auto;
}

table.droite
{
	/* Pour centrer le tableau  */
	margin-left: 337px;  
	margin-right: 25px
}


/* Décoration des paragraphes */
p
{
	text-align : justify;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 25px;
	margin-right: 25px;
	color: #000000;
}

/* Effet typographique sur les premières lettres des paragraphes  */
p:first-letter 
{
	float: center;
	font-weight: bold;
	font-size: 20px;
	color: #000000; 
}

p.cite
{
	font-size: 14px;
	font-style:italic;
	text-align : justify;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 25px;
	margin-right: 25px;
	color: #000000;	
}





