/* CSS Document */ body {     margin: 0; /* pour éviter les marges */     text-align: center; /* pour corriger le bug de centrage IE */     }#Tableau_01 {	width: 800px;	height: 600px;	border: 0;	margin: 0;	padding: 0;}	  #page     {	position: absolute;	width: 800px;        /* selon la largeur voulue */	margin-left: -400px; /* moitie de width */	left: 50%;           /* constant, toujours 50% */	height: 600px;       /* selon la quantite de texte */	margin-top: -300px;   /* moitie de height */	top: 50%;            /* constant, toujours 50% */	background-image: url(image-entree.jpg);	background-repeat: no-repeat;      }  a:link {	margin: 0px;	}a:visited {	margin: 0px;}a:hover {	margin: 0px;}a:active {	margin: 0px;}img {	margin: 0px;	border-top-width: 0px;	border-right-width: 0px;	border-bottom-width: 0px;	border-left-width: 0px;	border-top-style: none;	border-right-style: none;	border-bottom-style: none;	border-left-style: none;}
