.ani_bg_bounce {
	-moz-animation-duration: 4s;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-moz-animation-name: bg_bounce_1;
	-webkit-animation-name: bg_bounce_1;
	animation-name: bg_bounce_1;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
/*
	-moz-animation-direction: alternate;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
*/
.ani_bounce_1 {
	-moz-animation-duration: 4s;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-moz-animation-name: bounce_1;
	-webkit-animation-name: bounce_1;
	animation-name: bounce_1;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@keyframes bg_bounce_1{
	0%{background-position:90% 50%;}
	90%{background-position:90% 50%;}
	95%{background-position:95% 50%;}
	100%{background-position:90% 50%;}
}


@keyframes bounce_1{
	0%{transform: scale(1.0, 1.0); -webkit-transform: scale(1.0, 1.0);}
	90%{transform: scale(1.0, 1.0); -webkit-transform: scale(1.0, 1.0);}
	95%{transform: scale(1.1, 1.1); -webkit-transform: scale(1.1, 1.1);}
	100%{transform: scale(1.0, 1.0); -webkit-transform: scale(1.0, 1.0);}
}






