/*
QMD
*/
			* {
				box-sizing: border-box;
			}
			body {
				/*background-color: #164C64;*/
				/*background-color: #0A558E;*/
				background-color: #355763;
				color: white;
				font-family: Arial;
				font-size: 14px;
				overflow-y: scroll;
			}
			#Ueberschrift {
				margin-left: 40px;
				font-family: Arial;
				font-size: 40px;				
			}
			#calender {
				background-color: white;
				color: black;
				margin-top: 40px;
				margin-left: 40px;
				margin-bottom: 40px;
				padding: 10px;
				width: 60%;
				min-width: 850px;
				border-radius: 2px;
				float: left;
				
			}
			#navigation {
				background-color: white;
				color: black;
				margin-top: 40px;
				margin-left: 40px;
				padding: 10px;
				width: 30%;
				min-width: 250px;		
				border-radius: 2px;
				float: left;
				
			}
			.question ul.tags {
				list-style: none;
				padding: 5px;
				margin: 5px;
			}
			.question ul.tags li {
				/*display: inline;*/
				display: block;
				background: #5D5F5E;
				color: white;
				padding: 5px 10px;
				border-radius: 5px;
				width: 220px;
				text-align: left;
			}
			.question ul.tags-arrow {
				list-style: none;
				padding: 5px;
				margin: 5px;
			}
			.question ul.tags-arrow li {
				/*display: inline;*/
				display: block;
				background: #5D5F5E;
				color: white;
				padding: 5px 10px;
				border-radius: 5px;
				width: 60px;
				text-align: center;
			}
			p.liketab200 {
				display: inline-block;
				width: 200px;
				margin:1px;
			}
			a {
				text-decoration: none;
				color:black;
			}
			td.reservationform {
				font-family: Arial;
				font-size: 12px;					
				text-align:left;
				border: 0px;
				padding-right: 25px;
			}
			td {
				text-align:center;
				border: 1px solid gray;
			}
			td.wochentag {
				width:14%;
			}
			td.wochenendtag {
				width:15%;
			}
			div.reservation {
				text-align:left;
				background-color:#FFC1C1;
				font: 10px Verdana,sans-serif;
				padding-left: 8px;
			}
			div.calendarday {			
				text-align:right;
				font-size: 14px;
				font-weight: bold;
			}
			div.monthbar {
				text-align:center;
				font-size:28px;
				/*color:gray;*/
				color:black;
				padding-bottom:15px;
			}
			div.loginmaske {
				background: darkblue;
				border: 1px solid #ffffff;
				position: absolute;
				width: 400px;
				height: 300px;
				top: 50%;
				left: 50%;
				margin-top: -150px;
				margin-left: -200px;
			}			
			input.submitlable {
				background: #5D5F5E;
				color: white;
				padding: 5px 10px;
				border-radius: 5px;
				width: 220px;
				font-family: Arial;
				font-size: 14px;
				text-align: center;
			}

			#edit_search, #myInputErfasser {
				background-image: url('symbole/searchicon20-20.png');
				background-position: 10px 10px;
				background-repeat: no-repeat;
				width: 50%;
				min-width: 220px;
				font-size: 14px;
				padding: 12px 20px 12px 40px;
				border: 1px solid #ddd;
				margin-bottom: 1px;
			}
			#edit_inputfield {
				/*background-image: url('symbole/searchicon20-20.png');*/
				/*background-position: 5px 5px;*/
				/*background-repeat: no-repeat;*/
				width: 50%;
				font-size: 14px;
				padding: 12px 20px 12px 20px;
				border: 1px solid #ddd;
				margin-bottom: 1px;
			}

			#switchon {
				background: url('symbole/on.png');
			}
			#switchoff {
				background-image: url('symbole/off.png');
			}
			div.example {
			  display: block;
			  -moz-box-sizing: border-box;
			  box-sizing: border-box;
			  background: url('symbole/schloss-offen.png') no-repeat;
			  width: 50px; /* Width of new image */
			}		
			div.example {
				background-image: url('symbole/schloss-offen.png');
				background-color:orange;
				background-size: 50px;
				width:50px;
			}
			
/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
	border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}			

			