/*SLIDER DESTACADOS*/
#slider_destacados{
	width: 100%;
	height: 590px;
	overflow: hidden;
}

#slider_destacados .slide{
	width: 100%;
	position: relative;
	height: 590px;
	overflow: hidden;
	background-color: #000;
}

#slider_destacados .slide .textos,
#slider_destacados .slide h2,
#slider_destacados .slide p,
#slider_destacados .slide a{
	transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
}

#slider_destacados .slide img{
	position: absolute;
	z-index: 1;
	top: 0px;
	transition: transform 400ms ease-out;
	-webkit-transition: transform 400ms ease-out;
	opacity: 0.9;
}

#slider_destacados .slide .textos{
	position: absolute;
	width: 600px;
	left: 50%;
	top: 50%;
	margin-left: -300px;
	z-index: 2;
	text-align: center;
	text-shadow: 1px 1px #000;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	line-height:41px;
}

#slider_destacados .slide .textos p::after{
	display: block;
	content: '';
	border-bottom: 3px solid #fff;
	width: 0%;
	margin: 10px auto 0 auto;
	transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
	line-height:28px;
}

	/*Animación*/
	#slider_destacados .slide.animado .textos h2,
	#slider_destacados .slide.animado .textos p{
		transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
	}

	#slider_destacados .slide.animado .textos p::after{
		width: 100%;
	}

#slider_destacados .cycle-pager{
	position: absolute;
	bottom: 30px;
	left: 50%;
	z-index: 999;
}

#slider_destacados .cycle-pager span{
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: #fff;
	border-radius: 50%;
	text-indent: -10000px;
	color: transparent;
	margin-left: 5px;
}

#slider_destacados .cycle-pager span.cycle-pager-active{
	background-color: #ba8748;
}

/*UBICACIÓN*/
#ubicacion{
	width: 100%;
	position: relative;
	height: 420px;
}

#ubicacion img{
	position: relative;
	z-index: 1
}

#ubicacion #mapa{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#ubicacion .textos *{
	transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
}

#ubicacion .textos{
	position: absolute;
	width: 600px;
	left: 50%;
	top: 150px;
	margin-left: -300px;
	z-index: 2;
	text-align: center;
	text-shadow: 1px 1px #000;
}

#ubicacion .textos p::after{
	display: block;
	content: '';
	border-bottom: 3px solid #fff;
	width: 0%;
	margin: 10px auto 0 auto;
	transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
}

	/*Animación*/
	#ubicacion.animado .textos h2,
	#ubicacion.animado .textos p{
		transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
	}

	#ubicacion.animado .textos p::after{
		width: 100%;
	}

/*Botón Bajar*/
#bajar{
	position: absolute;
	left: 50%;
	bottom: 10px;
	z-index: 9998;
	margin-left: -27px;
	cursor: pointer;
}