@charset "utf-8";
/* CSS Document */


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {
	
	.affichemobile {
	display: block;
}
	.affichedesktop {
	display: none;
}
	
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
	.affichemobile {
	display: none;
}
	.affichedesktop {
	display: block;
}
	
}


/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.affichemobile {
	display: none;
}
	.affichedesktop {
	display: block;
}
	
}


/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	
	.affichemobile {
	display: none;
}
	.affichedesktop {
	display: block;
}
	
}


/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

	.affichemobile {
	display: none;
}
	.affichedesktop {
	display: block;
}
	
}
	
