@charset "utf-8";
/* CSS Document */

#fadingBarsG {
	position:relative;
	width:99px;
	height:12px;
	margin-bottom:10px;
}

.fadingBarsG {
	position:absolute;
	top:0;
	background-color:#F7A96C;
	width:12px;
	height:12px;
	-moz-animation-name:bounce_fadingBarsG;
	-moz-animation-duration:1.3s;
	-moz-animation-iteration-count:infinite;
	-moz-animation-direction:linear;
	-moz-transform:scale(.3);
	-webkit-animation-name:bounce_fadingBarsG;
	-webkit-animation-duration:1.3s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-direction:linear;
	-webkit-transform:scale(.3);
	-ms-animation-name:bounce_fadingBarsG;
	-ms-animation-duration:1.3s;
	-ms-animation-iteration-count:infinite;
	-ms-animation-direction:linear;
	-ms-transform:scale(.3);
	-o-animation-name:bounce_fadingBarsG;
	-o-animation-duration:1.3s;
	-o-animation-iteration-count:infinite;
	-o-animation-direction:linear;
	-o-transform:scale(.3);
	animation-name:bounce_fadingBarsG;
	animation-duration:1.3s;
	animation-iteration-count:infinite;
	animation-direction:linear;
	transform:scale(.3);
}

#fadingBarsG_1 {
	left:0;
	-moz-animation-delay:0.52s;
	-webkit-animation-delay:0.52s;
	-ms-animation-delay:0.52s;
	-o-animation-delay:0.52s;
	animation-delay:0.52s;
}

#fadingBarsG_2 {
	left:12px;
	-moz-animation-delay:0.65s;
	-webkit-animation-delay:0.65s;
	-ms-animation-delay:0.65s;
	-o-animation-delay:0.65s;
	animation-delay:0.65s;
}

#fadingBarsG_3 {
	left:25px;
	-moz-animation-delay:0.78s;
	-webkit-animation-delay:0.78s;
	-ms-animation-delay:0.78s;
	-o-animation-delay:0.78s;
	animation-delay:0.78s;
}

#fadingBarsG_4 {
	left:37px;
	-moz-animation-delay:0.91s;
	-webkit-animation-delay:0.91s;
	-ms-animation-delay:0.91s;
	-o-animation-delay:0.91s;
	animation-delay:0.91s;
}

@-moz-keyframes bounce_fadingBarsG{
0%{
	-moz-transform:scale(1);
	background-color:#F7A96C;
}

100%{
	-moz-transform:scale(.3);
	background-color:#F5700A;
}

}

@-webkit-keyframes bounce_fadingBarsG{
0%{
	-webkit-transform:scale(1);
	background-color:#F7A96C;
}

100%{
	-webkit-transform:scale(.3);
	background-color:#F5700A;
}

}

@-ms-keyframes bounce_fadingBarsG{
0%{
	-ms-transform:scale(1);
	background-color:#F7A96C;
}

100%{
	-ms-transform:scale(.3);
	background-color:#F5700A;
}

}

@-o-keyframes bounce_fadingBarsG{
0%{
	-o-transform:scale(1);
	background-color:#F7A96C;
}

100%{
	-o-transform:scale(.3);
	background-color:#F5700A;
}

}

@keyframes bounce_fadingBarsG{
0%{
	transform:scale(1);
	background-color:#F7A96C;
}

100%{
	transform:scale(.3);
	background-color:#F5700A;
}

}