html, body {
	background: #eee;
	color: #000;
	font: 20px sans-serif;
	transition: height 0.2s ease-out 0s;
}
html, body, header, menu, nav, main, h1, h2, ul, li, footer, section, article {
	display: block;
	margin: 0;
	padding: 0;
}
img {
	border: none;
}
@media all and (max-width: 599px) {
	html, body {
		font: 13px sans-serif;
	}
}
@media all and (min-width: 600px) and (max-width: 799px) {
	html, body {
		font: 16px sans-serif;
	}
}
@media all and (min-width: 800px) and (max-width: 1200px) {
	html, body {
		font: 18px sans-serif;
	}
}

main, footer {
	margin: 0 auto;
	max-width: 2100px;
	padding: 0 2em;
}
a {
	color: #234084;
}
.mouse a:hover {
	color: #8E4038;
	text-decoration: none;
	outline: none;
}
h1 {
	display:none;
}
h2 {
	display: none;
}
h3 {
	margin: 0 0 0.5em 0;
	text-align: center;
	font-size: 200%;
	color: #606060;
	text-shadow: 0 0 2px rgba(112,112,112,0.6);
	text-align: left;
}
.lang {
	padding: 0.6em 0.5em 0.5em;
	font-size: 0.8em;
	font-weight: bold;
	float: right;
	display: block;
	border-radius: 50%;
	transition: all 0.2s ease-out 0s;
	margin-right: -2em;
	margin-top: -0.5em;
}
#lang {
	display: none;
	margin: 0;
}
.mouse .lang:hover, .mouse .lang:focus {
	background: rgba(170,170,170,0.5);
	box-shadow: 0 0 2px rgba(170,170,170,0.5);
}
nav {
	padding: 0.4em 0.6em 0.4em 0.6em;
	border-radius: 0 0 0 0.3em;
	text-align: left;
	position: fixed;
	top: 0;
	right: 0;
	background-color: #fff;
	opacity: 0.8;
	z-index: 100;
	overflow: hidden;
	display: block;
	transition: all 0.3s ease-out 0s;
	box-shadow: 0 0 3px 1px rgba(80,80,80,0.6);
}
nav ul {
	display: none;
	margin: 1em 1em 0 1em;
	list-style-type: none;
	font-size: 120%;
}
.menu:hover {
	opacity: 1;
}
.menu:hover ul,
.menu:hover #lang { 
	display: block ;
}
nav .arrlist {
	height: 2em;
	position: relative;
	top: 0.2em;
}
li {
	margin-bottom: 1em;
}
li::first-letter {
	font-weight: bold;
}
footer {
	margin-top: 2em;
	padding: 0.5em 1em;
	text-align: center;
	font-size: 80%;
	color: #4f4f4f;
	text-shadow: 0 0 2px #fff;
}

.touchFix {
	height: 100vh;
}
.touchFixMin {
	min-height: calc(94vh - 3.4em);
}
.foto {
	position: relative;
	text-align: center;
	padding: 3vh 0;
	height: 94vh;
	line-height: 1px;
	white-space: nowrap;
	margin: auto;
	display: flex;

	display: -ms-flexbox;
	flex-direction: row;
	-ms-flex-direction: row;
	justify-content: center;
	-ms-flex-pack: center;
	align-items: center;
	-ms-flex-align: center;
	align-content: center;
}

.imgpos {
	position: relative;
	display: block;
	max-height: 94vh;
	max-width: 100%;
	margin: auto 0;
	-ms-flex: none;
	box-shadow: 0 0 0 1px #fff;
	border-radius: 3px;
}
.imgpos img.show {
	border-radius: 3px;
	max-height: 94vh;
	max-width: 100%;
	display: block;
}
.dldpos {
	display: block;
	position: absolute;
	right: 0.2em;
	bottom: 0.2em;
	padding: 0.7em 0.5em;
	opacity: 0.8;
	transition: all 0.2s ease-out 0s;
	background: rgba(0,0,0,0.6);
	box-shadow: 0 0 3px rgba(0,0,0,0.6);
	z-index: 20;
	border-radius: 50%;
}
.mouse .dldpos {
	display: none;
	opacity: 0.8;
	background: none;
	box-shadow: none;
}
.mouse .dldpos:hover {
	opacity: 1;
	background: rgba(0,0,0,0.6);
	box-shadow: -1px -1px 3px -1px rgba(0,0,0,0.6);
}
.imgdld {
	height: 1.2em;
	display: inline;
}
.prevarr, .nextarr {
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 30%;
	min-height: 3.5em;
	opacity: 0.8;
	z-index: 10;
	background: rgba(0,0,0,0);
}
.nextarr {
	bottom: 0;
	top: auto;
}
.mouse .prevarr, 
.mouse .nextarr {
	display: none;
	opacity: 0.7;
	transition: opacity 200ms ease-out 0s;
}
.mouse .foto:hover .nextarr, 
.mouse .foto:hover .prevarr, 
.mouse .scrolled:hover .prevarr, 
.mouse .foto:hover .dldpos {
	display: flex;
}
.mouse .nextarr:hover, 
.mouse .prevarr:hover  {
	opacity: 1;
}
.prevarr img, .nextarr img {
	height: 3em;
	margin: 0.3em auto auto auto;
}
.nextarr img {
	margin: auto auto 0.3em auto;
}
.scrolled {
	position: relative;
	padding: 3vh 0;
}
.scrolled .prevarr {
	height: 6.5em;
	text-align: center;
}
.textbox {
	background: #fff;
	max-width: 60em;
	margin: 0 auto 1.5em;
	border-radius: 3px;
	box-shadow: 0 0 0 1px #eee;
	padding: 2em 2.5em;
}

@media all and (min-width: 1200px) and (max-resolution: 96dpi){
	html {
		background-image: url(bb02.jpg);
		background-position: center;
		background-size: cover;
		background-attachment: fixed;
	}
	body {
		background: transparent;
	}
	#backShadow {
		position: fixed;
		z-index: -1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		box-shadow: 0 0 3em rgba(0,0,0,0.6) inset;
	}
	nav {
		box-shadow: 0 0 3em rgba(0,0,0,0.6);
	}
	.imgpos, .textbox {
		box-shadow: 0 0 0 1px #eee, 0 0 2em rgba(0,0,0,0.5);
	}
	.textbox {
		background-color: rgba(230,230,230,0.6);
	}
	#h_about {
		color: #4f4f4f;
	}
	footer {
		color: rgba(255,255,255,0.7);
		text-shadow: 0 0 1px #fff;
	}
}

@media all and (min-width: 2100px) {
	nav {
		right: 50%;
		margin-right: -500px;
		border-radius: 0 0 0.3em 0.3em;
	}
}
