/*!
 * 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 */
.cycle-wrap {
	background: url(img/arttop.png) left top no-repeat,
	            url(img/artmid.png) left center repeat-y;
	background-size: 100%;
	padding: 2%;
	margin-bottom: 7%;
	border-radius: 8px;
	box-shadow: 0 70px 70px -50px black;
}

.cycle-slideshow {
  width: 100%;
  height: 100%;
 }

.cycle-slide {
	width: 100%;
	height: 100%;
}

.cycle-slideshow embed,
.cycle-slideshow object {
  width: 100%;
  height: 100%;
}

.pager-wrap {
  position: relative;
  width: 90%;
  margin: auto;
  line-height: normal;
}

.pager-clip {
	position: relative;
  	width: 100%;
  	height: 150px;
	overflow: hidden;
}

#pager {
  width: 100%;
  position: absolute;
  top:  0px;
  left: 0px;
  white-space: nowrap;
}

#pager img {
	background: url(img/asidebg.png) left top no-repeat;
	background-size: 100%;
	position: relative;
	border-radius: 8px;
	box-shadow: 0 10px 20px -10px black;  
	display: inline-block;
  width: 200px;
  height: auto;
  margin: 0 10px 0 0;
  padding: 10px;
  opacity: .5;
  cursor: pointer;
}

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

.pager-prev,
.pager-next {
	background: url(img/pager-ar.png) left top no-repeat;
	width: 23px;
	height: 44px;
	position: absolute;
	top: 35%;
	z-index: 100;
	cursor: pointer;
}

.pager-prev {
	left: -5%;
}

.pager-next {
	background-position: right top;
	right: -5%;
}


.prev,
.next {
	background: url(img/slider_btn.png) left top no-repeat;
	width: 54px;
	height: 54px;
	position: absolute;
	top: 33%;
	z-index: 100;
	cursor: pointer;
}

.prev {
	left: 5%;
}

.next {
	background-position: left bottom;
	right: 5%;
}


