.dhtmlwindow{
position: absolute;
visibility: hidden;
background-color: #e6e6e6;
border: 2px solid #7f7f7f;
}

.drag-handle{ /*CSS for Drag Handle*/
padding: 0px;
text-indent: 0px;
font: bold 14px Arial;
background-color: transparent;
color: #e6e6e6;
cursor: move;
overflow: hidden;
width: auto;
height: 0px;
filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  opacity: 0.65;
  border: 1px #7f7f7f;

}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
position: absolute;
right: 0px;
top: 0px;
cursor: hand;
cursor: pointer;
z-index:11;
}

* 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: transparent;
filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  opacity: 0.65;
height: 150px;
padding: 0px;
border: 1px #7f7f7f;
overflow: auto;
}

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
border-top: 0px;
background-color: transparent;
height: 18px; /*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;
}
