:host {
	width:100%;
	padding: 0;
	margin: 1em 0;
	position: relative;
	box-sizing: border-box;
}
:host .wrapper {
	position: relative;
}
:host > * {
	position: relative;
}
:host .wrapper > small {
	background: black;
	position: absolute;
	top: 4px;
	left: 0;
	padding: 0.25em 0.5em;
	display: block;
	color: white;
	z-index: 10;
}
:host [data-control] {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
}
:host [data-control="previous"] {
	left: 0;
}
:host [data-control="next"] {
	right: 0;
}
:host .gallery {
	width: 100%;
	overflow: hidden;
	position: relative;
}
:host .gallery > ul {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	left: 0;
	transition: all 1.0s 0.0s ease-in-out;
}
:host .gallery figure,
:host .gallery img {
	width:100%;
	margin: 0;
}
:host .gallery img {
	display: block;
	max-height: 60vh;
	height:  auto;
	max-width: 100%;
	width: auto;
	margin: 0 auto;
}
:host figure {
	background: white;
}
:host figcaption {
	border-top:  solid 4px black;
	border-bottom:  solid 4px black;
	padding: 0.5em 1em;
	color: black;
}
:host figcaption small {
	display: block;
	padding-top: 1em;
}
:host h2,
:host p {
	padding: 0 1em;
}
:host pre {
	white-space: pre-wrap;
}
:host p a {
	display: block;
	float: left;
}
:host p img {
	width: auto;
	height: auto;
}
:host figcaption table,
:host figcaption th,
:host figcaption td {
  border: solid 1px white;
}
:host .signature {
	text-align: center;
	font-size: 1.5em;
}
:host .signature:before,
:host .signature:after {
	font-size: 1.5em;
}
:host .signature:before {
	content: '“';
	margin-left: -0.75em;
}
:host .signature:after {
	content: '”';
	margin-right: -0.75em;
}
:host figcaption p {
	font-weight: bold;
	text-decoration: underline;
	margin: 0;
	padding: 0;
}
:host figcaption ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
:host figcaption li {
	background: rgba(0,0,0,0.1);
	margin: 3px 0;
	padding: 1px 3px;
}
:host figcaption li a {
	color: white;
}

:host [data-slide="photo"] .header p {
	font-size:  1em;
	text-decoration: none;
	text-align: center;
}
:host [data-slide="photo"] .header .name {
	font-size:  1.5em;
}
:host [data-slide="photo"] .header small {
	font-size:  0.75em;
	padding: 0;
}
:host [data-slide="photo"] .footer {
	border-bottom:  none;
}
:host [data-slide="photo"] .footer p {
	text-decoration: none;
	font-weight: normal;
}
:host [data-slide="photo"] .footer a {
	display: inline;
	float: none;
	color: black;
}
:host [data-slide="photo"] .footer a:hover {
	color: blue;
}