/********************************************************************************************* 

x. Tablet Landsape (smaller than 1024px)

*********************************************************************************************/
@media only screen and (max-width:1024px) {
	
}

/********************************************************************************************* 

x. Small Tablet Landscape (smaller than 800px)

*********************************************************************************************/
@media only screen and (max-width: 800px) {
	
}

/********************************************************************************************* 

x. Tablet Portrait (smaller than 768px)

*********************************************************************************************/
@media only screen and (max-width: 768px) {
	
}

/********************************************************************************************* 

x. Small Tablet Portrait (smaller than 600px)

*********************************************************************************************/
@media only screen and (max-width: 600px) {
	
}

/********************************************************************************************* 

x. Mobile Landscape (smaller than 480px)

*********************************************************************************************/
@media only screen and (max-width: 480px) {
	
}

/********************************************************************************************* 

x. Mobile Portrait (smaller than 320px)

*********************************************************************************************/
@media only screen and (max-width: 320px) {
	
}