/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
      
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 70%;
  color: #fff; 
  background: #fff;
  font-family:Verdana, Arial, Helvetica, sans-serif;
}

