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

#tiu_ani_bg {
  display:flex;
	width: 100%;
  height: 500px;
  
  background: url("../img/charleston-sc-fishing-trips.jpg");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: auto 100%;
/*adjust s value for speed*/
  animation: tiu_ani_bg 500s linear infinite;
}

@keyframes tiu_ani_bg {
  from {
    background-position: 0 0;
  }
/*use negative width if you want it to flow right to left else and positive for left to right*/
  to {
    background-position: -10000px 0;
  }
}