@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
#animate-area-scaffolding {
	width: 100%;
	height: 700px;
	background-image: url(../images/scaffolding/scaffolding-wiltshire-001.jpg);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	animation: animatedBackground 50s linear infinite alternate;
}
