/* liScroll styles */
.dms-news-ticker{
   position: fixed;
   width: 100%;
   left: 0;
   bottom: -100%;
   z-index: 9999;
   
 }
.tickercontainer { /* the outer div with the black border */
	background: #fff; 
	width: 100%;
	margin: 0; 
	padding: 0;
	overflow: hidden;
	border-top: 3px solid #018c36;
}
.tickercontainer .title {
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	color: #018c36;
	margin-right: 10px;
	font-size: 17px;
	line-height: 36px;
	height: 50px;
   padding: 0 33px;
   line-height: 45px;
   font-weight: bold;
   margin-top:-4px;
   
}
.tickercontainer .title:after{
   content: '';
   display: block;
   width: 6px;
   height: 6px;
   position: absolute;
   right: 0;
   top:45%;
   transform: translateY(-50%) rotate(-45deg);
   border: 6px solid transparent;
   border-left-color: #018c36;
   border-top-color: #018c36;
}
.tickercontainer .title a{
	color: #fff;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 0px;
	width: 100%;
	overflow: hidden;
	height:35px;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 5px;
	color: #d50000;
	margin-right: 15px;
	font-size: 16px;
   letter-spacing: .5px;
   font-weight: bold;
}

ul.newsticker a:hover {
	color: #333;
}
ul.newsticker a i{
   margin-right: 4px;
   margin-top: 8px;
   width: 10px;
   height: 10px;
   display: inline-block;
   background: #018c36;
}