/*styles for WindowsEngine pages*/
.window-container {
	width: 150px;
	position: absolute;
	left: 350px;
	top: 200px;
	font-size: 13px;
}

.window-titleBar {
	width: 100%;
	height: 15px;
	padding: 1px;
	text-indent: 3px;
	font: bold 12px Arial;
	background-color: #666;
	color: #fff;
	cursor: move;
	overflow: hidden;
}

.window-content {
	width: 100%;
	height: 100%;
	background-color: #fff;
	font-size: 13px;
  /*  border:1px solid #555;*/
	overflow:auto;
}

.window-minimizeButton {
	position: absolute;
	right: 40px;
	top: 2px;
	cursor: pointer;
}

.window-maximizeButton {
	position: absolute;
	right: 20px;
	top: 2px;
	cursor: pointer;
}

 .window-closeButton {
	position: absolute;
	right: 5px;
	top: 2px;
	cursor: pointer;
}

.window-resizeIcon {
	float: right;
	cursor: nw-resize;
}