/*
Animate.css - http://daneden.me/animate
LICENSED UNDER THE MIT LICENSE (MIT)

Copyright (c) 2012 Dan Eden
*/
.animated {
    animation-fill-mode: both;
    animation-duration:  1s;
}
.animated.hinge {
    animation-duration: 2s;
}
@keyframes bounceInDown {
    0% {
        transform: translateY(-2000px);
    }
    60% {
        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
.bounceInDown {
    animation-name: bounceInDown;
}
a, a:active, a:focus {
    outline: none;
}