@keyframes ticker {
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(-100%, 0, 0); }

  }
  .tcontainer{
	  display:none;
	  position:absolute; 
	top: 40%; left:-10%;
	width: 150%;
	overflow: hidden;
	transform: rotate(15deg);
	z-index: 99999999;
  }
  .ticker-wrap {
	width: 100%;
	padding-left: 100%;
	background-color: #f00;
	color:#fff;
  }
  .ticker-move {
	display: inline-block;
	white-space: nowrap;
	padding-right: 100%;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: ticker;
	animation-duration: 100s;
  }
  .ticker-move:hover{
	animation-play-state: paused;
  }
  .ticker-item{
	  font-size: 2em;
	display: inline-block;
	padding: 50px 0;
  }