nujw-window {
	position: absolute;
	display: flex;
	flex-flow: column;
	background: white;
	filter: drop-shadow(0px 1px 3px #9e9e9e);
	overflow: hidden;
	border-radius: 3px;
	pointer-events: all;
}

nujw-document {
	width: 100%;
	height: 100%;
	overflow: auto;
	display: flex;
	flex-flow: column;
	font-family: "Segoe UI", "Tahoma", "Calibri", "Arial";
}

nujw-titlebar {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	user-select: none;
	min-height: 32px;
	height: 32px;
	outline: 1px solid #d2d2d2;
}

nujw-title {
	align-self: center;
	padding-left: 5px;
	flex-grow: 1;
	height: 100%;
	display: flex;
	align-items: center;
	font-family: "Segoe UI", "Tahoma", "Calibri", "Arial";
	font-size: 16px;
	text-wrap: none;
}

nujw-controls {
	display: flex;
}

nujw-minimize, nujw-maximize, nujw-close {
	display: flex;
	width: 32px;
	height: 32px;
	background: no-repeat url("../resources/NUJW/controls.png");
	transition: background-color 200ms;
}

/*   background-position-x: -96px; umaximize */

nujw-minimize {
	background-position-x: -64px;
}

nujw-maximize {
	background-position-x: -32px;
}

nujw-close {
	background-position-x: 0px;
}

nujw-minimize:hover, nujw-maximize:hover {
	background-color: #ececec;
}

nujw-close:hover {
	background-color: red;
	background-position-x: -128px;
}