table {
    width: 100%;
}
.news_p {
    text-align: justify;
    font-size: 20px;
    color: #171717;
}

#news_ticker {
    background: #002b3b;
    height: 46px;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.5);
    -moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.5);
    box-shadow: inset 0px 1px 2px rgba(0,0,0,0.5);
    display: flex;
} 
.news_ticker_span {
    color: #131313;
    background: #ffc107;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    width: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_ticker_ul {
    padding-left: 20px;
    -webkit-animation: ticker 18s cubic-bezier(1, 0, .5, 0) infinite;
    -moz-animation: ticker 18s cubic-bezier(1, 0, .5, 0) infinite;
    -ms-animation: ticker 18s cubic-bezier(1, 0, .5, 0) infinite;
    animation: ticker 18s cubic-bezier(1, 0, .5, 0) infinite;
    margin: 0;
    list-style-type: none;
}
.news_ticker_ul:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;
}

#news_ticker a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 200px;
    text-overflow: ellipsis;
    padding: 10px 0;
}
@-webkit-keyframes ticker {
    0%   {margin-top: 0px;}
    12.5%  {margin-top: -47px;}
    25%  {margin-top: -95px;}
    37.5%  {margin-top: -143px;}
    50% {margin-top: -187px;}
    62.5% {margin-top: -235px;}
    75% {margin-top: -283px;}
    87.5% {margin-top: -331px;}
    100% {margin-top: 0;}
}
@-moz-keyframes ticker {
    0%   {margin-top: 0px;}
    12.5%  {margin-top: -47px;}
    25%  {margin-top: -95px;}
    37.5%  {margin-top: -143px;}
    50% {margin-top: -187px;}
    62.5% {margin-top: -235px;}
    75% {margin-top: -283px;}
    87.5% {margin-top: -331px;}
    100% {margin-top: 0;}
}
@-ms-keyframes ticker {
    0%   {margin-top: 0px;}
    12.5%  {margin-top: -47px;}
    25%  {margin-top: -95px;}
    37.5%  {margin-top: -143px;}
    50% {margin-top: -187px;}
    62.5% {margin-top: -235px;}
    75% {margin-top: -283px;}
    87.5% {margin-top: -331px;}
    100% {margin-top: 0;}
}
@keyframes ticker {
    0%   {margin-top: 0px;}
    12.5%  {margin-top: -47px;}
    25%  {margin-top: -95px;}
    37.5%  {margin-top: -143px;}
    50% {margin-top: -187px;}
    62.5% {margin-top: -235px;}
    75% {margin-top: -283px;}
    87.5% {margin-top: -331px;}
    100% {margin-top: 0;}
}