.dhtmlwindow{
	position: absolute;
	border: 1px solid black;
	visibility: hidden;
	background-color: white;
	vertical-align:middle;
}

.drag-handle{ /*CSS for Drag Handle*/
	padding: 2px;
	text-indent: 3px;
	font: bold 12px Tahoma;
	color: white;
	cursor: move;
	overflow: hidden;
	width: auto;
	height:16px;
	background: #002FE8;
}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
	position: absolute;
	right: 1px;
	top: 2px;
	cursor: hand;
	cursor: pointer;
	vertical-align:middle;
}


.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: 16px; /*width of resize image*/
	height: 16px; /*height of resize image*/
	cursor: nw-resize;
	font-size: 0;
}

.drag-button{
	border: 1px outset #39F;
}
.drag-button:hover{
	border: 1px inset #39F;
}

.drag-img-button{
	filter: alpha(opacity=50); -moz-opacity:0.50;
}
.drag-img-button:hover{
	filter: alpha(opacity=100); -moz-opacity:1;
}