* {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.ticker-container {
    height: 60px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #fff;	
    color: #000;
    border: 1px solid #E50000;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.ticker-container .ticker-caption {
    height: 50%;
    width: 100%;
    display: table;
    position: absolute;
    color: #fff;
    font-size: 15px;
    z-index: 1;
    background: #E50000;

}
.ticker-container .ticker-caption p {
    height: inherit;
    width: inherit;
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    font-size:14px;
}
.ticker-container ul {
    list-style: none;
    padding: 0;
    height: auto;
}
.ticker-container ul li {
    padding: 4px 10px;
    float:left;
    font-size:15px;
}
.ticker-color{
    color:#E50000;
    padding-right:5px;
}
@media (min-width: 500px) {
    .ticker-container {
        height: 30px;
        text-align: left;
    }
    .ticker-container .ticker-caption {
        height: 100%;
        width: 150px;
        color: #fff;
        font-weight: bold;
        background: #E50000;
    }
    .ticker-container .ticker-caption p {
        text-align: left;
        padding-left: 20px;
    }
    .ticker-container ul {
        margin-left: 170px;
        height: 100%;
        width: 1128px;
    }
}

@media (min-width: 768px) {
    .ticker-container {
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .ticker-container {
        margin-bottom: 20px;
    }
}