html * { 
	text-size-adjust: none;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
}

body { padding: 0; margin:0; background-color:white; line-height: 140%; }

body, input, textarea, select  { 
	font-family: Arial, Helvetica, sans-serif; 
	font-size:15px; 
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;	
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: left; 
}

a { text-decoration: none; }

.abutton {
	display:inline-block;
	padding:6px;
	border:1.5px solid gray;
	border-radius:5px;
	background: #eeeeee;
	cursor: pointer;
}

#header {
	padding:28px 24px 0px 24px;
	font-size:56px; 
	font-weight:bold;
	color: #008000;
	padding-bottom:42px;
}

#header a {
	color: #008000;
}

#topmenu {
	overflow: hidden;
	width:100%;
	margin-bottom:36px;
	border-top:1px solid gray;
	border-bottom:1px solid gray;
}
#topmenu a{
	font-size:18px; 
	text-transform: uppercase;
	color: white;
}
#topmenu div {
	display:inline-block;
	text-align:center;
	float:left;
	padding:12px;
	width:50%;
}

#footer {
	border-top:1px solid gray;
	margin-top:24px;
	padding:24px;
	padding-top:12px;
	font-size:90%;
}

#content {
	padding-left: 24px;
}

.videomap {
	position: relative;
	display : inline-block;
	margin-right:24px;
	margin-bottom:24px;
	margin-left:-6px;
	
}

.videomap a {
	color:white;
	text-shadow: 1px 1px 2px black, -1px -1px 2px black;
}

.videomap .folderimg {
	float: left; 
	z-index:-5;
}

.videomap .date { 
	position: absolute; bottom:10px;  left:18px;
}

.videothumbnail {
	display: inline-block;
	position:relative;
	margin-right:24px; margin-bottom:24px; 
	cursor:pointer;
}

.videothumbnail span {
	/*
	width: 100%;
	height: 100%;
	position: absolute;
	background: url("/svg/play.svg");
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size:20%;
	opacity:0.8;
	*/
}

.videothumbnail img {
	border:1px solid gray;
}

#videoplayer { 
	z-index:1000; 
	display:none;
	position: fixed; 
	float:left; 
	width:100%; 
	height:100%; 
	background: rgba(170, 170, 170, .6);  
}

#videoplayer video, #videoplayer .foto {
	z-index:1010; 
	position: relative;
	border:1px solid gray; 
	box-shadow: -1px -1px 3px black, 1px 1px 3px black; 
	max-width:100%;
	max-height:calc(90vh - 36px);
	height: auto;
	width: auto;
}

#videoplayertoolbox {
	z-index:1020;
	position:absolute;
	right:12px; top:12px;
}

#videoplayertoolbox img {
	height:28px; width:28px; cursor: pointer; margin-left:16px;
}

#videoplayerframe1 { border: 0px; width: 100%; text-align: center;  }
#videoplayerframe2 { max-width:calc(95% - 36px); max-height:calc(90vh - 36px); width:auto; height: auto; white-space:nowrap; margin-top:24px; padding: 0; cursor:default; display: inline-table; position: relative; }

#previousitem, #nextitem {
	z-index:1020;
	color:white;
	font-size:48px;
	position: absolute; 
	padding:36px 6px 36px 6px; 
	color: white;
	text-shadow: 1px 1px white;
	cursor: pointer;
	background: gray;
	opacity: 0.4;
	margin-top:calc(30% - 58px);
}
#previousitem:hover, #nextitem:hover {
	opacity: 0.8;
}
#previousitem {
	left:0px;
}
#nextitem { 
	right:0px;
}



