@charset "utf-8";
.dhtmlwindow{
	position: absolute;
	border: 2px outset #AAA;
	visibility: hidden;
	background-color: #000;
/*
	box-shadow: 2px 2px 2px #111;
	-moz-box-shadow:2px 2px 2px #111;
	-webkit-shadow:2px 2px 2px #111;*/
}

.drag-handle{ /*CSS for Drag Handle*/
	text-indent: 3px;
	background: -moz-linear-gradient(left, black, white);
	/*	background: -webkit-gradient(radial, 0% 0%, 0, 50% 50%, 100, from(#fff), to(#000));*/
	background: -webkit-gradient(linear, left top, right top, from(#000000), to(#ffffff));
	background-color: #333;
	color: #fff;
	cursor: move;
	overflow: hidden;
	width: auto;
	filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	height: 16px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	border: 1px solid #666;
	font-weight: bold;
	padding-top: 2px;
	padding-right: 1px;
	padding-bottom: 0px;
	padding-left: 1px;
}

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

* html .drag-handle{ /*IE6 and below CSS hack. Width must be set to 100% in order for opaque title bar to render*/
width: 100%;
}

.error {
	padding: 10px;
	}

.drag-contentarea{ /*CSS for Content Display Area div*/
	background-color: #000;
	padding: 0px;
	overflow: auto;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #666;
	border-left-color: #666;
}

.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;
}