#tick{
	position:absolute;
	top:235px;
}

#ticker{
	position:relative;
	width:500px;
	height:140px;
	overflow:hidden;
	text-align:center;
	word-wrap:break-word;
/*	line-height: 70px;	*/
}
	
.item-1, 
.item-2, 
.item-3 {
	position: absolute; 
	display: block;
	width:500px;
	top:75px;
	animation-duration:15s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

.item-1{
	animation-name: anim-1;
}

.item-2{
	animation-name: anim-2;
}

.item-3{
	animation-name: anim-3;
}

@keyframes anim-1 {
	0%, 8.3% { left: -100%; opacity: 1; }
  8.3%,25% { left: 0; right: 0; opacity: 1; }
  33.33%, 100% { left: 100%; opacity: 1; }
}

@keyframes anim-2 {
	0%, 33.33% { left: -100%; opacity: 1; }
  41.63%, 58.29% { left: 0; right: 0; opacity: 1; }
  66.66%, 100% { left: 100%; opacity: 1; }
}

@keyframes anim-3 {
	0%, 66.66% { left: -100%; opacity: 1; }
  74.96%, 91.62% { left: 0; right: 0; opacity: 1; }
  100% { left: 100%; opacity: 1; }
}