/*	MaxCycle (Fullscreen Slideshow for use with jQuery Cycle Plugin)
	Copyright (c) 2007-2011 Aaron Vanderzwan
	Dual licensed under the MIT and GPL licenses.	
	Version: 2.0.73 (12-Oct-2012)
*/
.mc-hide-scrolls {overflow:hidden;}
.mc-cycle {
	position:fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	/* width:100%;
	height: 100%; */
	z-index:-1;
	overflow:hidden;
}
.mc-image {
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	
	/* use following with maxImage-option 'cssTransition: true' only */
	/* use 'transition-property:left' for sliding instead of cross-fading --> change script from 'fade' to 'scrollHorz' */
	/* IMPORTANT: 'transition-duration' must have same value as cycle-parameter-value 'speed' in script! */
/* 	
	transition-property: opacity;
	transition-duration: 1s;
	transition-timing-function: ease-in-out;
*/
}
.mc-old-browser .mc-image {overflow:hidden;}