#editor_canvas_container {
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
}

#editor_canvas {
	border: 1px solid white;
}

#editor_panel {
	position: absolute;
	right: 0;
	top: 0;
	width: 400px;
	max-height: 90%;
}

.separator_vertical {
	display: inline-block;
	width: 1px;
	height: 34px;
	background-color: white;
	margin-right: 10px;
	margin-left: 10px;
}

.right_align{
	text-align: right;
}

.ep_tab_inspector {
	border-top: 1px solid white;
}

.thumbnail {
	display: inline-block;
	text-align: center;
	width: 100px;
}

.thumbnail p {
	font-size: 0.75em;
}

.thumbnail_image {
    display: inline-block;
    width: 64px;
    height: 64px;
    background-color: rgb(58, 58, 58);
    text-align: center;
    border: 1px solid black;
    line-height: 62px;
}

.thumbnail_image:hover {
	border: 1px solid white;
	cursor: pointer;
}

.thumbnail_image > img {
	opacity: 1;
	max-width: 100%;
	max-height: 100%;
    vertical-align: middle;
	background-image: url("../res/debug.bmp");
	background-size: 16px;
}

.thumbnail_image > img.icon {
	width: 100%;
	image-rendering: pixelated;
	background-image: none;
	background-color: black;
}

.button_icon {
	display: inline-block;
	border: 1px solid rgb(58, 58, 58);
	margin-right: 4px;
	margin-left: 4px;
}

.button_icon:hover {
	border-color: white;
	background-color: gray;
	color: black;
	cursor: pointer;
}

.button_icon.selected {
	border-color: white;
}

.button_icon > img {
	display: block;
	padding: 4px;
}

.button_tab_container {
	margin-bottom: 0;
	border-left: 1px solid white;
	border-bottom: 1px solid white;
}

.button_tab {
	border: 1px solid white;
	border-left: 0;
	border-bottom: none;
	display: inline-block;
	padding: 0.2em 0.6em 0.2em 0.6em;
	line-height: 1em;
}

.button_tab:hover {
	background-color: white;
	color: black;
	cursor: pointer;
}

.button_tab.selected {
	background-color: white;
	color: black;
}

.small {
	font-size: 0.8em;
}

.italic {
	font-style: italic;
}