#loadingscreen{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color:#fff;
	opacity:0.3;
	filter:alpha(opacity=30);
	display: none;
	z-index:10000000;
}

.bubblingG {
	text-align: center;
	position: relative;
	top: 45%;
	margin-left:auto;
	margin-right:auto;
	width:200px;
	height:50px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	border: 5px solid #31455C;
}

.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	margin: 25px auto;
	background: #31455C;
	-moz-border-radius: 50px;
	-moz-animation: bubblingG 1.7s infinite alternate;
	-webkit-border-radius: 50px;
	-webkit-animation: bubblingG 1.7s infinite alternate;
	-ms-border-radius: 50px;
	-ms-animation: bubblingG 1.7s infinite alternate;
	-o-border-radius: 50px;
	-o-animation: bubblingG 1.7s infinite alternate;
	border-radius: 50px;
	animation: bubblingG 1.7s 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.51s;
	-webkit-animation-delay: 0.51s;
	-ms-animation-delay: 0.51s;
	-o-animation-delay: 0.51s;
	animation-delay: 0.51s;
}

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

#bubblingG_4 {
	-moz-animation-delay: 1.53s;
	-webkit-animation-delay: 1.53s;
	-ms-animation-delay: 1.53s;
	-o-animation-delay: 1.53s;
	animation-delay: 1.53s;
}

#bubblingG_5 {
	-moz-animation-delay: 2.04s;
	-webkit-animation-delay: 2.04s;
	-ms-animation-delay: 2.04s;
	-o-animation-delay: 2.04s;
	animation-delay: 2.04s;
}

#bubblingG_6 {
	-moz-animation-delay: 2.55s;
	-webkit-animation-delay: 2.55s;
	-ms-animation-delay: 2.55s;
	-o-animation-delay: 2.55s;
	animation-delay: 2.55s;
}

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

	100% {
		width: 24px;
		height: 24px;
		background-color:#6993C6;
		-moz-transform: translateY(-21px);
	}
}

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

	100% {
		width: 24px;
		height: 24px;
		background-color:#6993C6;
		-webkit-transform: translateY(-21px);
	}

}

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

	100% {
		width: 24px;
		height: 24px;
		background-color:#6993C6;
		-ms-transform: translateY(-21px);
	}

}

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

	100% {
		width: 24px;
		height: 24px;
		background-color:#6993C6;
		-o-transform: translateY(-21px);
	}

}

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

	100% {
		width: 24px;
		height: 24px;
		background-color:#6993C6;
		transform: translateY(-21px);
	}

}