<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Justin's Code */
html {
	width: 100%;
    max-width:1140px; /* be sure to match to iframe */
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

body {
	padding: 0 1%;
	margin: 0;
	font: 12px/1.5 "Open Sans", Arial, Helvetica, sans-serif;
}

body { 
/*    font-family: "Open Sans";*/
    height: 100%; /*80vh;*/
    width: 98%; /*100vw;*/
    max-width:1140px;
    position: relative;
}

#big-modal {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    max-width:1140px; /* be sure to match to iframe */
    height: 100%;
    z-index: 999997;
    background: rgba(0,0,0,.01);
	display: block;
}

#mainmap { 
    position: fixed;
    left:0px;
    top:70px;  /* leave room for the top controls*/
/*    background-color: skyblue;*/
    font-family: "Open Sans";
    height:90%;
    max-height: 580px; 
    width:100%;
    border: 0.5px;
    pointer-events: auto;/* default is none. This is important so pop-up's will close on map click and */

}

.leaflet-container {
    background-color:rgba(255,0,0,0.0);
    pointer-events: none;
    text-align: left;
}

/* css to customize Leaflet popup  */
.leaflet-popup-tip,
.leaflet-popup-content-wrapper {
    background: #f5f4f2;
    color: #007935;
/*    z-index: 900;*/
    font-size: 1.25em;
}
.leaflet-popup-content h1 {
    font-size: 1.25em;
    color: #007935;
    margin-bottom: 0;
    padding:15;
}

#moreButton {
    color: #007935;
    background-color: #f5f4f2;
    font-variant-caps: all-small-caps;
    text-transform: bold;
    border: 0;
} 


#moreButton:hover{
    color: #FFD200;
    text-shadow:0px 0px 1px #FFD200;
    cursor: pointer;
    font-size: 1em;
}


/* customize Leaflet popup for cities layer  */
.custom .leaflet-popup-tip,
.custom .leaflet-popup-content-wrapper{
    color: #FFD200;
    font-weight: bold;
    background: none;
    border: none;
    box-shadow: none;
    margin: 0px;
}


/*** Buttons for geometry selection ***/
.btn-group  {
    width: 100%;
    height: 50px;
    max-width:1250px;
}
.btn-group button {
    width: 25%;
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f4f2;
    border: none 1px;
    border-left: 1px solid rgb(162, 170, 173);
    border-right: 1px solid rgb(162, 170, 173);
    color: #007030;  /*text dark green*/
    padding: 10px ; /* Some padding */
    cursor: pointer; /* Pointer/hand icon */
    float: left; /* Float the buttons side by side */
    font-size: 16px;

}

.btn-group button:not(:last-child) {
    border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
    background-color: white;
    text-decoration: underline;
    color: black;
    font-weight: normal;
}

/* Add a background color to selected */
.btn-group .selected {
    background-color: white;
    color: #007030;
    font-weight: bold;
}

/* end button selection CSS  */

.uoDivIcon {
  text-align: center; /* Horizontally center the text (icon) */
  line-height: 20px; /* Vertically center the text (icon) */
    
}

.cityDivIcon {
  font-size: 3px;
  text-align: center; /* Horizontally center the text (icon) */
  line-height: 12px; /* Vertically center the text (icon) */
}

.cityDivIconLg {
  font-size: 6px;
  text-align: center; /* Horizontally center the text (icon) */
  line-height: 14px; /* Vertically center the text (icon) */
}


/*** REGION LABELS ***/
.label {
/*    font-weight: 600;*/
    text-transform: uppercase;
    text-align: center;
    margin-top: -1em;
    color:white;
    overflow:visible;
  }

.label .higlight {
      color: #00704a;
  }

.label div {
    position: relative;
    left: -50%;
    text-align: center;
  }



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  z-index: 999999; /* Sit on top */
  padding-top: 15px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* the content will scroll, not the larger modal */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content parent (uses flex to move the scroll bar inside the modal)*/
.modal-content-parent {
  position: absolute; /* Stay in place */
  max-height: 100%;
  margin: 0px; 
  padding: 0px;
  border: 0px;
  position: top; /*open to top */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  border-radius:12px; /* match leaflet popup */
  pointer-events: none;
  display: flex; /* allows child to scroll */
  flex-direction: column;
}

/* Modal Content */
.modal-content {
  background-color: #f5f4f2;
  max-height: calc(100% - 60px);
  margin: 0 auto 30px;
  padding: 15px 20px 10px 20px;
  border: 0px;
  width: 80%;
  max-width: 500px;
  font-size: 1.25em;  
  border-radius:12px; /* match leaflet popup */
  color: #007935;
  pointer-events: auto;
  text-align: left;   
  position: top; /*open to top */
  overflow-y:auto;
}

.modal-content h1 {
    font-size: 1.8em;
    color: #007935;
    font-style: italic;
    font-weight: 600; /* semi-bold */
    text-align: center;
    margin-top: 0;
}

.modal-content hr {
    margin: 5.5px; /* tighten up the hr spacing */ 
}

/* table content */
.detail-table{
    width: 100%;
    padding: 0px; 
    border-collapse: collapse;
    border-spacing: 0px;
/*    color:red;*/
}

/* top border WITHIN table instead of HR*/
tr.bordered {
    border-top: 1px solid #d8dac5;
    margin: 5.5px; 
}

.dt-v {
    text-align: right;
    vertical-align: top;
}

.dt-l {
    text-align: left;
    vertical-align: top;
}

.dt-c {
    text-align: center;
    vertical-align: top;
}

.m2 {
/*    font-size: 1.2em;*/
    color: dimgray;
    font-weight: bold;
}

.source {
    font-size: smaller;
    color: dimgray;

}

.modal-content hr {
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #d8dac5; /* old IE */
    background-color: #d8dac5; /* Modern Browsers */
}
.modal-content a { /* complementary hyperlink color */
  color: #105C81;
}

.modal-content a:hover { /* complementary hyperlink color */
  color: #FFD200;
}


/* The text close button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 20px;
  text-shadow:0px 0px 1px black;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.lastLine{
    width:100%;
    display: flex;
    justify-content: space-between;
}

.singleButtonLine{
    width:100%;
    display: flex;
    flex-direction: row-reverse;
    min-height: 18px /* prevent line from changing sizes on hover */
}

/* End modal */

/* flex grid for layer controls and info button */
.controls{
    display: block;
    clear:left;
/*    z-index: 16777270;*/
}
.flex-container {
  clear:left;
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: flex-start;
}

.flex-item {
  display: flex;
  padding:0px;
}


/* info button */ 
.btn-info button {
    background-color:transparent;
    border:transparent;
    color:#14875f;
    font-size: 1.3em;
    padding-right: 3px;
    padding-bottom: 0px;
    padding-top: 0px;
}

.btn-info button:hover {
    color:#FFD200;
}
/* end info button */ 


/*message for mobile only*/
.mobileShow { display: none;}
/*message for desktop only*/
.mobileHide { display: inherit;}


/*On touch or small screens*/
@media (pointer:coarse), 
@media all and (max-width:500px){

    /*message for when ON mobile*/
    .mobileShow {
      display:inherit;
      margin-left: 0px;
    }
    /*message for when NOT mobile*/
   .mobileHide { 
       display: none;
    }
    
    /*shorter in landscape */
    @media all and (orientation:landscape) {
        #controls{
            clear:left;
        }
    }

}
/*stack buttons in portrait */
@media all and (orientation:portrait) {
    /* leave room for the top controls*/
    #mainmap { 
       position: fixed;
        left:0px;
        top:125px;
    }  
    
   /* stacked button group*/
   .btn-group button { 
       width: 50%; 
       display:block; 
       padding: 5px;
       border-bottom: 1px solid #d8dac5;
    }
    
    .btn-group button:last-child {
        border-bottom: none; /* Prevent very bottom border */
        border-right: none; /* Prevent last right */
    }
    
    .btn-group button:nth-last-child(2){
        border-left: none; /* Prevent left bottom border */
        border-bottom: none; /* Prevent very bottom border */
    }
    
    /* On mobile, hover is funky, so just use selected colors instead. */
    .btn-group button:hover {
        background-color: #00704a;
        color: white;
        text-shadow:0px 0px 1px black;
    }
    
    #controls{
        clear:left;
        vertical-align: text-top;
    }
    /*     spread buttons on mobile-portrait */
    .flex-container {
      justify-content: space-between;
/*                height: 20px;*/
    }
    
    .flex-item {
        text-align: center;
        justify-content: center;
        flex-wrap: wrap-reverse;
    } 
    /* info button */ 
    .btn-info button {
        padding-bottom: 0;
    }
}



</pre></body></html>