/* global css file */
#MenuSidebar{
	display:none;
	width:270px;
}
/* Partie centrale de la page */
.corpsPage{
	margin-left:140px;
	margin-top:0;
	margin-bottom:50px;
	margin-right:40px;
}
/* divers */
.debug{
	background-color:lightblue;
}
.marge-gauche{
	margin-left:140px;
}
.marge-haut{
	margin-top:40px;
}
/* mise en forme adaptive */
/**************************/
@media(max-width: 992px){
	/* taille medium et small */
}
@media(min-width: 601px) and (max-width: 992px){
	/* taille medium */
	.marge-responsive{
		margin-left:0%;
	}
	.marge-gauche,
	.corpsPage{
		margin-left:40px;
	}
}
@media(max-width: 600px){
	/* taille small */
	h1{
		font-size:24px;
	}
	.marge-gauche,
	.corpsPage{
		margin-left:0;
		margin-right:0;
	}
}