/*
	Slideshow style
*/

#slides {
	left:4px;
	z-index:100;
	float:right;
	padding: 0 0 0 15px;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
	width:515px;
	height:295px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides .slide {
	padding:5px;
	width:505px;
	height:285px;
	display:block;
	background-color:#CCC;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	
	display:block;
	z-index:101;
}

#slides .next {
	float: right;
}
#slides .prev {
	float: left;
}

/*
	Pagination
*/

.pagination {
	margin:5px auto 0;
	width:130px;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}