#oneliner {
    display: inline-block;
    height: 20px;
    margin-left: 30px;
    overflow: hidden;
    .newsticker > li {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

@-webkit-keyframes redPulse {
    from { background-color: #ff2e2e; -webkit-box-shadow: 0 0 9px #555; }
    50% { background-color: #bd0000; -webkit-box-shadow: 0 0 14px #ff2e2e; }
    to { background-color: #ff2e2e; -webkit-box-shadow: 0 0 9px #555; }
}

@-moz-keyframes redPulse {
    from { background-color: #ff2e2e; -moz-box-shadow: 0 0 9px #555; }
    50% { background-color: #bd0000; -moz-box-shadow: 0 0 14px #ff2e2e; }
    to { background-color: #ff2e2e; -moz-box-shadow: 0 0 9px #555; }
}

@keyframes redPulse {
    from { background-color: #ff2e2e; box-shadow: 0 0 9px #555; }
    50% { background-color: #bd0000; box-shadow: 0 0 14px #ff2e2e; }
    to { background-color: #ff2e2e; box-shadow: 0 0 9px #555; }
}