/* footer animation */

	@keyframes animatedBackground {
			from { background-position: 0 0; }
			to { background-position: 100% 0; }
		}
		@-webkit-keyframes animatedBackground {
			from { background-position: 0 0; }
			to { background-position: 100% 0; }
		}
		@-ms-keyframes animatedBackground {
			from { background-position: 0 0; }
			to { background-position: 100% 0; }
		}
		@-moz-keyframes animatedBackground {
			from { background-position: 0 0; }
			to { background-position: 100% 0; }
		}

		#footanimation	{ 
			 
			background-image: url('../images/grass.png');
			background-position: 0px 0px;
			background-repeat: repeat-x;

			animation: animatedBackground 40s linear infinite;
		   
			-moz-animation: animatedBackground 40s linear infinite;
			-webkit-animation: animatedBackground 40s linear infinite;
		}
		
		/* footer ani end */
@keyframes animatedBackground-home {
			from { background-position: 0 0; }
			to { background-position: 100% 0; }
		}
		@-webkit-keyframes animatedBackground-home {
			from { background-position: 0 0; }
			to { background-position: 100% 0; }
		}
		@-ms-keyframes animatedBackground-home {
			from { background-position: 0 0; }
			to { background-position: 100% 0; }
		}
		@-moz-keyframes animatedBackground-home {
			from { background-position: 0 0; }
			to { background-position: 100% 0; }
		}

		#home-animation	{ 
			 
			background-image:url('../images/homegif.png');
			background-position: 0px 0px;
			background-repeat: repeat;

			animation: animatedBackground-home 40s linear infinite;
		   
			-moz-animation: animatedBackground-home 40s linear infinite;
			-webkit-animation: animatedBackground-home 40s linear infinite;
		}
		/* bounce */
@keyframes bounce {
	0%, 20%, 60%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
.hov_bounce:hover {
	animation: bounce .8s;
}
hr.type_4 {
border: 0;
height: 55px;
background: url(../images/type_5.png);
background-repeat:repeat-x;
margin-top:-15px;
}