
#stage {
	position: relative;
	max-width: 1060px;
	margin: 0 auto;
	overflow: hidden;
	background: url(../img/main.jpg) no-repeat;
	background-size: cover;
}
.pic img{
	position:absolute;
	width: 100%;
	top:0;
	left:100%;
	-moz-animation: imgTrans 30s;
	-webkit-animation: imgTrans 30s;
	animation: imgTrans 30s;
}

div#textarea{
	position: relative;
}

#photo5 {
	position:absolute;
	top: 0;
	width: 100%;
	/* left:100%; */
	-moz-animation: imgTrans 30s;
	-webkit-animation: imgTrans 30s;
	animation: imgTrans 30s;
}

#photo1 img {
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
#photo2 img {
	-moz-animation-delay: 3s;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}
#photo3 img {
	-moz-animation-delay: 6s;
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}
#photo4 img {
	-moz-animation-delay: 9s;
	-webkit-animation-delay: 9s;
	animation-delay: 9s;
}

#photo5 {
	-moz-animation-delay: 9s;
	-webkit-animation-delay: 9s;
	animation-delay: 9s;
}



@-webkit-keyframes imgTrans {
 0% { left:0%; opacity:0;}
 5% { left:0%;opacity:1; }
 100% { left:0%; opacity:1;}

}
@-moz-keyframes imgTrans {
 0% { left:0%; opacity:0;}
 5% { left:0%;opacity:1; }
 100% { left:0%; opacity:1;}

}

@keyframes imgTrans {
 0% { left:0%; opacity:0;}
 5% { left:0%;opacity:1; }
 100% { left:0%; opacity:1;}

}


@media all and (max-width: 640px){

#photo5 {
	display: none;
	}
#stage{
	margin-bottom: 30px!important;
}
}