/* 
Styles for JQuery ticker
liScroll style declarations 
*/
/*For IE*/
.tickercontainer { /* the outer div with the black border */
border: 1px solid #000;
/*background: #fff; */
width: 375px; 
height: 27px; 
margin: 0; 
padding: 0;
border-width: 0px;
overflow: hidden; 
position: relative;
zoom: 1; 
}
/*For everything else*/
html>body.tickercontainer { /* the outer div  */
/*background: #fff; */
width: 375px; 
height: 27px; 
margin: 0; 
padding: 0;
border-width: 0px;
overflow: hidden; 
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */

position: relative;
left: 2px;
top: 2px;
border-width: 0px;
/*width: 718px;
*/
overflow: hidden;
}

ul.newsticker { /* that's your list */
position: relative;
/*left: 750px;*/
font: bold 10px Verdana;
list-style-type: none;
border-width: 0px;
margin: 0;
padding: 0;
z-index: 1000;

}
ul.newsticker li.tickerItem {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
display: list-item;
list-style-image: none;
list-style-type: none;
/*background: #fff;*/
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
font-size: 10pt !important;
/*color: #ff0000;*/
font: bold 10px Verdana;
margin: 0 50px 0 0;
} 
ul.newsticker span {
margin: 0 10px 0 0;

}

/*End styles for JQuery ticker*/