document.write('<style type="text/css" media="all">\n');
document.write('<!--\n');

//////////////////////////////////////////////////////////////////////
// BROWSER CHECK
//////////////////////////////////////////////////////////////////////

	var UA  = navigator.userAgent.toUpperCase();
	var AN  = navigator.appName.toUpperCase();

	//////////////////////////////////////////////////////////////////////
	// Safari / Chrome
	//////////////////////////////////////////////////////////////////////
	if (UA.indexOf("SAFARI") >= 0) {

		//////////////////////////////////////////////////////////////////////
		// alert("SAFARI : MAC");
		//////////////////////////////////////////////////////////////////////
		document.write('body { font-size: 75%; line-height: 155%;}\n');

	//////////////////////////////////////////////////////////////////////
	// Forefox / Mozilla / Netscape
	//////////////////////////////////////////////////////////////////////
	} else if (AN.indexOf("NETSCAPE") >= 0)  {

		var appVer = navigator.appVersion;
		var ver    = eval(appVer.substring(0, appVer.indexOf(" ", 0)));

		//////////////////////////////////////////////////////////////////////
		// Forefox / Mozilla
		//////////////////////////////////////////////////////////////////////
		if (ver >= 5) {

			if (UA.indexOf("MAC") >= 0) {

				//////////////////////////////////////////////////////////////////////
				// alert("Forefox / Mozilla / Netscape : MAC");
				//////////////////////////////////////////////////////////////////////
				document.write('body { font-size: 80%; line-height: 140%;}\n');

			} else {

				//////////////////////////////////////////////////////////////////////
				// alert("Forefox / Mozilla / Netscape : WIN and OTHER");
				//////////////////////////////////////////////////////////////////////
				document.write('body { font-size: 75%; line-height: 155%;}\n');

			}

		//////////////////////////////////////////////////////////////////////
		// Netscape 4.7 or Before
		//////////////////////////////////////////////////////////////////////
		} else {

			if (UA.indexOf("MAC") >= 0) {

				//////////////////////////////////////////////////////////////////////
				// alert("Netscape 4.7 or Before : MAC");
				//////////////////////////////////////////////////////////////////////
				document.write('body { font-size: 12px; line-height: 14px;}\n');

			} else {

				//////////////////////////////////////////////////////////////////////
				// alert("Netscape 4.7 or Before : WIN and OTHER");
				//////////////////////////////////////////////////////////////////////
				document.write('body { font-size: 12px; line-height: 16px;}\n');

			}

		}

	//////////////////////////////////////////////////////////////////////
	// Internet Explorer and Default
	//////////////////////////////////////////////////////////////////////
	} else {

		if (UA.indexOf("MAC") >= 0) {

			//////////////////////////////////////////////////////////////////////
			// alert("Internet Explorer and Default : MAC");
			//////////////////////////////////////////////////////////////////////
			document.write('body { font-size: 85%; line-height: 125%;}\n');

		} else {

			//////////////////////////////////////////////////////////////////////
			// alert("Internet Explorer and Default : WIN and OTHER");
			//////////////////////////////////////////////////////////////////////
			document.write('body { font-size: 75%; line-height: 150%;}\n');

		}

	}

//////////////////////////////////////////////////////////////////////

document.write('-->\n');
document.write('</style>\n');

