<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.newsTicker {
	padding:35px 0 0 0;
	background-color:#red ;
}
.ticker-container {
	width: 100%;
	text-align: left;
	background-color:#333 ;
	height: 30px;
	float:left;
}
.ticker-container .ticker-caption {
	width: 140px;
	background-color: #ff7777;
	color: white;
	font-size: 15px;
	background: url('../images/ticker-caption-bg.png') no-repeat;
	font-weight: bold;
	float:left;
	padding:6px 0 4px 15px;
	height:22px;
}

.ticker-container .marquee {
	display:inline-block;
	width:820px;
	font-size:14px;
	white-space: nowrap;
  overflow: hidden;
  padding:7px 0 0 0;
  color: #eee;
  -webkit-font-smoothing: antialiased !important;
}
.ticker-container .marquee span {
	display: inline-block;
  padding-left: 100%;
  text-indent: 0;
  animation: marquee 20s linear infinite;
}
.ticker-container .marquee span:hover {
    animation-play-state: paused
}
.ticker-container .marquee a {
	color: #f1f1f1;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
</pre></body></html>