@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
#animate-area-clouds {
	width: 100%;
	height: 170px;
	background-image: url(../images/website/clouds.jpg);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	animation: animatedBackground 30s linear infinite alternate;
	padding-top: 30px;
}
