ul.marquee {
	/* required styles */
	display: block;
	padding:0;
	
	margin:0 30px 0 270px;
	list-style: none;
	line-height:0;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	/*width: 640px;*/
	height: 20px;  /*height should be included to reserve visual space for the marquee */

	/*background-color: #f2f2ff;*/
	border:none;
}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	display: block;
	white-space: nowrap; /* keep all text on a single line */

	/* optional styles for appearance */
	font: 14px  "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding: 3px 5px;
	line-height:14px;
	color:#333333;
	/*color:#ffffff;*/
}