/******************************************************
  NEWS TICKER
*******************************************************/
#newsTicker {
	position: absolute;
	bottom: 45px;
	left: 92px;
}

.tickercontainer { /* the outer div with the black border */
	border: 0;
	background: none; 
	width: 490px; 
	height: 27px; 
	margin: 0; 
	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: 490px;
	overflow: hidden;
}

ul.newsticker { /* that's your list */
	position: relative;
	left: 490px;
	font: bold 12px Helvetica;
	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: 0;
}

ul.newsticker span {
	white-space: nowrap;
	padding: 0;
	color: #000000;
	font: bold 12px Helvetica;
	margin: 0 0 0 0;
} 

ul.newsticker span a:link, ul.newsticker span a:visited {
	color: #000;
	text-decoration: underline;
}

ul.newsticker span a:hover, ul.newsticker span a:active {
	color: #000;
	text-decoration: underline;
}
