/*
 popup.js
*/
div.popup_info {
  max-width: 600px;
  width: 200px;
  border: #cccccc solid 1px;
  background-color: white;
  padding: 2px;
  /* The following properties should not be changed */
  position: absolute;
  color: navy;
}
div.popup_info div.popup_title {
	font-weight: bold;
	border-bottom: #cccccc solid 1px;
}
div.popup_info div.popup_content {
	color: navy;
}
div.popup_error {
  max-width: 600px;
  width: 200px;
  border: red solid 1px;
  background-color: white;
  padding: 2px;
  /* The following properties should not be changed */
  position: absolute;
}
div.popup_error div.popup_title {
	font-weight: bold;
	border-bottom: red solid 1px;
	color: red;
}
div.popup_error div.popup_content {
	color: navy;
}
#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: help;
}
.popup_draghandle {
  cursor: move;
}
