/*
 popup.js
*/
.popup {
_max-width: 150px;
  max-width: 150px;
  width: 150px;
  border: 1px solid red; 
  background-color: white;
  /* The following properties should not be changed */
  position: absolute;
    top: 5px;
  left: 5px;
}

#popup_overlay {
  background-color: whitesmoke;
  /* The following properties should not be changed */
  position: absolute;
  top: 0;
  left: 0;
   width: 150px;
 
}

span.popup_link, a.popup_link {
  cursor: pointer;
  
}

.popup td{
  background:#fff;  
 
}

.popup_draghandle {
  cursor: move;
    width: 250px;
  height: 500px;
}
