

/*
	Slideshow
*/

#slides {
	position:absolute;
    width:960px;
	z-index: 1;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	overflow:hidden;
	position:relative;
	display:none;
	width:960px;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	width: 960px;
	height:362px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:107px;
	left:-39px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left:585px;
}

/*
	Pagination
*/

.pagination {
	display:none;
	margin: -16px auto 0;
	width:160px;
	position:relative;
	z-index: 9999999999999;
}

.pagination li {
	float:left;
	margin:0 3px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	margin-bottom: 0px;
	bottom:-400px;
	left:0;
	height:30px;
	padding:5px 20px 20px 20px;
	background:#000;
	background:rgba(0,0,0,.5);
	width:100%;
	font-size:1em;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
}

.caption p{
	color: white;
}








