
document.write("<STYLE TYPE='text/css'><!--");
document.write("A:LINK { color: #001BA3}");
document.write("A:VISITED { color: #002A7F}");
document.write("A:hover { color:#ff0000;}");
var naviPlatform = navigator.platform;

//WIN - MACでFONT SIZEの解釈が異なるため、プラットフォームを判別してStyleSheetを書き出す。
	if( naviPlatform.charAt(0) == "W" )
	{
		document.write("font {  font-size: 13px; line-height: 140%}");
		document.write("td {  font-size: 13px; line-height: 140%}");
		document.write("list {  font-size: 13px; line-height: 140%}");
		document.write("select {  font-size: 13px; line-height: 140%}");
		document.write(".s { font-size: 11px; line-height: 120% }");
		document.write(".l { font-size: 15px; line-height: 140% }");
		document.write(".ll { font-size: 16px; line-height: 140% }");
		document.write(".naviFont01{ font-size: 11px; text-decoration:none;  }");
	}
	else
	{
		document.write("font { font-size: 12px; line-height: 140% }");
		document.write("td { font-size: 12px; line-height: 140% }");
		document.write("list {  font-size: 12px; line-height: 140%}");
		document.write("select {  font-size: 12px; line-height: 140%}");
		document.write(".s { font-size: 10px; line-height: 120% }");
		document.write(".l { font-size: 14px; line-height: 140% }");
		document.write(".ll { font-size: 16px; line-height: 140% }");
		document.write(".naviFont01{ font-size: 9px;  text-decoration:none;  }");
	}

document.write("//--></STYLE>");


