/* CSS Document */
body
	{
	background-image: url(../images/fonds/fondsaumon.jpg);
	background-attachment: fixed; /* Le fond restera fixe */
	margin-top: 5px;
	} 

p
	{
	color: black;
	font-family: "Times New Roman";
	font-size: 13px;
	text-align: center;
	}

a
	{
	text-decoration: underline; /* Les liens seront soulignés */
	color: black; /* Les liens seront en noir au lieu de bleu */
	font-family: "Times New Roman";
	text-align: center;
	font-size: 13px;
	}

a:hover
	{
	text-decoration: underline;
	font-style: italic;
	}
	
a:visited /* Quand le visiteur a déjà vu la page concernée */
	{
	color: rgb(80,80,80);
	}

a:active /* Quand le visiteur clique sur le lien */
{
	font-style: italic;
	font-weight: bold;
}