<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.shield {
  background: rgba(0, 0, 0, 0.85);
  position:   fixed;
  bottom:     0px;
  right:      0px;
  width:      100%;
  height:     100%;
  display:    none;
}

.modal {
  position:         absolute;
  background-color: rgb(255, 255, 255);
  border:           5px solid rgb(255, 255, 255);
  
  width:            480px;
  
  -moz-border-radius:     5px;
  -ms-border-radius:      5px;
  -o-border-radius:       5px;
  -webkit-border-radius:  5px;
  border-radius:          5px;
  
  display:                none;
}

.modal-header {
  height: 25px;
}

.general {
  left:         50%;
  top:          50%;
  width:        560px;
  height:       380px;
  margin-left:  -280px;
  margin-top:   -190px;
}

.modal-close::before {
   content:         'X';
   text-transform:  uppercase;
   font-family:     arial;
   font-weight:     800;
   color:           rgb(67, 67, 67);
   float:           right;
   padding:         0px 5px;
   cursor:          pointer;
   font-size:       130%;
}

#chart_div {
  display:  block;
}
</pre></body></html>