var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

if ( bName == "mac" && vNum < 4) {
}

if ( bName == "ns" && vNum < 4) {
}

document.writeln("<STYLE TYPE='text/css'><!--");

if (navigator.appVersion.indexOf("Mac") > -1) {
	switch (bName) {
	case "mac":
		// Mac IE
		document.writeln(".SS9{font-size:9px}");
		document.writeln(".S10{font-Size:10px}");
		document.writeln(".N12{font-Size:12px}");
		document.writeln(".L14{font-Size:14px}");
		document.writeln(".LL16{font-Size:16px}");
	;break;
	case "ns":
		if( vNum < 5 ) {
			// Mac NS 4
			document.writeln(".SS9{font-size:9px; line-height:12px}");
			document.writeln(".S10{font-Size:10px; line-height:13px}");
			document.writeln(".N12{font-Size:12px; line-height:16px}");
			document.writeln(".L14{font-Size:14px; line-height:18px}");
			document.writeln(".LL16{font-Size:16px; line-height:20px}");
		}
		else {
			// Mac NS 6
			document.writeln(".SS9{font-size:9px; line-height:12px}");
			document.writeln(".S10{font-Size:10px; line-height:13px}");
			document.writeln(".N12{font-Size:12px; line-height:16px}");
			document.writeln(".L14{font-Size:14px; line-height:18px}");
			document.writeln(".LL16{font-Size:16px; line-height:20px}");
		}
	;break;
	case "sa":
		// Mac Safari
		document.writeln(".SS9{font-size:9px; line-height:12px}");
		document.writeln(".S10{font-Size:10px; line-height:13px}");
		document.writeln(".N12{font-Size:12px; line-height:16px}");
		document.writeln(".L14{font-Size:14px; line-height:18px}");
		document.writeln(".LL16{font-Size:16px; line-height:20px}");
	;break;
	}
}
else {
	switch (bName) {
	case "mac":
		// Win IE
		document.writeln(".SS9{font-size:10px; line-height:12px}");
		document.writeln(".S10{font-Size:11px; line-height:13px}");
		document.writeln(".N12{font-Size:12px; line-height:16px; letter-spacing:1px}");
		document.writeln(".L14{font-Size:14px; line-height:18px; letter-spacing:1px}");
		document.writeln(".LL16{font-Size:16px; line-height:20px; letter-spacing:1px}");
	;break;
	case "ns":
		if( vNum < 5 ) {
			// Win NS 4
			document.writeln(".SS9{font-size:11px; line-height:12px}");
			document.writeln(".S10{font-Size:11px; line-height:13px}");
			document.writeln(".N12{font-Size:12px; line-height:16px}");
			document.writeln(".L14{font-Size:15px; line-height:18px}");
			document.writeln(".LL16{font-Size:17px; line-height:20px}");
		}
		else {
			// WIN NS 6
			document.writeln(".SS9{font-size:10px; line-height:12px}");
			document.writeln(".S10{font-Size:11px; line-height:13px}");
			document.writeln(".N12{font-Size:12px; line-height:16px; letter-spacing:1px}");
			document.writeln(".L14{font-Size:14px; line-height:18px; letter-spacing:1px}");
			document.writeln(".LL16{font-Size:16px; line-height:20px; letter-spacing:1px}");
		}
	;break;
	}
}

document.writeln("--></STYLE>");
