div.ft_container {
	
}

p.ft_object {
	width:14.5em;
	height:1.5em;
	font-size:1em;
	display:inline-block;
	vertical-align:top;
	overflow-y:hidden;
	overflow-x:hidden;
	
}

p.ft_object span {
	display:inline-block;
	position:relative;
	width:100%;
	height:100%;
	animation: shift_text 30s;
	animation-iteration-count: infinite;
	-webkit-animation: shift_text 30s; /* Safari & Chrome */
	-webkit-animation-iteration-count: infinite;
}

@media(max-width:768px){
	p.ft_object span{
		text-align: left;
	/*	text-indent: 2em;  */
	}
}

@keyframes shift_text{
  0%{
	top: 0;
    opacity: 0;
  }

  1%,25%{
    top: 0;
    opacity: 1;
  }

  26%,70%{
    top: -1.5em;
  }

  71%,100%{
    top: -3em;
  }
}

@-webkit-keyframes shift_text{
  0%{
	top: 0;
    opacity: 0;
  }

  1%,25%{
    top: 0;
    opacity: 1;
  }

  26%,70%{
    top: -1.5em;
  }

  71%,100%{
    top: -3em;
  }
}
