body
{
   width: 100%;
   height: 100%;
   margin: auto; /* Pour centrer notre page */
   background-color: rgb(173, 190, 216);
   background-image: url("images/fond14.jpg");
   background-repeat: no-repeat;
   background-position: center;
   background-attachment: fixed;
   margin-top: 20px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
}

h1
{
	text-align: center;
	font-family: Verdana, serif;
	font-weight: bold;
	font-size: 2em;
}

h2
{
	text-align: center;
	text-decoration: underline;
	font-family: Verdana, serif;
	font-weight: bold;
	font-size: 1.3em;
	padding: 10px;
	border-bottom: 2px solid black;
}

h4
{
	text-align: center;
	font-family: Verdana, serif;
	font-weight: bold;
	font-size: 1.1em;
	padding: 10px;
	border-top: 2px solid black;
}

h3
{
	text-align: center;
	font-family: Verdana, serif;
	font-weight: bold;
	font-size: 1em;
	margin-left: 20px;
	margin-right: 20px;
	padding: 10px;
}

p
{
	text-align: justify;
	text-indent: 30px;
	font-family: Verdana, serif;
	font-weight: bold;
	font-size: 1.1em;
	margin-left: 20px;
	margin-right: 20px;
	padding: 10px;
}

caption
{
   margin: auto;
   font-family: Arial, Times, "Times New Roman", serif;
   font-weight: bold;
   font-size: 1.2em;
   text-decoration: underline;
   color: black;
   margin-top: 20px; /* La marge doit se faire au-dessus et non en-dessous maintenant */
}

table
{
   margin: auto;
   border: 6px outset black;
   border-collapse: collapse;
}

th
{
   background-color: blue;
   height: 40px;
   color: white;
   font-size: 1.2em;
   border: 4px outset black;
   font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
}

td
{
   height: 40px; /* J'agrandis la hauteur des cellules pour que l'on puisse voir l'alignement vertical */
   width: 100px;
   background-color: white;
   vertical-align: bottom; /* Alignement vertical, le contenu des cellules sera placé en bas */
   border: 2px solid black;
   font-size: 1.1em;
   font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
   text-align: center;
   padding: 5px;
   font-weight: bold;
}

.centre
{
   text-align: center;
}

.souligne
{
   text-decoration: underline;
}

.gras
{
	font-weight: bold;
}

.sureleve
{
position: relative;
   bottom: 30px;
}

.bascentre
{
   width: 100%;
   border-top: 2px solid black;
   text-align: center;
}

a img
 {
  border: 3px solid black;
 }
 
a img:hover
 {
  border: 3px solid blue;
 }
 
 a:visited
{
	color: navy;
	}
	
a:hover
{
	color: red;
	}
	
a:active
{
	background-color: white;
	}