	var agent = navigator.userAgent ;
	var appve = navigator.appVersion ;
	var appna = navigator.appName ;

	var userOs = null ;
	var browser = null ;
	var version = null ;

	if ( agent.indexOf('Mac') != -1 ) {
		userOs = "Mac";
	} else {
		userOs = "Win" ;
	}

	if ( appna == "Netscape" ) {
		browser = "NN";
		version = appve.substring( 0,1 ) ;
	} else {
		browser = "MSIE";
		version = agent.substring((agent.indexOf('MSIE') + 5),(agent.indexOf('MSIE') + 8)) ;
	}

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

	if ( userOs == "Win" && ( browser == "MSIE" && version >= 5 )) {
		document.write('.honbun {  font-size:12px; line-height:15px;font-family:"‚l‚r ƒSƒVƒbƒN","MS UI Gothic","‚l‚r –¾’©";color:#333333}');
	} else if ( userOs == "Win" && ( browser == "NN" && version == 4 )) {
		document.write('.honbun {  font-size:14px; line-height:15px;color:#333333}');
	} else if ( userOs == "Win" && ( browser == "NN" && version >= 5 )) {
		document.write('.honbun {  font-size:12px; line-height:15px;font-family:"‚l‚r ƒSƒVƒbƒN","MS UI Gothic","‚l‚r –¾’©";color:#333333}');
	} else if ( userOs == "Mac") {
		document.write('.honbun {  font-size:12px; line-height:15px;font-family:"Osaka,MS UI Gothic,sans-serif";color:#333333}');
	}
 document.write('-->');
 document.write('</style>');
