#container {
	margin:0 auto;
	position:relative;
	z-index:0;

	}
#frame {
	position:absolute;
	z-index:0;
	width:300px;
	height:200px;
	top:-3px;
	left:-80px;
	border:1px solid #0000FF;
	}
#example {
	height:160px;
	position:relative;
	}
	
/*	Slideshow style */
#slides {
	position:absolute;
	
	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 {
	width:470px;
	overflow:hidden;
	position:relative;
	display:block;

	}

/*
	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 {
	width:507px;
	height:160px;
	display:block;
	}
	
/* 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 */
#slides .pagination {
	position:absolute;
	right: -41px;
	bottom: -78px;
	z-index:99999px;
	}
#slides .pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
	font-size:0px;
	}
#slides .pagination li a {
	display:block;
	width:12px;
	padding-top:12px;
	background:url(images/dots2.png) no-repeat;
	background-position:0 0;
	float:left;
	overflow:hidden;
	}
#slides .pagination li.current a {
	background-position:-17px 0;
	}
#slides .link {
	display:block;
	margin-top:10px;
	}