/**
 * jsSlider v4.0 - Fully loaded, responsive content slider
 * http://jsslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of jsCreative, LTD
 * http://jscreative.com
 */


/** RESET AND LAYOUT
===================================*/

.js-wrapper {
	position: relative;
	padding: 0;
	*zoom: 1;
}

.js-wrapper img {
	max-width: 100%;
	display: block;
width:980px;
}

/** THEME
===================================*/
.js-wrapper{
padding-top: 26px;
height: 352px;
}
.js-wrapper .js-viewport {
width: 980px;

background: transparent;
}
.js-viewport{
height: 326px!important;
overflow: hidden;
}
/* LOADER */

.js-wrapper .js-loading {
	min-height: 50px;
	background: url(../images/js_loader.gif) center center no-repeat;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.js-wrapper .js-pager {
text-align: center;
font-size: .85em;
font-family: Arial;
font-weight: bold;
color: #666;
padding-top: 20px;
}

.js-wrapper .js-pager .js-pager-item,
.js-wrapper .js-controls-auto .js-controls-auto-item {
	display: inline-block;
	margin: 0 2.5px;
	*zoom: 1;
	*display: inline;
}

.js-wrapper .js-pager.js-default-pager a {
	background: url(../images/pager.png) no-repeat;
	text-indent: -9999px;
	display: block;
	width: 18px;
	height: 18px;
	outline: 0;
}

.js-wrapper .js-pager.js-default-pager a:hover,
.js-wrapper .js-pager.js-default-pager a.active {
	background-position: 0 -19px;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.js-wrapper .js-prev {
	left: 10px;
	background: url(images/controls.png) no-repeat 0 -32px;
}

.js-wrapper .js-next {
	right: 10px;
	background: url(images/controls.png) no-repeat -43px -32px;
}

.js-wrapper .js-prev:hover {
	background-position: 0 0;
}

.js-wrapper .js-next:hover {
	background-position: -43px 0;
}

.js-wrapper .js-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.js-wrapper .js-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.js-wrapper .js-controls-auto {
	text-align: center;
}

.js-wrapper .js-controls-auto .js-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.js-wrapper .js-controls-auto .js-start:hover,
.js-wrapper .js-controls-auto .js-start.active {
	background-position: -86px 0;
}

.js-wrapper .js-controls-auto .js-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.js-wrapper .js-controls-auto .js-stop:hover,
.js-wrapper .js-controls-auto .js-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.js-wrapper .js-controls.js-has-controls-auto.js-has-pager .js-pager {
	text-align: left;
	width: 80%;
}

.js-wrapper .js-controls.js-has-controls-auto.js-has-pager .js-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.js-wrapper .js-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.js-wrapper .js-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}