@media ( max-width : 1080px) {
	.LinksCell:nth-child(3) {
		clear: both;
	}
	.EmsVorteileCell:nth-child(3) {
		clear: both;
	}
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
 
	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
 
	-webkit-animation-duration:2s;
	-moz-animation-duration:2s;
	animation-duration:2s;
}

.fadeInRight {
    animation: fadeInRight ease-in 1;
    animation-duration: 1s;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
	animation: fadeInLeft ease-in 1;
 	animation-duration: 1s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



.PreisBereich .Zeile DIV:nth-child(1) {
	xwidth: 100%;
}

.PreisBereich .Zeile DIV:nth-child(2) {
	width: 1%;
	white-space: nowrap;
	text-align: right;
}

.PreisBereich .Zeile DIV:nth-child(3) {
	width: 1%;
	text-align: right;
	white-space: nowrap;
}

@media ( max-width : 660px) {
	.PreisBereich .Zeile DIV:nth-child(1) {
		width: 100%;
		padding-bottom: 0px;
	}
	.PreisBereich .Zeile DIV:nth-child(2) {
		width: 50%;
		float: left;
	}
	.PreisBereich .Zeile DIV:nth-child(3) {
		width: 50%;
		float: left;
	}
}