#maps, #tables, #charts, #menuMaps, #menuTables, #menuCharts {
	display: none;
}
#maps {
	display: block;
}
#menuMaps {
	display: inline-block;
}

#menu {
	z-index: 2;
	position: relative;
	height: 1.5rem;
	overflow: visible;
}
details {
	max-width: 60ch;
	display: inline-block;
	vertical-align: top;
	border: 1px solid black;
	background: #EEE;
	
}
summary {
	background: white;
	padding: 2px 0.5rem 2px 0;
}
details > div {
	padding: 0.5rem 0.5rem;
}
details ul {
	list-style-type: none;
	padding: 0;
}
.chart-options {
	display: none;
}
.lat, .lng {
	width: 6rem;
}
input[name=chart][value=line]:checked ~ #chart-line-options {
	display: block;
}
input[name=chart][value=bubble]:checked ~ #chart-bubble-options {
	display: block;
}
input[name=chart][value=donut]:checked ~ #chart-donut-options {
	display: block;
}
input[name=chart][value=radar]:checked ~ #chart-radar-options {
	display: block;
}


html {
	padding: 0;
	margin: 0;
  overflow-y: hidden;
}
table {
	max-width: 100%;
	border-collapse: collapse;
	max-height: calc(100vh - 3.5rem);
	overflow: auto;
	display: inline-block;
	background: #88F;

}
thead {
	background:rgba(128,128,255,0.67);
	border-bottom: 1px solid black;
	position: sticky;
	top: 0;

}
tbody {
	
}
tr {
	border-right: 1px solid #888;
  white-space: nowrap;
}
th {
	cursor: pointer;
}
td, th {
	border-left: 1px solid black;
	padding: 2px 4px;
	max-width: 8rem;
	overflow:clip;
	
}
td {
	text-align: right;
}
td:nth-child(1), td:nth-child(2) {
	text-align: left;
}
tbody tr:nth-child(2n-1) {
	background: #EEE;
}
tbody tr:nth-child(2n-2) {
	background: #DDD;
}
tbody td.secondary {
	border-left: 1px dotted gray;
}


#myChart {
	max-width: min(80rem,90vw);
	max-height: min(80rem,90vh);
}
#mapSVG {
	width: min(216vh,96vw);
	height: min(90vh,40vw);
  
}
#topMap {
  mix-blend-mode:darken;
  
}