/* Little devices (iphone, 992px and less) */    
@media (max-width: 992px) {
    
	.colonne {
		display: block;
		width: 100%;
		font-size: 250%;
	}
	TABLE {
		margin:auto;
		padding: auto;
		text-align: center;
	}
	.titre-size {
		font-size: 150%;
		text-align: center;
	}
	.head-size {
		font-size: 200%;
		text-align: center;
	}
	.body {
		margin: auto;
		padding: auto;
		width: 100%;
	}
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 993px) and (max-width: 1200px) {
	.colonne {
		display: block;
		width: 100%;
		font-size: 180%;
	}
	TABLE {
		margin:auto;
		padding: auto;
		text-align: center;
	}
	.titre-size {
		font-size: 150%;
	}
	.head-size {
		font-size: 170%;
	}
}

/* Large devices (large desktops, 1200px and up) */    
@media (min-width: 1201px) {

}