/* Neujahresgruß */

 
.animation
 { 
	top:12px;
	left: 280px;
	width: 300px;
	height: 160px;
	overflow: hidden; 
	position: absolute;
	z-index: 8;
	/* border: dotted 2px red; */
 }

.t0, .t1, .t2, .t3, .t4
 {
	font-size: 1.4em;
	width: 300px;
	text-align: center;
	position: absolute;
	color: #000077;
	animation-name: tmoveup;
	animation-timing-function: cubic-bezier(.24,-1.27,.56,1.2); 
	z-index: 8;
 }
 
.t0 { animation-duration: 3s; top: 10px; }
.t1 { animation-duration: 4s; top: 28px; }
.t2 { animation-duration: 5s; top: 46px; }
.t3 { animation-duration: 6s; top: 64px; }
.t4 { animation-duration: 8s; top: 90px; font-size: 1em; }

@keyframes tmoveup
 {
	from { transform: translateY(250px)  scale(0.5); opacity: 0; }
	to { transform: translateY(0px)  scale(1); opacity: 1; }
 }
