
<!--

var osName = navigator.platform.charAt(0);
var bzName = navigator.appName.charAt(0);


if(osName == "W"){
	if(bzName == "M"){
		document.writeln('<style type="text/css">');
		document.writeln('body {font-size:85%; line-height: 150%;}');
		document.writeln('</style>');
	}else{
		document.writeln('<style type="text/css">');
		document.writeln('body {font-size:85%; line-height: 150%;}');
		document.writeln('</style>');
	}
	
}
else{
	if(navigator.vendor == "Apple Computer, Inc."){
		document.writeln('<style type="text/css">');
		document.writeln('body {font-size:90%; line-height: 2;}');
		document.writeln('</style>');
	}else{
		document.writeln('<style type="text/css">');
		document.writeln('body {font-size:110%; line-height: 2;}');
		document.writeln('</style>');
	}
}

//-->

