.editor_layer
{
	width: 100%; height: 100%; display: flex; flex-direction: column;
	overflow: hidden;
	background: #fff
}

.editor_icon
{
	position: relative; top: -0.2em; left: 0.2em;
	width: 24px; height: 24px;
}

.editor_icon_image
{
	width: 24px; height: 24px
}

.editor_icon_greyed
{
	filter: grayscale(100%) opacity(50%)
}

.editor_icon_symbols
{
	position: absolute; right: -0.5em; bottom: -0.8em;
	color: #000; font-size: 125%;
	text-shadow: -1px -1px #fff, -2px -2px #fff, 1px 1px #fff, 2px 2px #fff;
	z-index: 800;
}

.editor_title
{
	display: inline-block;
	font-weight: bold; color: #444;
	padding: 0.4em 1em 0.1em 0.75em;
	width: 12em; white-space: nowrap; text-overflow: ellipsis;
}

.editor_info
{
	display: inline-block;
	font-weight: bold; font-style: italic; color: #999;
	padding: 0.4em 0.75em 0.1em 1em;
}

.editor_menu
{
	flex-grow: 0;
	flex-basis: content;
}

.editor_body
{
	flex-grow: 1;
	flex-basis: content;
	overflow: auto;
}

