.dhtmlwindow{
position: absolute;
padding: 3px;
border: 1px solid #aaaaaa;
visibility: hidden;
background-color: white;
}


.drag-handle{ /*CSS for Drag Handle*/
padding: 1px;
text-indent: 3px;
font: bold 14px Arial;
  box-shadow: inset 0 0 0 1px #eeeeee;
  -moz-box-shadow: inset 0 0 0 1px #eeeeee;
  -webkit-box-shadow: inset 0 0 0 1px #eeeeee;
  background: #bfbfbf url(images/grad_light.png) repeat-x left top;
  background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 50%, #d7d7d7 51%, #ededed 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, #e5e5e5), color-stop(51%, #d7d7d7), color-stop(100%, #ededed));
  background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 50%, #d7d7d7 51%, #ededed 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #e5e5e5 50%, #d7d7d7 51%, #ededed 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #e5e5e5 50%, #d7d7d7 51%, #ededed 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 50%, #d7d7d7 51%, #ededed 100%);
  
   border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
  border-bottom: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
  border-left: 1px solid #d2d2d2;
  
  line-height: 22px;
  padding: 0 4px;
  filter: none;
  
color: #000000;
cursor: move;
overflow: hidden;
width: auto;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
position: absolute;
right: 4px;
top: 6px;
cursor: hand;
cursor: pointer;
}

.ui-icon-close { 
	width: 16px; height: 16px; background-image: url(icon/close1.png);
	position: absolute; 
	top: 1px;
	right: 4px;
	font-size: 0;
}
.ui-icon-min { 
	width: 16px; height: 16px; background-image: url(icon/min1.png);
	position: absolute;
	top: 1px;
	right: 22px;
	font-size: 0;
}
.ui-icon-max { 
	width: 16px; height: 16px; background-image: url(icon/max.gif);
} 

.ui-icon-close:hover { 
	top: 0px;
	right: 3px;
	border: 1px solid #999999;
	background-color: #dadada;
}
.ui-icon-min:hover { 
	top: -0px;
	right: 21px;
	border: 1px solid #999999;
	background-color: #dadada;
}


* 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*/
background-color: white;
color: black;
height: 150px;
padding: 2px;
overflow: auto;
}

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
border-top: 1px solid gray;
background-color: #F8F8F8;
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;
background-image: url(icon/resize.gif);
}