<!-- The following items are new CSS settings for the video page
The @media stuff is to make the video page OK on mobiles 
 See: https://www.thesitewizard.com/css/mobile-friendly-responsive-design.shtml -->


/* Defaults */

.container  {
	width: 980px;
	background-color: CornSilk;
}
.pageheader H1 {
	font-size: 24px;
}
.pageheader H2 {
	font-size: 12px;
}

.content-header {
	font-size:	12px;
}

.content-header H1 {
	font-size:		24pt;
}
.content-header H2 {
	font-size:		18pt;
}


.video-series-header H1 {
	font-size:	18px;
}
.video-series-header H2 {
	font-size:	12px;
}




@media screen and (min-width:980px) /* Desktop */ {
	.container  {
		width: 980px;
		background-color: CornSilk;
	}

	.pageheader H1 {
		font-size: 24px;
	}
	.pageheader H2 {
		font-size: 12px;
	}

	.content-header {
		font-size:	12px;
	}

	.content-header H1 {
		font-size:		24pt;
	}
	.content-header H2 {
		font-size:		18pt;
	}

	.video-series-header H1 {
		font-size:	18px;
	}
	.video-series-header H2 {
		font-size:	12px;
	}


}

@media screen and (max-width:979px) /* Tablet */ {
	.container {
		width: 100%;
		background-color: CornSilk;
	}

	.pageheader H1 {
		font-size: 24px;
	}
	.pageheader H2 {
		font-size: 12px;
	}

	
	.content-header {
		font-size:	12px;
	}
	.content-header H1 {
		font-size:	24px;
	}
	.content-header H2 {
		font-size:	12pt;
	}

	.video-series-header H1 {
		font-size:	18px;
	}
	.video-series-header H2 {
		font-size:	12px;
	}


}

@media screen and (max-width:500px) /* Mobile */ {
	.container {
		width: 100%;
		background-color: CornSilk;
	}

	.pageheader H1 {
		font-size: 16px;
	}

	.pageheader H2 {
		font-size: 8px;
	}

	.content-header {
		font-size:	10px;
	}
	.content-header H1 {
		font-size:	16px;
	}
	.content-header H2 {
		font-size:		10pt;
	}

	.video-series-header H1 {
		font-size:	16px;
	}
	.video-series-header H2 {
		font-size:	10px;
	}


}

.content-header H1 {
	font-weight:	bold;
	font-family:	"Bookman Old Style","Times New Roman",Serif;
	font-style:		normal;
	text-align:		left;
	color: 			RoyalBlue;
}

.content-header H2 {
	font-weight:	bold;
	font-family:	"Bookman Old Style","Times New Roman",Serif;
	font-style:		normal;
	text-align:		left;
	color: 			RoyalBlue;
	margin-bottom: 	2px;
}
.close-space {
	margin-top:	0px;
	margin-bottom:	0px;
}

.pageheader {
	/* background-color: #004080;*/
	background-color: LightSkyBlue;
	/* height: 50px; */
}
#header-img {
	/* Original is 127 x 100 */
	height: 40px;
	width: 40px;
}
.pageheader H1 {
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	color: DarkBlue;
	text-align: left;
	vertical-align: middle;
	margin:1px;
}
.pageheader H2 {
	font-family: "Times New Roman", Times, serif;
	font-style: normal;
	color: SteelBlue;
	text-align: left;
	/* text-indent: 20px; */
	vertical-align: middle;
	margin:1px;
}

.in-site-jump {
	font-family: "Arial";
	font-style: bold;
	font-size: 0.8em;
}
a.in-site-jump:link {color:blue;}
a.in-site-jump:visited {color:blue;}
a.in-site-jump:hover {color:red;}
a.in-site-jump:active {color:red;}


.content-header {
	margin: 2%;
}

.video-list {
	margin: auto;
    width: 95%;
}

.video-container {
	padding-bottom: 10px;
	border-bottom-style: solid;
	border-width: 2px;
	border-color: white;
}


.video-series-header {
	padding: 2px;
	background-color: lightblue;
	border-radius: 15px;
}
.video-series-header H1 {
	font-style:	italic;
	color:	black;
	text-align: center;
	margin-bottom:0px;
}
.video-series-header H2 {
	font-style:	italic;
	color:	black;
	text-align: center;
	margin-top: 0px;
}

.video-header {
	text-align: left;
	margin-top: 25px;
	margin-left: 10px;
}

.video-outer {
	border-style: solid;
	border-width: 0px 0px 5px 0px;
	padding-bottom: 20px;
	border-color: RoyalBlue;
}

/* the following items get the iframe to scale on all device sizes
See:https://blog.theodo.com/2018/01/responsive-iframes-css-trick/ 
or https://benmarshall.me/responsive-iframes/  */
.video-inner {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.video-iframe {
  position: absolute;
  border:0;
  width: 100%; height: 100%;
  left: 0;
  top:0;
}

video {
	width: 100%;
    object-fit: contain;
}

BODY {
	font-size:		12pt;
	font-family:		"Arial",Sans Serif;
}


.footer {
	font-size:		8pt;
	font-style:		italic;
	font-family:		"Arial",Serif;
	color:			grey;
	text-decoration:	none;
	text-align:		center;

}

.footerurl {
	color:			blue;
}

