.topnav {
	overflow: hidden;
	background-color: rgba(61, 61, 61, 1.0); /*#3d3d3d; https://www.rapidtables.com/convert/color/hex-to-rgb.html?hex=3d3d3d*/ 
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0 !important;
	padding:0;
	max-width: 1020px;
	position: sticky;
	top: 0; 
	
}
.topnav_links {
	margin-bottom: 0 !important;
}

.topnav a {
	float: left;
	display: block;
	color: #fff;
	text-align: center;
	padding: 12px 14px; /*14px 16px;*/
	text-decoration: none;
	font-size: 16px;
}

.topnav a:hover {
	background-color: #ddd;
	color: black;
}

.topnav a.active {
	background-color: #DE6A0D;
	color: white;
}

.topnav .icon {
	display: none;
}


@media screen and (max-width: 600px) {
	/*
	.topnav a:not(:first-child) {
		display: none;
	}
	*/
	.topnav a:not(.active) {
		display: none;
	}
	.topnav a.icon {
		float: right;
		display: block;
	}
	.topnav.responsive {
		/*position: relative;*/
	}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
	/*
	.topnav {
		max-height: 50px;
	}
	*/
	
	
}

