/*
|  BASE.CSS
|  Base stylesheet for A Treatise on Baking
|  Media:         all
|  XHTML layout:  table-based
|           (see inline comments)
|-------------------------------------------*/  
 
/* Overall Notes:  
     + Text resizes without breaking layout
     + Page displays clearly with styles off
     + All presentation controlled via CSS
*/

body {
  margin: 0;
  padding: 0;
  color: #000;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.2;  /* Worth playing with. */
}

h1 {
	font-size: 2em;
	font-weight: bold;
}

h2 {
	font-size: 1.6em;
	font-weight: bold;
}

h3 {
  font-size: 1.4em;
  font-style: italic;
}

h4 {
	font-size: 1.2em;
	font-style: italic;
	font-weight: bold;
}

h5 {
	font-size: 1em;
	font-style: italic;
	font-weight: bold;
}

h6 {
	font-size: 1em;
	font-style: italic;
	font-weight: normal;
	font-variant: normal;
	text-decoration: underline;
}

