/* Styleheet: KIS - KundenInformationsSystem
Version: 1 */

	input[type=text],
	select {
		width: 100%;
		padding: 12px 20px;
		margin: 8px 0;
		display: inline-block;
		border: 1px solid #ccc;
		border-radius: 0.2em;
		box-sizing: border-box;
	}

	input[type=submit] {
		width: 100%;
		background-color: #209e91;
		color: white;
		padding: 14px 20px;
		margin: 8px 0;
		border: none;
		border-radius: 0.2em;
		cursor: pointer;
		font-weight: bold;
	}

	input[type=submit]:hover {
		background-color: #209e91;
	}
	
	body {
		max-width: 640px;
		margin: auto;
	}

	div {
		font-family: Arial, sans-serif;
		font-size: 0.8em;
		border-radius: 5px;
		background-color: #f2f2f2;
		padding: 15px;
	}
	
	.maintenance {
		background-color: #f080805c;
	}
	
	.response {
		font-family: Courier New;
		font-size: 1em;
		word-break: break-all;
		padding: 0px 10px;
	}
	
	.searchResult {
		font-family: Courier New;
		font-size: 1em;
	}
	
	.footer {
		margin-top: 15px;
		font-size: 0.7em;
		color: #a9a9a9;
		text-align: center;
		padding: 0px;
	}
	
	strong {
		font-weight: bold;
	}
	
	.green {
		color: #209e91;
	}
	
	.orange {
		color: #ff8c00;
	}
	
	.red {
		color: #dc143c;
	}