
/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1280px){

}


/* Tablet Layout: 768px. */
@media only screen and (min-width: 767px) and (max-width: 991px){
	
}


/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 766px) {
	
}


/* Mobile Layout: 320px. */
@media only screen and (max-width: 479px) {
	
}