.horizontal_news_container{
	background: #ce2d2d;
    color: white;
    height: 30px;
}
.news_logo_div{
	height: 100%;
	border-right: 1px solid white;
}
.news_view_all_div{
	height: 100%;
	border-left: 1px solid white;
}
.news_view_all_div a{
	color: white;
}
.ht-100 {
    height: 100%;
}
.pd-0{
    padding: 0;
}
.news-row div{
	display: inline-block;
}

.latest-news-txt-div{
	width: 10%;
    height: 100%;
    float: left;
    padding-top: 3px;
    background: black;
}
.view-all-txt-div{
    width: 10%;
    height: 100%;
    float: left;
    padding-top: 3px;
    background: #b30000;
}
.view-all-txt-div a{
    text-decoration: none;
    color: white;
    height: 100%;
    display: block;
}
/* Make it a marquee */
.marquee {
    padding-top: 3px;
    float: left;
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    text-indent: 0;
    animation: marquee 30s linear infinite;
}
.marquee span:hover {
    animation-play-state: paused
}
.marquee a{
	text-decoration: none;
	color: white;
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}