/*
 popup.js
*/
div.popup {
  max-width: 600px;
  border: 1px solid #888888;
  padding: 5px;
  background-color:#8FA4B7;
  /* The following properties should not be changed */
  position: absolute;
  margin: 5px;
  margin-top:-15px;
}
div.popup ul {
list-style:none;
 max-width: 600px;
margin-left: 0;
margin-top: 5px;
margin-right: 5px;
	
}
div.popup a:hover{
	color:white;
}
#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;
}
