/* Destaque Slide */
div.slide-mask {
	position:relative;
	width:100%;
	height:inherit;
	overflow:hidden;
}
div.slide {
	margin:0 auto;
	position:relative;
	height:inherit;
}
div.slide a.arrow {
	position:absolute;
	display:block;
	top:50%;
	width:50px;
	height:50px;
	border-radius:100%;
	background-color:rgba(255,255,255,0.8);
	background-image:url(img/arrow.png);
	background-repeat:no-repeat;
	background-position:center center;
	z-index:99;
}
div.slide a.left { left:10px; }
div.slide a.right {
	right:10px;
	transform:scale(-1,1);
	-webkit-transform:scale(-1,1);
	-ms-transform:scale(-1,1);
}
div.slide section {
	position:absolute;
	left:50%;
	margin-left:-50%;
	width:100%;
	height:inherit;
	z-index:2;
}
div.slide section div.img {
	position:absolute;
	width:inherit;
	height:inherit;
	z-index:1;
}
div.slide section div.img img { width:inherit; height:inherit; }
div.slide section div.info { position:absolute; z-index:2; }
div.slide section.off { opacity:0.5; }
div.slide section.off div.info { display:none; }
div.slide a { color:inherit; }
div.slide a:hover * { text-decoration:underline; }