/* liScroll styles */

.tickercontainer { /* the outer div with the black border */

background: transparent;
width: 520px;
height: 35px;
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: 0px;
top: 6px;
width: 420px;
overflow: hidden;
}


/**/body .tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
width: 520px;
}


ul.newsticker { /* that's your list */
position: relative;
left: 520px;
font: normal 12px Verdana;
list-style-type: none;
margin: 0;
padding: 0;

}
ul.newsticker { /* that's your list */
left: 420px;
}


ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0 0px 0 0px;
padding: 0px 30px 0px 0px;
width: 580px;
}
ul.newsticker a 			{
					white-space: nowrap;
					margin: 0 0px 0 0;
					color: #FF8000;
					text-decoration: none;
					}

ul.newsticker span a:hover		{
					color: #FF8000;
					text-decoration: underline;
					}
ul.newsticker span.tickerHeadline	{
					margin-right: 0px;
					color: #FF8000;
					font-size: 16px;
					font-weight: normal;
					}



