@charset "utf-8";
/* CSS Document */

body {
	background-color: lightgray;
	margin: 10px 50px 0px 50px;
}
header { /* Header flex-container-1 */
	padding: 0;
	border: 0;
	margin: 0;
	position: relative;
	left: 0;
	bottom: 0;
}
nav {
	display: stretch;
	width: 100%;
	margin: 1px 4px 1px 4px;
	text-align: center;
    position: sticky; 
    top:0;
    z-index: 998;
}
figure { /* Row for slideshow images */
	display: flex;
	margin: 0px;
}
main { /* Area for editable text outside of master */
	margin: 0px;
}
footer { /* Footer style */
	position: fixed;
	left: 0;
	bottom: 0;
	padding-bottom: 2px;
	padding-top: 2px;
	padding-left: 50px;
	width: 100%;
	background-color: #BAD2C9;
    z-index: 999;
}
h1 { /* Site heading only for master */
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	font-size: 34px;
	line-height: 40px;
	font-weight: 500;
	color: darkblue;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
}
h4 { /* Site heading only for master */
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	font-size: 20px;
	line-height: 40px;
	font-weight: 350;
	color: darkblue;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
}
h6 { /* Site footer only for master */
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	display: block;
	font-size: 11px;
	line-height: 12px;
	font-weight: 200;
	margin: 0px;
	color: darkblue;
	text-align: left;
}
.fit-picture { /* For header images, left and right logo */
	height: 110px;
	vertical-align: middle;
	padding: 0% 3% 0% 3%
}
* {	/* Slideshow box */
	box-sizing: border-box;
}
.slides { /* slideshow */
	flex: 100%;
	padding: 1px;
}
.dropbtn { /* Dropdown button specs */
	position: center;
	background-color: #4CAF50;
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 14px;
	border: 2px solid green;
	border-radius: 10px;
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	cursor: pointer;
	min-width: 100px;
}
.dropdown { /* Series of dropdown buttons */
	position: relative;
	display: inline-block;
	padding-bottom: 3px;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #b484c3;
	min-width: 160px;
	box-shadow: 0px 5px 10px 0px #3e8e41;
	z-index: 1;
}
.dropdown-content a {
	color: azure;
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	font-size: 14px;
	padding: 4px 4px;
	text-decoration: none;
	display: block;
	white-space: nowrap;
}
.dropdown-content a:hover {
	background-color: #B55AD2;
}
.dropdown:hover .dropdown-content {
	display: block;
}
.dropdown:hover .dropbtn {
	background-color: #3e8e41;
	text-decoration-line: underline;
}
.nodecoration { /* remove underline of hyperlinks */
	text-decoration: none;
}
.flex-container-1 {  /* Container for three header elements */
	display: flex;
	align-items: stretch;
	width: 100%;
}
.flex-container-1 > flex-item {
	width: 100%;
	margin: 1px 4px 1px 4px;
	text-align: center;
	min-height: 100px;
}
.flex-container-2 { /* Container for left and right horizontal elements, footer, and editable body */
   	display: flex;
   	flex-direction: row;
   	width: 100%;
   	border: 1px;
}
.flex-container-2 > flex-item-1 { /* for left sidebar element */
   	width: 100%;
   	flex-basis: 150px;
   	margin-top: 3px;
	margin-bottom: 75px;
    margin-right: 25px;
   	border: 1px;
}
.flex-container-2 > flex-item-2 { /* for right body element */
   	width: 100%;
   	flex: 100%;
   	margin-top: 3px;
    margin-bottom: 40px;
	margin-right: 25px;
   	border: 1px;
}
.flex-container-2 > flex-item-3 {  /* for right side of footer */
   	width: 100%;
   	flex-basis: 150px;
   	margin-top: 3px;
	margin-right: 25px;
   	border: 1px;
}
.flex-container-2 > flex-item-4 {  /* for left side of footer */
   	width: 100%;
   	flex: 100%;
   	margin-top: 3px;
    margin-right: 25px;
   	border: 1px;
}
.button-group { /* left-side button group for freezing top */
	position: sticky; 
    top:0; 
}
.button-group button { /* left-side button group */
	background-color: #4CAF50; 
	border: 2px solid green; 
	border-radius: 12px;
	color: white; 
	align-text: center;
	padding: 5px; 
	cursor: pointer; 
	width: 140px; 
	display: block; 
	margin-bottom: 5px;
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	font-size: 14px;
}
.button-group button:hover { /* Add a background color on hover */
	background-color: #3e8e41;
}
.center { /* Center the header text */
	margin: 0;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);		
}
.vertical-center {  /* Vertical center the left footer text */
	margin: 0;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}