* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

.banner {
	top: 0px;
	left: 0px;
	position: fixed;
	background-color: #333;/*#2c3e50;*/
	color: white;
	padding: 10px 10px;
	width: 100%;
	z-index: 1000;
}

.title-row {
	display: flex;
	/*align-items: center;
	justify-content: space-between;         */  
}

.home-link {
	color: #e1a500;
	text-decoration: none;
	font-size: 14px;
	height: 16px;	
}

.home-link:hover {
	text-decoration: underline;
}

.page-title {
	font-size: 24px;
	margin-top: 0px;
	margin-left: 20px
}

.container {
	display: flex;
	/*min-height: calc(100vh - 84px);*/
	margin-top: 84px
}

.menu {
	background-color: #404040;/*#34495e;*/
	padding: 20px;
	width: 200px;
	position: fixed;
	top: 84px;
	bottom: 0;
	overflow-y: auto;
}

.menu-button {
	display: none;
	background-color: transparent;
	z-index: 1000;            
	color: white;
	border: none;
	padding: 5px;
	cursor: pointer;
	font-size: large;
}

.menu a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 5px;
	margin-bottom: 5px;
	border-radius: 5px;
}

.menu a:hover {
	background-color: #575757;/*#2c3e50*/
}

.content {
	flex-grow: 1;
	padding: 20px;
	margin-left: 200px;
}

.section {
	margin-bottom: 40px;
}

.section h2 {
	color: #2c3e50;
	margin-bottom: 20px;
}

.section p {
	margin-bottom: 15px;
}

.list-items{
	margin-left:28px;
	margin-bottom: 10px;
}

.image-display{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
	margin-bottom: 20px
}

.inline-image {
	vertical-align: middle;
	height: 25px;
	width: 25px;
}

.inline-image-wide {
	vertical-align: middle;
	height: 25px;
	width: 135px;
}

hr {
	margin-bottom:20px
}

@media (max-width: 1000px) {
	.menu {
		position: fixed;
		left: -200px;
		height: 100%;
		transition: left 0.3s ease;
	}

	.menu.active {
		left: 0;
	}

	.menu-button {
		display: block;
	}

	.content {
		margin-left: 0px;
	}
}