#alertContent
{
    width: 100%;
    margin:auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    background: black;
    position:fixed;
    /*top: 32px;*/
    left: 50%;
    /*margin-top: -100px;  Negative half of height. */
    margin-left: -50%; /* Negative half of width. */
    z-index:999998;

}
.alertText
{
    display: inline-block;
    padding-left: 100%;
    text-indent: 0;
    color:white;
    animation: marquee 15s linear infinite;
    z-index:999998;
}
.alertText a
{
    color:inherit !important;
    text-decoration: underline;
}

/* Make it a marquee */


.alertText:hover {
    animation-play-state: paused;
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Make it pretty */

