
/* Check to see if custom properties are supported */
@supports (--css: variables) {

	/* Set default variables */
	:root {
  --fs-ht: 2.5rem;
  --fs-ht1: calc(0.6 * var(--fs-ht));
  --fs-h1: 2.0rem;
  --fs-h2: calc(0.8 * var(--fs-h1));
	--fs-h3: calc(0.9 * var(--fs-h2));
	--fs-h4: calc(0.95 * var(--fs-h3));
  --fs-p: 1.0rem;
	--fs-menu: calc(0.75 * var(--fs-p));
	--fs-c: 0.9rem;
	--fs-t: 0.8rem;

	--ff-ht: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	--ff-h1: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
	--ff-h2: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
	--ff-h3: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
	--ff-h4: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
	--ff-p:  'Klara', sans-serif;

	/* Set colors for menu bar */
	--menu-bc: #687a8f; /* menu bar background color - #687a8f - Blueberry */
	--menu-a: #dddddd;
	--menu-a-bc: #687a8f; /* submenu background color - #687a8f - Blueberry */
	--menu-a-hover: #ffffff;
	--menu-bc-hover: #dcae1d; /* background on hover - #B6A89F */
	--menu-pm: #936c39; /* background color for - button */
	--footer-bc: #687a8f; /* footer background color - #687a8f - Blueberry */
		}
	}
	@media only screen and (max-width: 480px) {
		:root {
    --fs-ht: 1.00rem;
    --fs-h1: 1.00rem;
    --fs-p: 0.8rem;
		--fs-menu: calc(0.9 * var(--fs-p));
		--fs-c: 0.9rem;
		--fs-t: 0.7rem;
		}
	}
	@media only screen and (min-width: 481px) and (max-width: 768px) {
		:root {
    --fs-ht: 1.5rem;
    --fs-h1: 1.6rem;
    --fs-p: 0.9rem;
		--fs-menu: calc(0.9 * var(--fs-p));
		--fs-c: 0.85rem;
		--fs-t: 0.75rem;
		}
	}
  
  /* default page styles */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html { height: 101%; }
body {
  font-size: 62.5%;
  line-height: 1;
  padding-bottom: 65px;
  font-family: Arial, Tahoma, sans-serif;
  background-image: radial-gradient(circle, white, #d4e7e3 50%, #abe3d7 80%);
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }

blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong { font-weight: bold; }

table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; }

h1 { font-family: 'Merienda', 'Trebuchet MS', Verdana, sans-serif; font-size: 2.95em; line-height: 1.7em; margin-bottom: 20px; font-weight: bold; letter-spacing: -0.03em; color: #675d90; text-shadow: 2px 2px 0px rgba(255,255,255,0.65); text-align: center; }



/* nav menu styles ------------------------------------------------------- */
    nav {
        grid-column: 1 / 2;
        }
    nav #menu-button {
        display: none;
        }

    nav.small-screen #menu-button {
        margin: 0;
        border: 0;
        list-style: none;
        /* line-height: 1; */
        display: block;
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 17px;
        color: #dddddd;
        cursor: pointer;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        background: -moz-linear-gradient(top, #343434, #292929);
        }

    /* add hamburger */
    nav.small-screen #menu-button:after {
        position: absolute;
        top: 22px;
        right: 17px;
        display: block;
        height: 4px;
        width: 20px;
        border-top: 2px solid #dddddd;
        border-bottom: 2px solid #dddddd;
        content: '';
        }
    nav.small-screen #menu-button:before {
        position: absolute;
        top: 16px;
        right: 17px;
        display: block;
        height: 2px;
        width: 20px;
        background: #dddddd;
        content: '';
        }

    /* change hamburger to cross on opening */

    nav.small-screen #menu-button.menu-opened:after {
        top: 23px;
        border: 0;
        height: 2px;
        width: 15px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        }

    nav.small-screen #menu-button.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 15px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        }

    #nav {
        display: none;
        margin: 0 auto;
        -webkit-box-shadow: 3px 2px 3px rgba(0,0,0,0.7);
        -moz-box-shadow: 3px 2px 3px rgba(0,0,0,0.7);
        box-shadow: 3px 2px 3px rgba(0,0,0,0.7);
        }

    /* small screen - temp fix */
        @media only screen and (max-width: 768px) {
            nav { width: 100%;}
        }

    #nav > li > a {
        display: block;
        padding: 16px 18px;
        font-size: 1.3em;
        font-weight: bold;
        color: #d4d4d4;
        text-decoration: none;
        border-bottom: 1px solid #212121;
        background-color: #343434;
        background: -webkit-gradient(linear, left top, left bottom, from(#343434), to(#292929));
        background: -webkit-linear-gradient(top, #343434, #292929);
        background: -moz-linear-gradient(top, #343434, #292929);
        background: -ms-linear-gradient(top, #343434, #292929);
        background: -o-linear-gradient(top, #343434, #292929);
        background: linear-gradient(top, #343434, #292929);
    }

    #nav > li > a:hover, #nav > li > a.open {
        color: #e9e9e9;
        border-bottom-color: #384f76;
        background-color: #6985b5;
        background: -webkit-gradient(linear, left top, left bottom, from(#6985b5), to(#456397));
        background: -webkit-linear-gradient(top, #6985b5, #456397);
        background: -moz-linear-gradient(top, #6985b5, #456397);
        background: -ms-linear-gradient(top, #6985b5, #456397);
        background: -o-linear-gradient(top, #6985b5, #456397);
        background: linear-gradient(top, #6985b5, #456397);
    }

    #nav li ul {
        display: none;
        background: #4a5b78;
    }

    #nav li ul li a {
        display: block;
        background: none;
        padding: 10px 0px;
        padding-left: 30px;
        font-size: 1.1em;
        text-decoration: none;
        font-weight: bold;
        color: #e3e7f1;
        text-shadow: 1px 1px 0px #000;
    }

    #nav li ul li a:hover {
        background: #394963;
    }

    #nav > li ul li> a:hover, #nav > li ul li> a.open {
        color: #e9e9e9;
        border-bottom-color: #384f76;
        background-color: #69a6b5;
        background: -webkit-gradient(linear, left top, left bottom, from(#6985b5), to(#456397));
        background: -webkit-linear-gradient(top, #6985b5, #456397);
        background: -moz-linear-gradient(top, #6985b5, #456397);
        background: -ms-linear-gradient(top, #6985b5, #456397);
        background: -o-linear-gradient(top, #6985b5, #456397);
        background: linear-gradient(top, #6985b5, #456397);
    }

    #nav li ul li ul li a {
        display: block;
        background: none;
        padding: 10px 0px;
        padding-left: 45px;
        font-size: 1.1em;
        text-decoration: none;
        font-weight: bold;
        color: #e3edf1;
        text-shadow: 1px 1px 0px #000;
    }

    #nav li ul li ul li a:hover {
        background: #394963;
    }
/* ========================== Body Formating ================================================ */
/* W WRAPPER - Formating */

#w {
	width: 98%;
	margin: 0 auto;
  	display: grid;
  	grid-template-columns: 200px 1fr;
  	grid-template-rows: 4fr 25px;
  	grid-gap: 5px;
}

/* small screen - temp fix */
    @media only screen and (max-width: 768px) {
        #w {
            display: block;
        }
    }

 .sidenav {
            grid-row: 2 / -1;
        }
        .side {
            margin-top: 25px;
        }
        .side p {
            font-size: 18px;
        }

#w h1 {
	grid-column: 2 / -1;
}

/* mobile Layout: less than 480px */
@media only screen and (max-width: 480px) {
  #w {
    grid-template-columns: 1fr;
  } 
  #w h1 {
	grid-column: 1 / -1;
  }
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) and (max-width: 768px) {
	#w {
    	grid-template-columns: 1fr;
  	}
  	#w h1 {
		grid-column: 1 / -1;
  	}

}

/* ==========================  Main Content - formating =========================================== */

/* Grid Support */
 
.content {
	grid-column: 2 / -1;
	grid-row: 2 / 4;
}

/* page elements */
.content h1 {
  grid-column: 1 / 3;
}

/* mobile Layout: less than 481px */
@media only screen and (max-width: 480px) {
	.content {
	  grid-column: 1 / -1;
	}
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) and (max-width: 768px) {
	.content {
		grid-column: 1 / -1;
	}
}

.content h1 {
	grid-column: 1 /-1;
  	margin-top: 20px;
  	font-size: 1.5rem;
	color: red;
	text-align: center;
	margin: auto;
	width: 75%;
	padding-top: 20px;
	padding-bottom: 20px;
	font-weight: bolder;
	text-shadow: 3px 3px #cee4db;
}
.content h2 {
	font-size: 1.25rem;
	color: #00303f;
	text-align: center;
	margin: auto;
	width: 100%;
	padding-bottom: 20px;
}
.content p {
	font-size: var(--fs-p, 1.0rem);
	font-family: var(--ff-p);
	line-height: 1.5;
	padding: 15px 30px;
	float: none;
	color: black;
	margin: 10px 10px 10px 10px;
}

.content h4 {
	font-size: 24px;
	font-family: var(--ff-p);
	color: blue;
	text-align: center;
	margin: 10px auto;
}

.content a {
	text-decoration: none;
	color: #000000;
	box-shadow: inset 0 -2px 0 rgba(240,128,128,1.0);
}
.content a:hover {
	background-color: rgba(240,128,128,0.7);
	padding-top: 2px;
	padding-bottom: 0;
	border-bottom: none;
	-webkit-transition: background-color 350ms ease-out;
	transition: background-color 350ms ease-out;
	-webkit-box-shadow: none;
	box-shadow: none;
}



.col1 {
	grid-column: 1/2;
}
.col2 {
	grid-column: 2/3;

}

@media only screen and (min-width: 481px) and (max-width: 768px) {
 .content {
		float: none;
	}
	.content {
	  grid-column: 2 / -1;
	  grid-row: 4 / -1;
	}
}

/* mobile Layout: less than 481px */
@media only screen and (max-width: 480px) {
	.content {
	  	grid-column: 1 / -1;
		grid-template-columns: 1fr;
	}
	.col1 {
		grid-column: 1/2;

	}
	.col2 {
		grid-column: 1/2
	}
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) and (max-width: 768px) {
	.content {
		grid-column: 1 / -1;
		grid-template-columns: 1fr 1fr;
	}
}

/* ============================FOOTER - formating ======================================== */
footer {
	display: block;
	float: left;
	width: 100%;
	background-color: var(--menu-bc);
	color: #ffc;
	height: 4em;
	line-height: 4em;
  	border-radius: 10px;
	font-size: 1rem;
    margin-top: 10px;
}
footer p {
	padding-left: 25px;
}

/* Grid formating */
footer {
	grid-column: 2 / -1;
	grid-row: 4 / 5;
}

/* mobile Layout: less than 481px */
@media only screen and (max-width: 480px) {
	footer {
		grid-column: 1;
        font-size: .8rem;
	}
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) and (max-width: 768px) {
	footer {
		grid-column: 1;
        font-size: .9rem;
	}
}


/* ============================TABLE - formating ======================================== */

table {
	border: 2px solid black;
	margin-left: 25px;
	margin-right: 15px;
	width: 95%;
	border-collapse: collapse;
}

tr {
	height: 50px;
}

th {
	border: 1px solid black;
	color: white;
	background: #7a9d96;
}
tr:nth-child(odd) {
	background: var(--menu-bc);
	color: white;
}
td {
	font-size: 0.9rem;
	border: 1px solid green;
	padding: 10px 10px 10px 15px;
}
td:first-child {
	width: 25%;
}
table ul {
	list-style: disc;
}
table ol {
	list-style: initial;
}
table li {
	margin-left: 25px;
	line-height: 1.5rem;
}
table p {
	margin-left: 10px;
}

/* Temp Table */
#ttable tr {
	height: 20px;
}

/* TABLE Formating for small screen */
@media only screen and (max-width: 480px), (min-width: 481px) and (max-width: 768px) {

	table {
		margin: 0 auto;
	}
	table thead {
			display: none;
	}
	table tr {

	}
	tr:nth-child(2n+0) {
			border-bottom: 2px solid #FF5733;
			background: white;
	}
	table td {
		 display: block;
		 text-align: right;
		 font-size: 13px;
		 margin-bottom:1px;
		 padding-right: 10px;
	}
	tr:nth-child(2n+0) td {
		text-align: left;
	}
	td:first-child {
		width: 95%;
	 }
	td:before {
			float: left;
			font-weight: bold;
		}
	 /*
	 	Label the data
	 	*/
		tr:nth-child(2n+1) td:nth-of-type(1):before { content: "Date: "; }
	 	tr:nth-child(2n+1) td:nth-of-type(2):before { content: "Event: "; }
	 	tr:nth-child(2n+0) td:before { content: ""; }

}

/* Inner TABLE Formating for small screen */

@media only screen and (max-width: 480px), (min-width: 481px) and (max-width: 768px) {
    .intab {width: 100%;
    }
    
    
    .intab th{
        overflow-wrap: break-word; /* Prevents long words from overflowing */
        min-width: 125px;
        display:inline-block; 
        padding: 5px;    
    }
    .intab td {
        overflow-wrap: break-word; /* Prevents long words from overflowing */
        display:inline-block;
        width: 125px;
        font-size: 10px;
        padding: 5px;
    }
    .intab td::before {
        display: none;
    }
    

}   