/*
	Slideshow
*/

#slides {
	height:557px;
	position:absolute;
	top:47px;
	left:158px;
	z-index:10;
	text-align: center;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:789px;
	height:557px;
	overflow:hidden;
	/*margin-left:18px;*/
	/*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 a {
	width:910px;
	height:370px;
	display:block;
}
.slides_container div {
	width:910px;
	height:370px;
	display:block;
}

/*
	Pagination
*/

.pagination {
	margin:auto;
	position:relative;
	top:-9px;
	z-index:100;
}

.pagination li {
	margin:-1px;
	display: inline-block;
	list-style:none;
}

.pagination li a {
	display:block;
	width:23px;
	height:0;
	padding-top:23px;
	background-image:url(images/pagination.png);
	background-position:0 0;
	float:right;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -23px;
}