/*!
 * jQuery Cycle2 - Version: BETA-20120923
 * http://malsup.com/jquery/cycle2/
 * Copyright (c) 2012 M. Alsup; Dual licensed: MIT/GPL
 * Requires: jQuery v1.7 or later
 */
 
/* The Cycle2 Slider styles */

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

.cycle-wrap {
	background: url(img/arttop.png) left top no-repeat,
	            url(img/artmid.png) left center repeat-y;
	background-size: 100%;
	padding: 2%;
	border-radius: 8px;
	box-shadow: 0 70px 70px -50px black;
}

.clip {
	position: relative;
	overflow: hidden;
}

.slider {
	position: relative;
	width: 70%;
	float: left;
}

.cycle-slide,
.cycle-slide img {
	width: 100%;
}

.pager-wrap {
	position: relative;
	width: 30%;
	float: left;
}

#slide-pager {
	background: #000;
	position: absolute;
	top: 0;
	z-index: 2000;
}

#slide-pager div {
	overflow: hidden;
	height: auto;
}

.cycle-pager {
	opacity: .5;
}


.cycle-pager-active {
	opacity: 1;
}

.cycle-prev,
.cycle-next {
	background: url(img/slider_btn.png) right top no-repeat;
	width: 54px;
	height: 54px;
	position: absolute;
	top: 50%;
	z-index: 100;
	opacity: .7;
}

.cycle-prev {
	left: 2%;
}

.cycle-next {
	background-position: right bottom;
	right: 3%;
}

.caption p {
	font-family: Didot LT Std;
	font-size: 27px;
	line-height: 27px;
	font-weight: lighter;
	text-transform: uppercase;
	margin: 0 0 2% 0;
	letter-spacing: 2px;
	text-shadow: 0 5px 3px rgba(0, 0, 0, 0.75);
	-webkit-text-shadow: 0 5px 3px rgba(0, 0, 0, 0.75);
	-moz-text-shadow: 0 5px 3px rgba(0, 0, 0, 0.75);
	-o-text-shadow: 0 5px 3px rgba(0, 0, 0, 0.75);
	-ms-text-shadow: 0 5px 3px rgba(0, 0, 0, 0.75);
	background: rgba(0,0,0,.75);
	padding: 2% 5%;
	position: absolute;
	left: 0px;
	bottom: 4%;
	z-index: 5000;
	width: auto;
	white-space: nowrap;
	overflow-x: hidden;
	color: white;
}

.caption p a {
	text-decoration: none;
	transition: color 200ms linear;
	-webkit-transition: color 200ms linear;
	-moz-transition: color 200ms linear;
	-o-transition: color 200ms linear;
	-ms-transition: color 200ms linear;
}

.caption p a:hover {
	color: #D6A827;
}

@media only screen and (max-width: 650px) {
	.cycle-prev,
	.cycle-next {
		top: 45%;
	}
	
	.caption p {
		font-size: 12px;
		line-height: 14px;
	}

}

