/* 
   v2.0 | 20140824
   developed by: Ruben Rohaan
*/

/* CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body, html{
	height: 100%;
	outline: none;
	overflow: hidden;
}

/* Preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#15191f; /* change if the mask should have another color then white */
	z-index:99; /* makes sure it stays on top */
}

#status {
	width:200px;
	height:200px;
	position:absolute;
	left:50%; /* centers the loading animation horizontally one the screen */
	top:50%; /* centers the loading animation vertically one the screen */
	background-image:url(../img/status.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}
/* end preloader */

/* position */
#content{
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
}

div#content div{
	float: left;
}

div#content #menu{
	width: 250px;
	height: 100%;
	padding: 0px;
	background-color: #313131
}

div#content #wrapper{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	-webkit-box-shadow: -10px 0px 10px 0px rgba(30, 30, 30, 0.90);
	-moz-box-shadow:    -10px 0px 10px 0px rgba(30, 30, 30, 0.90);
	box-shadow:         -10px 0px 10px 0px rgba(30, 30, 30, 0.90);
	transition: all 700ms ease-in-out;
}

div#wrapper #topbar{
	position: absolute;
	width: 100%;
	height: 50px;
	background-color: #313131;
}
div#wrapper #kaart{
	position: absolute;
	width: 1850px;
	top: 50px;
}

#menutoggle:hover{
	cursor: pointer; 
}
.open_menu{
	width: 30px;
	height: 30px;
	background-image: url("../img/menu.png");
	background-repeat: no-repeat;
	background-size: 30px;
    background-position: 10px 10px;
	padding: 10px 15px;
	float: left;
}
.close_menu{
	width: 30px;
	height: 30px;
	background-image: url("../img/close.png");
	background-repeat: no-repeat;
	background-size: 30px;
    background-position: 10px 10px;
	padding: 10px 15px;
	float: left;
}
/* images */
img#draggable{
	position: fixed;
	width: 540px;
	top: 150px;
	left: 325px;
	border: 2px groove #949494;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background: rgba(187,187,187, 0.6);
}
img#draggable:hover{
	cursor: move;
}

/* Fonts */
h1{
	font-family: calibri;
	font-size: 24px;
	color: #ffffff;
	float:left;
	margin: 13px 0px;
	padding: 0px;

}
h3{
	font-family: calibri;
	font-size: 20px;
	color: #ffffff;
	margin: 0px;
	padding: 5px 25px 5px 25px;
	border-top: 1px solid #505050;
}
h4{
	font-family: calibri;
	font-size: 16px;
	color: #f2f2f2;
	margin: 0px 25px 5px 25px;
	padding: 0;
}
p#small{
	position: absolute;
	font-family: calibri;
	font-size: 12px;
	color: #f2f2f2;
	left: 5px;
	bottom: 0px;
}
/* button input */
input[type='button']{
	margin-top: 5px;
	padding: 5px;
	width: 200px;
	font-family: Helvetica, sans-serif;
	font-size: 18px;
	border: 2px solid #ccc;
}
/* slider input */
input[type='range'] {
	-webkit-appearance: none;
	width: 200px;
	border-radius: 5px;
	box-shadow: inset 0 0 5px #333;
	background-color: #999;
	height: 10px;
	vertical-align: middle;
}
input[type='range']::-moz-range-track {
	-moz-appearance: none;
	border-radius: 5px;
	box-shadow: inset 0 0 5px #333;
	background-color: #999;
	height: 10px;
}
input[type='range']::-webkit-slider-thumb {
	-webkit-appearance: none !important;
	border-radius: 20px;
	background-color: #FFF;
	box-shadow:inset 0 0 10px rgba(000,000,000,0.5);
	border: 1px solid #999;
	height: 20px;
	width: 20px;
}
input[type='range']::-moz-range-thumb {
	-moz-appearance: none;
	border-radius: 20px;
	background-color: #FFF;
	box-shadow:inset 0 0 10px rgba(000,000,000,0.5);
	border: 1px solid #999;
	height: 20px;
	width: 20px;
}