/*  
	This is all to avoid setting specific pixel sizes everywhere   
	for fonts since certain well-known browsers (IE) do not 
	allow user resizing of font sizes if a pixel size is spec'd.
	So we use "relative" sizes such as 'small' in almost all cases.
	
	And it's in this separate sheet using @import so older browsers
	(NS4 I'm looking at you) won't read it and choke on it.
*/

body, td, th { /* redundant rules for bad browsers  */
	font-size:    small;
	voice-family: "\"}\""; /* this is a hack to trick IE's buggy parser  */
	voice-family: inherit;
	font-size:    small;
	}
/*  sophisticated rules for newer smarter browsers */
html>body, html>body td, html>body th {
	/*font-size:    12px;*/
	font-size:    small;
	}
