

/* Apple Design Style Sheet 2002 */

canUseHiragino=false;
if ((navigator.userAgent.indexOf('MSIE 5.12') != -1) ||(navigator.userAgent.indexOf('MSIE 5.2') != -1) || ((navigator.userAgent.indexOf('Mozilla') != -1) && (navigator.userAgent.indexOf('Mac OS X') != -1))) {
	canUseHiragino=true;
}

if(navigator.userAgent.indexOf('MSIE 5.14') != -1){
	if (navigator.plugins) {
		for (i=0; i < navigator.plugins.length; i++ ) {
			if (navigator.plugins[i].name.indexOf("QuickTime") >= 0 && navigator.plugins[i].filename.indexOf('.plugin')!=-1){
				canUseHiragino=true;
			}
		}
	}
}

// Win
if(navigator.userAgent.indexOf("Win")!=-1){
canUseWin=true;
}


if(canUseHiragino){
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.NORMAL { font-family: "ƒqƒ‰ƒMƒmŠpƒS Pro W3"; font-size: 12px; line-height: 140%; font-weight: normal}');
	document.writeln('.TITLE { font-family: "ƒqƒ‰ƒMƒmŠpƒS Pro W6"; font-size:14px; font-weight: normal}');
	document.writeln('.INFO { font-family: "ƒqƒ‰ƒMƒmŠÛƒS Pro W4"; font-size: 10px; line-height: 140%; font-weight: normal}');
	document.writeln('-->');
	document.writeln('</style>');
}

if(canUseWin){
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.NORMAL { font-size: 12px; line-height: 212%}');
	document.writeln('.TITLE {  font-size:14px}');
	document.writeln('.INFO { font-size: 11px; line-height: 180%');
	document.writeln('-->');
	document.writeln('</style>');
}
