@import url(base.css);
@import url(controller.css);

html {
	height: 100%;
	display: flex;
}

body {
	font: 1.8vw Roboto-Web, sans-serif;
}

body, .extra, .extra > section {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.extra > section > div {
	flex: 1;
	overflow-y: auto;
	padding: 0 1em;
	position: relative;
	flex-direction: column;
}

#subWinClose {
	border: none;
	min-height: 0;
	justify-content: center;
	-webkit-appearance: none;
	position: absolute;
	top: 0;
	color: #147ba4;
	right: 1ex;
	padding: 0;
	background: url(icons/closeExtra.svg) center / contain no-repeat;
	width: 1em;
	height: 1em;
	margin: 1ex;
	font-size: 1.3em;
}

#subWinClose::after {
	content: "\A0";
}

#subWinClose > span {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
}

#subWinClose > span,
#subWinFocusOut,
#subWinFocusRing {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	-webkit-appearance: none;
	padding: 0;
	border: none;
}

#subWinFocusOut:focus,
#subWinFocusRing:focus {
	outline: none;
}

#subWinClose[hidden],
#subWinFocusOut[hidden],
#subWinFocusRing[hidden] {
	display: none !important;
}

h1 {
	font-size: 1.3em;
	color: #147ba4;
	font-weight: bold;
	text-align: center;
	display: block;
	border-bottom: 2px solid #147ba4;
	padding: 0 4ex 0.5ex;
	margin: 1ex;
}


/* Notice */
.cover {
	float: left;
	margin: 1em;
}

.fields {
	display: table;
	margin: auto;
	border-spacing: 1em 0.2ex;
}

.field, .authors, .contributor, .functionDetails {
	display: table-row;
	min-width: 50%;
}

.author {
	display: block;
}

.authorSep {
	display: none;
}

.fieldName {
	display: table-cell;
	font-weight: bold;
	vertical-align: middle;
	white-space: nowrap;
}

.fieldValue {
	display: table-cell;
	vertical-align: middle;
}

.functionDetails {
	font-style: italic;
	font-size: 0.9em;
}

.copyright {
	text-align: center;
	font-style: italic;
}

.refOutline {
	text-align: center;
	font-size: 1.2em;
}

.refOutlineEntry {
	margin: 0 0.5em;
}

.idxEntryTi {
	font-weight: bold;
}

@media (min-width: 880px) {
	body {
		font-size: 16px;
	}
}

@media (max-width: 340px) {
	body {
		font-size: 9px;
	}
}