/*the following classes will  control the window*/

.dhtmlwindow {
  position: absolute;
  visibility:hidden;
  background-color: transparent;
  width: 515px;
  height: 392px;
  padding: 1px;

}

.dhtmlwindow img {
  /*padding: 0px 1px 0 1px;*/
}

.drag-handle {
  float: right;
  position:relative;
  top:20px;
  right:20px;
}

* html .drag-handle { top:30px; }
*+html .drag-handle { top:30px; }

.drag-handle .drag-controls img { /*CSS for controls (min, close etc) within Drag Handle*/
  cursor: pointer;
}

.drag-contentarea { /*CSS for Content Display Area div*/
  padding:20px;
  width: 570px;
  text-align:left;
  background: transparent url(../images/popup/background.png) no-repeat scroll left top;
}

* html .drag-contentarea {
  background-image:none;
  filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='../../fileadmin/framework/images/popup/background.png');
}

.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;
}
