/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2

Changed by Christian Schmidt-Gütter <chr@schmidt-guetter.de> in 2008


Font sizing / IE-Bugs:

 * Standard font size (100%) are 16px in most modern browsers.
 * Real text resizing does not work in IE7 too, if text is given in "px"
   (only with the "zoom tool", which magnifies text, images.. all together).
 * Using "em" as unit causes IE to use wrong scaling, e.g. "0.75em"
   is  *not*  the same as "75%"!
   Work around: html (or body): {font-size: 100%; / * IE hack * /}
                other {font-size: 0.85em;  / * Sizing according to "Golden Section" * /}
   Source (under others): http://www.clagnut.com/blog/348/#c790
 * table, select & input need same procedure:
     table {font-size: 100%;  / * IE hack * /}

!! For testing purposes, I use 15px here, to overwrite different
   defaults on my personal developer browser.
   May be I should switch to Percent later...
   
   Note: "16px" is a bit bigger than needed.

*/


/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  /* To small:
     YUI-Default: font:13px/1.231 verdana,arial,helvetica,clean,sans-serif;
     May be better: */
  /* At least for testing time, use 16px:
  font-size: 100%;
  */
  /* 16px is a bit to big on most systems:
  font:16px/1.4 verdana,arial,helvetica,clean,sans-serif;
  */
  /* 15px seems to be the standard, but does deny font resizing in MSIE:
  font: 15px/1.38 verdana,arial,helvetica,clean,sans-serif;
  */
  font: 95%/1.38 verdana,arial,helvetica,clean,sans-serif;
  /* Note: font size switching will be done in typo+decor.css ! */

  /*
  font: 15px verdana,arial,helvetica,clean,sans-serif;
  line-height: 1.38;
  */
  
  /* Not valid & for IE quirks mode only:  font:x-small; */
}
table, select, input {
  font-size:inherit;
  /* Not valid: font:100%; */
}
/**
 * Bump up IE to get to 13px resp. 16px equivalent
 */
pre,code,kbd,samp,tt {
  font-family:monospace;
  font-size:108%;
  line-height:100%;
}

