a{
	text-decoration:none;
}
html, body{
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
	
	font-family: 'minusculas';
	
	background: black;
}

#fondo_fotos{
    float: left;
    width: 100%;
    background-image:url("../banner/banner_fotos.jpg");
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-size:cover;
}
/* pagina - contenido */
#contenido_fotos {
	float: left;
	width: 76%;
	margin-left: 10%;
	padding: 10px 2%;
	background: rgba(86, 138, 214, 0.6); /* azul endanza*/
	background: transparent;
	color: white;
	
	margin-top: 290px;
	margin-bottom: 90px;
}

#slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 96%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  font-family: arial, sans-serif;
  font-size: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 0;
}
/* Contenedor slider */
#slider { 
  position: relative;
  width: 100%;
  padding-bottom: 50%; /* Aspect ratio */
  overflow: hidden;
  border:10px solid rgba(86, 138, 214, 0.6); /* azul endanza*/
  border-radius: 5%/10%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#slider > a {
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  min-height: 100%;
}
/* Ajuste de las imágenes */
#slider img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin:0;
  padding:0; 
  border:0;
}
/* Texto que acompaña a cada imagen */
#slider p {
  position: absolute;
  bottom: 5%;
  left: 0;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 80%;
  height: 18px;
  margin:0;
  padding: 5px 0;
  border-radius: 0 20px 20px 0;
  color: #eee;
  background: rgba(86, 138, 214, 0.6); /* azul endanza*/
  font-size: 18px;
  line-height: 18px;
  text-align:center;
}
/* Flechas de navegación */
a.mas, a.menos {
    position: absolute;
    top: 50%;
    left: 0px;
    z-index: 10;
    width: 40px;
    height: 50px;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    color: white;
    background: rgba(86, 138, 214, 0.6); /* azul endanza*/
    text-decoration: none;
    transition: .5s margin ease;
}
a.mas:hover, a.menos:hover{
    background: rgba(86, 138, 214, 1); /* azul endanza*/
    font-weight: bolder;
}
a.mas {
    left: 100%;
    margin-left: 100px;
    border-radius: 25% 0 0 25%;
}
#slider-wrapper:hover a.mas {
margin-left: -60px;
}
a.menos {
    left: 0;
    margin-left: -100px;
    border-radius: 0 25% 25% 0;
}
#slider-wrapper:hover a.menos {
margin-left: 20px;
}

						
/* Media Queries */
@media screen and (min-width: 1500px) {
	#contenido_fotos{
		width: 70%;
		margin-left: 15%;
	}
}


@media screen and (max-width: 800px) {
    #contenido_fotos{
    	width: 96%;
    	margin-left: 2%;
    	padding: 0;
    }
}

@media screen and (max-width: 500px) {
    #contenido_fotos{
    	margin-top: 160px;
    }
}

