/* 
	Resets defualt browser settings
	reset.css
*/


/*
	Page Style
*/


#container {
	width:650px;
	

	z-index:0;
}

#example {
	width:750px;
	height:202px;
	margin:0 auto;

}

/*
	Slideshow style
*/

#slides {

	top:5px;
	z-index:100;
	text-align:left;
}

/*
	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:650px;
	height:202px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	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:650px;
	height:202px;
	display:block;
}

/*
	Next/prev buttons
*/




/*
	Pagination
*/

.pagination {
	margin:-15px 0px 0px 650px;
	width:100px;
	z-index:200;
	display:block;
	

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

.pagination li a {
	display:block;
	width:12px;
	height:12px;
	line-height:12px;
	background:url(img/pagination.png) right no-repeat;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	display:block;
	width:12px;
	height:12px;
	line-height:12px;
	margin:0;
	padding:0;
	background:url(img/pagination.png) left no-repeat;
	float:left;
	overflow:hidden;
}