/*
 popup.js
*/
div.popup {
  max-width: 600px;
  border: 1px solid red;
  padding: 5px;
  background-color: #876;
  /* The following properties should not be changed */
  position: absolute;
}

#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;
}

.black_overlay{
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 1000 px;
    height: 1000 px;
    background-color: black;
    z-index:1001;
    opacity:.20;
    filter: alpha(opacity=20);
}
.white_content {
    display: none;
    position: absolute;
    top: 5%;
    left: -200%;
    width: 250px;
    height: 160px;
    padding: 16px;
	border-width: 4px;
	border-style: solid;
	border-color: #a6988d;
    background-color: white;
    z-index:1002;
    overflow: auto;

}
.white_vcontent {
    display: none;
    position: absolute;
    top: 5%;
    left: -200%;
    width: 400px;
    height: 400px;
    padding: 16px;
	border-width: 4px;
	border-style: solid;
	border-color: #a6988d;
    background-color: white;
    z-index:1002;
    overflow: auto;

}
