.dhtmlwindow {

	position: absolute;
	border: 1px solid #666;
	border-bottom:solid 2px #666;
	border-right:solid 2px #666;
	visibility: hidden;
	background-color: white;	
}

/*CSS for Drag Handle*/
.drag-handle {

	overflow: hidden;
	width: auto;
	height:26px;
	background-image:url(../images/dhtmlwindow/center.png);
	
}

.drag-handle img {
	margin:0 0 0 1px;
}

.drag-handle #title {
	
	font-size:12px;
	font-weight:bold;
	color:#FFF;
	margin-left:10px;
	line-height:25px;

}

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

/*CSS for Content Display Area div*/
.drag-contentarea { 
	border-top: 1px solid #CCC;
	background-color: white;
	color: black;
	height: 150px;
	overflow: auto;
	position:relative;
	padding:0;
}
/*CSS for Status Bar div (includes resizearea)*/
.drag-statusarea{ 
	border-top: 1px solid gray;
	background-color: #F8F8F8;
	height: 13px; /*height of resize image*/
}

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