.marquee {
  height: 30px;
  overflow: hidden;
  background-color: #eaeaea;
  position: relative;
  width: 100%;
  position: relative;
}
.marquee.sticky {
	position: fixed;
	z-index:100;
	width: 100%;
	top: 0;
} 
.marquee a {
  /* font-family: Tahoma, Arial, sans-serif; */
  line-height: 30px;
  text-align: center;
  color: #2e2e2e;
  text-shadow: 1px 1px 0px #ffffff;
  filter: dropshadow(color=#000000, offx=1, offy=1);
  text-decoration: none;
}  

.marquee div {
  display: block;
  height: 30px;
  position: absolute;
  overflow: hidden;
  animation: marquee 80s linear infinite;
}
.marquee div:hover{
    -webkit-animation-play-state: paused; /* Chrome, Safari, Opera */
    animation-play-state: paused;
	
}

.marquee span {
  margin:0 80px;
  position:relative;
  padding:0 30px;
  display: inline-block;
}

.marquee span:after {
	content:' ';
	display:inline-block;
	position:absolute;
	background: url(../images/logo-bar.png) 10px no-repeat;
	background-size:100px;
	width:150px;
	height:30px;
}
 