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

:root {
	--orange:#9e5022; /* 159 80 34 */
	--gris:#999;
	--gris-fonce:#333;
	
	--l:320px;
}

@media only screen and (max-width:850px) {
	:root {
		--l:250px;
	}
	@media only screen and (max-width:640px) {
		
	}
}


body {
	color:var(--gris-fonce);
	font-family:Arial, Helvetica, sans-serif;
	font-size:21px;
	line-height:30px;
	
	position:relative;
	padding:0;
	margin:0;
	top:0;
}

a {
	text-decoration:none;
}

.sitCarreOrange {
	background-color:var(--orange);
	height:25px;
	margin-top:5px;
	width:25px;
}