#container {
	width:600px;
	height:600px;
	padding:10px;
	margin:0 auto;
	position:relative;
	z-index:0;
	background-color:#000;
	top:20px;
	left:20px;
}

#example {
	width:600px;
	height:600px;
	position:relative;
}

#frame {
	position:absolute;
	z-index:0;
	width:600px;
	height:600px;
	top:0px;
	left:0px;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	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 {
	width:600px;
	overflow:hidden;
	position:relative;
	display:none;
	float:left;
}

/*
	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:600px;
	height:600px;
	display:block;
	float:left;
	
}


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

/*
	Pagination
*/

.pagination {
	margin:0px auto 0;
	width:195px;
	padding:10px;
}

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

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

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

/*
	Caption
*/

.caption2 {
	z-index:500;
	position:absolute;
	bottom:-20px;
	left:0px;
	height:30px;
	padding-bottom:25px;
	background:#333;
	background:rgba(0,0,0,.0);
	width:600px;
	font-size:13px;
	line-height:13px;
	color:#FFF;
	border-top:1px solid #666;
	text-shadow:2px 2px 2px #000;
	font-family:Verdana;
}