body {
	background-color: #222222;
	font-family: Cambria;
	font-size: 1.2em;
	line-height: 1.4em; 
	margin-top: 0;
}


.text {
	color:#FFFFFF; 
	border: 0px solid #FFFFFF; 
	display:inline-block; 
	margin: 2em 0em;
}

.text a:link {
	color: #6f7fe3;
	text-decoration: none;
}
.text a:visited {
	text-decoration: none;
	color: #6f7fe3;
}
.text a:hover {
	text-decoration: underline;
	color: #6f7fe3;
}
.text a:active {
	text-decoration: none;
	color: #6f7fe3;
}






img {
    max-width: 100%;
	object-fit:scale-down;  /* Keeps image from being upscaled beyond 100% */
    height: auto;
}

.figure {
	font-style: italic;
	text-align: center;
}

.blockquote {
	border-left: 2px solid #6b6e72;
	margin-left: 3em;
	margin-right: 3em;
	padding: 0.0em 10px;
	color: #6b6e72;
}

.centered_div {
  display: flex;
  justify-content: center;
}

.youtube_embed {
  position: relative;
  padding-bottom: calc(56.25% * 0.9); /* 16:9 */
  width: 90%;
  height: 0;
}
.youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* The stuff inside the expandable boxes */
.expandablecontent {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

/* Expandable box titles */
.collapsible {
  background-color: #000f72; /* medium blue */
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: 1px solid #8091fe;
  font-size: 1.2em;
  font-family: Cambria;
}

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 10px;
  color: white;
  float: left;
  margin-right: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.collapsible:hover {
  background-color: #000739;  /* dark blue */
}

.active:hover {
  background-color: #000f72; /* medium blue */
}

.titleimage {
	width:750px;
	margin-right:15px;
	float: left; 
	}

/*Make title image split onto different row on small screens */
@media only screen and (max-width: 1205px) {
	.titleimage {
		width: 100%;
	}
	.mainmenudiv {
		font-size:1em !important;
	}
}
	
/* Title bar stuff */
.mainmenucell {
  float: left;
  padding: 0px;
}
.mainmenucell a {
	color: #01138F;
	text-decoration: none;
}
.mainmenucell a:hover {
	text-decoration: underline;
}
.mainmenudiv {
	background-color: #bbb;
	box-sizing: border-box;
	font-size:1.5em;
	line-height: 1.3em; 
	font-weight: bold;
}
.mainmenudiv:after {
	content: "";
	display: table;
	clear: both;
}