#fullscreen {
	position: fixed;
	color: #a0a0a0;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	display: none;
	z-index: 99;
	background-color: rgba(80,80,80,0.8);
}
#fullscreen img {
	position: absolute;
	display: block;
	max-width: 95%;
	max-height: 95%;
	top: -9999px;
	bottom: -9999px;
	left: -9999px;
	right: -9999px;
	text-align: center;
	vertical-align: middle;
	margin: auto;
	border: 2px solid #fff;
	cursor: pointer;
}
.fullscreenable {
	cursor: move;
}
#fullscreen #close {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	width: 20vw;
	height: 20vh;
	font-size: 4em;
	text-align: right;
	float: right;
	opacity: 0;
	cursor: pointer;
}
#close::after {
	content: "x";
}
#fullscreen #next {
	position: absolute;
	line-height: 20vh;
	top: 40vh;
	right: 0.5em;
	width: 20vw;
	height: 20vh;
	font-size: 4em;
	text-align: right;
	float: right;
	opacity: 0;
	cursor: pointer;
}
#next::after {
	content: ">";
}
#fullscreen #prev {
	position: absolute;
	line-height: 20vh;
	top: 40vh;
	left: 0.5em;
	width: 20vw;
	height: 20vh;
	font-size: 4em;
	text-align: left;
	float: right;
	opacity: 0;
	cursor: pointer;
}

#prev::after {
	content: "<";
}
#leg {
	position: relative;
	display: block;
	bottom: 0.1em;
	width: 100%;
	height:1vh;
	display: block;
	text-align: center;
	align-self: center;
	vertical-align: middle;
	color: #C8C8C8;
	font-size: 0.7em;
	margin: auto;
}
#leg b {
	color: #fff;
}
#show{
	display:none;
}