﻿/* liScroll style declarations */

.tickercontainer { /* the outer div */
	border:none;
	/*background: #fff;*/ 
	/*width: 483px;  */
	width: 434px;
	margin: 0; 
	padding: 0;
	overflow: hidden;
	height:27px;
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 50px;
	top: 5px;
	width: 433px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	/*left: 483px;*/
	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;
	/*background: #fff;*/
	color:#333;
	font-size:93%;
}

/*for safari2-3*/
html[xmlns*=""]body:last-child ul.newsticker li { font-size:92%;}
body:first-of-type #container ul.newsticker li{ font-size:92%;}
/*for safari2-3ここまで*/

ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #333;
	margin: 0 50px 0 0;
} 

ul.newsticker a:hover {
	color: #333;
	text-decoration:underline;

} 

ul.newsticker span {
	margin: 0 10px 0 0;
} 

