/*
  Overlay - covers entire screen with slightly darkened non-interactive overlay
*/
.overlay {
  background: rgba(50, 50, 50, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
  popup
*/
.dcch-popup_title {
  text-align: center;
  font-weight: bold;
  font-size: 1.05em;
  margin: 3px 3px 6px 3px;
  padding-bottom: 6px;
  border-bottom: solid 1px #888888;
}
.dcch-popup_body {
  margin: 2px 10px 4px 10px;
}
.dcch-popup_overlay {
  display: none;
  max-width: 350px;
  position: absolute;
  z-index: 101;
  border-radius: 8px;
  padding: 4px;
  margin: 10px;
  background: #ffffff;
  overflow: hidden;
}
.dcch-popup_inline {
  display: none;
  max-width: 350px;
  border-radius: 8px;
  padding: 4px;
  margin: 10px;
  background: #ffffff;
  overflow: hidden;
}
.dcch-popup_outer {
  border: 3px solid #CCCCCC;
  border-radius: 8px;
  padding: 4px;
}
/*
  expand_overlay
*/
.dcch-expand_over {
  display: block;
  position: absolute;
  z-index: 101;
}
.dcch_expand_over_txt {
  text-align: center;
  display: none;
  font-size: 1.25em;
  font-weight: bold;
  color: #666;
  background-color: #eee;
  padding: 4px 0 6px 0;
  margin: 0 20px 0 20px;
  clear: both;
}
.dcch-expand_close-div {
  float: right;
  height: 20px;
  width: 20px;
  margin: 0px 4px 0 0;
  display: none;
}
.dcch-expand_overlay-el {
  /*
    Making the position absolute suppresses the extra space at the bottom,
    which can create a "needless" scrollbar.
    However, it prevents the auto-expand left for a right-hand element
  */
  position: absolute;
}
