.banner2	{
  display: grid;
	grid-template-columns: 1fr;
  grid-gap: 5px;
  grid-template-areas:
   "banner_logo"
	 "banner_quote"
}
.banner_logo	{
		grid-area: banner_logo;
}
.banner_quote	{
		grid-area: banner_quote;
		align-self: center;
}
.contentwrapper {
	display: grid;
	grid-template-columns: 1fr;
  grid-gap: 5px;
	background-color: #f5f5f5;
	color: #2c2c2c;
  width: 99.9%;
	padding: 10px;
  grid-template-areas:
   "contentleft"
	 "sideright"
}
.contentwrapper2 {
	display: grid;
	grid-template-columns: 1fr;
  grid-gap: 5px;
	background-color: #f5f5f5;
	color: #2c2c2c;
  width: 96%;
	padding: 10px;
  grid-template-areas:
   "contentright"
	 "sideleft"
}
.contentleft{
	grid-area: contentleft;
	padding: 10px;
	margin: 0;
	border: 1px solid #A3C7F8;
	line-height: 1.4em;
}
.contentright{
	grid-area: contentright;
	padding: 10px;
	margin: 0;
	border: 1px solid #A3C7F8;
	line-height: 1.4em;
}
.contentleft img,
.contentright img	{
	max-width: 100%;
}

.contentright h1,
.contentleft h1	{
	line-height: 1.2em;
}

.contentleft .floatleft,
.contentleft .floatright,
.contentright .floatleft,
.contentright .floatright	{
	max-width: 60%;
}

.sideright	{
	grid-area: sideright;
	text-align: center;
}
.sideleft	{
	grid-area: sideleft;
	text-align: center;
}
.floatleft img,
.floatright img,
.sideleft img,
.sideright img	{
	max-width: 90%;
	height: auto;
}
.boxes > * {
  padding: .5rem;
  background-color: white;
  color: black;
	text-align: center;
	margin: 1em auto;
}
.boxes img 	{
	max-width: 100%;
	margin: 5px auto;
}
.gridboxes {
  display: grid;
  grid-auto-rows: minmax(125px, auto);
  grid-gap: .5rem;
}
@media only screen and (min-width: 600px)  {
.banner2	{
	grid-template-columns: 40% 1fr;
  grid-template-areas:
   "banner_logo	banner_quote"
}
.contentwrapper {
	grid-template-columns: 1fr 25%;
  grid-template-areas:
   "contentleft	sideright"
}
.contentwrapper2 {
	width: 98%;
	grid-template-columns: 25% 1fr;
  grid-template-areas:
  "sideleft contentright"
}
.gridboxes {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (max-width: 600px)  {
.splitcontentright {
	float: left;
	width: 95%;
	display: block;
	margin: 0 1em;
}
.splitcontentleft {
	float: left;
	width: 95%;
	display: block;
	margin: 0 1em;
}
}
.gallery, .gallery2 {
  display: flex;
  flex-flow: row wrap;
 /* justify-content: flex-start;*/
}

.gallery_item img {
	max-height: 200px;
/*	width: 200px;*/
}

.gallery_item {
  width: 165px;
/*  height: 150px;*/
  overflow: hidden;
  display: flex;
  justify-content: center;
  cursor: pointer;
  margin: 10px;
}

a.photolink {
    border: 0;
    text-decoration: none;
}
a.photolink:hover  {
border: 0;
text-decoration: none;
}
/* Responsive Video */
.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}