      html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }

      #map-canvas {
        height: 100%;
        width: 100%;
      }
      #content-pane {
        position: absolute;
        z-index: 5;
        background-color: transparent;
        padding: 1px;
        border: 1px solid #999;

      }
     #inputDiv {
        position: absolute;
        z-index: 5;
        background-color: transparent;
        padding: 1px;
        border: 1px solid #999;

      }
      #copyrightDiv {
  position:relative;
  background-color:gray;
  width: 70%;
  color: blue;
        font-size: 14px;
        border: 1px solid #999;
  resize:width;
      }
      #resultDiv {
        overflow:scroll;
  position:fixed;
  bottom: 100px;
  background-color: white;
  height:250px;
  width: auto;
         z-index: 5;
       font-size: 11px;
        border: 1px solid #999;
  resize:width;
      #buttonDiv {
  position:absolute;
  top:0;
  left:0;
      }
  }
       #infoDiv {
  position:absolute;
  top:0;
  right:0;
  z-index:500;
  } 
  
  #googleMap {
  width:70%;
  height:90%;
  resize:both;
  }

  #img.map {/* changed from 200px 280821 */
  width:700px;
  height:700px;
  } 
  #img.mapThumb {
  width:10%;
  height:10%;
  resize:both;
  } 
  table#01{
  border: 3px blue;
  background-color: #f1f1c1;
  } 
  table#02{
  border: 3px blue;
  background-color: #f1f1c1;
  width: 60%;
  } 
div.box {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin: 0;
    border: 0.2em solid red;
    box-sizing: border-box;
    -webkit-animation-name: example; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
    animation-name: example;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }
div.box1 {
    display: inline-block;    
    width: auto;   
    margin: 0;
    border: 0.2em solid blue;
    box-sizing: border-box;
  }
div.boxIcon {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin: 0;
    border: 0.1em solid blue;
    box-sizing: border-box;
  }
div.boxGen {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin: 0;
    border: 0;
    box-sizing: border-box;
  }

/* Chrome, Safari, Opera */
@-webkit-keyframes example {
    from {border: 0.2em solid red;}
    to {border: 0.2em solid blue;}
}

/* Standard syntax */
@keyframes example {
    from {border: 0.2em solid red;}
    to {border: 0.2em solid blue;}
}
/* Button style */
      .button {
        background-color: blue;
        border: 0.2em solid blue;
		border-radius: 10px;
        color: white;
		font-weight: bold;
        padding: 10px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 12px;
        margin: 4px 2px;
        cursor: pointer;
      }
/* Tooltip styles  */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: red;
    color: white;
    width: auto;
    height: auto;
    overflow: auto;
    //    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 2px;
    padding: 1px 3px;
    margin-top: -5px;
    margin-left: 0px;
    box-sizing: border-box;
}

.dropdown:hover .dropdown-content {
    display: block;
    overflow: auto;
}
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width chg from 100% 280821 */
    height: 100%; /* Full height chg from 100% 280821 */
    overflow: visible;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    z-index: 1; /* Sit on top */
    overflow: auto; /* show all content */
    background-color: #fefefe;
    margin: auto;
    padding: 5px;
    border: 1px solid #888;
    width: inherit; /* Full width chg from 90% 280821 */
    max-width: 700px;
    height: inherit; /* Full height chg from 90% 280821 */
}
/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: red;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Text Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
/* The Image Close Button */
.imgclose {
    color: red;
    position: absolute;
    top: 50px;
    right: 100px;
    font-size: 32px;
    font-weight: bold;
}

.imgclose:hover,
.imgclose:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
/* Popup container - can be anything you want */
.popup {
    position: fixed;
    top: 50%;
    left: 30%;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}
