/* Feuille de style CSS */

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

/* Corps de la page web */
body
{
	background-color: #C8C8C8;
	background-image: url(fond-contact.jpg);
	background-attachment: fixed; 
	background-repeat: no-repeat;	
	background-position : center;
	font-family: "Arial";
	color: #274656;
}

/* Les zones de la page */

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

/* 2. En-tête  qui contient notamment le titre  */
#Entete
{
	width: 700px;
	/* 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: 850px;
}

/* Les balises HTML */

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

td.gras
{
	font-weight: bold;
}

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

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

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

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





