/* this is the actual popped up div */
.popup_box {
  position: absolute;
  border: 1px solid black;
  background-color: #fefefe; 
  overflow: auto;
  float: left;
  width: 300px;
}

/* this is the UL inside the popup */
ul.popup_list {
  list-style-type: none;
  padding: 5px;
  margin: 5px;
}

.popup_source {
  text-decoration: underline;
  cursor: pointer; 
  background-color: #ffc;
}

/* these are "buttons" inside a popup .. close, etc */
.clickable {
  cursor: pointer;
}

.text_button {
  text-decoration: underline;
}

.popup_button {
  cursor: pointer;
  font-weight: bold;
  position: relative;
  top: 0px;
  padding: 0px 2px 0px 2px;
}

.popup_title {
  float: left;
  top: 0px;
  left: 0px;
}

/* drag bar for windows */

.dragbar {
  background-color: #0F0;
}

.popup_content {
  border: 1px solid grey;
  clear: both;
}
