/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
	width: 100%; 
 
	margin: 0; 
	padding: 0;
	overflow: hidden; 
	text-align: center;position: relative;background: #fff;
}
/* that serves as a mask. so you get a sort of padding both left and right */
.tickercontainer .mask { 
	position: relative;
	width: 100%;
	height: 44px;
	overflow: hidden;padding-left: 110px;
}
ul.newsticker { /* that's your list */
position: relative;
list-style-type: none;
margin: 0;
padding: 0;
}
/* important: display inline gives incorrect results when you check for elem's width */
ul.newsticker li {
	float: left; 
	margin: 10px;
	padding: 0;
}

ul.er-controls{
list-style: none;
    display: inline-block;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    background: red;
	margin:0
}
ul.er-controls > li{
display: inline-block;
    padding: 0;
    background: #ec2806;
    margin: 0;
    border-radius: 0;
    width: 38px;
    height: 44px;
    border-right: solid 1px #fff;
	line-height: 2.8;
	
}
ul.er-controls > li:last-child{border-right: solid 0px #fff;}
ul.er-controls  li.fa:before{color: #fff;
    line-height: 38px;}
ul.er-controls > li:hover{
	background: #ffaa00;
	cursor: pointer;
}
.scroll_title{    background: #ec2806;
    position: absolute;
    padding: 10px;
    top: 0;
    color: #fff;
   }
#ticker_id{border: solid 1px #ec2806;}	