@charset "UTF-8";
/* CSS Document */
@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
  }
  .tcontainer{
	width: 100%;
	overflow: hidden;
  }
  .ticker-wrap {
	width: 100%;
	padding-left: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	/*background-color: rgba(68,20,9,1); original dark red 
	background-color: #7e0001;*/
	background-color: #6F150D;
	color: #FFFFFF;
	font-weight: bolder;
  }
  .ticker-move {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 40s;
  }
  .ticker-move:hover{
    animation-play-state: paused;
  }
  .ticker-item{
    display: inline-block;
    padding: 0 2rem;
  }
 
.tickertext {
	color: rgba(255,255,255,1);
	text-decoration: none;
}
.tickertext a {
	color: rgba(255,255,255,1);
	text-decoration: underline;
}