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

#example {
	width:570px;
	height:450px;
	position:relative;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	top:0;
	left:0;
	z-index:100;
}

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

.slides_container {
	width:570px;
	overflow-x:hidden;
	overflow-y:auto;
	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 div.slide {
	width:550px;
	height:450px;
	padding:0 10px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	width: 40px;
    height: 350px;
    text-indent: -9999px;
    position: absolute;
    z-index: 1000;
    top:0;
    cursor: pointer;
}

#slides .prev {
left:0;
background: url(slides/prev-arrow.png?3);
}

#slides .next {
	right:0;
	background:url(slides/next-arrow.png?3);
}

/*
	Pagination
*/

.pagination {
/*	display:none;*/
	margin:26px auto 0;
	width:300px;
	height:20px;
}

.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(./slides/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

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

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	top:350px;
	left:0;
	height:75px;

	padding:10px;
	width:540px;
	font-size:11px;
	line-height:1.33;
	color:#222;
	text-shadow:none;
}

/*
	Footer


#footer {
	text-align:center;
	width:580px;
	margin-top:9px;
	padding:4.5px 0 18px;
	border-top:1px solid #dfdfdf;
}

#footer p {
	margin:4.5px 0;
	font-size:1.0em;
}
*/