<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
	background-color: #afafaf;
	overflow: hidden;
	width:234px;
	height:286px;
	margin:0;
}

.Bannersize {
	width:234px;
	height:286px;
	position: absolute;
}


#container_ad{
	cursor: pointer;
	overflow: hidden;
}

#logo{	
	top:0;
	left:0;
	opacity: 1; 
}

#bg{
	top:0;
	left:0;
	opacity: 1; 
	transform-origin: 50% 70%; /*breite hoehe*/
    transform: scale(1.07,1.07);
    -webkit-animation: scaleDown ease-out 1 forwards;  
	-moz-animation: scaleDown ease-out 1 forwards;
	animation: scaleDown ease-out 1 forwards;
	animation-duration: .75s;
	animation-delay: 0s;
}

/*TP1*/
#hd1{
	top:0;
	left:10px;
	opacity: 0; 
	-webkit-animation:fadeInToLeft ease-out 1 forwards, fadeOutLeft ease-out 1 forwards;
	-moz-animation:fadeInToLeft ease-out 1 forwards, fadeOutLeft ease-out 1 forwards;
	animation:fadeInToLeft ease-out 1 forwards, fadeOutLeft ease-out 1 forwards;
	animation-duration: .35s, .35s;
	animation-delay: .25s, 3s;
}
#hd2{
	top:0;
	left:10px;
	opacity: 0; 
	-webkit-animation:fadeInToLeft ease-out 1 forwards;
	-moz-animation:fadeInToLeft ease-out 1 forwards;
	animation:fadeInToLeft ease-out 1 forwards;
	animation-duration: .35s;
	animation-delay: .5s;
}
#hd2b{
	top:0;
	left:10px;
	opacity: 0; 
	-webkit-animation:fadeInToLeft ease-out 1 forwards;
	-moz-animation:fadeInToLeft ease-out 1 forwards;
	animation:fadeInToLeft ease-out 1 forwards;
	animation-duration: .35s;
	animation-delay: .75s;
}
#hd3{
	top:0;
	left:10px;
	opacity: 0; 
	-webkit-animation: fadeInToLeft ease-out 1 forwards;
	-moz-animation: fadeInToLeft ease-out 1 forwards;
	animation: fadeInToLeft ease-out 1 forwards;
	animation-duration: .35s;
	animation-delay: 3.25s;
}
#hd4{
	top:0;
	left:10px;
	opacity: 0; 
	-webkit-animation: fadeInToLeft ease-out 1 forwards;
	-moz-animation: fadeInToLeft ease-out 1 forwards;
	animation: fadeInToLeft ease-out 1 forwards;
	animation-duration: .35s;
	animation-delay: 3.5s;
}

#cta{
	transform-origin: 80px 260px; /*breite hoehe*/
    transform: scale(1,1);
   	top:0;
	left:0;
	opacity: 0; 
	-webkit-animation: fadeInCTA ease-in 1 forwards, bounceCTA ease-in 1 forwards;
	-moz-animation: fadeInCTA ease-in 1 forwards, bounceCTA ease-in 1 forwards;
	animation: fadeInCTA ease-in 1 forwards, bounceCTA ease-in 1 forwards;
	animation-duration: .8s, .8s;
	animation-delay: 1s, 2s;
}

/* animation hintergrund skalieren auf 100% */
@-webkit-keyframes scaleDown { 
	from {
		transform: scale(1.07,1.07);
	}
	to {
		transform: scale(1 ,1);
	}
}
@-moz-keyframes scaleDown { 
	from {
		transform: scale(1.07,1.07);
	}
	to {
		transform: scale(1 ,1);
	}
}
@keyframes scaleDown { 
	from {
		transform: scale(1.07,1.07);
	}
	to {
		transform: scale(1 ,1);
	}
}

/* animation einblenden des objektes plus 10 pixel tverschiebung nach links */
@-webkit-keyframes fadeInToLeft { 
	from { 
		opacity:0; 
		left:10px;
	} 
	to { 
		opacity:1;
		left:0px; 
	} 
}
@-moz-keyframes fadeInToLeft { 
	from { 
		opacity:0; 
		left:10px;
	} 
	to { 
		opacity:1;
		left:0px; 
	}
}
@keyframes fadeInToLeft { 
	from { 
		opacity:0; 
		left:10px;
	} 
	to { 
		opacity:1;
		left:0px; 
	} 
}

/* animation ausblenden des objektes nach links raus*/
@-webkit-keyframes fadeOutLeft {
	0%{
		opacity:1;
		left:0px;
	}
	100%{
		opacity:0;
		left:-10px;
	}
}
@-moz-keyframes fadeOutLeft {
	0%{
		opacity:1;
		left:0px;
	}
	100%{
		opacity:0;
		left:-10px;
	}
}
@keyframes fadeOutLeft {
	0%{
		opacity:1;
		left:0px;
	}
	100%{
		opacity:0;
		left:-10px;
	}
}
/*animation fadein CTA*/
@-webkit-keyframes fadeInCTA {
	0% {
		opacity:0;
		transform: scale(1.9,1.9);
	}
	37% {
		opacity:1;
		transform: scale(.95,.95);
	}
	50%{
		opacity:1;
		transform: scale(1,1);
	}
	72% {
		transform: scale(.98,.98);
	}
	100%{
		opacity:1;
		transform: scale(1,1);
	}
}
@-moz-keyframes fadeInCTA {
	0% {
		opacity:0;
		transform: scale(1.9,1.9);
	}
	37% {
		opacity:1;
		transform: scale(.95,.95);
	}
	50%{
		opacity:1;
		transform: scale(1,1);
	}
	72% {
		transform: scale(.98,.98);
	}
	100%{
		opacity:1;
		transform: scale(1,1);
	}
}
@keyframes fadeInCTA {
	0% {
		opacity:0;
		transform: scale(1.9,1.9);
	}
	37% {
		opacity:1;
		transform: scale(.95,.95);
	}
	50%{
		opacity:1;
		transform: scale(1,1);
	}
	72% {
		transform: scale(.98,.98);
	}
	100%{
		opacity:1;
		transform: scale(1,1);
	}
}
/*animation bounce CTA*/
@-webkit-keyframes bounceCTA {
	0% {
		transform: scale(1,1);
		opacity:1;
	}
	25% {
		transform: scale(1.04 , 1.04);
	}
	50% {
		transform: scale(1 ,1);
	}
	75% {
		transform: scale(1.04 , 1.04);
	}
	100% {
		transform: scale(1 ,1);
		opacity:1;
	}
}
@-moz-keyframes bounceCTA {
	0% {
		transform: scale(1,1);
		opacity:1;
	}
	25% {
		transform: scale(1.04 , 1.04);
	}
	50% {
		transform: scale(1 ,1);
	}
	75% {
		transform: scale(1.04 , 1.04);
	}
	100% {
		transform: scale(1 ,1);
		opacity:1;
	}
}
@keyframes bounceCTA {
	0% {
		transform: scale(1,1);
		opacity:1;
	}
	25% {
		transform: scale(1.04 , 1.04);
	}
	50% {
		transform: scale(1 ,1);
	}
	75% {
		transform: scale(1.04 , 1.04);
	}
	100% {
		transform: scale(1 ,1);
		opacity:1;
	}
}

#info_text { 
    position: absolute;
    /*bottom: -2px;
    right: 150px;*/
    font-family: 'Arial', 'Verdana', sans-serif;
    letter-spacing: 0px;
    /*font-size: 9px;
    line-height: 11px;*/
    font-weight: 100;
    color: white;
}

sup{
	font-size: 8px!important;
	letter-spacing: 0px;
}
#info{
	top:268px;
}
#legal {
	display: none;
	z-index:0;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height: auto;
	background-color:#fff;
}
#legal img{
	width:100%;
	object-position: contain;
}
.layer {
	height: 100%;
	position: absolute;
	z-index: 1;
	background-color:transparent;
	border:none;
	box-shadow: none;
	font-size:10px;
	color:#fff;
	display: inline-block;
	width:62px;
	height:15px;
	left: 1px;
	top: 232px;
}</pre></body></html>