

/* General Navigation */

.topnav {
	position: relative;
	width: 100%;
	background-color: #c0b8bc;
	overflow: hidden;
}



.topnav a {
	display:inline-block;
	color: rgba(var(--nav-color-light), var(--alpha-90));
	text-align: center;
	margin: 8px -0px 8px 0px;
	padding: 8px 12px;
	text-decoration: none;
	font-size: 1.0em;
	border: 1px solid rgba(var(--nav-color-dark), var(--alpha-00));
	border-radius: 4px;
  	transition: 0.3s;
}



.topnav a:hover {
	background: rgba(var(--nav-color-dark), var(--alpha-10));
	border: 1px solid rgba(var(--nav-color-light), var(--alpha-00));
	color: rgba(var(--nav-color-dark), var(--alpha-1));
	text-decoration: none;
  	transition: 0.1s;
	text-shadow: 0px 0px 5px rgba(027, 027, 027, .5);
}



.topnav a.active {
	background: rgba(var(--nav-color-dark), var(--alpha-05));
	border: 1px solid rgba(var(--nav-color-dark), var(--alpha-20));
	color: rgba(var(--nav-color-dark), var(--alpha-1));
	text-decoration: none;
  	transition: 0.1s;
	text-shadow: 0px 0px 5px rgba(027, 027, 027, .5);
	box-shadow: inset 0 0 10px rgba(var(--nav-color-dark), var(--alpha-10));
}



/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}


/* 9abacb  Historynav */



/* History Secondary Navigation */

.Historynav {
	position: absolute;
	width: 100%;
	background-color: #9abacb;
	overflow: hidden;
	float: right;
}



.Historynav a {
	display:inline-block;
	color: rgba(var(--nav-color-dark), var(--alpha-90));
	text-align: center;
	margin: 8px 0px 8px 4px;
	padding: 8px 12px;
	text-decoration: none;
	font-size: 17px;
	border: 1px solid rgba(var(--nav-color-dark), var(--alpha-00));
	border-radius: 4px;
  	transition: 0.5s;
}



.Historynav a:hover {
	background-color: #9abacb;
	background: rgba(var(--nav-color-dark), var(--alpha-10));
	border: 1px solid rgba(var(--nav-color-dark), var(--alpha-00));
	color: rgba(var(--nav-color-dark), var(--alpha-1));
	text-decoration: none;
  	transition: 0.1s;
}



.Historynav a.active {
	background: rgba(var(--nav-color-dark), var(--alpha-10));
	border: 1px solid rgba(var(--nav-color-dark), var(--alpha-20));
	color: rgba(var(--nav-color-dark), var(--alpha-1));
	text-decoration: none;
  	transition: 0.1s;
	text-shadow: 0px 0px 5px rgba(027, 027, 027, .5);
	box-shadow: inset 0 0 10px rgba(var(--nav-color-dark), var(--alpha-05));
}



/* Hide the link that should open and close the topnav on small screens */
.Historynav .icon {
  display: none;
}









/* When the screen is less than 1200 pixels wide, hide all links. 
Show the link that contains should open and close the topnav (.icon) */

@media screen and (max-width: 1200px) {
  .topnav a {
	display: none;
	}

  .topnav a.icon {
    float: right;
    display: block;
	}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */

@media screen and (max-width: 1200px) {
	.topnav.responsive {
  		position: absolute;
		text-align: left;
  		}
	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
  		}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
		}
}







/* When the screen is less than 1200 pixels wide, hide all links. 
Show the link that contains should open and close the topnav (.icon) */

@media screen and (max-width: 1200px) {
  .Historynav a {
  	display: none;
 	}

  .Historynav a.icon {
    float: right;
    display: block;
	}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. 
This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */

@media screen and (max-width: 1200px) {
	.Historynav.responsive2 {
		position: relative;
		}
	.Historynav.responsive2 a.icon {
		position: absolute;
		right: 0;
		top: 0;
  		}
	.Historynav.responsive2 a {
		float: none;
		display: block;
		text-align: left;
		}
}

:not(:first-child)