/**
 *  Default type settings.
 *	Establishes a baseline rhythm.
 */

/* set baseline for document */
	body {
		font-size: 75%; /* 12px (16px * .75 = 12px)*/
		line-height: 1.5em; /* 18px baseline */
	}
	
	html > body {
		font-size: 12px;
	}

/* set headings */
	h1 {
		font-size: 3em; /* 36px */
		line-height: 1.5em;
	}
	
	h2 {
		font-size: 2em; /* 24px */
		line-height: 1.5em;
	}
	
	h3 {
		font-size: 1.5em; /* 18px */
		line-height: 2em;
	}
	
	h4 {
		font-size: 1.3333em; /* 16px */
		line-height: 2.25em;
	}
	
	h5 {
		font-size: 1.1666em; /* 14px */
		line-height: 2.5714em;
		font-weight: bold;
	}
	
	h6 {
		font-size: 1em;
		line-height: 3em;
		font-weight: bold;
	}

/* give acronyms and abbreviations some basic style */
	abbr, acronym {
		border-bottom: 1px dotted #000;
	}
	acronym {
		text-transform: uppercase;
	}

