.bubblingG {
	text-align: center;
	width:78px;
	height:49px;
	margin: auto;
}

.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	margin: 24px auto;
	background: #b3b3b3;
	border-radius: 49px;
		-o-border-radius: 49px;
		-ms-border-radius: 49px;
		-webkit-border-radius: 49px;
		-moz-border-radius: 49px;
	animation: bubblingG 0.585s infinite alternate;
		-o-animation: bubblingG 0.585s infinite alternate;
		-ms-animation: bubblingG 0.585s infinite alternate;
		-webkit-animation: bubblingG 0.585s infinite alternate;
		-moz-animation: bubblingG 0.585s 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.1795s;
		-o-animation-delay: 0.1795s;
		-ms-animation-delay: 0.1795s;
		-webkit-animation-delay: 0.1795s;
		-moz-animation-delay: 0.1795s;
}

#bubblingG_3 {
	animation-delay: 0.349s;
		-o-animation-delay: 0.349s;
		-ms-animation-delay: 0.349s;
		-webkit-animation-delay: 0.349s;
		-moz-animation-delay: 0.349s;
}



@keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#4d4d4d;
		transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:#f2f2f2;
		transform: translateY(-20px);
	}
}

@-o-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#4d4d4d;
		-o-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:#f2f2f2;
		-o-transform: translateY(-20px);
	}
}

@-ms-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#4d4d4d;
		-ms-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:#f2f2f2;
		-ms-transform: translateY(-20px);
	}
}

@-webkit-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#4d4d4d;
		-webkit-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:#f2f2f2;
		-webkit-transform: translateY(-20px);
	}
}

@-moz-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#4d4d4d;
		-moz-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:#f2f2f2;
		-moz-transform: translateY(-20px);
	}
}