/*
	Slideshow
*/
#slides {
	z-index:100;
    width:644px;
	position:relative;
    margin-top:28px;
    margin-left:133px;
    float:left;
    height:255px;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:644px;
	overflow:hidden;
	position:relative;
	display:none;
    height:255px;
}

/*
	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 a {
	width:900px;
	height:313px;
	display:block;
}

.slides_container a img {
	display:block;
    border:0 none;
}

.slides_container img{
    /*width:2000px;*/
    /*height:313px;*/
}

/*
	Pagination
*/

.pagination {
	margin:-20px -40px 0 0;
	width:100px;
    position:relative;
    right:0;
    z-index:10;
    float:right;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:10px;
	height:0;
	padding-top:10px;
	background-image:url(../imagens/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -11px;
}