/*
	Slideshow
*/

#slides {
	background-color: #FFF;
	height: 344px;
	width: 980px;

}

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

.slides_container {
	width:980px;
	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 a {
	width:980px;
	display:block;
	height: 344px;
}

.slides_container a img {
	display:block;
}

/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	width:16px;
	height:24px;
	display:block;
	z-index:101;
	left: 5px;
	margin-top: -12px;
	top: 50%;
}

#slides .next {
	left: 959px;
}

/*
	Pagination
*/

.pagination {
	width:100px;
	z-index: 399;
	position: absolute;
	margin: 0px;
	padding: 0px;
	left: 8px;
	bottom: 0px;
}

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

.pagination li a {
	display:block;
	width:12px;
	padding-top:12px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
	height: 0px;
}

.pagination li.current a {
	background-position:0 -12px;
	background-image: url(../img/pagination.png);
	display: block;
}
