
*{
	box-sizing: border-box;
}

html, body{
	font-family: sans-serif;
	padding: 0;
	margin: 0;
}

body{
	padding: 10px;
}

.header{
	background: #F6F6F6;
	border-bottom: 1px solid #CCC;
	padding: 5px 10px;
	margin: -10px -10px 10px -10px;
}
.header form{
	display: inline-block;
}
.header input{
	margin-left: 3px;
}
.headerRight{
	display: flex;
	justify-content: right;
}
.headerBoth{
	display: flex;
	justify-content: space-between;
}


main{
	padding: 40px;
	font-family: 'Source Sans', sans-serif;
	font-size: 24px;
	line-height: 1.3em;
}

.blau{
	color: #177ea9;
}
a{
	color: #888;
}
a:hover{
	color: #0f658a;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
}

h1{
	font-weight: 500;
	font-size: 3em;
	margin-bottom: .5em;
}
h2{

}
h3{
	font-weight: normal;
	color: #177ea9;
}

.flexBox{
	display: flex;
	gap: 10px;
}
.marginTop1{
	margin-top: 1em;
}
.marginBottom1{
	margin-bottom: 1em;
}
.marginTop2{
	margin-top: 2em;
}
.marginBottom2{
	margin-bottom: 2em;
}


table tr td:first-of-type{
	min-width: 200px;
}
td{
	padding: .2em 1em .2em 0;
}







.button{
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	background-color: #e5e5e5;
	color: #727272 !important;
	border: 1px solid #727272;
	border-radius: 5px;
}
.button:hover{
	background: #d6d6d6;
}
.buttonBig{
	width: 360px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.buttonBig b{
	display: block;
	font-size: 1.5em;
	line-height: 1.5em;
	color: #000 !important;
}













