html, body{
	font-family: "Trebuchet-MS", arial;
	font-size: 13px;
	/*color: black;*/
}

a{
	text-decoration: underline;
	color: blue;
}
a:hover{
	text-decoration: none;
	/*color: blue;*/
}

#container{
	width: 1000px;
	/* Avec les marges auto, je centre le menu et le contenu en meme temps, pas besoin de tableau ! ;-) */
	margin-left: auto;
	margin-right: auto;
}

#menu{
	/* Sa position depend du bloc qui la precede (aucun) et le div "flotte" vers la gauche */
	position: relative;
	float: left;
	width: 145px;
	border: 0px solid black;
	background-color: #F1E9B6 ; 
}

#contenu{
	/* La position du contenu est de floater a gauche, donc de se coller a son voisin de gauche = le menu */
	position: relative;
	float: left;
	border: 0px solid black;
	width: 850px;
	/*background-image:url(../images/vw_Kiwy.jpg); */
}

#pied{
	/* Je centre aussi le pied de page */
	margin-left: auto;
	margin-right: auto;
	clear: both;
	border: 0px solid black;
	width: 992px;
} 