@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
        0% {
                opacity: 0;
        }
        100% {
                opacity: 1;
        }
}
@keyframes fadeIn {
        0% {
                opacity: 0;
        }
        100% {
                opacity: 1;
        }
}
.fadeIn {
        -webkit-animation-name: fadeIn;
        -moz-animation-name: fadeIn;
        animation-name: fadeIn;
}