/* XSmall Screens ----------- */
@media only screen 
and (min-width : 50px) 
and (max-width : 500px) 
 {
	
	



}

/* Small Screens ----------- */
@media only screen 
and (min-width : 501px) 
and (max-width : 1000px) 
 {
	
	
	

	
}


/* Medium Screens ----------- */
@media only screen 
and (min-width : 501px) 
and (max-width : 1238px) 
 {
	
	
		
	
}


/* Medium Screens ----------- */
@media only screen 
and (min-width : 1239px) 
and (max-width : 1280px) 
 { 
	
	

}

/* Large Screens ----------- */
@media only screen 
and (min-width : 1281px) 
and (max-width : 1600px) 
 {
	
}


/* XLarge Screens ----------- */
@media only screen 
and (min-width : 1601px) 
and (max-width : 3000px) 
 {
	
}


/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape)
 {



} 
/* END iPads (landscape) ----------- */

