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

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

if(bName == "M" && vNum < 4) {
	// OLD IE
	document.writeln(".f10 {  font-size: 11px; color: #666666;}");
	document.writeln(".f12 {  font-size: 12px; color: #666666;}");
	document.writeln(".f14 {  font-size: 14px; color: #666666;}");
	document.writeln(".f18 {  font-size: 20px; color: #666666;}");
}
else if(bName == "N" && vNum < 4) {
	// OLD Netscape
	document.writeln(".f10 {  font-size: 11px; color: #666666;}");
	document.writeln(".f12 {  font-size: 13px; color: #666666;}");
	document.writeln(".f14 {  font-size: 15px; color: #666666;}");
	document.writeln(".f18 {  font-size: 20px; color: #666666;}");
}

else if(navigator.appVersion.indexOf("Mac") > -1) {
	if(bName == "M") {
		// MAC IE
		document.writeln(".f10 {  font-size: 11px; line-height: 130%; color: #666666;}");
		document.writeln(".f12 {  font-size: 12px; line-height: 130%; color: #666666;}");
		document.writeln(".f14 {  font-size: 14px; line-height: 130%; color: #666666;}");
		document.writeln(".f18 {  font-size: 20px; line-height: 130%; color: #666666;}");
	}
	else {
		if(vNum < 5) {
			// MAC NETSCAPE 4.x
			document.writeln(".f10 {  font-size: 10px; line-height: 110%; color: #666666;}");
			document.writeln(".f12 {  font-size: 12px; line-height: 110%; color: #666666;}");
			document.writeln(".f14 {  font-size: 14px; line-height: 110%; color: #666666;}");
			document.writeln(".f18 {  font-size: 20px; line-height: 110%; color: #666666;}");
		}
		else {
			// MAC NETSCAPE 6.x~
			document.writeln(".f10 {  font-size: 10px; line-height: 130%; color: #666666;}");
			document.writeln(".f12 {  font-size: 12px; line-height: 130%; color: #666666;}");
			document.writeln(".f14 {  font-size: 14px; line-height: 130%; color: #666666;}");
			document.writeln(".f18 {  font-size: 20px; line-height: 130%; color: #666666;}");
		}
	}
}
else {
	if(bName == "M") {
		// WIN IE
		document.writeln(".f10 {  font-size: 11px; line-height: 120%; color: #666666;}");
		document.writeln(".f12 {  font-size: 12px; line-height: 140%; color: #666666;}");
		document.writeln(".f14 {  font-size: 14px; line-height: 140%; color: #666666;}");
		document.writeln(".f18 {  font-size: 20px; line-height: 140%; color: #666666;}");
	}
	else {
		if(vNum < 5) {
			// WIN NETSCAPE 4.x
			document.writeln(".f10 {  font-size: 11px; line-height: 140%; color: #666666;}");
			document.writeln(".f12 {  font-size: 13px; line-height: 140%; color: #666666;}");
			document.writeln(".f14 {  font-size: 15px; line-height: 140%; color: #666666;}");
			document.writeln(".f18 {  font-size: 20px; line-height: 140%; color: #666666;}");
		}
		else {
			// WIN NETSCAPE 6.x~
			document.writeln(".f10 {  font-size: 11px; line-height: 110%; color: #666666;}");
			document.writeln(".f12 {  font-size: 12px; line-height: 140%; color: #666666;}");
			document.writeln(".f14 {  font-size: 14px; line-height: 140%; color: #666666;}");
			document.writeln(".f18 {  font-size: 20px; line-height: 140%; color: #666666;}");
		}
	}
}

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