/* Ecran de moins de 1199px */

@media screen and (max-width: 1199px)
{
}

/* Ecran de moins de 991px */

@media screen and (max-width: 991px)
{
	/* Nav */
	
	nav .menuLeft
	{
		left: -200px;
	}
	nav + main
	{
		padding-left: 0;
	}
	nav.active .menuLeft
	{
		left: 0;
	}
}

/* IPAD (Portrait / Paysage) */

@media screen and (max-width: 767px), screen and (max-device-width : 767px)
{
	article .bandeau.bsm .titre,
	article .bandeau.couponSport .titre
	{
		font-size: 60px;
	}
}

/* SMARTPHONE (Portrait / Paysage) */

@media screen and (max-width: 450px), screen and (max-device-width : 450px)
{
	.popUpInfo .num
	{
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
}

/* SMARTPHONE (Portrait / Paysage) */

@media screen and (max-width: 320px), screen and (max-device-width : 320px)
{
}