.dhtmlwindow{
position: fixed;
border: 1px solid #428bca;
visibility: hidden;
background-color: white;
}

.drag-handle{ /*CSS for Drag Handle*/
padding: 1px;
text-indent: 5px;
font: bold 14px Arial;
background-color:#428bca; /*F3F3F3; #CA0000;*/
color: #FFF;
cursor: move;
overflow: hidden;
width: auto;
height: 20px;

-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80B0DB, endColorstr=#428bca);
background: -moz-linear-gradient(top,  #80B0DB 0%,  #428bca 100%);
background: -webkit-linear-gradient(top,  #80B0DB 0%,  #428bca 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80B0DB, endColorstr=#428bca);
background: linear-gradient(top,  #80B0DB 0%,  #428bca 100%);
}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
position: absolute;
right: -1px; /*-15px*/;
top: -0.5px; /*-9px*/;
float:right;
white-space:nowrap;
cursor: pointer;
}

.drag-handle .drag-title{ /*CSS for controls (min, close etc) within Drag Handle*/
position: absolute;
top: 1px;
white-space:nowrap;
cursor: pointer;
}

.drag-contentarea{ /*CSS for Content Display Area div*/
/*border-top: 1px solid #9ED1FF; *//*#CCD6B2;*/
background-color: white;
color: black;
height: 150px;
padding: 2px;
overflow: auto;
border-radius:7px;
}

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
/*border-top: 1px solid #9ED1FF;*/
background-color: #F3F3F3;
height: 15px; /*height of resize image*/
border-radius:7px;
}

.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;
}

.displayshade{
	border-radius:6px 6px 6px 6px;
	box-shadow:3px 5px 10px 1px rgba(0, 0, 0, 0.3) !important;	/*3px 5px 15px 10px rgba(0, 0, 0, 0.3);	/*10px 10px 10px rgba(0, 0, 0, 0.3);*/
	background-clip:padding-box;
}