/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* end reset */

/*colors:
mid-green: #8a9e6d;
dark brown: #484538;
light green: #a9b284;
creme: #f8f4e3;
tan: #c9b79c;
alt-tan (darker): #9e8b6f;
*/

* {
	box-sizing: border-box;
}


header {
	position: relative;
	min-height: 200px;
	text-align: center;
	margin: 3% auto;
	padding-top: 3%;
	width: 80%;
}


hr {
	width: 70%;
	border: 0;
	height: 2px;
	background: #8a9e6d;
	background-image: -webkit-linear-gradient(left, #ccc, #8a9e6d, #ccc);
	background-image: -moz-linear-gradient(left, #ccc, #8a9e6d, #ccc);
	background-image: -ms-linear-gradient(left, #ccc, #8a9e6d, #ccc);
	background-image: -o-linear-gradient(left, #ccc, #8a9e6d, #ccc);
}


body {
	font-size: 1.7em;
	font-family: Muli;
	background: url("images/seamless_paper_texture.png");
	color: #484538;
}


h1 {
	font-family: "Amatic SC";
	font-size: 2.8em;
	line-height: 1.3em;
	text-shadow: 1px 2px 5px #9e8b6f;
}


h2 {
	padding-top: 15px;
	font-size: 0.9em;
	color: #9e8b6f;
}


h2 span {
	font-family: Schoolbell;
	font-size: 1.3em;
	color: #484538;
}


#wrapper {
	width: 80%;
	max-width: 1200px; 
	min-width: 800px;
	margin: 0 auto;
}


.illus {
	position: relative;
	background-attachment: fixed;
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: contain;
  	min-height: 850px;
  	max-width: 1200px;
  	border-radius: 5px;
}


.illus span {
	color: #c9b79c;
	font-size: 0.7em;
  	background-color: rgba(72, 69, 56, 0.8);
  	padding: 4px;
  	border-radius: 7px;
}


#illus1 {
	background-image: url("images/page1-cr.png");
	margin-top: 5%;
}


#illus2 {
	background-image: url("images/page 5-cr.png");
}


#illus3 {
	background-image: url("images/page 7-cr.png");
}


#illus3:hover {
	background-image: url("images/page 8-cr.png");
	transition: background-image 0.5s; /* doesn't work on all browsers but image should still change on hover */
}


#illus4 {
	background-image: url("images/page 9-cr.png");
}


#illus5 {
	background-image: url("images/page 10-cr.png");
}


#illus5:hover {
	background-image: url("images/page 11-cr.png");
	transition: background-image 0.5s; /* doesn't work on all browsers but image should still change on hover */
}


#illus6 {
	background-image: url("images/page 12-cr.png");
}


#illus6:hover {
	background-image: url("images/page 13-cr.png");
	transition: background-image 0.5s; /* doesn't work on all browsers but image should still change on hover */
}


#illus7 {
	background-image: url("images/page 14-cr.png");
}


#illus7:hover {
	background-image: url("images/page 15-cr.png");
	transition: background-image 0.5s;
	 /* doesn't work on all browsers but image should still change on hover */
}


#illus8 {
	background-image: url("images/page 16-cr.png");
}


#illus9 {
	background-image: url("images/page 17-cr.png");
}


#illus10 {
	background-image: url("images/page 18-cr.png");
}


.text {
	margin: 1% auto;
	padding: 5% 10%;
	min-height: 170px;
	text-align: justify;
	line-height: 1.5em;
}


.text span {
	font-family: Schoolbell;
	font-size: 1.4em;	
}


#smalltext {
	text-align: center;
	padding-top: 5%;
}


footer {
	text-align: center;
	padding: 2% 0;
	font-size: 0.7em;
	margin-top: 2%;
	margin-bottom: 1%;
}


footer span {
	font-family: Schoolbell;
}


a:link, a:visited {
	text-decoration: none;
	color: #8A9E6D;
}


a:hover, a:focus {
	text-decoration: none;
	color: #A9B284;
	font-style: italic;
}


@media only screen and (max-width: 700px) {

	#wrapper {
		min-width: 500px;
	}

	.illus {
		background-attachment: scroll;
		width: 500px;
		height: auto;
	}

	.illus span {
		display: none;
	}

	footer {
		line-height: 1.5em;
		margin-top: 3%;
		padding-bottom: 5%;
	}

	body {
		font-size: 1.5em;
	}

}