

/*
	Slideshow
*/

#slides {
	position:absolute;
	
	z-index:100;
	width: 880px;
	height: 300px;
	text-align: right;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:880px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	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:880px;
	height:300px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:107px;
	left:-39px;
	width:24px;
	height:43px;
	display:none;
	z-index:101;
}

#slides .next {
	left:585px;
}

/*
	Pagination
*/

.pagination {position: relative;
left: 390px;
bottom: 62px;
	margin:26px auto 0;
	width:50px;
	z-index: 2000;
}

.pagination li {
	float:left;
	margin:0 2px 4px 0px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background: #cccccc;
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background:#b2102c;

}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	top:0px;
	left:0;
	height:60px;
	padding:0px 20px 0 20px;
	background:#b2102c;
	background:rgba(178,16,4,.8);
	width:480px;
	font-size:18px;
	font-weight: bold;
	line-height:1.33;
	color:#fff;
	
	text-shadow:none;
	text-align: right;
}

