.tickercontainer { /* the outer div */

	width: 100%;
	height: 58px;
	margin: 0px 0px;
	padding: 0;
	overflow: hidden;
	border:0px solid #f1f1f1;

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0px 0px;
	height: 58px;
	width: 100%;
	overflow: hidden;
}








ul.newsticker { /* that's your list */
	position: relative;
	margin-left: 20px;
	font: bold 10px Verdana;
	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;
	width:185px;
	padding-right: 15px;
	display:inline;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0px;
	color: #000000;
	font: bold 10px Verdana;
	margin: 0px;
	text-decoration:none;
	
}
ul.newsticker span {
	margin: 0 10px 0 0;
}



ul.newsticker2 { /* that's your list */
	position: relative;
	margin-left: 20px;
	font: bold 10px Verdana;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul.newsticker2 li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	width:185px;
	padding-right: 15px;
	display:inline;
}
ul.newsticker2 a {
	white-space: nowrap;
	padding: 0;
	color: #fff;
	font: bold 10px Verdana;
	margin: 0 50px 0 0;
}
ul.newsticker2 span {
	margin: 0 10px 0 0;
}

