/*
 popup.js
*/
div.popup {
  max-width: 600px;
  border: 1px solid red;
  padding: 5px;
  background-color: white;
  z-index: 5;
  /* The following properties should not be changed */
  position: absolute;
}

div.popup-success {
  max-width: 600px;
  border: 1px solid green;
  padding: 12px;
  background-color: white;
  z-index: 5;
  /* The following properties should not be changed */
  position: absolute;
	font-size: 17px;
}

#popup_overlay {
  background-color: whitesmoke;
  z-index: 2;
  /* 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;
}

.popup_draghandle {
  cursor: move;
}

a.popup_closebox {
	color: #808080;
}