<!--
	var os="unkown";
	str = navigator.userAgent.toUpperCase();
	if (str.indexOf("MAC") >= 0) os="MacOS";
	if (str.indexOf("WIN") >= 0) os="Windows";
	if (str.indexOf("X11") >= 0) os="UNIX";


	if(os=="Windows")
	{
		document.write('<STYLE TYPE="text/css">');
		document.write('.title    { font-size: 21px; line-height:24px }');
		document.write('.small1   { font-size: 12px; line-height:24px }');
		document.write('.body1   { font-size: 12px; line-height:18px }');
		document.write('.body2    { font-size: 12px; line-height:24px }');
		document.write('.body3    { font-size: 12px; line-height:28px }');
		document.write('.small 2   { font-size: 10px; line-height:12px}');
		document.write('</STYLE>');
	}
	else
	{
		document.write('<STYLE TYPE="text/css">');
		document.write('.title   { font-size: 18px; line-height:21px }');
		document.write('.small1   { font-size: 10px; line-height:18px }');
		document.write('.body1   { font-size: 12px; line-height:16px }');
		document.write('.body2   { font-size: 12px; line-height:21px }');
		document.write('.body3   { font-size: 12px; line-height:26px }');
		document.write('.small2   { font-size: 9px;  line-height:11px }');
		document.write('</STYLE>');
	}

//-->

