#engid{
	font-weight: bold;
	font-size: 15pt;
	text-decoration: none;
}
.active{
	background-color: darkblue;
	color: white;
}
.topnav{
	overflow: hidden;
	background-color: transparent;
}
.topnav a{
	overflow: hidden;
	float: left;
	position: relative;
	font-size: 16pt;
	font-weight: bold;
	padding: 10px 12px;
	outline: none;
	text-decoration: none;
}
.topnav a:hover{color: black;outline-style: dashed;}
.icon{display: none;}
@media screen and (max-width: 600px){
	.topnav a:not(:first-child){
		display: none;
	}
	.topnav a.icon{
		display: block;
		float: right;
	}
}
@media screen and (max-width: 600px){
	.topnav.responsive{
		position: relative;
	}
	.topnav.responsive a.icon{
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a{
		float: none;
		display: block;
		text-align: left;
	}
}
/*sidenav*/
.sidenav {
  width: 100%;
  background-color: white;
  overflow-x: hidden;
  padding-top: 12px;
}
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 8pt;
  display: block;
}

.sidenav a:hover {
  color: black;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
/*sidebar scrolling*/
#mySidenav {
	height: 200px;
    overflow-y: scroll;
}
/*text on image*/
.centered{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}