/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
	width: 100%; 
	height: 150px;
	margin: 0; 
	padding: 0;
	overflow: hidden; 
	text-align: center;
}
/* that serves as a mask. so you get a sort of padding both left and right */
.tickercontainer .mask { 
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 150px;
}
ul.newsticker { /* that's your list */
position: relative;
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
  overflow:hidden;
	height: 150px;

}
/* important: display inline gives incorrect results when you check for elem's width */
ul.newsticker li {
	float: left; 
	margin: 15px 50px;
	padding: 0;
	display: inline-block;
  width:auto;
  height:143px;
  vertical-align:middle;
  text-align:center;
}

ul.er-controls{
	list-style: none;
	display: inline-block;
	padding: 0;
}
ul.er-controls > li{
	display: inline-block;
	padding: 0 10px;
	background: #f0f0f0;
	margin: 5px;
	border-radius: 5px;
	height: 40px;
	line-height: 40px;
}
ul.er-controls > li:hover{
	background: #f5f5f5;
	cursor: pointer;
}
@media screen and (max-width:767px) {
	ul.newsticker li {margin: 15px 20px;}
}