/** Taille gloable **/
@viewport {
	width: device-width;
	zoom: 1;
}



/*taille tablette*/
@media	only screen and (max-device-width : 768px)
{	
	
	@viewport
	{
		width: 768px;
		zoom: auto;
		user-select: none;
	}
	
	html, body
	{
		font-size: 4vw;
	}
	
	ol {
		padding-left:8vw;
	}
	
	img{
		max-width: 100%;
		height: auto !important;
	}
}



/*telephone*/		
@media 	only screen and (max-device-width : 468px){
	
	/** bug fixe police rezising on chrome ***/
	span[id*='__text']{
		max-height:90000vw;
	}
	
}