/* BUTTERICK CSS FOR TEXT STYLES AND FORMATTING */

/* DEFAULT TEXT STYLES - DEFAULT TEXT SET TO 12px */
html {
	font-size:100%;
}
body {
	font-family: Arial, sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
}

/* DEFAULT LINK STYLES */ 
a:link, a:visited {
	font-size: 1.0em; /* 12px */
	font-family: Arial, sans-serif;
	line-height: 1.5;
	text-decoration: underline;
}
a:hover, a:active {
	font-size: 1.0em; /* 12px */
	font-family: Arial, sans-serif;
	line-height: 1.5;
	text-decoration: none;
}

/* DEFAULT PARAGRAPH SPACING */
p {
	margin: 0px 0px 20px 0px;
}

/* DEFAULT H1 */
h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1.833em; /* 22px */
	margin: 0px 0px 5px 0px;
	font-weight: normal;
}

/* DEFAULT H2 */
h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1.5em; /* 18px */
	margin: 0px 0px 5px 0px;
	font-weight: normal;
}

/* DEFAULT H3 */
h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1.5em; /* 18px */
	margin:0;
	font-weight: normal;
}

/* DEFAULT H4 */
h4 {
	font-family:Arial, Helvetica, sans-serif;
	margin:0;
	font-size: 1.166em; /* 12px */
	font-weight:700;
	text-transform:uppercase;
}

/* DEFAULT H5 */
h5 {
	font-family:Arial, Helvetica, sans-serif;
	margin:0;
	font-size: 1.166em; /* 12px */
	font-weight:700;
}

/* DEFAULT H6 */
h6 {
	font-family:Arial, Helvetica, sans-serif;
	margin:0;
	font-size: 1.0em; /* 12px */
	font-weight: normal;
}

/* DEFAULT LISTS */
ul, ol {
	margin: 5px 0px 5px 15px;
	padding: 0px 0px 0px 15px;
}
ul {
	list-style-type: disc;
}
ul ul {
	list-style-type: circle;
}
ul ul ul {
	list-style-type: disc;
}
ul ul ul ul {
	list-style-type: disc;
}