/*	----------------------------------------------------------------
	MaxCycle (Fullscreen Slideshow for use with jQuery Cycle Plugin)
	----------------------------------------------------------------
	
	Demo at: http://www.aaronvanderzwan.com/maxcycle/
	Download and Info at: http://github.com/akv2/MaxCycle---jQuery-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;
}
body .mc-cycle {
	height:100%;
	left:0;
	overflow:hidden;
	position:fixed;
	top:0;
	width:100%;
	z-index:-1;
}
div.mc-image {
	/*NOTE: Mozilla flickers when fading and using 'all', so we have to be specific with what property we want to transition:
	 	If you are using fading transitions, use 'opacity: */
	-webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
	/*If you are using horizontal slide transitions, use the following CSS:
	-webkit-transition: left 1s ease-in-out; 
	-moz-transition: left 1s ease-in-out; 
	-o-transition: left 1s ease-in-out; 
	transition: left 1s ease-in-out;*/
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position:center center;
	background-repeat:no-repeat;
	height:100%;
	overflow:hidden;
	width:100%;
}
div.mc-image a {position:absolute;left:0;top:0;width:100%;height:100%;display:block;}
.mc-old-browser .mc-image {overflow:hidden;}

/* preloader anim from http://preloaders.net/en/3d */
#cycle-loader {
	height:128px;
	left:50%;
	margin:-64px 0 0 -64px;
	position:absolute;
	top:45%;
	width:128px;
	z-index:999;
}
/*I want to avoid jumpiness as the JS loads, so I initially hide my cycle*/
#maximage {
	display:none;/* Only use this if you fade it in again after the images load */
	position:fixed !important;
}

.slider-nav {width:100%;top:45%;position:absolute;}
#arrow_left, #arrow_right {position:absolute;width:72px;height:72px;z-index:10;}
#arrow_left {left:20px;}
#arrow_right {right:20px;}
.in-slide-content {position:absolute;bottom:0px;width:100%;height:40px;text-align:center;background:#fff;color:#666;z-index:2;font-size:.7em;padding-top:13px;}