/* CSS Document */

#imagens {
	white-space: nowrap; /* nowrap -> NÃƒO QUEBRA DE LINHA */
	font-size: 0; /* para retirar os ESPAÃ‡OS entre as imagens */
	width: 100%;
	height: 400px;
	overflow: hidden;
	}
	
	#imagens img {
	vertical-align: top;
	width: auto;
	}

.fundo-ficha-slider {
	width: 100%;
	height: 800px;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	position: absolute;	
	text-align: center;
	display: none;
}

.ficha-slider {
	width: 1100px;
	height: 400px;
	overflow: hidden;
	display:inline-block;
	margin-top: 100px;
}

.ficha-slider-imgs {
	width: 2500px;
	height: 400px;
}

.ficha-slider-img {
	width: 1100px;
	position: relative;
	z-index: 0;
	height: auto;
	overflow:hidden;
	float: left;
	text-align: center;
}

.bt-slider-ficha-esq {
	width: 70px;
	height: 70px;
	display: block;
	position: absolute;
	top: 35%;
	left: 10px;
	z-index:1;
	cursor: pointer;
	content: '<';
}

.bt-slider-ficha-dir {
	width: 70px;
	height: 70px;
	display: block;
	position: absolute;
	top: 35%;
	right: 10px;
	z-index:1;
	cursor: pointer;
}

.bt-slider-fechar {
	width: 50px;
	height: 50px;
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index:1;
	cursor: pointer;
}