@charset "UTF-8";
/* CSS Document */

.sliderContainer{
	width: 1000px;
	height: 400px;
	position: relative;
}

#slider {
	width: 1000px;
	height: 667px;
	background: #eaeaea;
	overflow: hidden;
	position: relative;
	margin: auto;
}
#slider .slide{
	width: 1000px;
	height: 380px;
	float: left;
}
.slide p{
        color: #000;
        position: relative;
        bottom: 90px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.8);
       	border-left: 5px solid green;
}
.prev, .next{
	display: block;
	height: 48px;
	width: 48px;
	position: absolute;
	top: 312px;
}
.prev{
	background-position: 0 0;
	left: 12px;
	z-index: 5;
	background-image: url(imagenes/home/prev.png);
	background-repeat: no-repeat;
}
.prev:hover{
	background-position: 0 0px;
}
.next{
	background-position: 0 0;
	right: 11px;
	z-index: 5;
	background-image: url(imagenes/home/next.png);
	background-repeat: no-repeat;
}
.next:hover{
	background-position: 0 0px;
}
