@-webkit-keyframes fade{
            0%   { opacity: 0; }
            100% { opacity: 1; }
        }

@-webkit-keyframes fade2{
            0%   { opacity: 0; }
            100% { opacity: 0.4; }
        }

@-webkit-keyframes fade3{
            0%   { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }

@-webkit-keyframes spin{
            0%   { -webkit-transform: rotate(30deg) translate(0px, 0px);}
            100% { -webkit-transform: rotate(0deg) translate(0px, 0px);}
        }

@-webkit-keyframes spin2{
            0%   { -webkit-transform: rotate(-30deg) translate(0px, 0px);}
            100% { -webkit-transform: rotate(0deg) translate(0px, 0px);}
        }

/* Announcenments */
#announcement {
    text-align: center;
    background-color: #c53d11;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    padding-top: 6px;
    padding-bottom: 6px;
    height: 20px;
    width: 855px;
    color: white;
    position: relative;
  -webkit-animation-duration: 6s;
  -webkit-animation-name: fade3;
  -webkit-animation-iteration-count: 100;
}

#announcement.multiline {
    text-align: center;
    background-color: #912d0d;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 855px;
    height:70px;
    color: white;
    position: relative;
      -webkit-animation-duration: 0s;
  -webkit-animation-name: 0;
  -webkit-animation-iteration-count: 0;
}

#announcement.multiline p{
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
    width: 835px;
}
