@media screen and (max-width: 760px) {
	.navibar {
		display: none;
	}


}

@media screen and (min-width: 761px) {
	.topnav {
		display: none;
	}


}


.navibar {
	background: #f5f5f5;
	border-bottom: 4px solid #eee;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	text-align: center;
	z-index: 9998;
}

.navibar a {
	display: inline-block;
	float: none;
	width: 170px;
	margin-right: 3px;
	margin-left: 3px;
	padding: 8px;

	color: rgb(0, 0, 0);
	text-decoration: none;
	font-family: Segoe UI Light;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 800;
	text-shadow: 1px 1px #fff;

}

.navibar a:hover {

	color: rgb(116, 116, 116);
}


/* Style the navigation menu */
.topnav {
	z-index: 9998;
	position: fixed;
	top: 0;
	width: 100%;
	border-bottom: 2px solid rgb(148, 148, 148);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	background-color: #f5f5f5;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
	display: none;
}

/* Style navigation menu links */
.topnav a {
	color: rgb(0, 0, 0);
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	display: block;
	text-transform: uppercase;
}

/* Style the hamburger menu */
.topnav a.icon {
	background: rgb(100, 99, 99);
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
	background-color: #ddd;
	color: black;
}

/* Style the active link (or home/logo) */
.active {
	background-color:  #f5f5f5;
	color: white;
}


/* ------------------------------------
		navi oben fixiren
  ----------------------------------- */


.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	border-bottom: 1px solid rgb(0, 0, 0);
	box-shadow: 0px 1px 15px #000;
}


.sticky+.content {
	padding-top: 60px;
}