/*
 popup.js
*/
div.popup {
  max-width: 600px;
  border: 1px solid #003366;
  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 dotted;
}

.popup_draghandle {
  cursor: move;
}
div.popup.general h4 {
	background-color:#003366;
	color:white;
	font-size:1.2em;
	padding:3px;
	margin-top:0px;
}
div.popup.general p.popup_button {
	margin:2em;
	text-align:center;
}

div.popup a.popup_closebox {
	background-color:#ccddee;
	color:black;
	font-weight:bold;
	padding:5px;
	text-decoration: none;
	font-size:.8em;
}
