.dhtmlwindow{
position: absolute;
border: 1px solid #5d5d5d;
visibility: hidden;
background-color: white;
}

.drag-handle{ /*CSS for Drag Handle*/
position: absolute;
padding: 0px;
text-indent: 3px;
font: bold 14px Arial;
color: #f8f8f8;
cursor: move;
overflow: hidden;
width: 100%;
height: 17px;
-moz-opacity: 1;
opacity: 10;
margin-left: 1px;
background-image: url(http://n.images.www.tvn.hu/tvn/kepek/tvn_keret/windowkep/nev_csik.png);
}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
position: absolute;
right: 0px;
top: 0px;
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-top: 0px solid brown;
background-color: #5d5d5d;
margin-left: -1px;
margin-right: -2px;
color: #5d5d5d;
height: 150px;
padding: 0px;
overflow: auto;
}

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
border-top: 0px solid gray;
background-color: #F8F8F8;
height: 0px; /*height of resize image*/
margin-bottom: -5px;
}


.drag-resizearea{ /*CSS for Resize Area itself*/
float: right;
width: 0px; /*width of resize image*/
height: 0px; /*height of resize image*/
cursor: nw-resize;
font-size: 0;
}


