/*
 popup.js
*/
div.popup {
  max-width: 600px;
  border: 1px solid red;
  padding: 5px;
  background-color: white;
  /* The following properties should not be changed */
  position: absolute;
  style='border-top:1px solid #FFCC66;
border-bottom:1px solid #FFCC66;
border-left:1px solid #FFCC66;
border-right:1px solid #FFCC66;
border: 1px solid #ccc;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;	    border-radius: 2px;
	    -moz-box-shadow: 1px 1px 2px #666;
	    -webkit-box-shadow: 1px 1px 2px #666;
    box-shadow: 1px 1px 2px #666;
    font-size: 20px;
	    padding: 2px 3px;	    outline: 0;	    -webkit-appearance: none;
}

#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;
}
