@charset "utf-8";

.tickercontainer { /* the outer div with the black border */
	margin-left: 0;                                          
	margin-bottom: 20px;                                          
	margin-right: 0;                                          
	margin-top: 10px;                                          
	border: none; 
	width: 940px; 
	height: 27px; 
	padding: 0;
	overflow: hidden; 
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding 
			both left and right */
	position: relative;
	left: 10px;
	top: 8px;
	width: 920px;
	overflow: hidden;
}

ul.newsticker { /* that's your list */
	position: relative;
	left: 750px;
	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;
	padding: 0;
	background: #fff;
	color: #999;
}

ul.newsticker a {
	margin-left: 10px;
	margin-bottom: 0;
	margin-right: 50px;
	margin-top: 0;
	white-space: nowrap;
	padding: 0;
	color: #638f97;
	font: bold 10px Verdana;
} 

ul.newsticker span {
	color: #333333;
	margin: 0 10px 0 0;
} 
