/* CSS Document */

	html
	{
	height:100%;
	}

	body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background : #FFF;
	/*background-image: url(images/bg.jpg);
	background-repeat: no-repeat; 
	background-position: center center;*/
	}

 
    #contenu
  {
    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-color: #FFF;  
  }