
// スタイルシート制御

var P = navigator.platform;
var A = navigator.appName;

document.write("<STYLE TYPE='text/css'><!--");

if( P.charAt(0) == "W" && A.charAt(0) == "M" ) // WinIE
{

/*css for contents*/
document.write(".TopDate { font-size: 10px; line-height:16px; color: #993366; font-style: italic;}");
document.write(".Footer { font-size: 10px; line-height:16px; color: #666666;}");
document.write(".FontS { font-size: 10px; line-height:16px; color: #333333;}");
document.write(".FontSB { font-size: 10px; line-height: 16pt; color: #333333; font-weight: bold;}");
document.write(".FontM { font-size: 12px; line-height:18px; color: #333333;}");
document.write(".FontMB { font-size: 12px; line-height:18px; color: #333333; font-weight: bold;}");
document.write(".FontMh { font-size: 12px; line-height:22px; color: #333333;}");
document.write(".FontM10 { font-size: 12px; line-height:18px; color: #333333; padding-left: 10pt;}");
document.write(".FontM20 { font-size: 12px; line-height:18px; color: #333333; padding-left: 20pt;}");
document.write(".FontL { font-size: 13px; line-height:20px; color: #333333;}");

/*css for href*/
document.write("a:active { color: #669900;}");
document.write("a:link { color: #2880CC}");
document.write("a:hover { color: #FFB500}");
document.write("a { color: #2880CC;}");

}

if( P.charAt(0) == "W" && A.charAt(0) == "N" )// WinNC 
{

/*css for contents*/
document.write(".TopDate { font-size: 10px; line-height:17px; color: #993366; font-style: italic;}");
document.write(".Footer { font-size: 10px; line-height:17px; color: #666666;}");
document.write(".FontS { font-size: 10px; line-height:17px; color: #333333;}");
document.write(".FontSB { font-size: 10px; line-height: 17pt; color: #333333; font-weight: bold}");
document.write(".FontM { font-size: 12px; line-height:19px; color: #333333; }");
document.write(".FontMh { font-size: 12px; line-height:23px; color: #333333; }");
document.write(".FontMB { font-size: 12px; line-height:19px; color: #333333; font-weight: bold;}");
document.write(".FontM10 { font-size: 12px; line-height:19px; color: #333333; padding-left: 10pt;}");
document.write(".FontM20 { font-size: 12px; line-height:19px; color: #333333; padding-left: 20pt;}");
document.write(".FontL { font-size: 14px; line-height:21px; color: #333333;}");

/*css for href*/
document.write("a:active { color: #669900;}");
document.write("a:link { color: #2880CC}");
document.write("a:hover { color: #FFB500}");
document.write("a { color: #2880CC;}");

}

if( P.charAt(0) == "M" && A.charAt(0) == "M" ) // MacIE
{

/*css for contents*/
document.write(".TopDate { font-size: 10px; line-height:15px; color: #993366; font-style: italic;}");
document.write(".Footer { font-size: 10px; line-height:15px; color: #666666;}");
document.write(".FontS { font-size: 10px; line-height:15px; color: #333333;}");
document.write(".FontSB { font-size: 10px; line-height: 15pt; color: #333333; font-weight: bold}");
document.write(".FontM { font-size: 12px; line-height:18px; color: #333333;}");
document.write(".FontMh { font-size: 12px; line-height:22px; color: #333333;}");
document.write(".FontMB { font-size: 12px; line-height:18px; color: #333333; font-weight: bold;}");
document.write(".FontM10 { font-size: 12px; line-height:18px; color: #333333; padding-left: 10pt;}");
document.write(".FontM20 { font-size: 12px; line-height:18px; color: #333333; padding-left: 20pt;}");
document.write(".FontL { font-size: 14px; line-height:20px; color: #333333;}");

/*css for href*/
document.write("a:active { color: #669900;}");
document.write("a:link { color: #2880CC}");
document.write("a:hover { color: #FFB500}");
document.write("a { color: #2880CC;}");

}


if( P.charAt(0) == "M" && A.charAt(0) == "N" ) // MacNC
{

/*css for contents*/
document.write(".TopDate { font-size: 10px; line-height:16px; color: #993366; font-style: italic;}");
document.write(".Footer { font-size: 10px; line-height:16px; color: #666666;}");
document.write(".FontS { font-size: 10px; line-height:16px; color: #333333;}");
document.write(".FontSB { font-size: 10px; line-height: 16pt; color: #333333; font-weight: bold;}");
document.write(".FontM { font-size: 12px; line-height:18px; color: #333333;}");
document.write(".FontMh { font-size: 12px; line-height:20px; color: #333333;}");
document.write(".FontMB { font-size: 12px; line-height:18px; color: #333333; font-weight: bold;}");
document.write(".FontM10 { font-size: 12px; line-height:18px; color: #333333; padding-left: 12pt;}");
document.write(".FontM20 { font-size: 12px; line-height:18px; color: #333333; padding-left: 25pt;}");
document.write(".FontL { font-size: 14px; line-height:20px; color: #333333;}");

/*css for href*/
document.write("a:active { color: #669900;}");
document.write("a:link { color: #2880CC}");
document.write("a:hover { color: #FFB500}");
document.write("a { color: #2880CC;}");

}

document.write("//--></style>");

