/* Basic technique & IE workarounds from YUI 3
   cf. <http://yui.yahooapis.com/3.1.1/build/cssfonts/fonts.css>
   There's nothing special about that version number. Their CSS is
   the same at least through version 3.4.0. This version taken from
   Haddock 2.8.1.
   
   font-size: 182%;   == 24pt
   font-size: 146.5%; == 19pt
   font-size: 131%;   == 17pt
   font-size: 116%;   == 15pt
   font-size: 100%;   == 13pt
   font-size: 85%;    == 11pt
 */

body {
    /* YUI uses {font:13px/1.231 arial,helvetica,clean,sans-serif;} */
	font:13px/1.4 sans-serif;
	*font-size:small; /* for IE */
	*font:x-small; /* for IE in quirks mode */
}

h1 { font-size: 146.5%; /* 19pt */ } 
h2 { font-size: 131%;   /* 17pt */ }
h3 { font-size: 116%;   /* 15pt */ }
h4 { font-size: 100%;   /* 13pt */ }
h5 { font-size: 100%;   /* 13pt */ }

/* Nudge down to get to 13px equivalent for these form elements. */
select, input, button, textarea {
    font:99% sans-serif;
}

/* Remind tables that they're supposed to inherit. */
table {
    font-size:inherit;
    font:100%;
}

/* Bump up IE to get to 13px equivalent for these fixed-width elements. */
pre, code, kbd, samp, tt {
	font-family:monospace;
	*font-size:108%;
	line-height: 124%;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fin. */
