

// Fix Netscape styles
//
// Adjusts stylesheet for Netscape on the PC (which tends to do small text unreadably small
// Requires that we have included the find_browser_type.js script to determine the browser
// first.

	
	if (fbtBrowserPlatform == "windows" && fbtBrowserType == "navigator")
	{
	
	// Override the "small" and "tiny" classes, defined in afl_site_styles.css
	// by generating an additional internal stylesheet.
	
	document.writeln ('<STYLE type="text/css">');
	document.writeln ('<!--');
	document.writeln ('.small {font-size: 11px}');
	document.writeln ('.tiny {font-size: 10px}');
	document.writeln ('.bigger {font-size: 15px}');

	document.writeln ('-->');
	document.writeln ('</STYLE>');


	}


	

	

	
	
	
	
	
	





			