.dhtmlwindow{
position: absolute;
border: 2px solid black;
visibility: hidden;
background-color: black;
}

.drag-handle{ /*CSS for Drag Handle*/
padding: 1px;
text-indent: 3px;
font: bold 14px Arial;
background-color: black;
color: black;
cursor: move;
overflow: hidden;
width: auto;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=80);
-moz-opacity: .8;
opacity: .8;
}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
position: absolute;
color: white;
right: 1px;
top: 2px;
cursor: pointer;
margin-top: -15px;
}

*:first-child+html .drag-handle .drag-controls {
margin-top: 0px;
}

#button {
padding-top: 13px;
color: grey
#padding-top: 0px;
#margin-top: -13px;
}


* html .drag-handle{ /*IE6 and below CSS hack. Width must be set to 100% in order for opaque title bar to render*/
width: 100%;
}


.drag-contentarea{ /*CSS for Content Display Area div*/
background-color: white;
color: black;
height: 150px;
overflow: auto;
z-index: -1;
}

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
border-top: 0px solid gray;
background-color: #F8F8F8;
height: 13px; /*height of resize image*/
}


.drag-resizearea{ /*CSS for Resize Area itself*/
float: right;
width: 13px; /*width of resize image*/
height: 13px; /*height of resize image*/
cursor: nw-resize;
font-size: 0;
}


.black_overlay {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index:1001;
  -moz-opacity: 0.6;
  opacity:.60;
  filter: alpha(opacity=60);
}

.popup {
        display: none;
  position: absolute;
  z-index:1002;
  overflow: auto;
}
