@charset "utf-8";
/* CSS Document */

.marquee {
    height: 60px;
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 0;
	text-align: left;
}

.marquee div {
  display: block;
  width: 100%;
  height: 100px;

  position: absolute;
  overflow: hidden;

  animation: marquee 10s linear infinite;
}

.marquee span {
  float: right;
  width: 100%;
}

@keyframes marquee {
  0% { right: 0; }
	100% { right: -100%;}
}