/* Global variables. */
:root,
::backdrop {
	--font-body: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	--font-headings: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

	--bg: #000;
	--prime: hsl(0, 0%, 0%);/* black  */
	--prime-light: hsl(0, 0%, 25%);/* black  */
	--second: hsl(55, 100%, 48%);/* yellow */
	--light-background: hsl(0, 0%, 25%);/* light black  */
	--text: hsl(0, 0%, 90%);/* whiteish */
	--text-headings: var(--text);/* yellow */
	--text-light: hsl(0, 0%, 70%);/* lighter black */
	--border: hsl(0, 0%, 25%);/* light grey/blue */
	--link: var(--second);
	--link-hover: var(--text);
	--text-reverse: hsl(0, 0%, 0%);/* black */
	--nav-background: var(--second);
	--nav-background-hover: hsl(0, 0%, 25%);/* light black  */
	--nav-text:hsl(0, 0%, 0%);
	--nav-text-hover:hsl(0, 0%, 70%);
	/* @link https://utopia.fyi/type/calculator?c=1200,16,1.333,2000,20,1.333,3,1,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12  modified for step -1*/
	/* Step -1: 15px → 19px */
	--step--1: clamp(0.9375rem, 0.5625rem + 0.5vw, 1.1875rem);
	/* Step 0: p 16px → 20px */
	--step-0: clamp(1rem, 0.625rem + 0.5vw, 1.25rem);
	/* Step 1: H3 21.328px → 26.66px */
	--step-1: clamp(1.333rem, 0.8331rem + 0.6665vw, 1.6663rem);
	/* Step 2: H2 28.4302px → 35.5378px */
	--step-2: clamp(1.7769rem, 1.1106rem + 0.8884vw, 2.2211rem);
	/* Step 3: H1 37.8975px → 47.3719px */
	--step-3: clamp(2.3686rem, 1.4804rem + 1.1843vw, 2.9607rem);
}
*, *::before, *::after {
  box-sizing: border-box;
}
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
html {
  /* Set the font globally */
  font-family: var(--font-body);
  font-weight: 400;
  scroll-behavior: smooth;
  font-size: 16px;
  font-size: var(--step-0);
  line-height: 1.5;
  hanging-punctuation: first allow-end last;
}
body {
  color: var(--text);
  background: var(--bg);
  margin: 0;
  min-block-size: 100svh;
}

p {
  margin: .5rem 0 1rem 0;
  font-size: var(--step-0);
  text-wrap: pretty;
}
p, td {
  -webkit-hyphens: auto;
  -webkit-hyphenate-limit-before: 3;
  -webkit-hyphenate-limit-after: 3;
  -webkit-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-lines: 2;
  -webkit-hyphenate-limit-last: always;   
  -webkit-hyphenate-limit-zone: 8%;
  
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 2;
  hyphenate-limit-last: always;   
  hyphenate-limit-zone: 8%;
}

/* Prevent long strings from overflowing container */
p {
  overflow-wrap: break-word;
  word-break: break-word;
}
b, strong {
  font-weight: 600;
}
/* Format headers */
h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--text-headings);
  font-family: var(--font-headings);
}
h2:first-of-type, h3:first-of-type {
  margin-top: 0;
}

h1 span, h2 span {
  display: block;
  font-size: .8em;
  margin-top: .2rem;
}
h1 {
  font-size: var(--step-3);
  margin-top: 0;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--step-2);
  margin: 1.4rem 0 .5rem 0;
}

h3 {
  font-size: var(--step-1);
  margin: 1.2rem 0 .5rem 0;
}


/* Format links & buttons */
a, a:visited {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  color: var(--link);
}
a:hover {
  text-decoration: none;
  color: var(--link-hover);
}
h1 a, h2 a, h3 a {
  text-decoration: none;
}
button,
[role="button"],
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border: none;
  border-radius: 5px;
  background-color: var(--link);
  font-size: 1rem;
  color: var(--text-reverse);
  /* zero padding needed for leaflet map code */
  padding: 0;
  margin: 0.5rem 0;
}
input[type="range"] {
  padding: 0;
}
button:focus,
button:enabled:hover,
[role="button"]:focus,
[role="button"]:not([aria-disabled="true"]):hover,
input[type="submit"]:focus,
input[type="submit"]:enabled:hover,
input[type="reset"]:focus,
input[type="reset"]:enabled:hover,
input[type="button"]:focus,
input[type="button"]:enabled:hover {
  filter: brightness(1.4);
  cursor: pointer;
}

/* Format the expanding box */
details {
  background: transparent;
  margin-bottom: 1rem;
}
details summary > * { 
  display: inline;
}
summary {
  cursor: pointer;
  font-weight: 500;
  font-size: var(--step-1);
  color: var(--link);
  padding: 0;
}
summary h2, summary h3 {
  color: var(--link);
  font-size: var(--step-1);
}
summary:hover {
  color: var(--text-headings)
}
details[open] summary h2 {
  color: var(--text-headings);
}
details[open] summary:hover {
  color: var(--link);
}
details[open] > *:last-child {
  margin-bottom: 0;
}

/* Format tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
}
td,
th {
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  padding: .2rem .5rem;
  word-break: normal;
}
td a, th a {
  text-decoration: none;
}
th {
  background: var(--second);
  color: var(--text-reverse);
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 2;
  line-height: 1;
}
tr:nth-child(even) {
  /* Set every other cell slightly darker. Improves readability. */
  background: var(--prime-light);
}
.event-date {
	min-width: 11ch;
}
table caption {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
/* Format lists */
ul {
  margin-left: 0;
}
ul li {
  margin: 0 0 .4em 0;
  list-style: disc;
}
ul ul li {
  list-style: circle;
  margin: 0 0 .4em 0;
}
li::marker {
  color: var(--second)
}
li a {
  text-decoration: none;
}
/* Misc body elements */
hr {
  color: var(--border);
  border-top: 1px;
  width: 80%;
  margin: 1rem auto;
}
img,
video,
iframe {
  max-inline-size: 100%;
  block-size: auto;
  border-radius: 5px;
}
figure {
  margin: 1rem auto;
}
figure img {
  display: block;
  margin: 0 auto;
}
figcaption {
  margin-top: .5rem;
  margin-bottom: 1rem;
  font-size: var(--step-0);
  line-height: 1.2;
  text-align: center;
  color: var(--text-light);
}
figcaption span {
  font-size: var(--step--1);
}
blockquote {
  margin: 2rem 0 2rem 2rem;
  padding: 0.4rem 0.8rem;
  border-left: 0.35rem solid var(--prime);
  font-style: italic;
}

/* file type icons*/
a[href$=".pdf"] {
  background-image: url(/assets/images/icons/pdf.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}
a[href$=".doc"] {
  background-image: url(/assets/images/icons/word.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}
a[href$=".docx"] {
  background-image: url(/assets/images/icons/word.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}
a[href$=".xls"] {
  background-image: url(/assets/images/icons/excel.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}
a[href$=".xlsx"] {
  background-image: url(/assets/images/icons/excel.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}
a[href^=".zip"] {
  background-image: url(/assets/images/icons/zip.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}
a[href^="mailto:"] {
  background-image: url(/assets/images/icons/email.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

/* STRUCTURE */

header {
  padding: 0 1rem;
  margin: 0 auto;
}
.container {
  margin: 0 auto;
  padding: 0;
}
main, #main {
  padding: 1rem;
  container-type: inline-size;
}
.with-sidebar {  
  display: flex;
  flex-wrap: wrap;
}
.with-sidebar main {
  flex-basis: 40rem;
  flex-grow: 1;
  flex-shrink: 5;
  max-width: 55rem;
  overflow-x: hidden; /* prevents page overflow */
}
.with-sidebar aside {
  flex-basis: 15rem;
  flex-grow: 1;
  flex-shrink: 1;
}
section {
  padding-bottom: 1em;
}
aside {
  padding: 1rem;
}
footer {
  margin: 0;
  padding: .5rem 15vw;
  text-align: center;
}
@media only screen and (max-width: 749px) {
  footer {
	padding: .5rem 1rem;
  }
}
/* Hidden checkbox for menu toggle */
#menu-toggle {
	display: none;
}

/* Desktop: Left sidebar navigation */
.nav-container {
	position: relative;
	/*left: 0;*/
	top: 0;
	width: auto;
	height: 100vh;
	background: var(--bg);
	padding: 0.5rem 1rem;
	z-index: 1000;
}
@media (min-height: 500px) {
  .nav-container {
	position: fixed;
  }
}
.nav-container {
}
.nav-container a {
	display: block;
	padding: .3rem .5rem;
	margin-bottom: .5rem;
	background: var(--nav-background);
	color: var(--nav-text);
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	transition: background 0.3s;
}
.nav-container a:hover {
	background: var(--nav-background-hover);
	color: var(--nav-text-hover)
}
.nav-container a.active, .nav-container a[aria-current="page"] {
	background: var(--nav-background-hover);
	color: var(--nav-text-hover);
}

/* Menu button - hidden on desktop */
.menu-btn {
	display: none;
}

/* Mobile styles */
@media (max-width: 749px) {
	/* Move nav to bottom */
	.nav-container {
	  position: fixed;
	  top: auto;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  height: auto;
	  max-height: 70vh;
	  overflow-y: auto;
	  padding: 1rem 1rem 4rem 1rem;
	  transform: translateY(100%);
	  transition: transform 0.3s ease;
	}
	.nav-container {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  gap: .5rem;
	}
	.nav-container a {
	  padding: .4rem;
	}

	/* Show menu when checkbox is checked */
	#menu-toggle:checked ~ .nav-container {
		transform: translateY(0);
	}

	/* Show menu button on mobile */
	.menu-btn {
	  display: block;
	  position: fixed;
	  bottom: 1rem;
	  right: 1rem;
	  width: 62px;
	  height: 62px;
	  color: var(--nav-text);
	  background: var(--nav-background);
	  border-radius: 50%;
	  border: 2px solid var(--nav-background-hover);
	  cursor: pointer;
	  z-index: 1001;
	  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	  transition: background 0.3s;
	}

	.menu-btn:hover {
	  background: var(--nav-background-hover);
	}

	/* Hamburger icon */
	.menu-btn span {
	  position: absolute;
	  width: 30px;
	  height: 3px;
	  background: var(--nav-text);
	  left: 15px;
	  transition: all 0.3s;
	}

	.menu-btn span:nth-child(1) {
	  top: 18px;
	}

	.menu-btn span:nth-child(2) {
	  top: 28px;
	}

	.menu-btn span:nth-child(3) {
	  top: 38px;
	}

	/* Animate to X when checked */
	#menu-toggle:checked ~ .menu-btn span:nth-child(1) {
	  transform: rotate(45deg);
	  top: 28px;
	}

	#menu-toggle:checked ~ .menu-btn span:nth-child(2) {
	  opacity: 0;
	}

	#menu-toggle:checked ~ .menu-btn span:nth-child(3) {
	  transform: rotate(-45deg);
	  top: 28px;
	}

	/* Overlay when menu is open */
	#menu-toggle:checked ~ main::before {
	  content: '';
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background: rgba(0,0,0,0.5);
	  z-index: 999;
	}
}

/* grid*/
/* Grid layout */
nav {
	grid-area: nav;
}
header {
	grid-area: header;
}
main {
	grid-area: main;
}
aside {
	grid-area: aside;
	align-self: start;
}
footer {
	grid-area: footer;
}
.home-page-container, .entry-page-container, .index-page-container {
	max-width: 70rem;
	margin: 0 auto;
}
.with-sidebar {
	grid-area: with-sidebar;
}
@media only screen and (max-width: 749px) {
	.home-page-container, .entry-page-container, .index-page-container {
		display: block;
	}
}
@media only screen and (min-width: 750px) {
	.home-page-container {
		display: grid;
		grid-template-columns: 10rem 1fr;
		grid-template-rows: auto 1fr auto;
		grid-template-areas: 
		"nav header"
		"nav main"
		"footer footer";
	}    
}
@media only screen and (min-width: 750px) {
	.entry-page-container {
		display: grid;
		grid-template-columns: 10rem 1fr;
		grid-template-rows: auto 1fr auto;
		grid-template-areas: 
		"nav header"
		"nav with-sidebar"
		"footer footer";
	}    
}

@media only screen and (min-width: 750px) {
	.index-page-container {
		display: grid;
		grid-template-columns: 10rem 1fr;
		grid-template-rows: auto 1fr auto;
		grid-template-areas: 
		"nav header"
		"nav main"
		"footer footer";
	}    
}


/* classes*/
.skip-link {
  position: absolute;
  display: inline-block;
  padding: .375rem .75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color:var(--nav-background);
  color: var(--nav-text);
  /* Ensure the Y position is set to zero and any movement on the transform property */
  transform: translateY(0);
  transition: transform 250ms ease-in;
  z-index: 100;
}

/*  https://codepen.io/LDAWG-a11y/pen/WNLobNR
This skip link will slide down from the top, so when it is not focused, I'm setting it's position on the Y axis to -2rem, because the total height of my skip link is 2rem: 1.25rem (font-size) and 2 * .375rem (vertical padding) = 2rem */
.skip-link:not(:focus) {
  transform: translateY(-2rem);
}

/*  I'm setting the outline to invisible here, as the skip link being visible is the focus indicator, in this case */
.skip-link:focus {
  outline: transparent solid 2px;
}

.visually-hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: auto;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
}
.clear-both {
	clear: both;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr));
	grid-gap: 2rem;
}
.grid-container .summary {
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 1rem;
	margin-bottom: 1rem;
	border: 1px solid var(--border);
	padding: 0.6rem;
}
.flex-container .flex-text {
	flex: 1 1 65%;
}
.flex-container .flex-image {
	flex: 1 1 30%;
	align-self: center;
}

.column-container {
	columns: 18rem;
	column-gap: 2rem;
	margin: 0;
	clear: both;
}
.column-container .summary {
	break-inside: avoid;
	margin-bottom: 2rem;
}
@media only screen and (max-width: 750px) {
	.flex-container {
		gap: 1rem;
		margin-bottom: 0
	}
	.column-container {
		column-gap: 1rem;
	}
	.column-container .summary {
		margin-bottom: 1rem;
	}
	.grid-container {
		grid-gap: 1rem;
	}
}

/* Boxes within containers */
.summary {
	padding: 0.6rem 1rem;
	margin-bottom: 2rem;
	border-radius: 5px;
	border: solid 1px var(--border);
	break-inside: avoid;
	background-color: transparent;
}
.summary img {
	max-inline-size: 100%;
	block-size: auto;
	display: block;
	margin: 0 auto;
	max-height: 50vh;
	object-fit: cover;
	aspect-ratio: 1.2/1;
	object-position: top center;
	border-radius: 5px 5px 0 0;
}
.summary img.graphic {
	object-fit: unset;
	height: unset;
	aspect-ratio: revert;
}
.summary img.logo {
	object-fit: unset;
	height: unset;
	aspect-ratio: revert;
	max-width: 50%;
}
.summary p {
	 margin: .2rem 0 .3rem 0;
}
.summary h2 {
	font-size: var(--step-1);
}

#map img {
	max-width: inherit;
	background-color: transparent;
}
#map {
	width:100%;
	height:45vh;
	margin: 1rem auto;
	background-color: transparent;
	background-image: url(/assets/images/loadingAnimation.gif);
	padding: 0;
}

.prime-background {
	background-color: var(--light-background);
	border: solid 1px var(--border);
	border-radius: 5px;
	padding: 0.6rem 1rem;
}
.meta {
	font-size: .9rem;
	display: inline;
	color: var(--text-light);
}
p.meta {
	margin-top: auto;
	font-size: .9rem;
}
ul.crumbs {
	list-style: none;
	margin: 0 0 .5rem 0;
	padding: 0;
}
.crumbs li {
	display: inline;
	margin: 0;
	font-size: .8rem;
}

.title-image-portrait {
	max-width: 100%;
}
@media only screen and (min-width: 750px) {
	.title-image-portrait {
		max-width: 50%;
		margin-left: 1rem;
		float: right;
		clear: right;
	}
}
.title-image-landscape {
	max-width: 100%;
	text-align: center;
}
.title-image-landscape.logo {
	max-width: 50%;
	margin-left: 1rem;
	float: right;
	clear: right;
}
.title-image-landscape img {
	margin-bottom: .5rem;
}

.photo-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
	grid-gap: 1rem;
	clear: both;
	margin-bottom: 1rem;
}
.photo-gallery figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	border: solid 1px var(--border);
	border-radius: 5px;
}
.photo-gallery img {
	max-inline-size: 100%;
	block-size: auto;
	display: block;
	margin: 0 auto;
	max-height: 50vh;
	object-fit: cover;
	aspect-ratio: 1.2/1;
	object-position: top center;
	border-radius: 5px 5px 0 0;
}

.larger-text {
	font-size: var(--step-1);
}

.right {
	float: right;
}
.center {
	text-align: center;
}
.right50 {
	max-inline-size: 50%;
	margin: 0 0 1rem 1rem;
	float: right;
	clear: right;
}
.right30 {
	max-inline-size: 30%;
	margin: 0 0 1rem 1rem;
	float: right;
	clear: right;
}

.centred100 {
	max-inline-size: 100%;
	display: block;
	margin: 1rem auto 0 auto;
	padding: 1rem 0;
	text-align: center;
}
@media only screen and (max-width: 750px) {
	.right50, .right30 {
		max-inline-size: 100%;
		margin: 0;
		float: none;
	}
}

/* Format forms */
form {
  max-width: 45rem;
}
textarea,
select,
input {
  font-size: inherit;
  font-family: inherit;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  box-shadow: none;
  width: 60%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
/* Add arrow to drop-down */
select {
  background-image: linear-gradient(45deg, transparent 49%, var(--text) 51%),
	linear-gradient(135deg, var(--text) 51%, transparent 49%);
  background-position: calc(100% - 20px), calc(100% - 15px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
select[multiple] {
  background-image: none !important;
}
/* checkbox and radio button style */
input[type="checkbox"],
input[type="radio"] {
  vertical-align: bottom;
  position: relative;
}
input[type="radio"] {
  border-radius: 100%;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background: var(--prime);
}
input[type="checkbox"]:checked::after {
  /* Creates a rectangle with colored right and bottom borders which is rotated to look like a check mark */
  content: " ";
  width: 0.1em;
  height: 0.25em;
  border-radius: 0;
  position: absolute;
  top: 0.05em;
  left: 0.18em;
  background: transparent;
  border-right: solid var(--bg) 0.08em;
  border-bottom: solid var(--bg) 0.08em;
  font-size: 1.8em;
  transform: rotate(45deg);
}
input[type="radio"]:checked::after {
  /* creates a colored circle for the checked radio button  */
  content: " ";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  position: absolute;
  top: 0.125em;
  background: var(--bg);
  left: 0.125em;
  font-size: 32px;
}
/* hide honeypot data field */
input#yourMessage {
  display: none;
}
/* Make the textarea wider than other inputs */
textarea {
  width: 100%;
}
/* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) {
  textarea,
  select,
  input {
	width: 100%;
  }
}
/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
}
/* do not show border around file selector button */
input[type="file"] {
  border: 0;
}


/* ================================================
   Print styles
   ================================================ */
@media print {
* {
background: transparent !important;
color: #000 !important;
/* Black prints faster: h5bp.com/s */
box-shadow: none !important;
text-shadow: none !important;
}
body { 
width:100% !important;
margin:0 !important;
padding:0 !important;
line-height: 1.25; 
font-size: 13pt;
}

/* Headings */
h1,h2,h3,h4,h5,h6 { page-break-after:avoid; font-weight: bold; }
h1{font-size:20pt;}
h2{font-size:18pt;}
h3{font-size:16pt;}
h4,h5,h6{font-size:14pt;}

p, h2, h3 { orphans: 3; widows: 3; }

code { font: 12pt Courier, monospace; } 
blockquote { margin: 1.2em; padding: 1em; border: 1px solid #999; page-break-inside: avoid;}
hr { background-color: #ccc; }
ul li {list-style-image: none;margin: 0 0 .3em 0;}

/* Images */
img { margin: 1em 1em 1em 0; max-width: 100% !important; }
a img { border: none; }

/* Links */
a:link, a:visited { background: transparent; font-weight: normal; color: #000; }
a:link[href]:after, a[href]:visited:after { content: " (" attr(href) ") "; font-size: 85%; color: #666; }

abbr[title]:after { content: " (" attr(title) ")"; }

/* Don't show linked images  */
a[href] {color:#000; }
a[href$=".jpg"]:after, a[href$=".jpeg"]:after, a[href$=".gif"]:after, a[href$=".png"]:after { content: " (" attr(href) ") "; display:none; }

/* Don't show links that are fragment identifiers, or use the `javascript:` pseudo protocol .. taken from html5boilerplate */
a[href^="#"]:after, a[href^="javascript:"]:after {content: "";}

/* Table */
table { margin: 1px; text-align:left; }
th { border-bottom: 1px solid #333;  font-weight: bold; }
td { border-bottom: 1px solid #333; }
th,td { padding: 4px 10px 4px 0; }
tfoot { font-style: italic; }
caption { background: #fff; margin-bottom:2em; text-align:left; }
thead {display: table-header-group;}
img,tr {page-break-inside: avoid;} 

main, section, aside {width: 100%}

/* Hide various parts from the site only print main content --*/
nav, .header, footer {display: none;}

/*-- remove embeded videos --*/  
.embed {
display: none;
width: 0 !important;
height: 0 !important;
overflow: hidden !important;
line-height: 0pt !important;
white-space: nowrap;
}    

}
