@charset "UTF-8";
/* CSS Document */
.marquee{
	  overflow: hidden;
  white-space: nowrap;	
}
.scrolling {
  animation: marquee 7s linear infinite;
  display: inline-block;
  padding-right: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to { 
    transform: translateX(-100%);
  }
}
.marquee ul {width:100%;}
.marquee  li {width:175px;height:125px; background-color:#ffffff;border-radius: 10px;display: inline-block;padding:5px 0;margin: 3px;text-align: center}
.marquee li img{width:90%;height:100%}


