/*
 popup.js
*/
div.popup {
  width:340px;
  border: 3px solid #9E2021;
  padding:0;
  background-color:#FBF1D6;
  /* The following properties should not be changed */
  position: absolute;
  cursor: pointer;
  display:block;
}

#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;
  display:block;
}

.popup_draghandle {
  cursor: move;
}
.popup_buttons {
	padding-top:10px;
}
.popup_content {
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:left;
	padding:10px;
}
.popup_content p {
	margin:0 0 7px 0;
	line-height:17px;
	padding:0px;
}

