#headlines { /* News Headlines の全体外枠 */
	position: relative;
	height: 120px;
	width: 150px;
	background-position: left center;
	background-repeat:no-repeat;
	text-align: left;
}
		
#headlines ul { /* News Headlines の表示窓 */
	position: absolute;
	display: block;
	top: 0px;
	height: 120px;
	width: 150px;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

#headlines ul li { /* News Headlines の各ニュース項目 */
	position: absolute;
	display: block;
	visibility: hidden;
	padding: 4px;
	font-size: 10px;	
	font-family:"ＭＳ Ｐゴシック, Osaka";
	line-height: 150%;
}

#headlines a { /* 各ニュース項目のうちリンクありの項目 */	
	outline: none;
	text-decoration: none;
	color:#0066cc;
}

#headlines a:hover { /* 各ニュース項目のうちリンクありの項目 */	
	outline: none;
	text-decoration: none;
	color:#0099ff;
}

