
body {
	margin: 0;
	padding: 0;
}
em {
	font-style: normal;
	font-weight: bold;
}
@keyframes blink {
  0%, 100% { background-color: transparent; }
  50% { background-color: red; }
}
:target {
  animation: blink 1s step-end 3;
}
.tooltip {
	border: 1px solid #bbbbbb;
	background-image: url('/paper.jpg');
	background-repeat: repeat;
	background-position: center;
	max-width: 400px;
	padding: 5px;
}
.container {
	display: flex;
	flex-wrap: wrap;
}
.Sidebar
{
	background-image: url('/parchments.png');
	background-repeat: repeat;
	background-position: top center;
	padding: 20px;
	border: 2px solid #000;
	min-width: 340px;
	height: auto;
}
.Article
{
	vertical-align: top;
	background-image: url('/parchments.png');
	background-repeat: repeat;
	background-position: top left;
	padding: 20px;
	border: 2px solid #000;
	max-width:1000px;
}
.BL {
	min-width: 340px;
}
.BR {
	margin: 0 5px;
	display: flex;
	justify-content: center;
}
.TR {
	display: flex;
	justify-content: center;
	align-items: top;
}
.TL {
	display: flex;
	align-items: bottom;
}
.BR {
	flex: 1;
}
@media screen and (max-width: 767px) {
	.container {
		flex-direction: column;
		align-items: flex-start;
	}
	.TR img{
		height: 50%;
		width:50%;
	}
	.TL img{
		height: auto;
		width:50%;
	}
	.TL {
		order: 3;
		flex-grow: 1;
	}
	.TR {
		order: 1;
		flex-grow: 1;
		justify-content: center;
		align-items: top;
		text-align: center; 
	}
	.BL {
		order: 4;
		min-width: 340px;
	}
	.BR {
		order: 2;
		width: 100%;
		margin: 0;
	}
}
@media screen and (min-width: 767px) {
	.TL img{
		height: 100%;
		width:auto;
	}
	.TR img{
		height: 100%;
		width:auto;
	}
	.TL {
		width: 0px;
		height: 100%;
	}
	.TR {
		width: 100%;
		height: 100%;
	}
	.BR {
		flex: 1;
	}
	.BL {
		display: inline-block;
		vertical-align: top;
		width: auto;
		max-width: calc(100% - 10px);
	}
}
.bottomtext {
	color: white;
	margin: 10px;
	font-weight: bold;
	clear: both;
	text-shadow: 
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black,
		0 0 3px black;
}
.play-icon {
	position: absolute;
	display: inline-block; 
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	width: 20px;
	height: 20px;
	text-align: center;
	font-size: 20px;
	cursor: pointer;
	z-index: 2;
}

.play-icon::before {
	content: "\25BA"; 
	position: absolute;
	top: 0;
	left: 0;
	color: black; 
	-webkit-text-stroke: 5px black; 
	text-stroke: 5px black; 
	z-index: -1; 
}
.figdiv {
	position: relative;
	float: right;
	min-width: 150px;
	max-width: 100%;
	margin: 0 0 0 20px;
}
.figcap {
	background-color: rgba(0, 0, 0, 0.5);
	max-width: 100%; 
	color: white;
	padding: 5px 10px;
	font-family: Arial, sans-serif;
	font-size: 10px;
	word-wrap: break-word;
}
.figvid {
	cursor: pointer;
}
.figvid, .figimg {
	display: block;
	vertical-align: top;
	margin: 0;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: auto; 
	height: auto; 
	max-width: 100%; 
	max-height: 100%; 
	z-index: 0; 
}
.updatebox {
	border-top: 2px solid #000;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}