<!--

// * Fontsize Adjuster *
// Last Updated on Mar. 30 2006

document.write("<style type='text/css'>");
document.write("<!-- ");

document.write("table{text-align: left;}");

if(navigator.appName.indexOf("Internet Explorer",0) != -1 && navigator.appVersion.indexOf("Windows",0) != -1){

  // Win MSIE
	document.write(".main { font-size:x-small ; line-height:1.2 }");
	document.write(".small { font-size:xx-small ; line-height:1.1 }");
	document.write(".sub { font-size:xx-small ; line-height:1.4 }");

}else if(navigator.appName.indexOf("Internet Explorer",0) != -1 && navigator.appVersion.indexOf("Macintosh",0) != -1 && navigator.appVersion.indexOf("MSIE 4",0) != -1){

  // Mac MSIE 4.x
	document.write(".main { font-size:small ; line-height:1.2 }");
	document.write(".small { font-size:x-small ; line-height:1.2 }");
	document.write(".sub { font-size:x-small ; line-height:1.3 }");

}else if(navigator.appName.indexOf("Internet Explorer",0) != -1 && navigator.appVersion.indexOf("Macintosh",0) != -1 && navigator.appVersion.indexOf("MSIE 5",0) != -1){

  // Mac MSIE 5.x
	document.write(".main { font-size:x-small ; line-height:1.2 }");
	document.write(".small { font-size:xx-small ; line-height:1.2 }");
	document.write(".sub { font-size:xx-small ; line-height:1.3 }");

}else if(navigator.appName.indexOf("Netscape",0) != -1 && navigator.appVersion.indexOf("Macintosh",0) != -1 && navigator.appVersion.indexOf("5.",0) != -1){

  // Mac Netscape6
	document.write(".main { font-size:9pt ; line-height:1.2 }");
	document.write(".small { font-size:8pt ; line-height:1.2 }");
	document.write(".sub { font-size:8pt ; line-height:1.2 }");

}else if(navigator.appName.indexOf("Netscape",0) != -1 && navigator.appVersion.indexOf("4",0) != -1 && navigator.appVersion.indexOf("Win",0) != -1){

  // Win NN 4.x
	document.write(".main { font-size:small ; line-height:1.2 }");
	document.write(".small { font-size:small ; line-height:1.2 }");
	document.write(".sub { font-size:x-small ; line-height:1.2 }");

}else if(navigator.appName.indexOf("Netscape",0) != -1 && navigator.appVersion.indexOf("5.",0) != -1 && navigator.appVersion.indexOf("Win",0) != -1){

  // Win Netscape6
	document.write(".main { font-size:small ; line-height:1.2 }");
	document.write(".small { font-size:x-small ; line-height:1.2 }");
	document.write(".sub { font-size:x-small ; line-height:1.3 }");

}else{

 // Others
	document.write(".main { font-size:medium ; line-height:1.2 }");
	document.write(".small { font-size:small; line-height:1.1 }");
	document.write(".sub { font-size:small; line-height:1.2 }");

}

document.write(".hd { font-size: 14px ; line-height:1.2 }");
document.write("a.none { text-decoration:none }");
document.write(" -->");
document.write("</style>");

//-->