/* Base styles */

body {
	background-color: #eee7e3;
	color: #131212;
	font-family: 'Open Sans',sans-serif;
	font-size: 18px;
	font-weight: 400;
}

a {
	color: #680f0f;
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	color: #9b3900;
}

h1,h2 {
	margin-top: 10px;
	margin-bottom: 5px;
	font-family: Bitter, serif;
	font-weight: 500;
}

h3 {
	margin-top: 10px;
	margin-bottom: 5px;
	font-family: Bitter, serif;
	font-weight: 500;
}

p {
	margin-top: 0px;
	margin-bottom: 20px;
}

/* Header */

@media screen and (max-width: 679px) {
	/* stacked layout for narrow window width */
	.header {
		align-items: top;
	}
}

@media screen and (min-width: 680px) {
	/* inline layout for narrow window width */
	.header {
		display: flex;
		align-items: top;
		justify-content: space-between;
	}
}

.navbar {
	margin: 10px 0 10px 0;
	text-align: center;
}

.headlink-item {
	margin-left: 5px;
	margin-right: 5px;
}

.headlink {
	font-size: 22px;
}

/* Body */

ul.nobullet {
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
}

li.nobullet {
	margin-bottom: 10px;
}

.feature {
	display: block;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.fullwidth {
	display: block;
	width: 100%;
}

.container169 {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
  
/* Then style the iframe to fit in the container div with full height and width */
iframe.expanding {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 679px) {
	/* single column layout for screens less than or equal to 629 pixels */
	#primary {
		float: none ;
		width: 100% ;
	}
	#secondary {
		float: none;
		width: 100%;
	}
	.rightpadded {
	}
	.boxed {
		border-style: hidden;
	}
	.floatleft {
		float: left;
		width: 45%;
		padding: 0px 10px 10px 0px;
	}
}

@media screen and (min-width: 680px) {
	/* two-column layout for screens greater than or equal to 630 pixels */
	#primary {
		float: left ;
		width: 55% ;
	}
	#secondary {
		float: right;
		width: 45%;
	}
	.rightpadded {
		padding-right: 10px;
	}
	.boxed {
		padding-left: 10px;
		padding-right: 10px;
		border-width: 1px;
		border-style: hidden hidden hidden solid;
	}
	.floatleft {
		float: left;
		width: 30%;
		min-width: 235px;
		padding: 0px 10px 10px 0px;
	}
}

/* Footer */

.footer {
	clear: both;
}