.animate1{
		animation: ty1 1s linear  alternate;
		animation-fill-mode: both;
		-webkit-animation: ty1 1s linear  alternate;
		-webkit-animation-fill-mode: both;
}
	@-webkit-keyframes ty1 {
		0% {right: -180px;opacity:0;}
		50% {opacity:0.2;}
		70% {opacity:0.5;}
		100% {right: 1%;-webkit-transform:rotate(-360deg);}
	}
	@keyframes ty1 {
		0% {right: -180px;opacity:0;}
		50% {opacity:0.2;}
		70% {opacity:0.5;}
		100% {right: 1%;transform:rotate(-360deg);}
	}

.animate2{
		-webkit-animation: ty2 1s linear 1s alternate;
		animation: ty2 1s linear 1s alternate;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
	@-webkit-keyframes ty2 {
		0% {margin-left:-1000px;opacity:0;}
		100% {margin-left:0px;opacity:1;}
	}
	@keyframes ty2 {
		0% {margin-left:-1000px;opacity:0;}
		100% {margin-left:0px;opacity:1;}
	}	
.animate3{
		-webkit-animation: ty3 1s linear 2s alternate;
		animation: ty3 1s linear 2s alternate;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
	@-webkit-keyframes ty3 {
		0% {margin-left:-1000px;opacity:0;}
		100% {margin-left:0px;opacity:1;}
	}
	@keyframes ty3 {
		0% {margin-left:-1000px;opacity:0;}
		100% {margin-left:0px;opacity:1;}
	}
.animate4{
		-webkit-animation: ty4 1s linear 2s alternate;
		animation: ty4 1s linear 2s alternate;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
	@-webkit-keyframes ty4 {
		0% {margin-top:1000px;opacity:0;}
		100% {margin-top:0px;opacity:1;}
	}
	@keyframes ty4 {
		0% {margin-top:1000px;opacity:0;}
		100% {margin-top:0px;;opacity:1;}
	}
.animate5{
		-webkit-animation: ty5 1s linear 2s alternate;
		animation: ty5 1s linear 2s alternate;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
	@-webkit-keyframes ty5 {
		0% {margin-right: 80%;}
		100% {margin-right:10%;}
	}
	@keyframes ty5 {
		0% {margin-right: 80%;}
		100% {margin-right:10%;}
	}
.downshow{
		-webkit-animation: downshow 1s linear alternate;
		animation: downshow 1s linear alternate;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
@-webkit-keyframes downshow {
	0% {opacity: 0;transform: translateY(-50px);}
	100% {opacity: 1;transform: translateY(0px);}
}
@keyframes downshow {
	0% {opacity: 0;transform: translateY(-50px);}
	100% {opacity: 1;transform: translateY(0px);}
}
.upshow{
		-webkit-animation: upshow 1s linear alternate;
		animation: upshow 1s linear alternate;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
@-webkit-keyframes upshow {
	0% {opacity: 0;transform: translateY(50px);}
	100% {opacity: 1;transform: translateY(0px);}
}
@keyframes upshow {
	0% {opacity: 0;transform: translateY(50px);}
	100% {opacity: 1;transform: translateY(0px);}
}
.leftshow{
		-webkit-animation: leftshow 1s linear alternate;
		animation: leftshow 1s linear alternate;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
@-webkit-keyframes leftshow {
	0% {opacity: 0;transform: translateX(-100px);}
	100% {opacity: 1;transform: translateX(0px);}
}
@keyframes leftshow {
	0% {opacity: 0;transform: translateX(-100px);}
	100% {opacity: 1;transform: translateX(0px);}
}
.rightshow{
		-webkit-animation: rightshow 1s linear alternate;
		animation: rightshow 1s linear alternate;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
@-webkit-keyframes rightshow {
	0% {opacity: 0;transform: translateX(100px);}
	100% {opacity: 1;transform: translateX(0px);}
}
@keyframes rightshow {
	0% {opacity: 0;transform: translateX(100px);}
	100% {opacity: 1;transform: translateX(0px);}
}