﻿/*
	Page style
*/
#container {
	width:1000px;
	padding:0px;
	margin:0px;
	position:relative;
	z-index:0;
}

#example {
	width:1000px;
	height:300px;
	position:relative;
	padding:12px;
}
/*
	Slideshow
*/

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

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

.slides_container {
	width:676px;
	overflow:hidden;
	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:676px;
	height:300px;
	display:block;
}