/*@import url(http://fonts.googleapis.com/css?family=Hind:700);

body {
	font-family: 'Hind', sans-serif;
	font-size: 400%;
	color: black;
	background: #0056a6;
	text-align: center;
}
*/
span.blur {
	color: transparent;
	animation: blur 10s ease-out infinite;
	-webkit-animation: blur 10s ease-out infinite;
}

span.blur:nth-child(1) {
	animation-delay: 0.1s;
	-webkit-animation-delay: 0.1s;
}
span.blur:nth-child(2) {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}
span.blur:nth-child(3) {
	animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
}
span.blur:nth-child(4) {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}
span.blur:nth-child(5) {
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}
span.blur:nth-child(6) {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}
span.blur:nth-child(7) {
	animation-delay: 0.7s;
	-webkit-animation-delay: 0.7s;
}
span.blur:nth-child(8) {
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}
span.blur:nth-child(9) {
	animation-delay: 0.9s;
	-webkit-animation-delay: 0.9s;
}
span.blur:nth-child(10) {
	animation-delay: 1.0s;
	-webkit-animation-delay: 1.0s;
}



@keyframes blur {
	0%		{text-shadow:  0 0 100px black; opacity:0;}
	5%		{text-shadow:  0 0 90px black;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px black;}
	80%		{text-shadow:  0 0 0px black;}
	85%		{opacity: 1;}
	95%		{text-shadow:  0 0 90px black;}
	100%	{text-shadow:  0 0 100px black; opacity:0;}
}

@-webkit-keyframes blur {
	0%		{text-shadow:  0 0 100px black; opacity:0;}
	5%		{text-shadow:  0 0 90px black;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px black;}
	80%		{text-shadow:  0 0 0px black;}
	85%		{opacity: 1;}
	95%		{text-shadow:  0 0 90px black;}
	100%	{text-shadow:  0 0 100px black; opacity:0;}
} 
