



#slideshow {
	width:1064px;
	height:220px;
	position:relative;
	margin:0 0 0 -35px;
	text-align:center;
}





/*
	Slideshow
*/

#slides {
position:relative;
	
	z-index:100;
	vertical-align: middle;
	margin:auto;
}

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

.slides_container {
	width:1064px;
	overflow:hidden;
	position:relative;
	display:none;
	text-align:center;

}

/*
	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 .slide {
	width:1064px;
	height:200px;
	margin:auto;
	text-align:center;


}

	/*
			Set the size of your carousel items
		*/
.item {
	
	display: inline-block;
	height:200px;
	margin:0;   
}

/*
	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:885px;
}

/*
	Pagination
*/

.pagination {
	margin:6px auto 0 -20px;
	width:1024px;
	text-align:center;
}

.pagination li {
	display: inline-block;
	margin:0;
	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;
}

