//スタイルシートの振り分け



mac = (navigator.appVersion.indexOf("Mac") != -1)?true:false;

ns6 = (navigator.appVersion.charAt(0)=="5")?true:false;

ie = (navigator.appName.charAt(0)=="M")?true:false;

ns = (navigator.appName.charAt(0)=="N")?true:false;



document.write("<style type=\"text/css\">");

document.write("<!--");



if(mac){

// CSS Set For Mac NN 6

   if((ns)&&(ns6)){

	document.write(".size2 { font-size: 0.75em; line-height: 110%; }");

	document.write(".size3 { font-size: 0.9em; line-height: 110%; }");

	document.write("a:link { text-decoration : underline ; color : #416BBE }");

	document.write("a:visited { text-decoration : underline ; color : #0F4988 }");

	document.write("a:active { text-decoration : underline ; color : #FF9933 }");

	document.write("a:hover { text-decoration : underline ; color : #FF9933 }");
	
	document.write("img { border-style:none; }");

}

// CSS Set For Mac NN 4

   else if(ns){

	document.write(".size2 { font-size: 0.9em; line-height: 125%; }");

	document.write(".size3 { font-size: 1.0em; line-height: 145%; }");

	document.write("a:link { text-decoration : underline ; color : #416BBE }");

	document.write("a:visited { text-decoration : underline ; color : #0F4988 }");

	document.write("a:active { text-decoration : underline ; color : #FF9933 }");

	document.write("a:hover { text-decoration : underline ; color : #FF9933 }");

	document.write("img { border-style:none; }");

}



// CSS Set For Mac IE

   else {

	document.write(".size2 { font-size: 0.95em; line-height: 130%;}");

	document.write(".size3 { font-size: 1.0em; line-height: 140%;}");

	document.write("a:link { text-decoration : underline ; color : #416BBE }");

	document.write("a:visited { text-decoration : underline ; color : #0F4988 }");

	document.write("a:active { text-decoration : underline ; color : #FF9933 }");

	document.write("a:hover { text-decoration : underline ; color : #FF9933 }");
	
	document.write("img { border-style:none; }");	

}

}

// CSS Set For Win nn6

else{

   if((ns)&&(ns6)){

	document.write(".size2 { font-size: 0.72em; line-height: 115%;}");

	document.write(".size3 { font-size: 0.83em; line-height: 130%;}");

	document.write("a:link { text-decoration : underline ;color : #416BBE }");

	document.write("a:visited { text-decoration : underline ; color : #0F4988 }");

	document.write("a:active { text-decoration : underline ;color : #FF9933 }");

	document.write("a:hover { text-decoration : underline ; color : #FF9933 }");

	document.write("img { border-style:none; }");

}

// CSS Set For Win nn4

   else if(ns){

	document.write(".size2 { font-size: 0.95em; line-height: 120%;}");

	document.write(".size3 { font-size: 1.0em; line-height: 140%;}");

	document.write("a:link { text-decoration : underline ;color : #416BBE }");

	document.write("a:visited { text-decoration : underline ; color : #0F4988 }");

	document.write("a:active { text-decoration : underline ;color : #FF9933 }");

	document.write("a:hover { text-decoration : underline ; color : #FF9933 }");
	
	document.write("img { border-style:none; }");	

}

// CSS Set For Win IE

   else {

	document.write(".size2 { font-size: 0.72em; line-height: 115%;}");

	document.write(".size3 { font-size: 0.83em; line-height: 130%;}");

	document.write("a:link { text-decoration : underline ;color : #416BBE }");

	document.write("a:visited { text-decoration : underline ; color : #0F4988 }");

	document.write("a:active { text-decoration : underline ;color : #FF9933 }");

	document.write("a:hover { text-decoration : underline ; color : #FF9933 }");
	
	document.write("img { border-style:none; }");

}

}

document.write("-->");

document.write("</style>")



