/* Canvas class properties */
canvas {
  user-select:none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none
  -webkit-touch-callout: none;
}

body {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    background-color: white;
    margin: 0px;
    position:fixed;
    /*  overflow: hidden; IE9 spackt rum*/
    width: 100%;
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 8pt;
}

.info-window div h1 {
    font-size: 1.2em;
    color: #009B7B;
    padding-top: 1em;
    font-weight: bold;
}

.info-window div h2 {
    font-size: 1em;
    color: #009B7B;
    padding-top: 1em;
    font-style: italic;
}

abbr {
    font-style: italic;
}

.info-window div {
    font-size: 10pt;
}
.info-layer h1 {
    font-size: 1.2em;
    color: #009B7B;
    padding-top: 1em;
    font-weight: bold;
}

.info-layer {
    position:absolute;
    padding: 10px;
    top: 40px;
    right:40px;
    width: 170px;
    filter: alpha(opacity=0.80);
    -moz-opacity: 0.80;
    opacity: 0.80;
    background-color: rgb(255,255,255);
    user-select: none;
    0moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    border-radius: 10px;
    border: solid black 1px;
}

.info-layer table {
    text-align: center;
    width: 100%;
    filter: alpha(opacity=1);
    -moz-opacity: 1;
    opacity: 1;
}

@media screen and (max-width: 800px) {
    .info-window {
        width: 90%;
    }
}

@media screen and (min-width:800px) {
    .info-window {
        width: 50%;
	min-width: 615px;
    }
}

.info-window {
    z-index: 100;
    position: fixed;
    overflow-y: auto;
    left: 10px;
    top: 60px;
    max-height: 80%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    border-radius: 10px;
    border: solid black 1px;
    background-color: #ffffff;
}

div#fr {
    padding-left: 60px;
    padding-right: 60px;
}


/* Navigation */
div#nav {
    position: absolute;
    top: 100px;
    left: 25px;
    border-radius: 5px;
    border: solid black 1px;
    background-color: rgb(255,255,255);
    width: 106px;
    height: 220px;
    filter: alpha(opacity=0.70);
    -moz-opacity: 0.80;
    opacity: 0.80;
}
@media screen and (max-width: 500px) {
    div#nav {
        position:absolute;
        top: 50px;
        left: 10px;
        width: 110px;
        height: 110px;
    }
}

div#ttip {
    position: absolute;
    border-radius: 5px;
    border: solid black 1px;
    padding: 3px;
    top: 100px;
    left: 100px;
    background-color: white;
}

#ttip.ttip-inactive {
    display: none;
}

.tooltip {
    position: relative;
}
.tooltip::before {
    content: attr(data-tip);
    font-size: 10px;
    position:absolute;
    z-index: 90099;
    white-space:nowrap;
    bottom:9999px;
    left: 50%;
    background:#000;
    color:#e0e0e0;
    padding:0px 7px;
    line-height: 24px;
    height: 24px;
    opacity: 0;
    transition:opacity 0.4s ease-out;
}

.tooltip:hover::before {
    content: attr(data-tip);
    opacity: 1;
    bottom:35px;
}


button.close {
    position: absolute;
    background: rgb(202, 60, 60);
    border-radius: 10px;
    top: 10px;
    left: 10px;
    color: white;
}

button.dlgok {
    color: #fff;
    background: #009B7B;
}

button.legbut {
    position: absolute;
    background: rgb(202, 60, 60);
    border-radius: 10px;
    color: white;
    right: 10px;
}

td.legend-nodata {
    background-color: white;
    border: solid black 1px;
    text-align: center;
    width: 25px;
}

#searchformcontent {
	width: 90%;
}
