/*-------- TICKER ----------*/

.tickercontainer { /* the outer div with the black border */
	/*border: 1px solid #000;*/ 
	width: 568px; 
	height: 21px; 
	margin: 0; 
	padding: 1px 0 0 0;
	overflow: hidden;
	background-image: url(/img/ticker_bg.png);
	background-repeat: no-repeat;
	background-position: -7px 0px;
	
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 10px;
	top: 4px;
	width: 523px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 568px;
	font:Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	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;
	color:#333;
	font:Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	margin: 0 40px 0 0;
	color:#F60;
	font:Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	text-decoration:none;
} 
ul.newsticker span {
	margin: 0 8px 0 0;
} 
