/*	----------------------------------------------------------------
	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) */

#maximage {
				display:none;
				position: fixed !important;
			}

.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 3s ease-in-out; 
	-moz-transition: opacity 3s ease-in-out; 
	-o-transition: opacity 3s ease-in-out; 
	transition: opacity 3s 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%;
}

.mc-old-browser .mc-image {
	overflow:hidden;
}

#cycle-loader {
				height:32px;
				left:50%;
				margin:-8px 0 0 -8px;
				position: absolute;
				top:30%;
				width:32px;
				z-index:900;
			}
			
			/*Set my gradient above all images*/
			#gradient {
				left:0;
				height:100%;
				position:absolute;
				top:0;
				width:100%;
				z-index:999;
				background: url(images/slider/transparent.png);
			}
			
			/*Fix Arrows - Remove Home Page*/
			#arrow_left, #arrow_right {
				display: none;
			}
			
		/*	#arrow_left, #arrow_right {
				bottom: 30px;
				height:67px;
				position: fixed;
				right:30px;
				width:36px;
				z-index:1000;
			}
			#arrow_left {
				right:86px;
			}
			
			#arrow_left:hover, #arrow_right:hover {
				bottom:29px;
			}
			#arrow_left:active, #arrow_right:active {
				bottom:28px;
			}*/
			
			.in-slide-content { 
				color:#fff;
				font-size: 30px;
				margin: 0 auto;
				margin-top: 340px;
				padding: 0;
				max-width:650px;
				line-height: 160%;
				text-align: center;
				position:relative;
				z-index:9999;
				font-family: 'Lato', arial, helvetica, tahoma, sans-serif;
				text-transform: uppercase;
				font-weight: 400;
			}
			
			body.single .in-slide-content,
			body.category .in-slide-content,
			body.page .in-slide-content{
	 			font-size: 0px;
				line-height: 0px;
}