.LoadingAnimation {
	text-align: center;
	width:140px;
	height:88px;
	margin: auto;
}

.LoadingAnimation span {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin: 44px auto;
	background: rgb(80,139,173);
	border-radius: 88px;
		-o-border-radius: 88px;
		-ms-border-radius: 88px;
		-webkit-border-radius: 88px;
		-moz-border-radius: 88px;
	animation: LoadingAnimation 0.975s infinite alternate;
		-o-animation: LoadingAnimation 0.975s infinite alternate;
		-ms-animation: LoadingAnimation 0.975s infinite alternate;
		-webkit-animation: LoadingAnimation 0.975s infinite alternate;
		-moz-animation: LoadingAnimation 0.975s infinite alternate;
}

#LoadingAnimation_1 {
	animation-delay: 0s;
		-o-animation-delay: 0s;
		-ms-animation-delay: 0s;
		-webkit-animation-delay: 0s;
		-moz-animation-delay: 0s;
}

#LoadingAnimation_2 {
	animation-delay: 0.2895s;
		-o-animation-delay: 0.2895s;
		-ms-animation-delay: 0.2895s;
		-webkit-animation-delay: 0.2895s;
		-moz-animation-delay: 0.2895s;
}

#LoadingAnimation_3 {
	animation-delay: 0.589s;
		-o-animation-delay: 0.589s;
		-ms-animation-delay: 0.589s;
		-webkit-animation-delay: 0.589s;
		-moz-animation-delay: 0.589s;
}



@keyframes LoadingAnimation {
	0% {
		width: 18px;
		height: 18px;
		background-color:rgba(80,139,173,0.98);
		transform: translateY(0);
	}

	100% {
		width: 42px;
		height: 42px;
		background-color:rgb(255,255,255);
		transform: translateY(-37px);
	}
}

@-o-keyframes LoadingAnimation {
	0% {
		width: 18px;
		height: 18px;
		background-color:rgba(80,139,173,0.98);
		-o-transform: translateY(0);
	}

	100% {
		width: 42px;
		height: 42px;
		background-color:rgb(255,255,255);
		-o-transform: translateY(-37px);
	}
}

@-ms-keyframes LoadingAnimation {
	0% {
		width: 18px;
		height: 18px;
		background-color:rgba(80,139,173,0.98);
		-ms-transform: translateY(0);
	}

	100% {
		width: 42px;
		height: 42px;
		background-color:rgb(255,255,255);
		-ms-transform: translateY(-37px);
	}
}

@-webkit-keyframes LoadingAnimation {
	0% {
		width: 18px;
		height: 18px;
		background-color:rgba(80,139,173,0.98);
		-webkit-transform: translateY(0);
	}

	100% {
		width: 42px;
		height: 42px;
		background-color:rgb(255,255,255);
		-webkit-transform: translateY(-37px);
	}
}

@-moz-keyframes LoadingAnimation {
	0% {
		width: 18px;
		height: 18px;
		background-color:rgba(80,139,173,0.98);
		-moz-transform: translateY(0);
	}

	100% {
		width: 42px;
		height: 42px;
		background-color:rgb(255,255,255);
		-moz-transform: translateY(-37px);
	}
}