<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
        overflow:hidden;
}

#webgl {
  /* sky-like */
  background: linear-gradient(to bottom, #98c8f6 0%,#cbebff 40%,#f0f9ff 100%);
  position:absolute;
  top:0;
  margin:0;
}

#footer {
  position: absolute;
  left: 5px;
  bottom: 5px;
}

#infobtn {
  color: white;
  background: rgba(152, 200, 246, 0.8);
  border: solid 4px rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 0 0 2px rgba(152, 200, 246, 0.3);
  width: 24px;
  height: 24px;
  text-align: center;
  font-family: serif;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
}

/* popup */
#popup {
  /* background: rgba(255, 255, 255, 0);*/
  position: absolute;
  left: 2px;
  top: 2px;
  max-width: 480px;
  min-width: 300px;
  z-index: 9999;
  border: solid gray;
  border-width: 1px 2px 2px;
  border-radius: 3px;
}

#popupbar {
  background: dimgray;
  color: white;
  padding-left: 4px;
  height: 18px;
}

#closebtn {
  color: rgb(220, 220, 220);
  background: gray;
  border: 1px solid darkgray;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  text-align: center;
  float: right;
  cursor: pointer;
}

#popupbody {
  background-color: white;
  padding: 2px 5px 2px;
  max-height: 500px;
  overflow: auto;
}

/* identify result */
#popupbody table {
  margin-top: 5px;
  margin-bottom: 8px;
  width: 100%;
}

#popupbody table caption {
  background-color: gray;
  color: white;
  font-size: small;
  padding: 1px;
  padding-left: 6px;
  text-align: left;
}

#popupbody table td {
  padding-left: 5px;
}

table.layer tr {
  background-color: #eeeeee;
}

table.coords tr {
  background-color: #eeeeee;
}

table.attrs tr:nth-child(odd) {
  background-color: #eeeeee;
}


table.attrs tr td:first-child {
  width: 40%;
}

/* pageinfo */
#pageinfo {
  font-size: small;
}

#pageinfo h1 {
  background-color: gray;
  color: white;
  font-size: small;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 3px;
  padding: 1px;
  padding-left: 6px;
}

#urlbox {
  width: 100%;
}

#usage, #about {
  margin-left: 5px;
}

#usage tr:nth-child(odd) {
  background-color: #eeeeee;
}

#usage td.star {
  font-weight: bold;
}

#about ul {
  margin: 5px;
  margin-left: 20px;
  padding: 0px;
}

.license {
  font-size: xx-small;
}

.download-link {
  display: block;
  border: 1px solid darkgray;
  background: lightgray;
  color: black;
  font-size: large;
  margin: 10px 50px 10px;
  padding: 8px;
  text-align: center;
  text-decoration: none;
}

/* print dialog */
.print div {
  padding: 5px;
}

.print label {
  margin-left: 5px;
}

.print input[type="text"] {
  width: 40px;
  border: 1px solid lightgray;
  background: #F6F6F6;
  margin-left: 8px;
  margin-right: 8px;
}

.print input[type="checkbox"] {
  margin-left: 15px;
}

.print input[type="submit"] {
  display: none;
}

.print .buttonbox {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.print .buttonbox span {
  border: 1px solid darkgray;
  background: lightgray;
  margin: 0px 5px 0px;
  padding: 5px 10px 5px;
  cursor: pointer;
}

/* label */
.label {
  padding: 2px;
  text-shadow: -1px -1px #FFF, 0px -1px #FFF, 1px -1px #FFF, -1px 0px #FFF, 1px 0px #FFF, -1px 1px #FFF, 0px 1px #FFF, 1px 1px #FFF;
  position: absolute;
  pointer-events: none;
}

.print-label {
  /* these 2 properties are copied to canvas 2D context in renderLabels function of Qgis2threejs.js */
  color: black;
  font: normal medium sans-serif;
}

/*legend*/
#legend {
 position:absolute;
 bottom: 20px;
 right:20px;
 height:250px;
 width:220px;
 background-color:rgba(230,230,230,0.7);
 border-radius:5px;
 padding:20px;
 box-shadow: 2px 2px 5px rgba(10,10,10,0.6);
}
#legend img {
 position:relative;
 display:inline-block;
 width: auto;
 height:100%;
 margin:5px auto;
}
#title {
    position: absolute;
    top: 10px;
    right: 20px;
    color: rgb(250, 250, 250);
    font-family: Georgia, serif;
}
#logo img {
    position: absolute;
    left:10px;
    top:10px;
    width: 120px;
    height: auto;
}
#title p {
    margin: 5px;
    text-align:right;
}
#title a:visited, a {color:rgb(250,250,250);}
#title a:hover {color:blue;}

#intro {
    width: 50%;
    height:90%;
    padding:10px;
    position: relative;
    margin:auto;
    margin-top:5%;
    border:2px solid #006699;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    z-index:99999;
    background-color:rgba(255,255,255,0.9);
    min-width:280px;
    max-height:600px;
    overflow-y:scroll;
}
#intro h4, h3 {
    text-align:center;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

#intro h4 {margin-top:1%;}

#intro p {margin:2%;}
#intro img {
    margin-left:auto;
    margin-right:auto;
    opacity: 0.9;
    display:block;
    width:100px;
}
#closeButton {
    text-align: center;
    display:block;
    position: absolute;
    top:10px;
    right:10px;
    border-radius:4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.6);
    border:1px solid gray;
    background: rgba(0,0,0,0.6);
    color:#fff;
    padding:10px;
}
#closeButton:hover {
    color:#000;
    background-color:#fff;
    cursor: pointer;
}
#intro a {color:blue;}

#container-mobile {display:none;}

/*MEDIA QUERIES!*/
@media (max-width: 800px) {
  #container {
    display: none;
  }
  #container-mobile{
    display:block; 
    width:100%;
    margin:4px auto;
    overflow:scroll;
  }
  #legend {
     position:relative;
     height:auto;
     width:80%;
     max-width:100px;
     background-color:rgba(230,230,230,0.7);
     border-radius:5px;
     padding:20px;
     box-shadow: 2px 2px 5px rgba(10,10,10,0.6);
    }
  #legend img {
     position:relative;
     display:block;
     width:90%;
     margin:0 auto;
    }
    #title {
        position: relative;
        display:block;
        top:0;
        right:0;
        color: rgb(250, 250, 250);
        font-family: Georgia, serif;
    }
    #logo img {
        position: relative;
        width: 80px;
        height: auto;
        margin:0
    }
    #title p {
        margin: 5px;
        text-align:right;
    }
    #intro {
        padding-top:25px;
    }
    #closeButton{
        padding:2px;
        font-size:small;
        right:10px;
        top:2px;
    }
}</pre></body></html>