/*
 * Looking into:
 * 	Hanging punctuation
 * 	Orphan control
 * 	Widow control
 */
/*
 * Baseline grid:
 * Assume 1em = 12pt.
 * Line height...baseline grid...will be 18pt (1.5em).
 * All vertical space should add up to a multiple of 18pt.
 */
/*
 * Absent font-size changes:
 * 1em = 16px = 0.17in = 12pt = 1pc = 4.2mm = 0.42cm
 */
/*
@viewport { width: device-width; }
*/

body {
	padding: 0px;
	margin: 0px;
	background-color: white;
	min-height: 100%;
	border-top: 1em solid navy;
	line-height: 1.5em;
	font-family: "Iowan Old Style", IowanOldStyle, Cambria, Georgia, serif;
	/*
	font-family: "Avenir Next", AvenirNext, Avenir,
		Calibri, "Helvetica Neue", Helvetica, sans-serif;
	*/
}

.body {
	padding-top: 1em;
	padding-left: 1em;
	padding-right: 1em;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	max-width: 30em;
	/* background-color: white; */
	/*
	 * The min-height was to get the background color to extend all the
	 * way down the page when the body and div.body had different
	 * background colors.
	 *
	 * This does not play nice with places where I want tables to break
	 * out of the max-width.
	 */
	/* min-height: 100%; */
} 

.crumbs {
	text-align: right;
	padding-right: 1em;
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}

.crumbs p {
	text-align: right;
	margin-top: 0em;
	margin-bottom: 0em;
}

.links {
	text-align: right;
}

h1 {
	font-size: 1.5em;
	/* Now 1em = 18pt. */
	font-weight: bold;
	text-align: center;
	/* 0.5em = 9pt; 0.5em + 0.5em = 18pt. */
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

h2 {
	font-size: 1.5em;
	/* Now 1em = 18pt. */
	font-weight: normal;
	text-align: left;
	/* 0.5em = 9pt; 0.5em + 0.5em = 18pt. */
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

.links h2 {
	text-align: right;
}

p {
	/* 1em = 12pt; 0.75em = 9pt; 0.75em + 0.75em = 18 pt. */
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}

ul, ol {
	padding: 0px;
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}

div.verse > p {
	text-indent: -1em;
	margin-left: 2em;
	margin-top: 0em;
	margin-bottom: 0em;
}

