#carousel{
	position: relative;
	height: 62px;
	width: 300px;
	/*overflow: hidden;*/
	margin: auto;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#carousel-izquierda{
	position: absolute;
    height: 100%;
    width: 20px;
    left: -20px;
	cursor: pointer;
	background-image: url('../img/carousel-izquierda.png');
	background-repeat: no-repeat;
	background-position: center;
}

#carousel-derecha{
	position: absolute;
    height: 100%;
    width: 20px;
    right: -20px;
	cursor: pointer;
	background-image: url('../img/carousel-derecha.png');
	background-repeat: no-repeat;
	background-position: center;
}

.imagen-carousel{
	position: absolute;
	cursor: pointer;
	background-color: #efeded;
	text-align: center;
}

#carousel .imagen-carousel:nth-child(1), #carousel .imagen-carousel:nth-child(5){
	width: 42px;
	height: 30px;
}

#carousel .imagen-carousel:nth-child(2), #carousel .imagen-carousel:nth-child(4){
	width: 56px;
	height: 45px;
}

#carousel .imagen-carousel:nth-child(3){
	width: 84px;
	height: 60px;
}

.imagen-carousel img{
	/*width: 100%;*/
	/*width: auto;
	height: 100%;*/
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}

#slider{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 15px;
	background-color: #ddd;
	border-radius: 5px;
	cursor: pointer;
	opacity: 0.3;
	display: none;
}

#slider-boton{
	position: absolute;
	background-color: #000;
	height: 100%;
	width: 30px;
	border-radius: 10px;
	left: 0;
	cursor: e-resize;
}

#nombre-revista{
	position: absolute;
	width: 100%;
	bottom: 7px;
	text-align: center;
}

/* 			RESPONSIVE DESIGN 			*/

/*TABLET, IPAD*/
@media only screen and (min-width: 481px) and (max-width: 768px){
	#carousel{
		width: 470px;
	}

	#carousel .imagen-carousel:nth-child(1), #carousel .imagen-carousel:nth-child(5){
		width: 65px;
		height: 30px;
	}

	#carousel .imagen-carousel:nth-child(2), #carousel .imagen-carousel:nth-child(4){
		width: 95px;
		height: 45px;
	}

	#carousel .imagen-carousel:nth-child(3){
		width: 130px;
		height: 60px;
	}
}

/* DESKTOP, LAPTOP, MAC */
@media only screen and (min-width: 769px){
	#carousel{
		width: 650px;
	}

	#carousel .imagen-carousel:nth-child(1), #carousel .imagen-carousel:nth-child(5){
		width: 90px;
		height: 30px;
	}

	#carousel .imagen-carousel:nth-child(2), #carousel .imagen-carousel:nth-child(4){
		width: 135px;
		height: 45px;
	}

	#carousel .imagen-carousel:nth-child(3){
		width: 180px;
		height: 60px;
	}
}