@charset "utf-8";
/* CSS Document */

div {
	text-align:center;
	}
	
div#bandeau {
	width:200px;
	height:400px;
	background-color:#00CCFF;
	float:right;

	
	}
div#news {
	position: absolute;
	width: 700px;        /* selon la largeur voulue */
	margin-left: -350px;  /* moitie de width */
	left: 50%;          /* constant, toujours 50% */
	height: auto;       /* selon la quantite de texte */
	margin-top: -200px;   /* moitie de height */
	top: 50%;           /* constant, toujours 50% */
	border: 0px solid #FFFFFF;
	}
div#contenu {
	position: absolute;
	width: 700px;        /* selon la largeur voulue */
	margin-left: -350px;  /* moitie de width */
	left: 50%;          /* constant, toujours 50% */
	height: 500px;       /* selon la quantite de texte */
	margin-top: -250px;   /* moitie de height */
	top: 50%;           /* constant, toujours 50% */
	border: 0px solid #FFFFFF;
	}
div#piedpage {
	width:600px;
	height:50px;
	background-color:#33FF99;
	}
	
	

