﻿/* liScroll styles */
#table_bg
{
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef'); /* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#efefef)); /* for webkit browsers */
background: -moz-linear-gradient(top, #ffffff, #efefef); /* for firefox 3.6+ */
}

/* the outer div with the black border */


.tickercontainer {
/* the outer div with the black border */
width: 679px;
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: 20px;
top: 7px;
width: 650px;
overflow: hidden;
}

ul.newsticker {
/* that's your list */
position: relative;

font: bold 12px MuseoSlab, arial, sans-serif;
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;
}
ul.newsticker a {
padding: 0;
color: #ff0000;
font: bold 12px MuseoSlab, arial, sans-serif;
margin: 0 50px 0 0;
}
ul.newsticker li a:hover {
color: #000;
text-decoration: none;
font: bold 11px MuseoSlab, arial, sans-serif;
}
ul.newsticker span {
margin: 0 0px 0 0;
}
