/*--------------------------------------------------------------

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: 12px;
	color: #222;
	background: #FFF;
	font-family: Helvetica, Arial, sans-serif;
}
/*Headings
--------------------------------------------------------------*/
H1, H2, H3, H4, H5, H6
{
	font-weight: normal;
	color: #111;
}
H1
{
	font-size: 3em;
	line-height: 1;
	margin-bottom: 0.5em;
}
H2
{
	font-size: 2em;
	margin-bottom: 0.75em;
}
H3
{
	font-size: 1.5em;
	line-height: 1;
	margin-bottom: 1em;
}
H4
{
	font-size: 1.2em;
	line-height: 1.25;
	margin-bottom: 1.25em;
	height: 1.25em;
}
H5
{
	font-size: 1em;
	font-weight: bold;
	margin-bottom: 1.5em;
}
H6
{
	font-size: 1em;
	font-weight: bold;
}
H1 IMG, H2 IMG, H3 IMG, H4 IMG, H5 IMG, H6 IMG
{
	margin: 0;
}
/*Text elements
--------------------------------------------------------------*/
P
{
	margin: 0 0 1.5em;
}
P IMG
{
	float: left;
	margin: 1.5em 1.5em 1.5em 0;
	padding: 0;
}
P IMG.right
{
	float: right;
	margin: 1.5em 0 1.5em 1.5em;
}
A:focus, A:hover
{
	color: #000;
}
A
{
	color: #009;
	text-decoration: underline;
}
BLOCKQUOTE
{
	margin: 1.5em;
	color: #666;
	font-style: italic;
}
STRONG
{
	font-weight: bold;
}
EM, DFN
{
	font-style: italic;
}
DFN
{
	font-weight: bold;
}
SUP, SUB
{
	line-height: 0;
}
ABBR, ACRONYM
{
	border-bottom: 1px dotted #666;
}
ADDRESS
{
	margin: 0 0 1.5em;
	font-style: italic;
}
DEL
{
	color: #666;
}
PRE, CODE
{
	margin: 1.5em 0;
	white-space: pre;
}
PRE, CODE, TT
{
	font: 1em "andale mono", "lucida console", monospace;
	line-height: 1.5;
}
/*Lists
--------------------------------------------------------------*/
LI UL, LI OL
{
	margin: 0 1.5em;
}
UL, OL
{
	margin: 0 1.5em 1.5em;
}
UL
{
	list-style-type: disc;
}
OL
{
	list-style-type: decimal;
}
DL
{
	margin: 0 0 1.5em;
}
DL DT
{
	font-weight: bold;
}
DD
{
	margin-left: 1.5em;
}
/*Tables
--------------------------------------------------------------*/
TABLE
{
	margin-bottom: 1.4em;
	width: 100%;
}
TH
{
	font-weight: bold;
	background: #C3D9FF;
}
TH, TD
{
	padding: 4px 10px 4px 5px;
}
TR.even TD
{
	background: #E5ECF9;
}
TFOOT
{
	font-style: italic;
}
CAPTION
{
	background: #EEE;
}
/*Misc classes
--------------------------------------------------------------*/
.small
{
	font-size: 0.8em;
	margin-bottom: 1.875em;
	line-height: 1.875em;
}
.large
{
	font-size: 1.2em;
	line-height: 2.5em;
	margin-bottom: 1.25em;
}
.hide
{
	display: none;
}
.quiet
{
	color: #666;
}
.loud
{
	color: #000;
}
.highlight
{
	background: #FF0;
}
.added
{
	background: #060;
	color: #FFF;
}
.removed
{
	background: #900;
	color: #FFF;
}
.first
{
	margin-left: 0;
	padding-left: 0;
}
.last
{
	margin-right: 0;
	padding-right: 0;
}
.top
{
	margin-top: 0;
	padding-top: 0;
}
.bottom
{
	margin-bottom: 0;
	padding-bottom: 0;
}

