/* Popup Note */
#popnote{
  position: fixed;
  width: 300px;
  max-height: 150px;
  left: calc(100vw - 320px);
  top: 100px;
  background-color: #eee;
  border: solid #999 1px;
  font-size: 14pt;
  font-weight: normal;
  opacity: 0.97;
  display: none;
  color: #333;
  z-index: 3;
}
.popnote_base{
  margin: 26px auto 6px auto;
  width: 100%;
  height: 100px;
  overflow-y: auto;
}
.popnote_header{
  position: absolute;
  top: 1px;
  left: 1px;
  height: 24px;
  width: 296px;
  background-color: #ccc;
  cursor: move;
  padding: 4px;
  font-size: 1rem;
}
.popnote_close{
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 1.1rem;
  cursor: pointer;
}
#popnote_text{
  margin: 0 auto;
  padding: 5px 15px;
  min-height: 90px;
  overflow: auto;
  line-height: 1.25em;
  font-size: 0.8rem;
  text-align: justify;
}
