/* Couleur de Fond suivant type de support : PC ou Smartphone */
body {
	background-color:white;	
	color:black;
}
@media only screen and (max-device-width:480px) {
 body {
	 background-color:white;
	 color:black;
	 width: 85%;
	 margin: auto; /* centrage automatique */
	 margin-top: 2px;
	 margin-bottom: 2px;
	 font-size: 10pt;
 }
}