.FISHS-slider {
	overflow: hidden; /*hide the bits of the scrollingpart that extend off screen*/
	margin: 0;
	padding: 0;
	background: none;
	position: relative;
}
	
.FISHS-scrollingpart {
	width:999999px;	/* this is the max total width of all images*/
	position:absolute; /* this makes it so FISHS-slider can be 100% wide and not scale up to 99999px*/
}

.FISHS-image {
	height: 100%; /*make sure the images scale*/
}


/*keyframe animations (we do all these in the php/javascript instead)*/
/*
.FISHS-scrollingpart .first {
    -webkit-animation: bannermove 80s linear infinite;
       -moz-animation: bannermove 80s linear infinite;
        -ms-animation: bannermove 80s linear infinite;
         -o-animation: bannermove 80s linear infinite;
            animation: bannermove 80s linear infinite;
}
*/

@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -9386px;/*10191*/
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -9386px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -9386px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -9386px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -9386px;
 }
 
}