/* liScroll styles */

.tickeroverlay-left{
	display:block;
	pointer-events:none;
	position:absolute;
	z-index:30;
	height:12px;
	width:150px;
	top:0;
	left:-2px;
}
	
.tickeroverlay-right{
	display:block;
	pointer-events:none;
	position:absolute;
	z-index:30;
	height:12px;
	width:150px;
	top:0;
	right:-2px;
}
.tickercontainer { /* the outer div */
	/*position: absolute;
	left: 0;
	top: 45%;*/
	background-color: #707d94;
	background-color: rgba(112,125,148,0.85);

	width: auto; 
	height: 20px; 
	margin-top: 2px;
	margin-left: -15px !important;
	margin-right: -15px !important;
	padding: 0 5px 0 5px;
	overflow: hidden; 
	z-index: 110;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
padding-left: 10px;
padding-right: 10px;
top: 2px;
height: 18px;
/*width: 718px;*/
overflow: hidden;
}
ul.newsticker { /* that's your list */
/*Transitions have been added in order set css3 transitions; and have linear easing. Changing these lines you might have unexpected results */
-webkit-transition: all 0s linear;
-moz-transition: all 0s linear;
-o-transition: all 0s linear;
transition: all 0s linear;
position: relative;
margin-left: 20px;
list-style-type: none;
padding: 0;

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding-right: 40px;
font-size: 0.9em;
/*background: #fff;*/
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
margin: 0 50px 0 0;
} 
ul.newsticker span {
margin: 0 10px 0 0;
} 

@media (min-width: 992px) {
	.tickercontainer {
		height: 28px !important;
	}
	.tickercontainer .mask {
		height: 25px !important;
	}
	ul.newsticker li {
		font-size: 1.2em !important;
	}
}

@media (min-width: 768px) {
	.tickercontainer {
		height: 25px;
	}
	.tickercontainer .mask {
		height: 20px;
	}
	ul.newsticker li {
		font-size: 1.1em;
	}
}