@charset "utf-8";
@keyframes dragTop {
    0% {
        opacity:0;
        transform:translateY(-70px)
    }
    60% {
        opacity:1;
        transform:translateY(20px)
    }
    90% {
		opacity:1;
        transform:translateY(-5px)
    }
    97% {
		opacity:1;
        transform:translateY(-1px)
    }
    100% {
		opacity:1;
        transform:translateY(0px)
    }
}
@-webkit-keyframes dragTop {
    0% {
        opacity:0;
        -webkit-transform:translateY(-70px)
    }
    60% {
        opacity:1;
        -webkit-transform:translateY(20px)
    }
    90% {
		opacity:1;
        -webkit-transform:translateY(-5px)
    }
    97% {
		opacity:1;
        -webkit-transform:translateY(-1px)
    }
    100% {
		opacity:1;
        -webkit-transform:translateY(0px)
    }
}
@-moz-keyframes dragTop {
    0% {
        opacity:0;
        -moz-transform:translateY(-70px)
    }
    60% {
        opacity:1;
        -moz-transform:translateY(20px)
    }
    90% {
		opacity:1;
        -moz-transform:translateY(-5px)
    }
    97% {
		opacity:1;
        -moz-transform:translateY(-1px)
    }
    100% {
		opacity:1;
        -moz-transform:translateY(0px)
    }
}
@-ms-keyframes dragTop {
    0% {
        opacity:0;
        -ms-transform:translateY(-70px)
    }
    60% {
        opacity:1;
        -ms-transform:translateY(20px)
    }
    90% {
		opacity:1;
        -ms-transform:translateY(-5px)
    }
    97% {
		opacity:1;
        -ms-transform:translateY(-1px)
    }
    100% {
		opacity:1;
        -ms-transform:translateY(0px)
    }
}

@keyframes scaleInc {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }
	50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@-webkit-keyframes scaleInc {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }
	50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@-moz-keyframes scaleInc {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }
	50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@-ms-keyframes scaleInc {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }
	50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes dragBot {
    0% {
        opacity:0;
        transform:translateY(80px)
    }
    90% {
        opacity:1;
        transform:translateY(-6px)
    }
    100% {
		opacity:1;
        transform:translateY(0px)
    }
}
@-webkit-keyframes dragBot {
    0% {
        opacity:0;
        transform:translateY(80px)
    }
    90% {
        opacity:1;
        transform:translateY(-6px)
    }
    100% {
		opacity:1;
        transform:translateY(0px)
    }
}
@-moz-keyframes dragBot {
    0% {
        opacity:0;
        transform:translateY(80px)
    }
    90% {
        opacity:1;
        transform:translateY(-6px)
    }
    100% {
		opacity:1;
        transform:translateY(0px)
    }
}
@-ms-keyframes dragBot {
    0% {
        opacity:0;
        transform:translateY(80px)
    }
    90% {
        opacity:1;
        transform:translateY(-6px)
    }
    100% {
		opacity:1;
        transform:translateY(0px)
    }
}

.animation1 {
	-webkit-animation:dragTop 1.0s ease-in-out .3s both;
    -moz-animation:dragTop 1.0s ease-in-out .3s both;
    -ms-animation:dragTop 1.0s ease-in-out .3s both;
    animation:dragTop 1.0s ease-in-out .3s both;
}
.animation2 {
	-webkit-animation:scaleInc 1.0s ease-in-out .3s both;
    -moz-animation:scaleInc 1.0s ease-in-out .3s both;
    -ms-animation:scaleInc 1.0s ease-in-out .3s both;
    animation:scaleInc 1.0s ease-in-out .3s both;
}
.animation3 {
	-webkit-animation:dragBot 1.0s ease-in-out .3s both;
    -moz-animation:dragBot 1.0s ease-in-out .3s both;
    -ms-animation:dragBot 1.0s ease-in-out .3s both;
    animation:dragBot 1.0s ease-in-out .3s both;
}
.animation31 {
	-webkit-animation:dragBot 0.6s ease-in-out .3s both;
    -moz-animation:dragBot 0.6s ease-in-out .3s both;
    -ms-animation:dragBot 0.6s ease-in-out .3s both;
    animation:dragBot 0.6s ease-in-out .3s both;
}
.animation4 {
	-webkit-animation:bounceInLeft 1.0s ease-in-out .3s both;
    -moz-animation:bounceInLeft 1.0s ease-in-out .3s both;
    -ms-animation:bounceInLeft 1.0s ease-in-out .3s both;
    animation:bounceInLeft 1.0s ease-in-out .3s both;
}