/* Style qui sert uniquement à la détection du device
   avant renvoi vers la bonne version su dite */
	
/*PC */

    @media screen and (min-device-width: 640px) {

    #maDetection{background-color:#ff0000;}
	 

}

/* 
screen and (max-device-width: 414px),     
screen and (max-device-height: 320px)  and (min-device-width: 568px), 
screen and (min-device-width: 320px)   and (max-device-width: 568px)  and (-webkit-device-pixel-ratio: 2)   nd (orientation:landscape)"*/
      

/* IPAD */
     @media only screen and (min-device-width : 768px) and (max-device-width : 1024px),
                 screen and (min-device-width : 834px) and (max-device-width : 1112px)
  {

       #maDetection{background-color:#0000ff;}

	}

/* IPHONES */ 

/* Iphone 5*/

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {

    #maDetection{background-color:#0000ff;}
}

/*Autres iphones*/
@media only screen and (max-device-width: 667px) and (-webkit-device-pixel-ratio: 2) {

	 #maDetection{background-color:#00ffff;}
	 
	}


/* SMARTPHONES */ 
@media screen and (min-device-width: 360px) and (max-device-width : 740px){
	
	    #maDetection{background-color:#00ff00;}

	}
}


	
	
	
	
	
