@charset "UTF-8";
/* CSS Document */
body {
	background-color: #000;
	font-size: 16px;
	font-family: 'Oswald', sans-serif;
}
textarea {
    resize: none;
}
a {
	color:#000;
	font-size:16px;
	font-family: 'Oswald', sans-serif;
	text-decoration:none;
	resize: none;
}
a:hover {
	text-decoration:underline;
}

#wrapper {
	background-color: #1990BA;
	height: 504px;
	width: 859px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -429px;
	margin-top: -252px;
}

#header {
	position: absolute;
	left: 0px;
	top: 0px;
}

#schijf {
	position: absolute;
	left: 255px;
	top: 56px;
}

#hendel {
	position: absolute;
	left: 125px;
	top: 90px;
	cursor: pointer;
}

#fotoback {
	position: absolute;
	left: 482px;
	top: 193px;
}

#foto {
	position: absolute;
	left: 510px;
	top: 200px;
}

#viewer {
	position: absolute;
	left: 192px;
	top: 54px;
}
#subSlot {
	position: absolute;
	left: 613px;
	top: 106px;
	cursor: pointer;
}
#imgSlot {
	position: absolute;
	left: 732px;
	top: 146px;
	cursor: pointer;
}
#nummer {
	position: absolute;
	left: 244px;
	top: 261px;
	width: 88px;
}

#nummerinput {
	background-color:#ffffD7;
	border:hidden;
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	width: 88px;
}
#subject {
	position: absolute;
	left: 278px;
	top: 109px;
	width: 300px;
}

#subjectinput {
	background-color:#9E8870;
	border:hidden;
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	width:300px;
}
#titel {
	position: absolute;
	left: 249px;
	top: 346px;
	width: 350px;
}
#titelinput {
	background-color:#9E8870;
	border:hidden;
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	width:350px;
	height:60px;
}
#lock {
	position: absolute;
	left: 672px;
	top: 323px;
	width: 150px;
}
#lockinput {
	background-color:#1990BA;;
	border:hidden;
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	width:150px;
	height:40px;
}
#warning {
	position: absolute;
	left: 672px;
	top: 395px;
	width: 150px;
}
#warninginput {
	background-color:#1990BA;;
	border:hidden;
	text-align:center;
	text-transform:uppercase;
	color: #FFF;
	font-weight:bold;
	width:150px;
	height:40px;
}
#totals {
	position: absolute;
	left: 672px;
	top: 73px;
	width: 150px;
}
#totalsinput {
	background-color:#1990BA;;
	border:hidden;
	text-align:center;
	font-size: 16px;
	width:150px;
	height:80px;
}

#helpbut {
	position: absolute;
	left: 28px;
	top: 30px;
	width: 150px;
}
#clickLever {
	position:absolute;
	left: 20Px;
	top: 85px;
}
#prev {
	position:absolute;
	left:10px;
	top:446px;
}
#next {
	position:absolute;
	left:801px;
	top:446px;
}
#menu {
  position: fixed;
  left: 0;
  top: 50%;
  margin-top: -165px;
  width: 107px;
  height: 329px;
  font-size: 0px;
}
#menu a {
	font-size: 0px;
}

/* 
 * overlay.css v1.0.0
 * Copyright 2014 Joah Gerstenberg (www.joahg.com)
 */

.overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.85);
  cursor: pointer;

  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.overlay .modal {
  cursor: auto;
  position: absolute;
  z-index: 11;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 859px;
  max-height: 504px;
  background-color: #000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.overlay.shown {
  opacity: 1;
}

/* Smaller than standard 960 (devices and browsers) */

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	#menu {
		display:none; 
	}
	#wrapper {
		transform: scale(0.8);
	}
}


/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	#menu {
		display:none; 
	}
	#wrapper {
		transform: scale(0.5);
	}
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
	#menu {
		display:none; 
	}
	#wrapper {
		transform: scale(0.4);
	}
}

