.marquee {
  height: 50px;
  overflow: hidden;
  position: relative;
  width: calc(100% - 150px);
  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: #fff;
  /* text-shadow: 1px 1px 0px #ffffff; */
  filter: dropshadow(color=#000000, offx=1, offy=1);
  text-decoration: none;
}  

.marquee div {
  display: block;
  position: absolute;
  overflow: hidden;
  animation: marquee 60s linear infinite;
  height: 50px; 
}
.marquee div:hover{
    -webkit-animation-play-state: paused; /* Chrome, Safari, Opera */
    animation-play-state: paused;
	
}

.marquee span {
  margin: 0 30px;
  position:relative;
  padding: 0 10px;
  display: inline-block;
  line-height: 50px;
}

.marquee span+span:before {
	content:' ';
	position:absolute;
	background: url(../images/in-small.png) 10px no-repeat;
	top: 0;
	right: -50px;
	color: #fff;
	font-size:25px;
	z-index: 99;
	width: 50px;
	height: 50px;
}
.marquee span:after {
	content:' ';
	display:inline-block;
	position:absolute;
	background-size:100px;
	width:150px;
	height:30px;
}
.marquee:after{
	content:' ';
	color:#fff;
	position:absolute;
	left:0;
	width:100px;
	height:100%; 
	background: rgba(59,59,59,1);
	background: -moz-linear-gradient(left, rgba(59,59,59,1) 0%, rgba(59,59,59,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(59,59,59,1)), color-stop(100%, rgba(37,37,37,0)));
	background: -webkit-linear-gradient(left, rgba(59,59,59,1) 0%, rgba(59,59,59,0) 100%);
	background: -o-linear-gradient(left, rgba(59,59,59,1) 0%, rgba(59,59,59,0) 100%);
	background: -ms-linear-gradient(left, rgba(59,59,59,1) 0%, rgba(59,59,59,0) 100%);
	background: linear-gradient(to right, rgba(59,59,59,1) 0%, rgba(59,59,59,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#252525', endColorstr='#252525', GradientType=1 );

}