/*
	Load CSS before JavaScript
*/

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
.slides_container {
	width:560px;
	height:346 px;
	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:560px;
	height:346px;
	display:block;
}
/*
	Next/prev buttons
*/

.next, .prev {
	position:absolute;
	top:166px;
	left:1px;
	width:24px;
	height:376px;
	display:block;
	z-index:101;
}

.next {
	left:535px;
}

/*
	Pagination
*/
.pagination {
	margin: 6px auto;
	display: table;
	padding:2px;
}

.pagination li {
	float:left;
	display: inline;
	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 {
	z-index:500;
	position:absolute;
	bottom:0px;
	left:0;
	width:560px;
	padding:5px 5px 5px 5px;
	background:#000;
	background:rgba(0,0,0,.5);
	font-size:0.9em;
	line-height:1;
	color:#fff;
	border-top:1px solid #151617;
	text-shadow:none;
}