/**
 * Media queries and respsonsive styles
 * 
 */


/** 1181 -> 1300 */
	@media only screen and (max-width: 1300px) { 

	}

/** 1085 -> 1180 */
	@media only screen and (max-width: 1180px) {

	}

/** 960 -> 1084 */
	@media only screen and (max-width: 1084px) {

	}

/** 769 -> 959 */
	@media only screen and (max-width: 959px) {

	}
	
/** 480 -> 560 */
	@media only screen and (max-width: 560px) {

	}

/** 0 -> 479 */
	@media only screen and (max-width: 479px) {

	}