* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
body {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	color: #28282b;
	background: url(../images/bg4.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.wrapper {
	padding: 0;	
	/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
	background-color: #fff;
}


/* HEADER, NAVBAR */
.headertop {
	background-color: #fff;
	height: auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sitename {
	/* background-color: red; */
	margin-top: 30px;
	margin-bottom: 20px;
	width: 374px;
	padding-left: 20px;
	padding-right: 20px;
}
.logo {
	width: 280px;
}
.logo img {
	max-width: 280px;
	height: auto;
}
.siteinfo {
	/* background-color: blue; */
	flex-basis: calc(100% - 374px);
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 16px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: right;
}
.datedisplay {
	padding-top: 8px;
	text-align: right;
	font-size: 14px;
	font-style: italic;
}
.navbar {
	background-color: #487607;
	color: white;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	align-items: center;
	font-size: 20px;
	text-transform: uppercase;
}
.nav-list {
	list-style-type: none;
}
.nav-list .list-item {
	display: inline-block;
	padding: 12px 16px;
}
.navbar a {
	color: white;
	text-decoration: none;
	/*text-transform: uppercase;*/
}
.navbar a:hover {
	color: #f8eb7e;	
}

.mobilemenu {
	display: none;
}
.mobilemenu-line {
	width: 20px;
	height: 3px;
	background-color: green;
	margin-bottom: 4px;
}


/* PAGE STRUCTURE */
.maincontainer {
	padding: 0;
	display: flex;
}
main {
	padding: 20px 30px;
	width: 70%;
}
aside {
	padding: 20px 30px;
	width: 30%;
}
.maintitles {
	padding-top: 20px;
	padding-bottom: 20px;
}
.maintitles h1 {
	border-bottom:1px solid #CCC;
	color: #28282b;
	font-size: 28px;
	margin-top: 0;
}
.maintitles h1:after {
     background: none repeat scroll 0 0 #487607;
     bottom: -1px;
     content: "";
     display: block;
     height: 4px;
     position: relative;
     width: 100px;	 
}
.fullpage {
	padding: 30px;
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
}
.errortext1 {
	color: #183352;
	font-size: 64px;
	font-weight: bold;
}
.errortext2 {
	color: #183352;
	font-size: 182px;
	font-weight: bold;
}
.errortext3 {
	font-size: 28px;
	font-weight: normal;
	font-style: italic;
	margin-bottom: 30px;
}


.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}


/* ARTICLE CONTENT */
.article-content {
	margin-top: 0;
}
.breadcrumb {
	background-color: #f1efef;
	font-size: 14px;
	padding: 4px;
	border: 1px dashed red;
	margin-bottom: 10px;
	margin-top: 20px;
}
.breadcrumb a:link {
	text-decoration: none;
	color: #568e06;
}
.breadcrumb a:hover {
	color: red;
}
.article-content p {
	padding: 10px 0;
	line-height: 1.5;
}
.article-content img {
	max-width: 100%;
	height: auto;
	margin-bottom: 0px;
	margin-top: 20px;
}
.imgbyline {
	padding: 0;
	font-size: 14px;
	font-style: italic;
	color: #3b3434;
	padding-bottom: 10px;
}
.article-content h2, h3, h4 {
	color: #183352;
}
.article-content h2 {
	font-size: 24px;
	margin-bottom: 15px;
	margin-top: 25px;
}

.article-content p a:link {
	text-decoration: underline;
	color: #003eaa;
}
.article-content p a:hover {
	color: #568e06;
}

.related-articles {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
}
.related-articles-item {
	width: 32%;
	margin-bottom: 20px;
}
.article-content .related-articles-item img {
	max-width: 100%;
	height: auto;
}
.related-articles h4 {
	color: #183352;	
}
.related-articles h4 a:link {
	color: #183352;	
	text-decoration: none;
}
.related-articles h4 a:hover {
	color: #568e06;
}

.article-content ul {
	list-style-position: inside;
	margin-bottom: 20px;
}
.article-content ul li {
	padding: 6px;
}
.article-content ol {
	list-style-position: outside;
	padding-left: 30px;
	margin-bottom: 20px;
}
.article-content ol li {
	padding: 8px;
}
.article-content ol a:link {
	color: #003eaa;
}
.article-content ol a:hover {
	color: #568e06;
}



/* ARTICLE LISTING */
.articles {
	margin-top: 0;
}
.articles h2, h3 {
	color: #183352;
	margin-bottom: 20px;
}
.articles .intro-area {
	padding: 10px 0;
}
.articles .intro-area img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.frontpageintro {
	border: 2px dashed red;
	padding: 15px;
	margin-bottom: 20px;
	background-color: #f1efef;
}


.articles-title {
	padding-top: 20px;
	padding-bottom: 20px;
}
.articles-title h2 {
	border-bottom:1px solid #CCC;
	color: #28282b;
}
.articles-title h2:after {
     background: none repeat scroll 0 0 #487607;
     bottom: -1px;
     content: "";
     display: block;
     height: 4px;
     position: relative;
     width: 100px;	 
}
.quicklinks {
	background-color: #ede8e8;
	padding: 10px;
	border: 1px dashed red;
	margin-bottom: 30px;
	margin-top: 20px;
	max-width: 460px;
}
.quicklinks ul {
	list-style: none;
	margin-bottom: 10px;
	padding-left: 10px;
}
.quicklinks ul li {
	padding: 2px 0;
}
.quicklinks a:link, .quicklinks ul li a:link {
	text-decoration: none;
	color: #568e06;
}
.quicklinks a:hover, .quicklinks ul li a:hover {
	color: red;
}
.quicklinks h3 {
	margin-top: 5px;
	margin-bottom: 8px;
}


.activity-list {
	padding-top: 20px;
}
.activity-list ul {
	list-style-position: inside;
	margin-bottom: 30px;
}
.activity-list li {
	padding: 4px;
}
.activity-list ol {
	list-style-position: outside;
	padding-left: 30px;
	margin-bottom: 20px;
}
.activity-list ol li {
	padding: 5px;
}
.activity-list ol li img {
	padding-right: 15px;
	max-width: 120px;
	height: auto;
	display: inline;
    vertical-align: middle;
}
.activity-list ol li a:link {
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	color: #28282b;
}
.activity-list ol li a:hover {
	text-decoration: underline;
	color: #003eaa;
}


.activitylist-item {
	display: flex;
    align-items: flex-start; /* Top-align image and text */
    padding: 10px 0;
}
.activitylist-item img {
    width: 120px;
    flex-shrink: 0; /* Prevent image from shrinking */
	padding-right: 15px;
}
.activitylist-item-text {
    margin-left: 10px;
    flex: 1;
}
.activitylist-item-text a {
    font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	color: #28282b;
    display: inline-block;
}
.activitylist-item-text a:hover {
    text-decoration: underline;
	color: #003eaa;
}


.article-listing {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.article-listing-left {
	width: 45%;
	order: 1;	
	margin-bottom: 20px;
}
.article-listing-left img {
	max-width: 100%;
	height: auto;
	margin-right: 20px;
}
.article-listing-right {
	width: 55%;
	order: 2;
	margin-bottom: 20px;
	padding-left: 30px;
}
.article-listing-right h3 {
	color: #183352;	
}
.article-listing-right h3 a:link {
	color: #183352;	
	text-decoration: none;
}
.article-listing-right h3 a:hover {
	color: #568e06;
}
.article-listing-right p {
	padding-bottom: 10px;
}
.article-listing-right em {
	color: red;
}
.articles-divider {
	height: 1px;
	position: relative;
	margin: 30px 0;
	background-color: #ccc;
}
.italictext {
	font-style: italic;
}

.book-listing {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 30px;
}
.book-listing-left {
	width: 25%;
	order: 1;	
	margin-bottom: 20px;
}
.book-listing-left img {
	max-width: 100%;
	height: auto;
	margin-right: 20px;
	padding-top: 0;
	margin-top: 0;
	border: 1px solid #ccc;
}
.book-listing-right {
	width: 75%;
	order: 2;
	margin-bottom: 20px;
	padding-left: 30px;
}
.book-listing-right p {
	padding-bottom: 10px;
	padding-top: 0;
}
.book-listing-divider {
	height: 1px;
	position: relative;
	margin: 10px 0 30px 0;
	background-color: #ccc;
}

button {
	font-family: inherit;
	-webkit-appearance: button;
	text-transform: none;
	overflow: visible;
	margin: 0;
}
.btngreen {
  min-width: 100px;
  height: 34px;
  color: #fff;
  padding: 4px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border: 2px solid #487607;
  background: #487607;
}
.btngreen:hover {
  background: #fff;
  color: #487607;
}

.btncentered {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
}
.pagination {
	text-align: center;
	padding: 0 10px;
	font-size: 16px;
	color: #4b4b50;
}
.pagination p {
	padding-top: 4px;
	padding-bottom: 4px;
}
.pagination h4 {
	padding-top: 4px;
	padding-bottom: 4px;
	margin: 0;
	color: #183352;
	font-size: 18px;
	font-weight: bold;
}
.pagination a:link {
	color: #003eaa;	
}
.pagination a:hover {
	color: red;	
}
.morearticles {
	text-align: center;
	padding: 0 10px;
}


/* SIDEBAR */
.rightsidebar {
	margin-bottom: 30px;
}
.rightsidebar img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.rightsidebar p {
	padding: 10px 0;
}
.rightsidebar-title {
	padding-top: 20px;
	padding-bottom: 20px;
}
.rightsidebar-title h2 {
	border-bottom:1px solid #CCC;
	color: #28282b;
}
.rightsidebar-title h2:after {
     background: none repeat scroll 0 0 #487607;
     bottom: -1px;
     content: "";
     display: block;
     height: 4px;
     position: relative;
     width: 100px;	 
}
.rightsidebar ul {
	list-style-position: inside;
	margin-bottom: 10px;
}
.rightsidebar li {
	padding: 2px;
}



/* FOOTER */
footer {
	margin-top: 50px;
}
.footertop {
	background-color: #396101;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #ffffff;
	padding: 20px;
	font-size: 15px;
}
.footercolumn1 {
	width: 25%;
	order: 1;
	margin-bottom: 20px;
}
.footercolumn2 {
	width: 25%;
	order: 2;
	margin-bottom: 20px;
}
.footercolumn3 {
	width: 45%;
	order: 3;
	margin-bottom: 20px;
}
.footertop h2 {
	color: #f8eb7e;
	font-size: 22px;
}
.footertop p, .footerbottom p {
	padding: 10px 0;
}
.footertop a:link {
	text-decoration: underline;
	color: #ffffff;
	font-weight: bold;
}
.footertop a:hover {
	color: #e47d2e;
}
.footertop ul {
	list-style-position: inside;
}
.footertop li {
	padding-top: 6px;
}
.footertop img {
	max-width: 90%;
	height: auto;
}

.footerbottom {
	background-color: #233b02;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #fff9c3;
	padding: 15px 20px;
	font-size: 15px;
}
.footerbottomleft {
	width: 50%;
}
.footerbottomleft a:link {
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}
.footerbottomleft a:hover {
	color: #e47d2e;
}
.footerbottomright {
	width: 50%;
	text-align: right;
}
.footerbottomright a {
	color: #e47d2e;
	text-decoration: none;
}
.footerbottomright a:hover {
	color: #fff;
}

/* BACK TO TOP BUTTON*/
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 99;
}
.btn-success {
    color: #fff;
    background-color: #487607;
    border-color: #4cae4c;
}
.btn-success:hover {
    color: #fff;
    background-color: #0b820b;
    border-color: #398439;
}
.btn:hover {
    text-decoration: none;
}
.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}
.btn {
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
}
/* 'button' element properties also needed, see further above */


/* MEDIA QUERRIES */

@media screen and (max-width: 778px) {
	.headertop {
		flex-direction: column;
		border-bottom: 4px solid #487607;
	}
	.sitename {
		width: 100%;
	}
	.siteinfo {
		width: 100%;
		margin-top: 0;
		font-size: 15px;
		margin-bottom: 10px;
		text-align: center;
	}
	.navbar {
		flex-direction: column;
	}
	.nav-list {
		width: 100%;
		text-align: center;
		padding-top: 10px;
		display: none;
	}
  .mobilemenu {
    display: block;
	position: absolute;
	right: 15px;
	top: 15px;
  }
	.nav-list .list-item {
		display: block;
		border-top: 1px solid white;
		padding: 10px;
	}
	.active {
		display: block;
	}
	.sitename {
		max-width: 350px;
	}
	.article-listing-right {
		border-bottom: 0;
	}	
	main {
		padding: 20px;
	}	
	aside {
		padding: 20px;
	}
}

@media screen and (max-width: 862px) {
	.maincontainer {
		flex-direction: column;
	}
	main {
		width: 100%;
	}
	aside {
		width: 100%;
	}
}

@media screen and (max-width: 600px) {
	.article-listing {
		flex-direction: column;
	}
	.article-listing-left {
		width: 100%;
	}
	.article-listing-right {
		width: 100%;
		padding-left: 0;
	}
	.book-listing {
		flex-direction: column;
	}
	.book-listing-left {
		width: 100%;
	}
	.book-listing-right {
		width: 100%;
		padding-left: 0;
	}
	.book-listing-left img {
		max-width: 250px;
	}
}

@media screen and (max-width: 600px) {
	.related-articles {
		flex-direction: column;
	}
	.related-articles-item {
		width: 100%;
	}	
}

@media screen and (max-width: 600px) {
	.footercolumn1, .footercolumn3 {
		padding-right: 20px;
	}
	.footerbottom {
		flex-direction: column;
	}
	.footerbottomleft {
		padding-right: 20px;
		width: 100%;
		text-align: center;
	}
	.footerbottomright {
	width: 100%;
	text-align: center;
	}
	.footercolumn3 {
		min-width: 400px;
	}
}
@media screen and (max-width: 748px) {
	.footercolumn1 {
		min-width: 250px;
	}
	.footercolumn2 {
		min-width: 250px;
	}
	
	
}
@media screen and (max-width: 540px) {
	.footertop {
		flex-direction: column;
	}
	.footercolumn1, .footercolumn2, .footercolumn3 {
		width: 100%
	}
	
}

@media screen and (max-width: 1200px) {
	.wrapper {
		box-shadow: none;
	}
}





