

@media only screen and (min-width: 980px) and (max-width: 1040px) {
}

/* Tablet Portrait size to Tablet Landscape (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 979px) {
	
}

@media only screen and (max-width: 767px) {
	#gallery-1 .gallery-item {width: 25% !important;}
	#gallery-1 br {display: none;}
	.panel-grid-cell {margin-bottom: 40px !important;}
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
	
		#gallery-1 .gallery-item {width: 100% !important;}

}






/*	Retina media query.
	Overrides styles for devices with a 
	device-pixel-ratio of 2+, such as iPhone 4.
-----------------------------------------------    */

@media 
	only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (min-device-pixel-ratio: 2) {
	
		
}