/* -------------------- Global -------------------- */



/* -------------------- Mobile View -------------------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

}



/* -------------------- Desktop View -------------------- */

@media only screen and (max-width: 1440px) and (min-width: 768px) {
	
}	


/* -------------------- Print -------------------- */

@media print {
	/* -------------------- Mobile -------------------- */
	@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

}

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


