/*
	Slideshow
*/

#slides {
	width:430px;
	height:370px;
	position:absolute;
	top:0px;
	left:0px;
	z-index:50;
	text-align: left;
	float:left;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:430px;
	height:370px;
	overflow:hidden;
	/*margin-left:18px;*/
	/*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
*/


/*
	Pagination
*/

.pagination {
	margin:auto;
	position:relative;
	top:-28px;
	z-index:100;
	/*retirar para alinhar à esquerda*/
	width:400px;
	text-align:center;
}

.pagination li {
	margin:-1px;
	display: inline-block;
	list-style:none;
}

.pagination li a {
	display:block;
	width:23px;
	height:0;
	padding-top:23px;
	background-image:url(images/pagination.png);
	background-position:0 0;
	float:right;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -23px;
}