html,body{
	height:100%;
	font-family:Arial;
	font-size:12px;
	background:#fafafa;
}

body,p,h1,h2,h3,h4,h5,h6,div{
	padding:0;
	margin:0;
}

p{
	line-height:1.4em;
	text-align:justify;
	margin:6px 0;
}
ol li{
	line-height:1.4em;
}

input,
textarea{
	border:1px solid #ddd;
	padding:6px;
	outline:none;
	border-radius:2px;
	font-family:Arial;
}
input{
	width:300px;
}
textarea{
	width:300px;
	height:100px;
	resize:none;
}
input:focus,
textarea:focus{
	border-color:#2196F3;
}
input[disabled],
textarea[disabled]{
	background:#fafafa;
}

a{
	color:#10709f;
	text-decoration:underline;
	cursor:pointer;
}
a:active{
	color:#FF5722;
}

button[type="submit"]{
	padding:6px 12px;
	background:#10709f;
	border:none;
	color:#fff;
	font-weight:bold;
	border-radius:2px;
	box-shadow:0 1px 2px #aaa;
	outline:none;
	cursor:pointer;
}
button[type="submit"]:active{
	background:#00507f;
}

button{
	padding:6px 12px;
	background:#fff;
	border:none;
	color:#888;
	font-weight:bold;
	border-radius:2px;
	box-shadow:0 1px 2px #aaa;
	outline:none;
	cursor:pointer;
}
button:active{
	background:#ddd;
}

h1{
	color:#10709f;
	font-size:18px;
	margin:12px 0;
	font-weight:500;
	border-bottom:1px solid #10709f;
	padding-bottom:12px;
}
h2{
	font-size:14px;
	margin:12px 0;
	display:flex;
	align-items:center;
}
h2 > span{
	flex:1;
}
h2 > button{
	margin-left:6px;
}

.info-warning{
	color:#f48836;
	background:rgb(255, 240, 205);
	padding:6px 12px;
	border-radius:2px;
}
.info-error{
	color:#f44336;
	background:rgba(255,205,210 ,1);
	padding:6px 12px;
	border-radius:2px;
}
.info-success{
	color:#4CAF50;
	background:rgba(200,230,201 ,1);
	padding:6px 12px;
	border-radius:2px;
}

#header{
	padding:24px 18px 48px 18px;
	box-shadow:0 1px 2px #aaa;
	background:#fff;
}
#header img{
	height:48px;
}
#header form{
	float:right;
}
#header form b{
	margin-right:12px;
}
#header form b[second]{
	margin-left:12px;
}
#header form div{
	margin:6px 0;
}
#header form div:first-child{
	margin-top:0px;
}

footer{
	padding:12px 0;
}
footer p{
	text-align:center;
	color:#a4a4a4;
}

#seite{
	max-width:1000px;
	margin:0 auto;
	padding:16px;
	display:flex;
}

nav{
	width:200px;
}

#content{
	flex:1;
}

.box{
	background:#fff;
	margin:12px 0;
	border-bottom:1px solid #aaa;
	box-shadow:0 1px 5px rgba(0,0,0,0.2);
	border-radius:2px;
	overflow:hidden;
}
.box h2{
	margin:0px;
	padding:12px;
	font-size:12px;
	box-shadow:0 1px 2px rgba(0,0,0,0.2);
}
.box table{
	border-spacing:0px;
	text-align:left;
	font-size:12px;
	width:100%;
}
.box table tr th{
	border-bottom:1px solid #ddd;
	padding:12px;
	color:#10709f;
}
.box table tr td{
	padding:4px 12px;
}
.box table tr:nth-child(odd) td{
	background:#f6f6f6;
}

.form{
	background:#fff;
	margin:12px 0;
	box-shadow:0 1px 2px #888;
	border-radius:2px;
	padding-bottom:6px;
}
.form > h2{
	padding:12px;
	font-size:12px;
	box-shadow:0 1px 2px rgba(0,0,0,0.2);
}
.form > p{
	margin:12px;
}
.form > div{
	margin:12px;
	display:flex;
	align-items:center;
}
.form > div > label{
	flex:1;
}
.form > div > label:not(:last-child){
	margin-right:12px;
}
.form > div > label > b{
	margin:2px 0;
	display:block;
}
.form > div > label > textarea,
.form > div > label > input{
	width:100%;
}
.form > div button{
	margin-right:12px;
}

.cours-list-item{
	margin:12px;
}
.cours-list-item h3{
	color:#10709f;
	font-weight:400;
	margin:6px 0;
}
.cours-list-item div{
	display:flex;
	justify-content:space-between;
}
.cours-list-item p a{
	display:inline-block;
	margin-right:12px;
}