/*
 popup.js
*/
div.popup {
  max-width: 600px;
  font-family:Arial, Helvetica, sans-serif;font-size:14px;
  border: 1px solid red;
  padding: 10px;
  background-color: white;
  /* The following properties should not be changed */
  position: absolute;
}

#popup_overlay {
  background-color: whitesmoke;
  /* The following properties should not be changed */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
}

.popup_link, a.popup_link {
  cursor: pointer;font-family:Arial, Helvetica, sans-serif;font-size:18px;font-weight:bold;color:#ffe300;text-decoration:none;
}

.popup_link, a.popup_link:hover {color:#adff00;}

.popup_draghandle {
  cursor: move;
}
