


/*
Encabezado del Slider
 ----------------------------------------*/
.slider-title {
	text-align: center;
	margin: 80px 0 40px;
	font-size: 3.2em;
	font-weight: 300;
	color: #FFF;
}

/**
 * Contendor del Slider
 ----------------------------------------*/
.slider-container {
	margin: 0 auto;
	width: 100%;
}

.slider-wrapper {
	position: relative;
	z-index: 90;
	height: 325px;
	width: 100%;
	overflow: hidden;
}

.slider-wrapper li {
	display: none;
}

li.slide-current {
	display: block;
}

.slider-wrapper li img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	height: 100%;
	width: 100%;
}

/**
 * Caption
 ----------------------------------------*/
.caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 95%;
	background: rgba(0,0,0,0.5);
	padding: 12px;
	
}

.caption-title {
	color: #00c5b9;
	font-weight: 700;
	font-size: 1.6em;
	margin-bottom: 10px;
}

.caption p {
	color: #FFF;
	font-size: 16px;
	line-height: 1.3em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/**
 * Controles del Slider
 ----------------------------------------*/
.slider-controls {
    text-align: center;
    position: absolute;
    width: 100%;
    line-height: 0px;
    bottom: 15%;

}

.slider-controls li {
	background: #fff !important;
	-webkit-border-radius: 50% !important;
	-moz-border-radius: 50% !important;
	border-radius: 50% !important;
	display: inline-block;
	padding-left: 0 !important;
	height: 12px;
	width: 12px;
	margin: 0 4px;
	cursor: pointer;
	line-height: 22px !important;
}

.slider-controls li.active {
	background: red !important;	
}

/**
 * Autores
 ----------------------------------------*/
.authors {
	margin-bottom: 15px;
	margin-top: 25px;
	color: #415066;
	font-size: 1.4em;
	text-align: center;
}





