.nowrap {
	white-space: nowrap;
}

.hidden {
	display: none;
}

.button {
	margin-left: -1em;
	width:1em;
	display:inline-block;
	user-select: none;
	-webkit-user-select:none;
	
}

.hide-button:before {
	content:"▼";
}

.show-button:before {
	content:"▶";
}

.element-container {
	margin-left: 2em;
}

.dropdown {
	position:relative;
	display:inline-block;    
}

.error .error-list {
	display:none;
	position:absolute;
	color:black;
	background-color:silver;
	min-width:25vw;
	z-index:1;
	white-space:normal;
}

.error:hover .error-list {
	display:inline;
}

.warning .error-list {
	display:none;
	position:absolute;
	color:black;
	background-color:silver;
	min-width:25vw;
	z-index:1;
	white-space:normal;
}

.warning:hover .error-list {
	display:inline;
}

.attribute {
	margin-left: 0.25em;
	white-space: nowrap;
}

.content {
	min-width:25vw;
	max-width:75vw;
	height:100vh;
	overflow:scroll;
}

.toolbar {
	background-color:blue;
}

.content-header table {
	margin-left:auto;
	margin-right:auto;
}

.content-header table td {
	text-align: center;
	width: 33%;
}

.base {
	color: rgb(136,18,128);
	font-family: monospace, sans-serif;
	float:none;
	padding-top:1em;
}

.element-name {
	color: rgb(136,18,128);
}

.attribute-name.omitted {
	color: rgb(153,69,0);
}

.attribute-name {
	color: rgb(153,69,0);
}

.attribute-value {
	color: rgb(26,26,166);
}

.element-value {
	word-wrap:break-word;
	color: rgb(26,26,166);
}

.error {
	border-bottom: 2pt solid red;
}

.error-icon {
	background-color: red;
	color: white;
	user-select:none;
	-webkit-user-select:none;
}

.warning {
	border-bottom: 2pt solid yellow;
}

.warning-icon {
	background-color: yellow;
	color: black;
	user-select:none;
	-webkit-user-select:none;
}

.optional {
	font-style: italic;
}

.omitted {
	opacity: 0.2;
}

.removable {
	
}

.split-view {
	display: table;
}

.split-panel {
	display: table-cell;
}

.resize-x { 
	resize: horizontal;
	overflow: auto;
}

.message-menu {
	min-width:25vw;
	width:25vw;
	max-width:75vw;
	height:100vh;
	float:left;
	background-color:ghostwhite;
	overflow:scroll;
}

html body {
	margin: 0px;
	font-family:sans-serif;
}

table.message-list-table {
	border-collapse:collapse;
	min-width: 25vw;
}

table.message-list-table thead tr {
	background-color:black;
	color:white;
}

table.message-list-table tbody tr:nth-child(even) {
	background-color:silver;
}

table.message-list-table td {
	white-space:nowrap;
}

table.message-list-table tbody .message-selected {
	background-color: aqua !important;
}