@charset 'UTF-8';

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 *
 * Edits made by Jordan Zoucha. To find any of the animations I deleted from this stylesheet, please access \\sandhills.int\file\Typeset\Art\Mac\Ryan\root\css\animate.css.
 *
 * Code was ran through CSS Comb to make it neater and easier to read. The designer recommends that any edits be ran through CSS Comb found at http://csscomb.com/online
 */

@-webkit-keyframes slideIn
{
    from
    {
        -webkit-transform: translate3d(0, -100%, 0);
                transform: translate3d(0, -100%, 0);
    }

    to
    {
        visibility: visible;

        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
    }
}

@keyframes slideIn
{
    from
    {
        -webkit-transform: translate3d(0, -100%, 0);
                transform: translate3d(0, -100%, 0);
    }

    to
    {
        visibility: visible;

        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideOut
{
    from
    {
        visibility: visible;

        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }

    to
    {
        visibility: hidden;

        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
}

@keyframes slideOut
{
    from
    {
        visibility: visible;

        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }

    to
    {
        visibility: hidden;

        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
}
