

// スタイルシート制御

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(".big1 {  font-size: 12pt; color: #FFFFFF; line-height: 16pt; }");
document.write(".big2 {  font-size: 12pt; color: #AAAAAA; line-height: 16pt; }");
document.write(".big3 {  font-size: 12pt; color: #FF0000; line-height: 16pt; }");
document.write(".normal1 {  font-size: 9pt; color: #FFFFFF; line-height: 14pt; }");
document.write(".normal2 {  font-size: 9pt; color: #AAAAAA; line-height: 14pt; }");
document.write(".normal3 {  font-size: 9pt; color: #FF0000; line-height: 14pt; }");
document.write(".small1 {  font-size: 8pt; color: #FFFFFF; line-height: 14pt; }");
document.write(".small2 {  font-size: 8pt; color: #AAAAAA; line-height: 14pt; }");
document.write(".small3 {  font-size: 8pt; color: #FF0000; line-height: 14pt; }");

/*css for href*/
document.write("a:active {  color: #003399}");
document.write("a:link {  color: #6699FF}");
document.write("a:hover {  color: #CCFFFF}");
document.write("a {  color: #6699FF; text-decoration: none}");


}

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

/*css for contents*/
document.write(".big1 {  font-size: 12pt; color: #FFFFFF; line-height: 16pt; }");
document.write(".big2 {  font-size: 12pt; color: #AAAAAA; line-height: 16pt; }");
document.write(".big3 {  font-size: 12pt; color: #FF0000; line-height: 16pt; }");
document.write(".normal1 {  font-size: 10pt; color: #FFFFFF; line-height: 14pt; }");
document.write(".normal2 {  font-size: 10pt; color: #AAAAAA; line-height: 14pt; }");
document.write(".normal3 {  font-size: 10pt; color: #FF0000; line-height: 14pt; }");
document.write(".small1 {  font-size: 9pt; color: #FFFFFF; line-height: 14pt; }");
document.write(".small2 {  font-size: 9pt; color: #AAAAAA; line-height: 14pt; }");
document.write(".small3 {  font-size: 9pt; color: #FF0000; line-height: 14pt; }");

/*css for href*/
document.write("a:active {  color: #003399}");
document.write("a:link {  color: #6699FF}");
document.write("a:hover {  color: #CCFFFF}");
document.write("a {  color: #6699FF; text-decoration: none}");

}

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

/*css for contents*/
document.write(".big1 {  font-size: 12pt; color: #FFFFFF; line-height: 16pt; }");
document.write(".big2 {  font-size: 12pt; color: #AAAAAA; line-height: 16pt; }");
document.write(".big3 {  font-size: 12pt; color: #FF0000; line-height: 16pt; }");
document.write(".normal1 {  font-size: 9pt; color: #FFFFFF; line-height: 14pt; }");
document.write(".normal2 {  font-size: 9pt; color: #AAAAAA; line-height: 14pt; }");
document.write(".normal3 {  font-size: 9pt; color: #FF0000; line-height: 14pt; }");
document.write(".small1 {  font-size: 8pt; color: #FFFFFF; line-height: 14pt; }");
document.write(".small2 {  font-size: 8pt; color: #AAAAAA; line-height: 14pt; }");
document.write(".small3 {  font-size: 8pt; color: #FF0000; line-height: 14pt; }");

/*css for href*/
document.write("a:active {  color: #003399}");
document.write("a:link {  color: #6699FF}");
document.write("a:hover {  color: #CCFFFF}");
document.write("a {  color: #6699FF; text-decoration: none}");

}


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

/*css for contents*/
document.write(".big1 {  font-size: 12pt; color: #FFFFFF; line-height: 16pt; }");
document.write(".big2 {  font-size: 12pt; color: #AAAAAA; line-height: 16pt; }");
document.write(".big3 {  font-size: 12pt; color: #FF0000; line-height: 16pt; }");
document.write(".normal1 {  font-size: 10pt; color: #FFFFFF; line-height: 14pt; }");
document.write(".normal2 {  font-size: 10pt; color: #AAAAAA; line-height: 14pt; }");
document.write(".normal3 {  font-size: 10pt; color: #FF0000; line-height: 14pt; }");
document.write(".small1 {  font-size: 9pt; color: #FFFFFF; line-height: 14pt; }");
document.write(".small2 {  font-size: 9pt; color: #AAAAAA; line-height: 14pt; }");
document.write(".small3 {  font-size: 9pt; color: #FF0000; line-height: 14pt; }");

/*css for href*/
document.write("a:active {  color: #003399}");
document.write("a:link {  color: #6699FF}");
document.write("a:hover {  color: #CCFFFF}");
document.write("a {  color: #6699FF; text-decoration: none}");

}

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

