/*
 popup.js
*/
div.popup {
  max-width: 800px;
  border: 1px solid black;
  padding: 5px;
  font-size: 11px;
  background-color: white;
  /* The following properties should not be changed */
  position: absolute;
}

div.popup h1 {
	font-size:0.9em;
	padding:0px;
	margin:0px;
	color: red;
	padding: 5px;
	border-bottom:1px solid #dddddd;
}

#popup_overlay {
  background-color: black;
  /* 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;
}
