/*
 popup.js
*/
div.popup {
  max-width: 400px;
  border: 3px solid #cdcdcd;
  padding: 5px;
  background-color: #333333;
  /* The following properties should not be changed */
  position: absolute;
}

#popup_overlay {
  
  /* The following properties should not be changed */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color:#b3b3b3;
}

span.popup_link, a.popup_link {
  cursor: pointer;
  border-bottom: 1px dotted;
}

.popup_draghandle {
  cursor: move;
}
