.bubblingG {
/*text-align: center;*/
/*width:70px;*/
/*height:33px;*/
/*float: left;*/
}

.bubblingG span {
display: inline-block;
vertical-align: middle;
width: 7px;
height: 7px;
margin: 17px auto;
background: #2C6693;
-moz-border-radius: 34px;
-moz-animation: bubblingG 1.3s infinite alternate;
-webkit-border-radius: 34px;
-webkit-animation: bubblingG 1.3s infinite alternate;
-ms-border-radius: 34px;
-ms-animation: bubblingG 1.3s infinite alternate;
-o-border-radius: 34px;
-o-animation: bubblingG 1.3s infinite alternate;
border-radius: 34px;
animation: bubblingG 1.3s infinite alternate;
}

#bubblingG_1 {
-moz-animation-delay: 0s;
-webkit-animation-delay: 0s;
-ms-animation-delay: 0s;
-o-animation-delay: 0s;
animation-delay: 0s;
}

#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: 0.78s;
-webkit-animation-delay: 0.78s;
-ms-animation-delay: 0.78s;
-o-animation-delay: 0.78s;
animation-delay: 0.78s;
}

@-moz-keyframes bubblingG {
0% {
width: 7px;
height: 7px;
background-color:#2C6693;
-moz-transform: translateY(0);
}

100% {
width: 16px;
height: 16px;
background-color:#FFFFFF;
-moz-transform: translateY(-14px);
}

}

@-webkit-keyframes bubblingG {
0% {
width: 7px;
height: 7px;
background-color:#2C6693;
-webkit-transform: translateY(0);
}

100% {
width: 16px;
height: 16px;
background-color:#FFFFFF;
-webkit-transform: translateY(-14px);
}

}

@-ms-keyframes bubblingG {
0% {
width: 7px;
height: 7px;
background-color:#2C6693;
-ms-transform: translateY(0);
}

100% {
width: 16px;
height: 16px;
background-color:#FFFFFF;
-ms-transform: translateY(-14px);
}

}

@-o-keyframes bubblingG {
0% {
width: 7px;
height: 7px;
background-color:#2C6693;
-o-transform: translateY(0);
}

100% {
width: 16px;
height: 16px;
background-color:#FFFFFF;
-o-transform: translateY(-14px);
}

}

@keyframes bubblingG {
0% {
width: 7px;
height: 7px;
background-color:#2C6693;
transform: translateY(0);
}

100% {
width: 16px;
height: 16px;
background-color:#FFFFFF;
transform: translateY(-14px);
}

}
