body {
	font-family: 'Open Sans', sans-serif;
	color: #454545;
	font-size: 1.5em;
}

@media (orientation:landscape) {
	#main {
		position: relative;
		width: 100%;
		max-width: 66%;
		min-height: 96vh;
		margin: 0 auto;
	}

	h1 {
		display: table-cell;
		font-weight: lighter;
		font-size: 180%;
	}

	#tagsComboBoxDiv {
		display: table-cell;
		text-align: right;
		transition: opacity 0.5s 1s ease-in-out;
	}
}

@media (orientation:portrait) {
	#main {
		position: relative;
		width: 100%;
		min-height: 96vh;
		margin: 0 auto;
	}

	h1 {
		display: table-cell;
		font-weight: lighter;
		font-size: 120%;
		padding-bottom: 32px;
	}

	#tagsComboBoxDiv {
		display: table-cell;
		text-align: right;
		transition: opacity 0.5s 1s ease-in-out;
		font-size: 80%;
	}

	#sunPhase {
		font-size: 80%;
	}
}

a {
	color: #4f8a4a;
}

select {
	font-family: inherit;
	font-size: 80%;
	color: #454545;
	background-color: white;
	border: transparent 0;
}

#headerDiv {
	display: table;
	width: 100%;
}

#mainContent {
	position: relative;
	width: 100%;
	height: 100%;
}

#map {
	position: relative;
}

#thumbnailCanvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

#mapImg {
	width: 100%;
	transition: opacity 0.5s ease-in-out;
}

#mapPoints {
	transition: opacity 0.5s ease-in-out;
}

/*Note: if re-using map.js for a site without the separate intro.js code, you'll
  need to have some code that sets mapImg and mapPoints' opacity to 1 when the
  page loads.
  e.g.:
	let blendElements = document.getElementsByClassName('blendInAfterIntro');

	for(let element of blendElements) {
		element.style.opacity = 1;
	}
*/
.blendInAfterIntro {
	opacity: 0;
}

#revealCanvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#blurReveal1 {
	display: none;
}

#blurReveal2 {
	display: none;
}

#introDiv {
	display: table;
	position:absolute;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
	transition: opacity 2s ease-in-out;
}

#introText {
	font-size: 90%;
	font-style: italic;
}

#introLinkDiv {
	display: table-cell;
	vertical-align: middle;
}

#introLink {
	border: 0 transparent;
	background-color: transparent;
	cursor: pointer;
	color: #4f8a4a;
	text-decoration: underline;
	font-weight: lighter;
	font-size: 175%;
}

#introSkip {
	display: none;
	vertical-align: middle;
	margin: 0 auto;
}

#introSkipButton {
	font-size: 90%;
	margin: 0;
	padding: 0;
	border: 0 transparent;
	background-color: transparent;
	cursor: pointer;
	color: #4f8a4a;
	text-decoration: underline;
}

.pointDiv {
	position: absolute;
	transform: translate(-50%, -50%);
}

.pointButton {
	display: table;
	margin: 0;
	padding: 0;
	border: 0 transparent;
	background-color: transparent;
	cursor: pointer;
}

.pointImg {
	display: table-cell;
	vertical-align: middle;
	margin-left: 0;
	margin-bottom: 0;
	transition: width 0.15s ease-in-out, height 0.15s ease-in-out, margin-left 0.15s ease-in-out, margin-bottom 0.15s ease-in-out, transform 0.15s ease-in-out;
	text-align: center;
}

	.pointImg:hover {
		width: 125%;
		height: 125%;
		margin-left: -10%;
		margin-bottom: -10%;
	}

#editorButton {
	position: absolute;
	top: 32px;
	right: 32px;
	display: none;
}

#pointEditor {
	position: fixed;
	top: 100px;
	width: 400px;
	margin: 0 auto;
	background-color: white;
	text-align: center;
	display: none;
}

#editorControls {
	display: none;
}

.pointPane {
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	margin: 0;
	padding: 0;
}

.pointRow {
	display: table-row;
	position: relative;
	width: 100%;
	height: 24px;
}

.pointRow2 {
	display: table-row;
	position: relative;
	width: 100%;
	height: calc(100% - 24px);
}

.pointFrame {
	display: table-cell;
	position: absolute;
	top: 0;
	left: 0;
	width: 90%;
	height: 100%;
	border-style: none;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	margin-left: 4%;
	margin-right: 4%;
}

#closePointPane {
	display: table-cell;
	position: relative;
	width: 33%;
	vertical-align: top;
	text-align: left;
	margin: 0;
	padding: 0;
	border: 0 transparent;
	background-color: transparent;
	cursor: pointer;
	font-weight: bolder;
	font-size: 100%;
	color: #808080;
	transition: color 0.15s;
}

	#closePointPane:hover {
		color: #454545;
	}

#wormholeButton {
	width: 33%;
	vertical-align: middle;
	text-align: center;
	border: none;
	background: none;
	cursor: pointer;
}

#dummyCell {
	width: 33%;
}

#sunPhase {
	position: relative;
	font-style: italic;
	transition: opacity 0.5s 2s ease-in-out;
}