@charset "UTF-8";
/* CSS Document */

.test {
	background: black;
	color: white;
}
div.kmsticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
/* Navbar container */
.kmnavbar {
	overflow: hidden;
	font-family: Arial;
	width: 240px;
	margin: 0px auto;
}
/* Links inside the navbar */
.kmnavbar a {
	float: left;
	font-size: 16px;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}
/* The dropdown container */
.kmdropdown {
	float: left;
	overflow: hidden;
	text-align: center;
}
/* Dropdown button */
.kmdropdown .kmdropbtn {
	font-size: 16px;
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	background: rgba(56,56,56,0.5);
	width: 240px;
}
/* Add a red background color to navbar links on hover */
.kmnavbar a:hover, .kmdropdown:hover .kmdropbtn {
	background-color: #79a0d2;
}
/* Dropdown content (hidden by default) */
.kmdropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 400px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	margin: 0 0 0 -100px;
	font-size: 10px;
	height: 200px;
	overflow-y: scroll;
}
/* Links inside the dropdown */
.kmdropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: center;
	font-size: 10pt;
}
/* Add a grey background color to dropdown links on hover */
.kmdropdown-content a:hover {
	background-color: #ddd;
}
/* Show the dropdown menu on hover */
.kmdropdown:hover .kmdropdown-content {
	display: block;
}

.kmButton button {
  margin: 0 auto;
  font-size: 10pt;
  padding: 5px 8px;
  display: block;
  background-color: #79a0d2;
  border: 1px solid transparent;
  color: #ffffff;
  font-weight: 400;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.kmButton button:hover {
  background-color: #ffffff;
  color: #79a0d2;
  border-color: #79a0d2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a.kmanchor {
    display: block;
    position: relative;
    top: -180px;
    visibility: hidden;
}


