.dhtmlwindow
    {
    position: absolute;
    border: 2px solid #000033;
    visibility: hidden;
    background-color: #FFFFFF;
    }
    
/*CSS for Drag Handle*/
.drag-handle
    {  
    padding: 1px;
    text-indent: 3px;
    font-size:14px;
    font-weight: bold;
    font-family: Arial;
    background-color: #CADCF7;
    color: #000033;
    cursor: move;
    overflow: hidden;
    width: auto;
    /*filter:progid:DXImageTransform.Microsoft.alpha(opacity=70);*/
    /*-moz-opacity: 0.7;*/
    opacity: 0.7;
    }

.if
    {
    display:none;/*sorry for IE5*/
    display/**/:block;/*sorry for IE5*/
    position:absolute;/*must have*/
    top:-2px;/*must have*/
    left:-2px;/*must have*/
    z-index:-1;/*must have*/
    /*filter:mask();*/ /*must have*/
    width:102%;/*must have for any big value*/
    height:600px;/*must have for any big value*/;
    overflow:hidden;
    }
    
/*CSS for controls (min, close etc) within Drag Handle*/
.drag-handle .drag-controls
    { 
    position: absolute;
    right: 1px;
    top: 2px;
    cursor: move;
    cursor: pointer;
    }
    
/*IE6 and below CSS hack. Width must be set to 100% in order for opaque title bar to render*/
* html .drag-handle
    { 
    width: 100%;
    }

/*CSS for Content Display Area div*/
.drag-contentarea
    { 
    border-top: 1px solid brown;
    background-color: #FFFFFF;
    color: #000033;
    /*height: 150px;*/
    padding: 2px;
    overflow: auto;
    }

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
border-top: 1px solid gray;
background-color: #F8F8F8;
/*background-color: #CADCF7;*/
height: 13px; /*height of resize image*/
}

/*CSS for Resize Area itself*/
.drag-resizearea
    {
    float: right;
    width: 13px; /*width of resize image*/
    height: 13px; /*height of resize image*/
    cursor: nw-resize;
    font-size: 0;
    }