var ua=navigator.userAgent;
document.writeln("<style type='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1){
	//===============MAC Opera===============
	if(ua.match(/Opera[\/\s](\d\.\d+)/)){
		document.writeln("body{font-size:70%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:85%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:85%;}");
	}
	//===============MAC IE===============
	else if(ua.match(/MSIE (\d\.\d+)/)){
		document.writeln("body{font-size:75%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:90%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:90%;}");
	}
	//===============MAC Firefox===============
	else if(ua.match(/Gecko/) && ua.match(/(Firebird|Firefox)\/([\.\d]+)/)){
		document.writeln("body{font-size:80%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:90%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:90%;}");
	}
	//===============MAC Safari===============
	else if(ua.match(/Safari\/([\.\d]+)/)){
		document.writeln("body{font-size:70%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:85%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:85%;}");
	}
	//===============MAC Netscape、その他===============
	else{
		document.writeln("body{font-size:80%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:90%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:85%;}");
	}
}
else{
	//===============WIN Opera===============
	if(ua.match(/Opera[\/\s](\d\.\d+)/)){
		document.writeln("body{font-size:75%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:85%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:85%;}");
	}
	//===============WIN IE===============
	else if(ua.match(/MSIE (\d\.\d+)/)){
		document.writeln("body{font-size:75%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:85%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:85%;}");
	}
	//===============WIN Firefox===============
	else if(ua.match(/Gecko/) && ua.match(/(Firebird|Firefox)\/([\.\d]+)/)){
		document.writeln("body{font-size:75%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:85%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:85%;}");
	}
	//===============WIN Netscape、その他===============
	else{
		document.writeln("body{font-size:75%;}");
		document.writeln("h1,h2,h3,h4,h5,h6{font-size:120%;}");
		document.writeln("dt,th,td,input{font-size:100%;}");
		document.writeln("div#breadCrumb,div#footer{font-size:80%;}");
		document.writeln(".x-large{font-size:160%;}");
		document.writeln(".large{font-size:120%;}");
		document.writeln(".medium{font-size:100%;}");
		document.writeln(".small{font-size:80%;}");
	}
}
document.writeln("--></style>");