/*
	Slideshow
*/

#slides {
	width:590px;
	height:490px; 
	position:absolute; 
	top:163px;
	left:295px;
}

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

.slides_container {
	width:580px;
	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:580px;
	height:490px;
	display:block;
}

/*
	Caption
*/

.caption {
	z-index:90; 
	position:absolute;
	bottom:-35px;
	left:0;
	width:980px;
	height:24px;
	padding-left:20px;
	padding-top:11px;
	text-align:left;
	text-transform:uppercase;
	background:url(../imagens/fundo_legenda.png);
	color:#FFF;
	font-size:12px;
	text-shadow:none;
}

.pagination {
	visibility:hidden;
}

#slides .next,#slides .prev {
	position:absolute;
	top:60px;
	left:580px;
	display:block;
	z-index:101;
}

#slides .next {
	left:615px;
}