/* index.css */

* {
	box-sizing: border-box;
}

body {
	margin:0;
	padding:0;
	background-color:#fbf8ee;
	color:black;
	font-family:'Merriwheater','Georgia',serif;
}

header {
	background-color:#fbf8ee;
	color:black;
	padding-top:5px;
	padding-bottom:5px;
}

section {
	background-color:#fbf8ee;
	color:#636363;
	font-size:14px;
	font-family:Arial, Helvetica Neue, Helvetica, sans-serif;
	line-height:150%;
	text-align:center;
}

footer {
	background-color:darkgreen;
	color:white;
	font-size:14px;
	line-height:120%;
	text-align:center;
	padding-top:15px;
	padding-bottom:25px;
}

footer a {
	text-decoration:none;
	color:white;
}

footer a:hover {
	text-decoration:underline;
	color:white;
}

legend {
	color:darkgreen;
}

a[x-apple-data-detectors] {
	color:inherit !important;
	text-decoration:inherit !important;
}

p {
	line-height:inherit;
}

form {
	border-style:dotted;
	background-color:lightgoldenrodyellow;
	border-color:darkgreen;
	text-align:left;
}

label {
	color:darkgreen;
	width:100%;
	font-size:16px;
	text-align:left;
}

input[type=email], input[type=text] {
	width:100%;
	text-align:left;
	font-size:16px;
}

input[type=submit], input[type=clear] {
	color:white;
	background-color:darkgreen;
	border-radius:4px;
	width:auto;
	border:2px solid darkgreen;
	font-weight:undefined;
	padding-top:4px;
	padding-bottom:4px;
	font-family:'Merriwheater', 'Georgia', serif;
	font-size:16px;
	text-align:center;
	word-break:keep-all;
}

h1 {
	font-size:48px;
	margin-top:0px;
	margin-bottom:10px;
}

h2 {
	color:#2c2c2c;
	font-size:18px;
	line-height:120%;
	text-align:center;
}

h3 {
	color:darkgreen;
}

.cover_image {
	width:100%;
	border:0px;
	padding:0px;
	margin:0px;
}

.cover_image a img {
	width:100%;
	border:0px;
	padding:0px;
	margin:0px;
}

.cover_text {
	color:white;
	background-color:darkgreen;
	font-family:Arial, Helvetica Neue, Helvetica, sans-serif;
	font-size:24px;
	text-align:center;
	padding-top:0px;
	line-height:normal;
}

.cover_text hr {
	color:white;
	width:50%;
	margin:0px auto;
}

.cover_text p {
	margin:0px auto;
}

.blink {
	animation:blink-animation 1s steps(5, start) infinite;
	-webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
	to {
		visibility: hidden;
	}
}

@-webkit-keyframes blink-animation {
	to {
		visibility: hidden;
	}
}

.book_page {
	max-width:250px;
}

.book_page a img {
	display:block;
	height:auto;
	border:0;
	width:100%;
}

.image_block img+div {
	display:none;
}

.column2l {
	line-height:10px;
	float:left;
	width:50%;
}

.column2r {
	line-height:10px;
	float:right;
	width:50%;
}

.column3 {
	float:left;
	width:33.33%;
}

.row1 {
	width:600px;
	margin:0px auto;
}

/* Clear floats after the columns */
.row:after {
	content:"";
	display:table;
	clear:both;
}

@media (max-width:620px) {
	.image_block div.fullWidth {
		max-width:100% !important;
	}

	.row-content {
		width:100% !important;
	}

	.stack .column {
		width:100%;
		display:block;
	}

	.column3 {
		width:100%;
	}
}