/*propriétés de la page en entier*/
body {
	font-family: Arial, Helvetica, Sans Serif;
	font-size: 11pt;
	margin-top: 20px;
	}
/*propriétés communes à tous les tableaux*/
table {
	background-color: whitesmoke;
	}
#corps {
	padding: 0px;
	margin-left: auto;
	margin-right: auto;
	width: 800;
	}
#bas {
	font-size: 7pt;
	}
	#logo {
	width: 650px;
	height: 150px;
	}
/*propriétés communes à toutes les cellules de tableaux*/
td { 
padding: 2px;
border-style: solid; 
border-width: 1px; 
border-color: #D5D5D5;
}
/*propriétés de la classe tabtitre*/
.tabtitre {
	color: whitesmoke;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1px;
	}
/*propriétés de la classe navbout*/
div.navbout {
	background: whitesmoke;
	font-weight : bold;
	overflow: hidden;
	}
/*propriétés des liens dans un navbout*/
div.navbout a {
	font-weight: bold;
	text-decoration: none;
	}
/*propriétés des liens dans un navbout QUAND LA SOURIS PASSE DESSUS*/
div.navbout:hover a{
	color: whitesmoke;
	}
/*propriétés de la classe navbout quand le souris passe dessus*/
div.navbout:hover {
	color: whitesmoke;
	}
/*propriétés des liens*/
a {	font-weight: bold;
	text-decoration: none;
	}
/*propriétés des liens quand la souris passe dessus*/
a:hover { text-decoration: underline; }
