* {
    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: rgba(0,0,0,1);
	color: white;*/
    background-color: white;
    color: black;
    border: 1px solid #3291d1;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.ticker-container .ticker-caption {
    height: 50%;
    width: 100%;
    display: table;
    position: absolute;
    color: black;
    font-size: 0.8em;
    z-index: 1;

    background: -webkit-linear-gradient(top, #234FAA 0%, #234FAA 10%, #234FAA 90%, #234FAA 100%);
    background: -o-linear-gradient(top, #234FAA 0%, #234FAA 10%, #234FAA 90%, #234FAA 100%);
    background: -moz-linear-gradient(top, #234FAA 0%, #234FAA 10%, #234FAA 90%, #234FAA 100%);
    background: linear-gradient(top, #234FAA 0%, #234FAA 10%, #234FAA 90%, #234FAA 100%);

}

.ticker-container .ticker-caption p {
    height: inherit;
    width: inherit;
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
}

.ticker-container ul {
    list-style: none;
    padding: 0;
    height: auto;
}

.ticker-container ul div {
    overflow: hidden;
    position: absolute;
    z-index: 0;
    display: inline;
    min-width: 100%;
    left: 0;
    height: 50%;

    transition-timing-function: linear;
    /*transition-delay: 0.25s;*/

}

.ticker-container ul div.ticker-active {
    /*top: 30px;*/
    /*left: 1000px;*/
}

.ticker-container ul div.not-active {
    /*top: 60px;*/
    /*left: 170px;*/
}

.ticker-container ul div.remove {
    /*top: 0px;*/
    /*left: 0px;*/
}

.ticker-container ul div li {
    padding: 5px 0;
}

.ticker-container ul div li a {
    color: #EC0B43;
}

@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: -webkit-linear-gradient(top, #234FAA 0%, #234FAA 10%, #234FAA 90%, #234FAA 100%);
        background: -o-linear-gradient(top, #234FAA 0%, #234FAA 10%, #234FAA 90%, #234FAA 100%);
        background: -moz-linear-gradient(top, #234FAA 0%, #234FAA 10%, #234FAA 90%, #234FAA 100%);
        background: linear-gradient(top, #234FAA 0%, #234FAA 10%, #234FAA 90%, #234FAA 100%);
    }

    .ticker-container .ticker-caption p {
        text-align: left;
        padding-left: 20px;
    }

    .ticker-container ul {
        margin-left: 170px;
        height: 100%;
        width: 1128px;
    }

    .ticker-container ul div {
        height: 100%;
        left: 170px;
    }

    .ticker-container ul div.ticker-active {
        /*top: 0px;*/
        /*right: 170px;*/
    }

    .ticker-container ul div.not-active {
        /*top: 30px;*/
        /*right: 1000px;*/
    }

    .ticker-container ul div.remove {
        /*top: -30px;*/
        /*right: -1000px;*/
    }
}

@media (min-width: 768px) {
    .ticker-container {
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .ticker-container {
        margin-bottom: 10px;
    }
}
