/* konform zu CSS3 - copyright 2016 Gerrit Hecht, Gerrit@Squap.de, Squap.de - alle Rechte vorbehalten - erstellt am: 25. Februar 2016 */


	html {
		height: 100%;
	}
	body {
		height: calc(100% - 2em);
	}

	/* Kopf */
	#kopf {
		height: 2.5em;
	}

	/* Fuß */
	#fuss {
		position: relative;
		bottom: 0;
	}

	/* Menü */
	#menue > ul {
		margin-top: 17px;
	}

	/* Inhalt */
	#inhalt {
		position: relative;
		text-align: center;
		height: calc(100% - 6.8em);
		vertical-align: middle;
		margin: 1em 0;
	}
	#inhalt a {
		display: block;
		position: relative;
		top: calc(50% - 3em);
		margin-top: 0;
		padding: 0.67em;
	}
	#inhalt img {
		height: 4.67em;
		transition: opacity 0.1s ease-in;
		-webkit-transition: opacity 0.1s ease-in;
	}

	#inhalt a:hover img {
		opacity: 0.6;
		filter: alpha(opacity = 60);
	}
