.bubblingG {
	text-align: center;
	width:70px;
	height:44px;

	position: absolute; top: 50%; left: 50%;
	margin: -35px 0 0 -22px;
}

.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 9px;
	height: 9px;
	margin: 22px auto;
	background: #E6AE59;
	-moz-border-radius: 44px;
	-moz-animation: bubblingG 1.3s infinite alternate;
	-webkit-border-radius: 44px;
	-webkit-animation: bubblingG 1.3s infinite alternate;
	-ms-border-radius: 44px;
	-ms-animation: bubblingG 1.3s infinite alternate;
	-o-border-radius: 44px;
	-o-animation: bubblingG 1.3s infinite alternate;
	border-radius: 44px;
	animation: bubblingG 1.3s infinite alternate;
}

#bubblingG_1 {
	-moz-animation-delay: 0.78s;
	-webkit-animation-delay: 0.78s;
	-ms-animation-delay: 0.78s;
	-o-animation-delay: 0.78s;
	animation-delay: 0.78s;
}

#bubblingG_2 {
	-moz-animation-delay: 0.39s;
	-webkit-animation-delay: 0.39s;
	-ms-animation-delay: 0.39s;
	-o-animation-delay: 0.39s;
	animation-delay: 0.39s;
}

#bubblingG_3 {
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-ms-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}

@-moz-keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:#E6AE59;
		-moz-transform: translateY(0);
	}

	100% {
		width: 21px;
		height: 21px;
		background-color:#FFFFFF;
		-moz-transform: translateY(-18px);
	}

}

@-webkit-keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:#E6AE59;
		-webkit-transform: translateY(0);
	}

	100% {
		width: 21px;
		height: 21px;
		background-color:#FFFFFF;
		-webkit-transform: translateY(-18px);
	}

}

@-ms-keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:#E6AE59;
		-ms-transform: translateY(0);
	}

	100% {
		width: 21px;
		height: 21px;
		background-color:#FFFFFF;
		-ms-transform: translateY(-18px);
	}

}

@-o-keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:#E6AE59;
		-o-transform: translateY(0);
	}

	100% {
		width: 21px;
		height: 21px;
		background-color:#FFFFFF;
		-o-transform: translateY(-18px);
	}

}

@keyframes bubblingG {
	0% {
		width: 9px;
		height: 9px;
		background-color:#E6AE59;
		transform: translateY(0);
	}

	100% {
		width: 21px;
		height: 21px;
		background-color:#FFFFFF;
		transform: translateY(-18px);
	}

}