/*Hace la imagen del carrusel completamente responsiva */
.carousel-inner img{
	
	width: 100%;
}

.carousel-indicators {
  width: 100%;
  left:0;
  margin: 0;
  bottom:0;
}


/*Hace los indicadores de carrusel en puntos y no en rayas*/
.carousel-indicators li {
	
  border-radius:0;
  width: 50px;
  #height: 10px;
  #margin: -5px -2px;
  #border:0;
  #margin-right: 1px;
  background-color: rgba(127,156,205,.6);
  color:#7F9CCD;
}

.carousel-indicators .active{
  background-color: rgba(127,156,205,.9);
  height: 8px;
}


/*Modifica el tamaño del icono de prev en el carrusel*/
.fa-hand-o-left { 

	width: 30px;
	height: 40px;
	#background-color: rgba(127,156,205,.8);
	margin:0;
	padding:0;
	color:#7F9CCD;
	position: relative;
	left: -10px;
	top: 50px;
}
.fa-hand-o-right {
	width: 30px;
	height: 40px;
	#background-color: rgba(127,156,205,.8);
	margin:0;
	padding:0;
	color:#7F9CCD;
	position: relative;
	left: 10px;
	top: 50px;
}







