/*
 popup.js
*/
div.popup {
	max-width: 600px;
	border: 2px solid #990000;
	padding: 15px;
	background-color: #FFFFFF;
	/* The following properties should not be changed */
  position: absolute;
	left: 1000px;
	top: 50px;
}

#popup_overlay {
	background-color: #000000;
	/* The following properties should not be changed */
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 500px;
}

.popup_draghandle {
  cursor: move;
}

span.popup_link, a.popup_link {
	cursor: pointer;
	border-bottom: 0px dotted;
}