
//================================================= CSS
var agt=navigator.platform.toLowerCase();
var mac  = (agt.indexOf('mac') != -1);
document.write("<style >");
if(!(mac)){
	//win ie
	if (navigator.appName == 'Microsoft Internet Explorer' || navigator.vendor == "Netscape6") {
		document.write("body, td, div { font-family:‚l‚r ‚oƒSƒVƒbƒN; font-size:11px }");
		document.write(".f9 { font-size:10px }");
		document.write(".f10 { font-size:11px }");
		document.write(".f12 { font-size:12px }");
	}
	//win ns
	else {
		document.write("body, td, div { font-family:‚l‚r ‚oƒSƒVƒbƒN; font-size:11px }");
		document.write(".f9 { font-size:11px }");
		document.write(".f10 { font-size:11px }");
		document.write(".f12 { font-size:12px }");
	}
}
else {
	//mac ie
	if (navigator.appName == 'Microsoft Internet Explorer' || navigator.vendor == "Netscape6") {
		document.write("body, td, div { font-family:Osaka; font-size:10px }");
		document.write(".f9 { font-size:9px }");
		document.write(".f10 { font-size:10px }");
		document.write(".f12 { font-size:12px }");
	}
	//mac ns
	else {
		document.write("body, td, div { font-family:Osaka; font-size:10px }");
		document.write(".f9 { font-size:9px }");
		document.write(".f10 { font-size:10px }");
		document.write(".f12 { font-size:12px }");
	}
}
document.write("</style>");
