/*
 popup.js
*/
div.popup {
  max-width: 500px;
 

  border: 1px solid #002c5f;
  padding: 5px;
  background-color: #f5f5f5;
  /* The following properties should not be changed */
  position: absolute;
  text-align:left;
}
div.popup h3 {
    font-weight:bold;
}
div.popup h4 {
    
    background-color:#589199;
    color:white;
    font-weight:bold;
    padding:5px;

}

div.popup h4, div.popup p {
    margin-left:0px; 
}

#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, a.popuplinx {
  cursor: pointer;
  /*border-bottom: 1px dotted;*/
}

.popup_draghandle {
  cursor: move;
}
.popup_closebox,.popup_submit{
background-color:#589199;
color:white;
text-align:center;
font-weight:bold;
width:100px;
padding:3px;
font-size:.8em;
text-decoration:none;
cursor:pointer;
}

div.popup input,div.popup select,div.popup textarea {
    font-size:1.2em;
    font-family:arial,helvetica,sans-serif;
}
