body,html{
	margin:0;padding:0;font-family: 'Roboto', sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
   background-color: black;
}

*, *:before, *:after {
	padding:0;margin:0;
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



html, body{
    height: 100%;
    width: 100vw;
}

header{
	height:60px;
	width:100vw;
	padding:0px 0px 0px 13px;
	background-color: #111;
	border-bottom: 1px dotted rgb(255 255 255 / 49%);
}

main{
	height:calc(100% - 60px);
	width:100vw;
	position: relative;
   z-index: 0;
}

#locate{
	    position: relative;
    z-index: 500;
    display: inline-block;
    float: right;
    background-image: url(images/crosshairs.svg);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    width: 48px;
    height: 48px;
 
}
    

#nav_toggle{
	display:none;
    float: right;
    background-image: url(images/menu.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
    width: 40px;
    height: 60px;
    margin-left: 5px;
}
#nav_toggle.active{	
    background-image: url(images/close.svg);
}

.night-mode #nav_toggle{
    background-image: url(images/menu-night.svg);
}
.night-mode #nav_toggle.active{	
    background-image: url(images/close-night.svg);
}

 #map_div {
    height:100%;
    width: 100vw;
    background-color: black;
}

.title{
	font-family: "Roboto";
    font-weight: 100;
    color: white;
    font-size: 27px;
    display: inline-block;
    padding-top: 16px;
    letter-spacing: 1px;
}

.night-mode header{
	background-color: #000;
	border-bottom: 1px dotted #d11;
}

.night-mode .title{
		color: #d11;
}

#main_nav{
    z-index: 5;
    position: absolute;
    top: 60px;
    right:0px;
    width:100%;
    background-color: #111;
    display:none;
}
#main_nav.active{
	display:block;
}
#main_nav a{
	width:100%;
	display:inline-block;
	height:auto;
	color:#fff;
	text-decoration:none;
	padding:15px;
	text-align:right;
	font-size:17px;
	font-weight:100;
	border-bottom: 1px dotted rgb(255 255 255 / 10%);
}


.night-mode #main_nav{	
    background-color: #000;
    color:rgb(221 34 34);
}
.night-mode #main_nav a{
	color: #d11;
   border-bottom: 1px dotted rgb(221 34 34 / 40%);
}

.scroller{
	clear: both;
    height: 400px;
    overflow-y: scroll;
    margin-bottom: -40px;
}


.tab{
	clear: both;
    padding-top: 15px;
}
.tab a{
	text-decoration: none;
    color: #333;
    display: inline-block;
    font-weight: bold;
    padding-bottom: 6px;
}
.tab div{
	

}
.night-mode .tab a{
	color: #d11;
}

body.night-mode .leaflet-pane.leaflet-marker-pane {
    filter: brightness(0.5) contrast(3) sepia(1) saturate(48) contrast(5);
    opacity: .9;
}
body.night-mode .leaflet-pane.leaflet-marker-pane img[src$="art.svg"] {
    opacity: .5;
}

body.night-mode .leaflet-popup-content-wrapper, body.night-mode .leaflet-popup-tip {
    background: #3d0000;
    color: #d11;
    box-shadow: none;
    outline-color: #000000cf;
    outline-width: 3px;
    outline-style: solid;
}
body.night-mode #night-mode-toggle {
    background-image: url(images/box-checked.svg);
    color: #dd1111db;
}
body.night-mode #night-mode-toggle {
	font-weight:300;
}
.leaflet-popup-content {
    width:220px;
	margin: 15px 15px 15px;
    line-height: 1.3;
    font-size: 17px;
    min-height: 32px;
}


.leaflet-popup-content p {
    margin: 15px 0 0;
    font-size: 16px;
    line-height: 21px;
}