/* This style sheet requires standards-complaint mode. Use a DOCTYPE:
*
*  !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
*  "http://www.w3.org/TR/REC-html40/loose.dtd"
*  ...
*  <link href="base1.css" type="text/css" rel="stylesheet">
*  <style type=text/css>@import url("sizefix1.css"); </style>
*/

/* The following tricks make NS4, IE5, and others all appear to have the same
*  font size (small).  Then use 'em' to size from that base.  */
body, body p, body div, body th, body td, body li, body dd {
  /* more specific to override rule in importing sheet */
  font-size:    x-small;    /* for WinIE4/5 -- equiv to standards 'small' */
  voice-family: "\"}\"";    /* trick WinIE4/5 into thinking the rule is over */
  voice-family: inherit;    /* recover from trick */
  font-size:    small;      /* standard-compliant value for better browsers */
}