/* Positionnement global avec barre gauche */

@media screen {
	#centre {
		left: 196px;
		/*margin-left: 196px; flottant */
		/*width: 99%;
		height: 99%;
		overflow: auto;*/
	}
	#gauche {
		position: absolute;
		top: 200px;
		width: 170px;
		/*float: left; flottant */
		/*background-color: yellow;*/
	}
}
@media print {
	#gauche {
		display: none;
	}
}