/*
 popup.js
*/
div.popup {
  width: 400px;
  border: 1px solid #FFCC99; 
  padding: 10px;
  background-color:#FFFFCC;
  z-index:10;
  /* 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:help;
/*  border-bottom: 1px dotted; */
}

.popup_draghandle {
  cursor: move;
}

