﻿/*Border-Bottom-AnimationIn*/
.borderBottomFadeIn {
    border-bottom: 2px solid #000;
    animation: Border-Bottom-AnimationIn 2s;
}
@keyframes Border-Bottom-AnimationIn {
    0% {
        border-bottom: 2px solid #f0f0f0;
    }

    100% {
        border-bottom: 2px solid #000;
    }
}
@-moz-keyframes Border-Bottom-AnimationIn{
    0% {
        border-bottom: 2px solid #f0f0f0;
    }

    100% {
        border-bottom: 2px solid #000;
    }
}
@-webkit-keyframes Border-Bottom-AnimationIn {
    0% {
        border-bottom: 2px solid #f0f0f0;
    }

    100% {
        border-bottom: 2px solid #000;
    }
}
@-o-keyframes Border-Bottom-AnimationIn {
    0% {
        border-bottom: 2px solid #f0f0f0;
    }

    100% {
        border-bottom: 2px solid #000;
    }
}

/*Border-Bottom-AnimationOut */
.borderBottomFadeOut {
    border-bottom: 2px solid #f0f0f0;
    animation: Border-Bottom-AnimationOut 2s;
}
@keyframes Border-Bottom-AnimationOut {
    0% {
        border-bottom: 2px solid #000;
    }

    100% {
        border-bottom: 2px solid #f0f0f0;
    }
}
@-moz-keyframes Border-Bottom-AnimationOut {
    0% {
        border-bottom: 2px solid #000;
    }

    100% {
        border-bottom: 2px solid #f0f0f0;
    }
}
@-webkit-keyframes Border-Bottom-AnimationOut {
    0% {
        border-bottom: 2px solid #000;
    }

    100% {
        border-bottom: 2px solid #f0f0f0;
    }
}
@-o-keyframes Border-Bottom-AnimationOut {
    0% {
        border-bottom: 2px solid #000;
    }

    100% {
        border-bottom: 2px solid #f0f0f0;
    }
}

/*blackAnimationIn */
.blackAnimationFadeIn {
    background-color: #000;
    animation: blackAnimationIn 2s;
}
@keyframes blackAnimationIn {
    0% {
        background-color:transparent;
    }
    100% {
        background-color: #000;
    }
}
@-moz-keyframes blackAnimationIn {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: #000;
    }
}
@-webkit-keyframes blackAnimationIn {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: #000;
    }
}
@-o-keyframes blackAnimationIn {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: #000;
    }
}

/*blackAnimationOut */
.blackAnimationFadeOut {
    /*background-color: #000;*/
    animation: blackAnimationOut 2s;
}
@keyframes blackAnimationOut {
    0% {
        background-color: #000;
    }

    100% {
        background-color: transparent;
    }
}
@-moz-keyframes blackAnimationOut {
    0% {
        background-color: #000;
    }

    100% {
        background-color: transparent;
    }
}
@-webkit-keyframes blackAnimationOut {
    0% {
        background-color: #000;
    }

    100% {
        background-color: transparent;
    }
}
@-o-keyframes blackAnimationOut {
    0% {
        background-color: #000;
    }

    100% {
        background-color: transparent;
    }
}
