﻿:root {
	--color_font: #424242;
	--color_banner_background: white;
	--color_page_content_top_background: #877067;
	--color_page_content_top_border: #2F1C15;
	--color_page_content_middle_background: #60504A;
	--color_page_content_middle_border: #2F1C15;
	--color_page_content_bottom_background: #372D29;
	--color_page_content_bottom_border: #2F1C15;
	
	--color_topnav_background: #2F1C15;
	--color_topnav_active: #867067;
	--color_topnav_hover_background: #867067;
	--color_topnav_hover_font: #2F1C15;
	--color_topnav_active_background: #60504A;
	--color_topnav_active_font: #2F1C15;
}


body {
	font-family: Verdana,Helvetica,sans-serif;
	color: var(--color_font);
	font-weight: normal;
	font-variant: normal;
	font-size: 1.25em;
	text-align: left;
	line-height: 1.6;
	max-width:1000px;
    margin: auto;
	text-decoration: none;
	padding: 10px;
}	

p{
	
}

p.right {
	text-align: right;
}

h1 {
	font-size: 2em;
	text-align: center;
	line-height: 150%;
}

@media screen and (max-width: 920px) {
  h1 {
    font-size:1.5em;
  }
}

h2 {
	font-weight: bold;
}

a {

}

footer {
	font-size: .7em;
}

table {
  width: 100%;
  text-align: center;
}

th, td {
  padding: 15px;
}

.flex-container {
	display: flex;
	flex-direction: row;
	justify-content: centre; /*space-around; */
}

.flex-item-left {
  padding: 10px;
  flex: 50%;
}

.flex-item-right {
  padding: 10px;
  flex: 50%;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 600px) {
	.flex-container {
		flex-direction: column;
	}
}

.banner {
	background-color: var(--color_banner_background);
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
}

.page_content {

}

.page_content_top {
	text-align: justify;
	background-color: var(--color_page_content_top_background);
	border-style: solid none;
	border-width: 1px;
	border-color: var(--color_page_content_top_border);
	overflow: hidden;
	padding: 10px;
}

.page_content_middle {
	background-color: var(--color_page_content_middle_background);
	border-style: solid none;
	border-width: 1px;
	border-color: var(--color_page_content_middle_border);
	overflow: hidden;
	padding: 10px;
}

.page_content_bottom {
	background-color: var(--color_page_content_bottom_background);
	border-style: solid none;
	border-width: 1px;
	border-color: var(--color_page_content_bottom_border);
	overflow: hidden;
	padding: 10px;
}

.image_banner {
	max-width:100%;
    margin: auto;
    text-align:center;
	border-radius: 25px;
	width: 100%;
	height: auto;
}

.image_centre {
	max-width:100%;
	height: auto;
	padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	display: inline-block;
	border-radius: 25px;
}


.image_left {
	padding: 5px;
	margin: 10px;
    text-align: left;
	float: left;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	display: inline-block;
	border-radius: 25px;
	width: 100%;
	height: auto;
}


.image_right {
	padding: 5px;
	margin: 10px;
    text-align: right;
	float: right;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	display: inline-block;
	border-radius: 25px;
	width: 100%;
	height: auto;
}



/* Top menu, buttons, etc */

.topnav {
  overflow: hidden;
  background-color: var(--color_topnav_background);
}

.topnav a {
  float: left;
  display: block;
  color: var(--color_topnav_active);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: var(--color_topnav_hover_background);
  color: var(--color_topnav_hover_font);
}

.topnav a.active {
  background-color: var(--color_topnav_active_background);
  color: var(--color_topnav_active_font);
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
