/*
 popup.js
*/
div.popup {
  max-width: 400px;
  border: 0px solid red;
  padding: 10px;
  background-color: whitesmoke;
  z-index:1;
  /* The following properties should not be changed */
  position: absolute;
}

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

span.popup_link, a.popup_link {
  cursor: pointer;
  border-bottom: 1px dotted;
}
.popup_closebox{
	/*background-color:whitesmoke; */
	border:0px solid black;
	color: #F91D1B;
	font-weight: bold;
	cursor: pointer;
}

.popup_draghandle {
  cursor: move;
}
