.effect-content {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: -40px;
}
.effect-container > .effect-content > p {
	position: absolute;
	top: 50%;
	line-height: 100px;
	height: 90px;
	margin-top: -125px;
	font-size: 90px;
	width: 100%;
	text-align: center;
	color: transparent;
	-webkit-animation: blurFadeInOut 3s ease-in backwards;
	-moz-animation: blurFadeInOut 3s ease-in backwards;
	-ms-animation: blurFadeInOut 3s ease-in backwards;
	animation: blurFadeInOut 3s ease-in backwards;
}
.effect-container p.firstLine {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-ms-animation-delay: 1s;
	animation-delay: 1s;
}
.effect-container p.secondLine {
	-webkit-animation: none;
	-moz-animation: none;
	-ms-animation: none;
	animation: none;
	color: transparent;
	text-shadow: 0px 0px 1px #fff;
}
.effect-container p.secondLine span {
	display: block;
}
.effect-container p.secondLine span:nth-child(1) {
	-webkit-animation: blurFadeInOrange 3s ease-in 4s backwards;
	-moz-animation: blurFadeInOrange 3s ease-in 4s backwards;
	-ms-animation: blurFadeInOrange 3s ease-in 4s backwards;
	animation: blurFadeInOrange 3s ease-in 4s backwards;
	color: transparent;
	text-shadow: 0px 0px 1px #e9ac00;
}
.effect-container p.secondLine span:nth-child(2) {
	-webkit-animation-delay: 7s;
	-moz-animation-delay: 7s;
	-ms-animation-delay: 7s;
	animation-delay: 7s;
	-webkit-animation: blurFadeInGrey 3s ease-in 7s backwards;
	-moz-animation: blurFadeInGrey 3s ease-in 7s backwards;
	-ms-animation: blurFadeInGrey 3s ease-in 7s backwards;
	animation: blurFadeInGrey 3s ease-in 7s backwards;
	color: transparent;
	text-shadow: 0px 0px 1px #545454;
}
.effect-container p.secondLine span:nth-child(3) {
	-webkit-animation-delay: 7s;
	-moz-animation-delay: 7s;
	-ms-animation-delay: 7s;
	animation-delay: 7s;
	-webkit-animation: blurFadeInGrey 3s ease-in 9s backwards;
	-moz-animation: blurFadeInGrey 3s ease-in 9s backwards;
	-ms-animation: blurFadeInGrey 3s ease-in 9s backwards;
	animation: blurFadeInGrey 3s ease-in 9s backwards;
	color: #000;
}
.effect-container .scroller p{
	-webkit-animation-delay: 10s;
	-moz-animation-delay: 10s;
	-ms-animation-delay: 10s;
	animation-delay: 10s;
	-webkit-animation: blurFadeInWhite 3s ease-in 10s backwards;
	-moz-animation: blurFadeInWhite 1s ease-in 10s backwards;
	-ms-animation: blurFadeInWhite 3s ease-in 10s backwards;
	animation: blurFadeInWhite 3s ease-in 10s backwards;
}

/**/

@-webkit-keyframes blurFadeInOut {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 40px #fff;
		-webkit-transform: scale(1.3);
	}
	20%, 75% {
		opacity: 1;
		text-shadow: 0px 0px 1px #fff;
		-webkit-transform: scale(1);
	}
	100% {
		opacity: 0;
		text-shadow: 0px 0px 50px #fff;
		-webkit-transform: scale(0);
	}
}
@-webkit-keyframes blurFadeIn {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 40px #fff;
		-webkit-transform: scale(1.3);
	}
	60% {
		opacity: 0.5;
		text-shadow: 0px 0px 10px #fff;
		-webkit-transform: scale(1);
	}
	100% {
		opacity: 1;
		text-shadow: 0px 0px 1px #fff;
		-webkit-transform: scale(1);
	}
}

/**/

@-moz-keyframes blurFadeInOut {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 40px #fff;
		-moz-transform: scale(1.3);
	}
	20%, 75% {
		opacity: 1;
		text-shadow: 0px 0px 1px #fff;
		-moz-transform: scale(1);
	}
	100% {
		opacity: 0;
		text-shadow: 0px 0px 50px #fff;
		-moz-transform: scale(0);
	}
}
@-moz-keyframes blurFadeIn {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 40px #fff;
		-moz-transform: scale(1.3);
	}
	100% {
		opacity: 1;
		text-shadow: 0px 0px 1px #fff;
		-moz-transform: scale(1);
	}
}

/**/

@keyframes blurFadeInOut {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 40px #545454;
		transform: scale(1.3);
	}
	20%, 75% {
		opacity: 1;
		text-shadow: 0px 0px 1px #545454;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		text-shadow: 0px 0px 50px #545454;
		transform: scale(0);
	}
}
@keyframes blurFadeInGrey {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 40px #545454;
		transform: scale(1.3);
	}
	50% {
		opacity: 0.5;
		text-shadow: 0px 0px 10px #545454;
		transform: scale(1);
	}
	100% {
		opacity: 1;
		text-shadow: 0px 0px 1px #545454;
		transform: scale(1);
	}
}
@keyframes blurFadeInOrange {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 40px #e9ac00;
		transform: scale(1.3);
	}
	50% {
		opacity: 0.5;
		text-shadow: 0px 0px 10px #e9ac00;
		transform: scale(1);
	}
	100% {
		opacity: 1;
		text-shadow: 0px 0px 1px #e9ac00;
		transform: scale(1);
	}
}
@keyframes blurFadeInWhite {
	0% {
		opacity: 0;
		text-shadow: 0px 0px 40px #fff;
		transform: scale(1.3);
	}
	50% {
		opacity: 0.5;
		text-shadow: 0px 0px 10px #fff;
		transform: scale(1);
	}
	100% {
		opacity: 1;
		text-shadow: 0px 0px 1px #fff;
		transform: scale(1);
	}
}