
.ticker-even{
	font-weight: 400;
}
.ticker-odd{
	font-weight: 600;
}

* {
  box-sizing: border-box;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  height: 4rem;
  padding-left: 100%;
  box-sizing: content-box;
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 3rem;
  font-size: 1.5rem;
  color: #333;
  text-transform: uppercase;
}

.ticker__container{
	font-family: 'Open Sans', sans-serif;
	position:relative;
	width: 930px;
	margin-left: auto;
	margin-right: auto;
	background: #f1f1f1;
	overflow-x: hidden;
}

.ticker__item > a{
	text-decoration: none;
	color: #333;
}

.ticker__item > a > span{
	color: #BD2B2B;
	/*padding-right: 10px;*/
}

.ticker__item > a:visited{
	color: #333;
}

.flash_news{
	position: absolute;
	left:0;
	top:0;
	height: 4rem;
	width: 120px;
	background: #BD2B2B;
	text-align: center;
	color: white;
	line-height:4rem;
	z-index: 99;
}