﻿body {
	font-family: Comic Sans MS, Optima, Arial, Helvetica, sans-serif;
	color: black;
	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: #FFFFFF;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
}

.page_content {

}

.page_content_DarkGray {
	text-align: justify;
	background-color: DarkGray;
	border-style: solid none;
	border-width: 1px;
	border-color: DarkGray;
	overflow: hidden;
	padding: 10px;
}

.page_content_CadetBlue {
	text-align: justify;
	background-color: CadetBlue;
	border-style: solid none;
	border-width: 1px;
	border-color: CadetBlue;
	overflow: hidden;
	padding: 10px;
}

.page_content_Violet {
	text-align: justify;
	background-color: Violet;
	border-style: solid none;
	border-width: 1px;
	border-color: Violet;
	overflow: hidden;
	padding: 10px;
}

.page_content_PaleGoldenRod {
	text-align: justify;
	background-color: PaleGoldenRod;
	border-style: solid none;
	border-width: 1px;
	border-color: PaleGoldenRod;
	overflow: hidden;
	padding: 10px;
}

.page_content_PaleGreen {
	text-align: justify;
	background-color: PaleGreen;
	border-style: solid none;
	border-width: 1px;
	border-color: PaleGreen;
	overflow: hidden;
	padding: 10px;
}
	
.page_content_LightSkyBlue {
	text-align: justify;
	background-color: LightSkyBlue;
	border-style: solid none;
	border-width: 1px;
	border-color: LightSkyBlue;
	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: DarkGray;
 }

.topnav a {
  float: left;
  display: block;
  color: black;
  background-color: DarkGray;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: purple;
  color: black;
}

.topnav a.active {
  background-color: purple;
  color: white;
}

.topnav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home").
Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon.
This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@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;
  }
}
