

@media screen and (max-width:739px){
	nav.menuStart {margin-left: -103%;}
	div.kontStart {margin-top : -100%;}

	nav#pc{
		z-index:8;
		position: fixed; top:0;
		white-space:nowrap; height: calc(100% - 2em);
		overflow: auto;
		margin-top:2em; /* margin-left ist bei nav.menuStart def. */
		padding: 0 0 0 10px;
		border-right: 1px solid;
		background-color: var(--fMenuBg);
		font-size: 1.2em;
		-webkit-overflow-scrolling: touch;
	}
	nav#pc li {margin-bottom:0.5em;}
	nav#pc li#zuhause {display:none;}
	nav#pc ul#menu {
		list-style: none;
		padding:0 10px 0 0;
	}
	nav#pc ul#menu ul {
		list-style: none;
		padding-left: 35px;
	}

	div#hfsKontakt{
		z-index: 8;
		position:fixed;
		top: 2.35em; right: 0;
		margin-right: -2%;
		padding: 0 4% 10px 2%;
		white-space:nowrap;
		background-color: white;
		font-family: var(--sMenue);
		border-left: 1px solid;
	}
	div#hfsKontakt p {margin:10px 0 0 0;}

	/* linkes Menue */
		/* -webkit oder @-webkit: fur Chrome, Safari, Opera */
	.anim {
		margin-left: 0;
		-webkit-animation-name: slideRechts;
		-webkit-animation-duration: 0.25s
		animation-name: slideRechts;
		animation-duration: 0.25s
	}
	.deanim {
		margin-left: -900px;
		-webkit-animation-name: slideLinks;
		-webkit-animation-duration: 0.25s
		animation-name: slideLinks;
		animation-duration: 0.25s
	}

	@-webkit-keyframes slideRechts {
		from {margin-left: -900px} to {margin-left: 0}
	}
	@keyframes slideRechts { /* Standard syntax */
		from {margin-left: -900px} to {margin-left: 0}
	}

	@-webkit-keyframes slideLinks {
		from {margin-left: 0} to {margin-left: -900px}
	}
	@keyframes slideLinks { /* Standard syntax */
		from {margin-left: 0} to {margin-left: -900px}
	}

	/* rechte Kontaktbox */
	.kanim {
		margin-top: 0;
		-webkit-animation-name: slideUnten;
		-webkit-animation-duration: 0.25s
		animation-name: slideUnten;
		animation-duration: 0.25s
	}

	.kdeanim {
		margin-top: -10em;
		-webkit-animation-name: slideOben;
		-webkit-animation-duration: 0.25s
		animation-name: slideOben;
		animation-duration: 0.25s
	}

	@-webkit-keyframes slideUnten {
		from {margin-top: -10em} to {margin-top: 0}
	}
	@keyframes slideUnten { /* Standard syntax */
		from {margin-top: -10em} to {margin-top: 0}
	}

	@-webkit-keyframes slideOben {
		from {margin-top: 0} to {margin-top: -10em}
	}
	@keyframes slideOben { /* Standard syntax */
		from {margin-top: 0} to {margin-top: -10em}
	}
}


