/* ----------------------------------------------------------------
    MaxCycle (Fullscreen Slideshow) - Mobile Optimized
    ---------------------------------------------------------------- */

	.mc-hide-scrolls {
		overflow: hidden;
	}
	
	body .mc-cycle {
		height: 100%;
		left: 0;
		overflow: hidden;
		position: fixed; /* Keeps background locked in place during scroll */
		top: 0;
		width: 100%;
		z-index: -1;
	}
	
	div.mc-image {
		/* Modern Transition syntax */
		transition: opacity 1s ease-in-out;
		
		/* Performance booster: Tells mobile GPU to prepare for changes */
		will-change: opacity; 
		
		/* Ensures image covers the screen on all devices */
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		
		background-position: center center; /* Centers the focal point */
		background-repeat: no-repeat;
		height: 100%;
		overflow: hidden;
		width: 100%;
	}
	
	.mc-old-browser .mc-image {
		overflow: hidden;
	}