@charset "UTF-8";
@import url(cmn.css);
@import url(base.css);


#load2 div{
	animation: load2 3s linear ;
}
@keyframes load2 {
	0%{
		transform: translateY(50px);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	20%{
		transform: translateY(0);
	}
	70%{
		transform: translateY(0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100%{
		transform: translateY(-100px);
	}
}


