/*
 popup.js
*/
div.popup {
  max-width: 600px;
  min-width: 300px;
  /*border: 1px solid red;*/
  border: hidden;
  padding: 5px;
  background-color: white;
  /* 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 hidden;
  padding: 0px;
}

a:hover.popup_link {
	cursor: hand;
	border-bottom: 1px solid;
}

.popup_draghandle {
  cursor: move;
}

p.popup {
	max-width: 600px;
  	min-width: 100px;
	border: 0px hidden;
  	padding: 0px;
	width: 200px;
	color: black;
}


