html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.5;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child {
	margin: 0;
}

#grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(1px, 1fr));
	min-height: 100%;
}

	#content {
		padding: 2.5rem;
	}

		#content header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 3rem;
		}

			#content header img {
				height: 44px;
			}

			#content header nav {
				border: 2px solid rgba(0,0,0,0.2);
				border-radius: 4px;
				display: flex;
			}

			#content header nav a:link, #content header nav a:visited {
				text-decoration: none;
				color: #000;
				font-weight: bold;
				padding: 0.5rem 1rem;
				border-right: 1px solid #ccc;
			}

			#content header nav a:hover, #content header nav a:active {
				background-color: #f4f4f4;
			}

			#content header nav a:last-child {
				border-right: none;
			}

	#map {
		height: 100%;
		width: 100%;
		border-left: 2px solid rgba(0,0,0,0.2);
	}

		.myDivIcon {
			text-align: center;
			color: #c90000;
		}