/* liScroll styles */

.ticker { /* the outer div with the black border */
	width: 950px; 
	margin: 0; 
	padding: 0;
	overflow: hidden; 
}
.ticker .tickercontainer {
	width:950px;
}
.ticker .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 10px;
	top: 8px;
	width: 950px;
	overflow: hidden;
}
.ticker ul { /* that's your list */
	position: relative;
	left: 950px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	padding-top:8px;
	white-space:nowrap;
}
.ticker ul li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;
	color:#fff;
	font-size:16px !important;
	padding-right:30px;
	white-space:nowrap;
}
.ticker ul a {
	white-space: nowrap;
	color: #f00;
} 
