
.easy-peasy{
	width:80%;
	position:relative;
	padding:0;
	margin:0 auto;
	background:#000;
	height:70%;
}
 .easy-peasy .slides, .easy-peasy li{
	list-style: none;
	position:absolute;
	top:0;
	left:0;
	padding:0;
	margin:0;
	transition: all 0.5s ease;
	opacity:0;
}
/* span 클래스가 easy-peasy의 이름을 가진 선택자. */
span[class^="easy-peasy"] {
	/* COLOR OF BUTTONS  */
	cursor:pointer;
	overflow:hidden; text-indent:-9999px;
	width:50px; height:58px;
	display:block;
	position:absolute;
	z-index:100;
	top:32%;
}

.easy-peasy-back{	
	left:10%;
	background:url(../image/button.png) 0 117px;

}
.easy-peasy-back:hover{
	background:url(../image/button.png) 0 58px;
	}

.easy-peasy-next{	
	right:10%;
	background:url(../image/button.png) -50px 117px;
}
.easy-peasy-next:hover{
	background:url(../image/button.png) -50px 58px;
}

.slides.active{
	z-index: 10;
}
.previous-slide.active, .next-slide.active, .previous-slide, .next-slide{
	z-index: 9;
}
.easy-peasy .next-slide.slides{
	left: 600px;
	opacity:0;
}
.easy-peasy .previous-slide.slides{
	left: -600px;
	opacity:0;
}
.easy-peasy .active.slides{
	opacity:1;
}
.easy-peasy li span{
	display:none;
	width:100%;
	height:100%;
	position:absolute;
	left:0; top:0;
	text-align:right;
	background:rgba(0,0,0,.7);
	color:#fff;
	box-sizing:border-box;
	padding:18% 10% 0 70%;
	font-size:14px; line-height:22px;
	letter-spacing:-1px;
}
