
#container {
	width:900px;
	padding:0px;
	margin:0 auto;
	position:relative;
	z-index:0;
}



/*
	Slideshow
*/

#slides {
	position:relative;
	top:0px;
	left:0px;
	z-index:100;
}
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	position:relative;
	display:block;
	border:0px dotted blue;
}

.oneslide {width:900px; border:0px solid red;}

/*
	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:900px;
	height:270px;
	display:block;
}

.slides_container a img {
	display:block;
}
*/
/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:107px;
	left:-39px;
	width:24px;
	height:43px;
	display:none;
	z-index:101;
}

#slides .next {
	left:900px;
}

/*
	Pagination
*/

.pagination {
	margin:0px;
	padding:0px;
	margin-left:auto;
	margin-right:auto;
	height:20px;
	padding-top:3px;
	border:0px solid red;
	width:80px;
	text-align: center;
}

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

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../images/jquery_slides_img/pagination.png);
	background-position:0 0;
	floatleft;
	overflow:hidden;
	z-index: 500;
}

.pagination li.current a {
	background-position:0 -12px;
}

