/*
 popup.js
*/
div.popup {
  max-width: 300px;
  border: 2px solid red;
  padding: 5px;
  background-color: white;
  text-align: center;
  font: 11px Tahoma, Arial, Helvetica;
  /* 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;
}

span.popup_link, a.popup_link {
  cursor: pointer;
  /*border-bottom: 1px dotted;*/
  width: 100%;
}

.popup_draghandle {
  cursor: move;
}
