body {
	margin: 0;
}
#nelson {
	width: 100vw;
	height: 100vh;
	position: relative;
	cursor: pointer;
}
.errorbox {
	border: 5px solid black;
    padding: 5px;
    font-size: 18pt;
    background: lightcoral;
    width: 220px;
    color: yellow;
    text-align: center;
}
.centered {
	position: absolute;
	top: 42%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}
.hidden {
	display: none;
}
.novis {
	visibility: hidden;
}
#all {
	position: relative;
	width: 100vw;
	height: 100vh;
}
#timeline-div {
	height: 20px;
}
#imagery {
  position: relative;
  touch-action: pinch-zoom;
  width: calc(100% - 204px);
  display: inline-block;
  vertical-align: top;
}
video {
   position: absolute;
   left: 0px;
   top: 0px;
}
#overlay {
   position: absolute;
   left: 0px;
   top: 0px;
}
.spinwrapper {
	position: relative;
	top: 50%;
}
.spinner {
	position: relative;
    margin: auto;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
	top: -60px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#eventTable {
    position: relative;
    width: 200px;
    display: inline-block;
    vertical-align: top;
}
#times {
    height: calc(100% - 37px);
    overflow: auto;
    padding-inline-start: 0px;
}
.event-time {
    cursor: pointer;
    list-style-type: none;
    font-weight: bold;
}
.event-time.selected {
    font-style: italic;
}
.events-at-time {
    padding-inline-start: 20px;
}
.event-item {
    cursor: pointer;
    list-style-type: none;
    font-weight: normal;
    font-style: normal;
}
.event-item.selected {
    font-weight: bold;
}
.event-item.copyGlyph {
    list-style-type: disc;
}
