.dhtmlwindow{
position: absolute;
border: 2px solid #fff;
visibility: hidden;
background-color:#000;
-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
font-family:Arial, Helvetica, sans-serif;
font-size:13px;
}

.drag-handle{ /*CSS for Drag Handle*/
padding: 1px;
text-indent: 3px;
background-color:#F93;
color:#000;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
cursor: move;
overflow: hidden;
width: auto;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
-webkit-border-radius: 8px 8px 0px 0px;-moz-border-radius: 8px 8px 0px 0px;border-radius: 8px 8px 0px 0px;
height:22px;

}

.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-top: 1px solid #e86c14;
border-bottom: 1px solid #e86c14;
background-color:#333;
color:#CCC;
height: 150px;
padding: 5px;
overflow: auto;
}
.drag-contentarea input{ border:#CCC 1px solid; margin:3px; padding:2px; background-color:#666; color:#DDDDDD}
.drag-contentarea button { 
	background: -moz-linear-gradient(center top, #fdc300, #fe8f01);
	background: -webkit-gradient(linear, left top, left bottom, from(#fdc300), to(#fe8f01));
	background:  -o-linear-gradient(top, #069, #fe8f01);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fdc300', EndColorStr='#fe8f01');
	border-color:#000; 
	border-width:1px;
        border-radius:4px 4px 4px 4px;
	-moz-border-radius: 4px;
        -webkit-border-radius: 4px;
	color:#fff;
	font-weight:bold;
	cursor:pointer;
	display:inline-block;
	padding:4px 4px 3px;
	margin-top:10px;
	font:12px; 
	width:80px;
}
.drag-contentarea button:hover {
	background: -moz-linear-gradient(center top, #fe8f01, #fdc300);
	background: -webkit-gradient(linear, left top, left bottom, from(#fe8f01), to(#fdc300));
	background:  -o-linear-gradient(top, #0fe8f01, #fdc300);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fe8f01', EndColorStr='#fdc300');
	border-color:#000; 
	border-width:1px;
        border-radius:4px 4px 4px 4px;
	-moz-border-radius: 4px;
        -webkit-border-radius: 4px;
	color:#fff;
	font-weight:bold;
	cursor:pointer;
	display:inline-block;
	padding:4px 4px 3px;
	margin-top:10px;
	font:12px; 
	width:80px;}

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
background-color:#F90;
height: 13px; /*height of resize image*/
-webkit-border-radius: 0px 0px 8px 8px;-moz-border-radius: 0px 0px 8px 8px;border-radius: 0px 0px 8px 8px;
width:auto;
padding:5px;
}


.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;
}