
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

#slide {
	position: relative;
}

.slides_container {
	margin-top: -10px;
    width: 750px;
	height: auto;
	display: block;
}

.slides_control img {
	
}

/*
	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
*/


/*
	Next/prev buttons
*/

#slide .next,#slide .prev {
	position:absolute;
	top:115px;
	left:0;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slide .next {
	left:485px;
}

/*
	Pagination
*/

.pagination {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: block;
	z-index: 101;
}

.pagination li {
	float: left;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	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;
}