/**TEST SITE INFO BOX***********/
body::before {
    background: red none repeat scroll 0 0;
    color: #fff;
    content: "THIS IS A DEMO SITE";
    display: block;
    font-size: 14px;
    font-weight: bold;
    position: fixed;
    text-align: center !important;
    top: 200px;
    right:-100px;
    width:240px;
    height:40px;
    padding:10px;
    transform: rotate(270deg);
    animation-name: banner-flash;
    animation-duration: 2.6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes banner-flash{
    from {color: #fff;}
    to {color: #000;}
}