#fountainG{
	position:relative;
	width:128px;
	height:15px;
	margin:auto;
}

.fountainG{
	position:absolute;
	top:0;
	background-color:rgba(0,0,0,0);
	width:10px;
	height:20px;
	animation-name:bounce_fountainG;
	-o-animation-name:bounce_fountainG;
	-ms-animation-name:bounce_fountainG;
	-webkit-animation-name:bounce_fountainG;
	-moz-animation-name:bounce_fountainG;
	animation-duration:1.5s;
	-o-animation-duration:1.5s;
	-ms-animation-duration:1.5s;
	-webkit-animation-duration:1.5s;
	-moz-animation-duration:1.5s;
	animation-iteration-count:infinite;
	-o-animation-iteration-count:infinite;
	-ms-animation-iteration-count:infinite;
	-webkit-animation-iteration-count:infinite;
	-moz-animation-iteration-count:infinite;
	animation-direction:normal;
	-o-animation-direction:normal;
	-ms-animation-direction:normal;
	-webkit-animation-direction:normal;
	-moz-animation-direction:normal;
	transform:scale(.3);
	-o-transform:scale(.3);
	-ms-transform:scale(.3);
	-webkit-transform:scale(.3);
	-moz-transform:scale(.3);
	border-radius:10px;
	-o-border-radius:10px;
	-ms-border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
}

#fountainG_1{
	left:0;
	animation-delay:0.1s;
	-o-animation-delay:0.1s;
	-ms-animation-delay:0.1s;
	-webkit-animation-delay:0.1s;
	-moz-animation-delay:0.1s;
}

#fountainG_2{
	left:16px;
	animation-delay:0.25s;
	-o-animation-delay:0.25s;
	-ms-animation-delay:0.25s;
	-webkit-animation-delay:0.25s;
	-moz-animation-delay:0.25s;
}

#fountainG_3{
	left:32px;
	animation-delay:0.4s;
	-o-animation-delay:0.4s;
	-ms-animation-delay:0.4s;
	-webkit-animation-delay:0.4s;
	-moz-animation-delay:0.4s;
}

#fountainG_4{
	left:48px;
	animation-delay:0.55s;
	-o-animation-delay:0.55s;
	-ms-animation-delay:0.55s;
	-webkit-animation-delay:0.55s;
	-moz-animation-delay:0.55s;
}

#fountainG_5{
	left:64px;
	animation-delay:0.7s;
	-o-animation-delay:0.7s;
	-ms-animation-delay:0.7s;
	-webkit-animation-delay:0.7s;
	-moz-animation-delay:0.7s;
}

#fountainG_6{
	left:80px;
	animation-delay:0.85s;
	-o-animation-delay:0.85s;
	-ms-animation-delay:0.85s;
	-webkit-animation-delay:0.85s;
	-moz-animation-delay:0.85s;
}

#fountainG_7{
	left:96px;
	animation-delay:1.0s;
	-o-animation-delay:1.0s;
	-ms-animation-delay:1.0s;
	-webkit-animation-delay:1.0s;
	-moz-animation-delay:1.0s;
}

#fountainG_8{
	left:112px;
	animation-delay:1.14s;
	-o-animation-delay:1.14s;
	-ms-animation-delay:1.14s;
	-webkit-animation-delay:1.14s;
	-moz-animation-delay:1.14s;
}



@keyframes bounce_fountainG{
	0%{
		transform:scale(1);
		background-color:rgb(47, 64, 80);
	}

	100%{
		transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-o-keyframes bounce_fountainG{
	0%{
		-o-transform:scale(1);
		background-color:rgb(47, 64, 80);
	}

	100%{
		-o-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-ms-keyframes bounce_fountainG{
	0%{
		-ms-transform:scale(1);
		background-color:rgb(47, 64, 80);
	}

	100%{
		-ms-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-webkit-keyframes bounce_fountainG{
	0%{
		-webkit-transform:scale(1);
		background-color:rgb(47, 64, 80);
	}

	100%{
		-webkit-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-moz-keyframes bounce_fountainG{
	0%{
		-moz-transform:scale(1);
		background-color:rgb(47, 64, 80);
	}

	100%{
		-moz-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}