/* liScroll styles */

.news-container { /* the outer div with the black border */
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.news-container .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	overflow: hidden;
}

ul.news-ticker { /* that's your list */
	position: relative;
	font-size: 14px;
	font-weight: bold;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul.news-ticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;
	text-shadow: none;
}

ul.news-ticker span {
	white-space: nowrap;
	padding: 0;
	margin: 0 50px 0 0;
} 

ul.news-ticker p {
	white-space: nowrap;
	padding: 0;
	margin: 0 50px 0 0;
} 