#drag-contentarea iframe {
    margin:0px; 
    border: 0px;
    background-color:transparent;
    width: 100%;  
    height: 100%;
}

.dhtmlwindow {
    position: absolute;
    visibility: hidden;
    background-color: white;
    border: 1px solid #333;
}

.drag-handle { /*CSS for Drag Handle*/
  background-color:  #5B0000;  /* #CDE7CD; #93A7B2; */
    /*background-image: url('../../images/popup_header.gif');*/
    color: #FFFFFF;
    font-weight: bold;
    height: 16px;
    padding: 3px;
    text-indent: 2px;
    overflow: hidden;
    width: auto;
}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
    position: absolute;
    right: 3px;
    top: 3px;
    cursor:pointer;
}

.drag-contentarea { /*CSS for Content Display Area div*/
    position: relative;
    border: 0px;
    background-color: white;
    color: black;
    height: 150px;
    padding: 0px;
    overflow: auto;
}

.drag-statusarea { /*CSS for Status Bar div (includes resizearea)*/
    border-top: 0px solid gray;
    background-color: white;
    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;
}

/* There are also IE only styles in style_IE.css */
#contentarea_mask {
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #dddddd;
    /* CSS3 standard */
    opacity:0.0;
}

/* There are also IE only styles in style_IE.css and style_IE6.css */
#dhtmlwindow_mask {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 95;
    background-color:#000;
    opacity:0.60;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; 
    filter: alpha(opacity=60);          
}


#dhtmlwindowholder {
    line-height: 14px;
}