/* liScroll style declarations */

.tickercontainer { /* the outer div with the black border */

width: 970px/*横幅一列に入る文字数*/; 
height: 0px; 
margin: 0; 
padding: 0;
overflow:vizible;

}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 0px;
top: 0px;
width: 530px;
height: 410px;
overflow:hidden;
}

ul.newsticker { /* that's your list */
position: relative;
left: 750px;
color: #FF6347;
font: bold 30px Verdana/*文字*/;
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 {
white-space: nowrap;
padding: 0;
color: #ff0000;
font: bold 10px Verdana;
margin: 0 0px 0 0;
} 
ul.newsticker span {
margin: 0 0px 0 0;
}


ul.ticker01 li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0px 0px 0px 0px;
padding: 30px 150px 0px 0px/*上右下左*/;
}

ul.ticker02 li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0px 0px 0px 0px;
padding: 70px 150px 0px 0px/*上右下左*/;
}

ul.ticker03 li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0px 0px 0px 0px;
padding: 90px 150px 0px 0px/*上右下左*/;
}

