#container {
	width:612px;
	padding:0px;
	margin:0 auto;
	position:relative;
	z-index:0;
	border:0px green solid;
}

#frame {
	position:absolute;
	z-index:0;
	width:700px;
	height:250px;
	top:-15px;
	left:-76px;
	border:0px blue solid;
}

#example {
	width:611px;
	height:250px;
	position:relative;
	border:0px red solid;
}

/*
	Slideshow style
*/

#slides {
	position:absolute;
	top:-20px;
	left:-5px;
	/*z-index:100;*/
}

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
	top:10px;
	left:20px;
	width:557px;
	height:220px;
	overflow:hidden;
	position:relative;
	display:none;
	border: solid #E4E4E4 9px;	
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides .slide {
	padding:0px;
	width:650px;
	height:250px;
	display:block;
	border:solid 0px red;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top:100px;
	right:-50px;
	width:27px;
	height:47px;
	display:block;
	z-index:101;
	border:0px orange solid;
}

#slides .next {
	right:560px;
	border:0px black solid;
} 

/*
	Pagination
*/

.pagination {
	margin:0px auto 0;
	width:500px;
	padding-top:12px;
}

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

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

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

#slides .link {
	display:block;
	margin-top:10px;
	font-weight:800;
}