/* I wanted to center my loader */
#cycle-loader {
	height:32px;
	left:50%;
	margin:-8px 0 0 -8px;
	position:absolute;
	top:50%;
	width:32px;
	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;
	z-index:1;
}
/*Set my gradient above all images*/
#gradient {
	left:0;
	height:100%;
	position:absolute;
	top:0;
	width:100%;
	z-index:999;
}
#white-left {
	left:0;
	height:100%;
	position:absolute;
	top:0;
	width:50px;
	z-index:999;
	background-color:#FFF;
}
#white-right {
	right:0;
	height:100%;
	position:absolute;
	top:0;
	width:50px;
	z-index:999;
	background-color:#FFF;
}
#arrow_left, #arrow_right {
	height:60px;
	position:fixed;
	width:15px;
	top:50%;
	margin-top:-25px;
	z-index:1002;
}
#arrow_left {
	left:20px;
}
#arrow_right {
	right:20px;
}
#arrow_left:hover, #arrow_right:hover {
}
#arrow_left:active, #arrow_right:active {
}
#arrow_left .fa, #arrow_right .fa {
	font-size:36px;
}
.in-slide-content {
}
