/* <-- style.css --> */
body {
	background-color: #f5f7fa;
	color: #000000;
}

.colbgdark {
	background-color: #0f9be1;
}

.colbgmedium {
	background-color: #e2ebf2;
}

.colbglight {
	/* background-color: #dfdfdf; */
	background-color: #dddddd;
}

.colbgsun {
	background-color: #ffffff;
}

.tlink {
	text-decoration-line: line-through;
}

a {
	font-size: 20px;
}

p {
	font-size: 20px;
}

#myBtn {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
	font-size: 18px;
	border: solid;
	outline: none;
	background-color: yellow;
	color: blue;
	cursor: pointer;
	padding: 10px;
	border-radius: 20px 20px 20px 20px;
	border-color: #000000;
	border-width: 3px;
}

#myBtn:hover {
	background-color: blue;
}

ul {
	list-style-type: none;
}

#suche {
	border: 2px solid #999;
	border-radius: 0.5em;
	height: 80%;
	font-size: 0.8em;
	width: 5em;
	transition: width 0.5s ease-in-out;
}

#suche:focus {
	font-size: 1em;
	width: 50%;
}

.fixed {
	position: fixed;
	width: 100%;
	z-index: 99;
}

.center {
	left: 300px;
}

	details {
		display: inline-block;
		position: relative;
	}

	details>summary {
		cursor: pointer;
	}

	details>ul {
		display: none;
		position: absolute;
		background: yellow;
		border: 3px solid black;
	}

	details[open]>ul {
		display: block;
	}


	linkcol {
		color: #0000ff;
	}
/* <-- style.css --> */