/*
 popup.js
*/
div.popup {
  width:420px;/*640px;/*600px;   also can specify "max-width" if desirable*/
  border: 1px inset #191970;/* was 1px solid red */
  padding: 5px;
  background-color: #DCF5F6;/*white; default*/
  /* The following properties should not be changed */
  position:absolute;  /* relative; */
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: 12px;
}

#popup_overlay {
  background-color: whitesmoke;
  /* The following properties should not be changed */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
}

span.popup_link, a.popup_link {
  cursor: pointer;
  border-bottom:1px;    /*1px dotted;*/
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: 10px; font-weight: bold;
}

.popup_draghandle {
  cursor: move;
}

span.popup_head {
   width: 100%;
  /*cursor: pointer;*/
  /*border: #191970; */
  /*border-bottom: 1px solid;*/
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: 12px; font-weight: bold; padding: 6px; color: #4F86EA;
  
  /*border-bottom: #191970; background-color: #CEDDF9;*/
}
