document.writeln( '<style type="text/css">' );
	if(is_mac) 
		{
			//this one works
			if( (is_ie) && (is_minor <= 5) ){
			document.writeln( '.head { font-size: 60%; line-height: 6px; }' );
    		document.writeln( 'A.wr { font-size: 60%; line-height: 6px; }' );
			}
		}
	else if(is_win)
	{	
		//can't get line-height to respond here
		if( (is_ie) && (is_minor <= 5) ){
		document.writeln( '.head { font-size: 9px; line-height: 10%; }' );
    	document.writeln( 'A.wr { font-size: 9px; line-height: 10%; }' );
		}
		//this one works
		else if( (is_nav) && (is_minor <= 5) ){
		document.writeln( '.head { font-size: 10px; line-height: 14px; }' );
    	document.writeln( 'A.wr { font-size: 10px; line-height: 14px; }' );
		}
	}
document.writeln( '</style>' );
