/* liScroll styles */

.newsticker{
	position:fixed;
	bottom:0;
	left:0;
	height:40px;
	width:100%;
	z-index:999999;
}

.newsticker p,
.newsticker h4{
	padding:0;
	margin:0;
}

.newsticker h4{
	position:absolute;
	top:0;
	text-transform:uppercase;
	color:#fff;
	padding:14px 30px 20px 10px;
	z-index:9999999;
	background:#fe0101;
}

.tickercontainer { /* the outer div with the black border */
background:#000;
width:92%;
float:right;
margin: 0; 
padding: 0;
overflow: hidden; 
zoom: 1;
filter: alpha(opacity=70);
opacity: 0.7;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 12px;
width: 98%;
overflow: hidden;
}

ul.newsticker { /* that's your list */
position: relative;
left: 80%;
color:#fff;
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 200px 0 0;
padding: 0;
list-style-type:disc;
white-space: nowrap;
}

ul.newsticker li:last-child {
	margin-right:0;
}

ul.newsticker a {
padding: 0;
color: #fe0101;
font-weight:bold;
} 
