* {
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 12pt;
}

body {
	text-align: center;
}

header {
	padding: 10px;
}

div {
	padding: 5px;
}

form {
	border: 1px solid gray;
	background-color: white;
	margin: 5px auto;
	padding: 5px;
}

fieldset {
	border: none;
}

legend {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

label {
	display: inline-block;
	width: 200px;
	text-align: right;
	margin-left: -200px;
}

table {
	/*width: 40%;*/
	margin: 10px;
	border-collapse: collapse;
	float: left;
}

th, td {
	border: 1px solid gray;
	padding: 5px;
	text-align: left;
}

thead {
	background-color: #CCC;
}

thead th {
	text-align: center;
}

td {
	background-color: white;
}

tr:hover > td {
	background-color: #DDD;
}

hr {
	border: 0px;
	height: 1px;
	visibility: hidden;
}

tr.highlight > td {
	/*background-color: #EEE*/
	/*background-color: gray;*/
	background-color: #FF3;
	/*color: white;*/
	/*border: 1px solid silver;*/
}

tr.highlight:hover > td {
	/*background-color: #CCC;*/
	/*background-color: silver;*/
	background-color: #DDD;
	/*border: 1px solid gray;*/
}

caption {
	caption-side: bottom;
}

input {
	margin: 3px;
	padding: 2px;
	width: 350px;
	box-sizing: border-box;
}

input[type=submit], input[type=reset] {
	margin: 6px 2px;
	width: 100px;
	box-sizing: content-box;
}

input[type=checkbox] {
	width: 20px;
	height: 20px;
	margin: 0px;
	padding: 0px;
	vertical-align: bottom;
}

.checkboxcontainer > label {
	margin: 5px 0px;
	width: 320px;
	text-align: left;
	padding-left: 20px;
	text-indent: -25px;
}

select {
	margin: 3px;
	padding: 2px;
	width: 350px;
	box-sizing: border-box;
}

option {
	font-family: monospace;
}

@media (max-width: 800px) {
	
label {
	/*display: inline-block;*/
	display: none;
	width: 100%;
	text-align: left;
	margin-left: 0px;
	margin-top: 2px;
}

.checkboxcontainer > label {
	display: inline-block;
}

input {
	margin: 3px 0px;
	padding: 2px;
	width: 100%;
	box-sizing: border-box;
}

select {
	margin: 3px 0px;
	padding: 2px;
	width: 100%;
	box-sizing: border-box;
}

input[type=submit], input[type=reset] {
	width: 80px;
	box-sizing: content-box;
}

.checkboxcontainer > label {
	margin: 5px 0px;
	width: 100%;
}
	
}

.clear {
	clear: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.w {
	width: 15%;
}

.space {
	display: inline-block;
	width: 20px;
}

.small {
	font-size: 80%;
}