/***
* Flash Banner added January 2019
***/
#flasher {
    -webkit-animation: backgroundFader 5s ease-in-out infinite;
    animation: backgroundFader 5s ease-in-out infinite;
    margin-top: .25rem;
    margin-bottom: .4rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.25;
    color: #900;
    display: block;
    text-align: center;
    font-size: 1.8rem;
    padding: 1rem;
    font-family: Arial, Helvetica, sans serif;
    /*border-top: 1px solid #bdf;
    border-bottom: 1px solid #bdf;*/
}

@-webkit-keyframes backgroundFader {
    0% { background-color: #def; color: #000; }
    50% { background-color: #ffc; color: #900; }
    100% { background-color: #def; color: #000; }
}

@keyframes backgroundFader {
    0% { background-color: #def; color: #000; }
    50% { background-color: #ffc; color: #900; }
    100% { background-color: #def; color: #000; }
}
