/* hide inserted node-info div by loaded funkfeuer-kml */
#capture div { display:none; }

/* info-box */
#info-box {
  max-height: 40px;
  height: 38px;
  transition: max-height 0.25s ease-out;
  overflow: hidden;
}
#info-box p {
  text-align: left;
  padding:0px;
  margin:0px;
  line-height:30px;
}
#info-box:hover {
  max-height: 200px;
  /* height: 150px; */
  transition: max-height 0.35s ease-in;
}
#info-box:hover p {
  text-align: left;
  padding:0px;
  margin:0px;
  line-height:30px;
}

/* nodelist-box */
#list-box {
  max-height: 38px;
  height: 38px;
  transition: max-height 0.25s ease-out;
  overflow: hidden;
}
#list-box #nodelist {
  text-align: left;
  padding:0px;
  margin:0px;
  line-height:20px;
}
#list-box:hover {
  max-height: 500px;
  /* height: 150px; */
  transition: max-height 0.35s ease-in;
  overflow-y: scroll;
}
#list-box:hover #nodelist {
  text-align: left;
  padding:0px;
  margin:0px;
}

