/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
width: 738px; 
height: 27px; 
margin: 0; 
padding: 0;
overflow: hidden; 
background-color: #ccc;
filter: Shadow(Color=#444444, Direction=135, Strength=5);
-moz-box-shadow: 1px 1px 2px #444;
-webkit-box-shadow: 1px 1px 2px #444;
box-shadow: 1px 1px 2px #444;
/* For IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#444444')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#444444');

}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 5px;
width: 718px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 750px;
font-weight: bold;
font-size:13px;
font-family:Century Gothic, Arial, sans-serif;
list-style-type: none;
margin: 0;
padding: 0;
color:#AA0000;
}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0 40px 20px 0;
padding: 0;

}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #ff0000;
font: bold 10px Verdana;
margin: 0 50px 0 0;
} 
ul.newsticker span {
margin: 0 10px 0 0;
} 
