.textcarousel_off { display:none; }

.textcarousel_on { 
	display:inline-block; 
	animation-name: textcarousel;
	animation-duration: 2000ms;
	animation-iteration-count: 1;
}


@keyframes textcarousel {
	0% { transform: rotateX(-90deg); opacity:0.5; }
	10% { transform: rotateX(0deg); opacity:1; }
	90% { transform: rotateX(0deg); opacity:1;}
	100% { transform: rotateX(90deg); opacity:0.5; }

}

[data-onload='textcarousel'] span {
    font: inherit;
    color: inherit;
}