.dhtmlwindow{
position: absolute;
border: 3px solid #004BE2 /*black*/;
border-top: 3px solid #2B90FF /*black*/;
border-left: 3px solid #026AFE /*black*/;
border-radius: 8px 8px 0 0;/*закруглил вернюю часть наружной рамки*/
visibility: hidden;
background-color: grey;
background-attachment: fixed;
}

.drag-handle{ /*CSS for Drag Handle*/
padding: 3px;padding-left: 40px;
padding-top: 12px;
text-indent: 3px;
font: bold 15px tahoma;
border-radius: 6px 6px 0 0;/* закруглил верхнюю часть фона*/

background: -moz-linear-gradient(top, #005AF5, #ffffff); /* Firefox 3.6+ */
    /* Chrome 1-9, Safari 4-5 */

background-color: #005AF5/*#CA0000*/;

color: white;
cursor: move;
overflow: hidden;
width: auto;
hight: 35px;
background-image:url('favicon(2).png');
background-repeat:no-repeat;
background-position:3px 6px; 
}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
position: absolute;
right: 1px;
top: 2px;
cursor: hand;
cursor: pointer;
}

* 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*/

/*border:2px solid #4483FF; /* добавил голубую рамку вокруг рабочей области окна*/
border-top: 3px solid #004BE2; /*brown*/;/* изменил верхниюю часть рамки с бордовой на голубую*/
background-color: white;
color: black;
height: 150px;
padding: 7px;
padding-top:0px;
overflow: auto;
background-attachment: fixed;


}

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
border-top: 1px solid gray;
border-radius: 10px 10px 0 0;
background-color: #grey;
height: 18px; /*height of resize image*/
background-attachment: fixed;
}


.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;
}