.preloader
{
	display: none;
	margin-top: 5px;
}

.bubblingG {
	text-align: center;
	width:74px;
	height:46px;
	margin: auto;
}

.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 9px;
	height: 9px;
	margin: 23px auto;
	background: rgb(255,255,255);
	border-radius: 46px;
	-o-border-radius: 46px;
	-ms-border-radius: 46px;
	-webkit-border-radius: 46px;
	-moz-border-radius: 46px;
	animation: bubblingG 1s infinite alternate;
	-o-animation: bubblingG 1s infinite alternate;
	-ms-animation: bubblingG 1s infinite alternate;
	-webkit-animation: bubblingG 1s infinite alternate;
	-moz-animation: bubblingG 1s infinite alternate;
}

.bubblingG_1 {
	animation-delay: 0s;
	-o-animation-delay: 0s;
	-ms-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
}

.bubblingG_2 {
	animation-delay: 0.39s;
	-o-animation-delay: 0.39s;
	-ms-animation-delay: 0.39s;
	-webkit-animation-delay: 0.39s;
	-moz-animation-delay: 0.39s;
}

.bubblingG_3 {
	animation-delay: 0.78s;
	-o-animation-delay: 0.78s;
	-ms-animation-delay: 0.78s;
	-webkit-animation-delay: 0.78s;
	-moz-animation-delay: 0.78s;
}



@keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:rgb(255,255,255);
		transform: translateY(0);
	}

	100% {
		width: 15px;
		height: 15px;
		background-color:rgb(255,255,255);
		transform: translateY(-19px);
	}
}

@-o-keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:rgb(255,255,255);
		-o-transform: translateY(0);
	}

	100% {
		width: 15px;
		height: 15px;
		background-color:rgb(255,255,255);
		-o-transform: translateY(-19px);
	}
}

@-ms-keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:rgb(255,255,255);
		-ms-transform: translateY(0);
	}

	100% {
		width: 15px;
		height: 15px;
		background-color:rgb(255,255,255);
		-ms-transform: translateY(-19px);
	}
}

@-webkit-keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:rgb(255,255,255);
		-webkit-transform: translateY(0);
	}

	100% {
		width: 15px;
		height: 15px;
		background-color:rgb(255,255,255);
		-webkit-transform: translateY(-19px);
	}
}

@-moz-keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:rgb(255,255,255);
		-moz-transform: translateY(0);
	}

	100% {
		width: 15px;
		height: 15px;
		background-color:rgb(255,255,255);
		-moz-transform: translateY(-19px);
	}
}