
html, body{
	height: 100%;
	#padding: 0;
	#border: 0;
	margin: 0;
}

::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}


.editTable {
	font-size: 13px;
}
.editTable a{
	cursor: pointer;
}
.editTable a:hover{
	text-decoration: none;
}

.editTable a.editableEnab{
	cursor: pointer;
	color: black;
	text-decoration: default;
}
.editTable a.editableLink{
	cursor: pointer;
}
.editTable a.editableLink:hover{
	text-decoration: underline;
}
.editTable a.editableDisab{
	cursor: pointer;
	color: lightgrey;
	text-decoration: default;
}
.editTable a.uneditableEnab{
	cursor: default;
	color: black;
}
.editTable a.uneditableDisab{
	pointer-events: none;
	cursor: default;
	color: lightgrey;
}
.editTable a.changed{
	text-decoration: underline;
	text-decoration-color: red;
	-moz-text-decoration-color: red;
}
.editTable a.unused{
	text-decoration: line-through;
	text-decoration-color: orange;
	-moz-text-decoration-color: orange;
}

.editTable tr.all{
	background-color: #ffe0e0;
}

/* configure a width for the first column which does not wrap four actions into two lines*/
.editTable tr td:first-child {
	/*cell width auto fit the text*/
	width: auto;
	white-space: nowrap;
}

.editTable tr th {
	background: #eeeeee;
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
  }
  