/* --- basic styles, mostly typography --- */

body {
	font-family: "Hoefler Text", Georgia, Garamond, Times, serif;
	font-size: 100%;		/* default is 16px = 1em */
	color: #381d00;
	background: #e8eadc;
}

.dropcap {
	font-size: 3em;
	line-height: 1;
	float: left;
	margin: .1em .1em 0 0;
}

p {
	line-height: 1.5;	/* 18px leading */
	margin: 0 0 1.5em;	/* = 18px = one line in between (1em * 1.5 = 1.5em) */
}

h1 {
	font-size: 2.4em;		/* = 28.8px */
	line-height: 1.25;		/* 28.8px * 1.25 = 36px == 2x default leading (thus keeping the vertical rythm) */
	margin-bottom: .625em;	/* 28.8px * 0.625 = 18px (same as p) */
}

a {
	text-decoration: none;
}

a:link, a:visited {
	color: #115700;
}

a:hover {
	color: #000 !important;
}

blockquote, q {
	font-style: italic;
}

q:before {
	content: "“";
}

q:after {
	content: "”";
}

span.caps {
	font-variant: small-caps;
	font-size: 0.88em;
	letter-spacing: .07em;
}