#tree {
	margin-right:10px;
}
.nodeDir,.nodeFile {
	padding: 3px 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	list-style-type:none;
}
.nodeDir:hover, .nodeFile:hover {
	cursor:pointer;
}
.nodeFile:hover {
	background:rgb(204, 255, 0);
	cursor:pointer;
}
span.cat, span.soft {
	display:  block;
	margin-left: 20px;
}
span.cat:hover,span.soft:hover {
	background:rgb(204, 255, 0);
}	
.node {
	margin-right: 10px;
	float: left;
}
.node:hover {
	background:rgb(204, 255, 0);
}
.nodeDir span.node:before {
	content: url('../img/node/open.png');
}
.nodeDir.closed span.node:before {
	content: url('../img/node/close.png');
}
.nodeDir.closed > ul {
	position: absolute;
	left: -1px;
	top:  -1px;
	width: 0;
	height: 0;
	z-index: -100;
}
#mystate {
	color: green;
	font-style:  italic;
	padding: 3px 10px
}
div.softsadm {
	padding: 10px;
	margin-top:20px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-content: center;
	justify-content: center;
	align-items: flex-start;
}
div.softsadm > div:first-child {
	margin: 10px;
	padding: 10px;
	background: #eee;
	float:left;
	width: 25%;
	min-width:250px;
	max-height: 400px;
	overflow: auto;
}
div.softsadm > div {
	margin: 10px;
	padding: 10px;
	background: #eee;
}
#formEdit fieldset {
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 10px;
}
#formEdit legend {
	margin-left: 10px;
	padding: 0 3px;
}
div.edit {
	margin: 10px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
  align-items: stretch;
}
div.edit input[type="text"], div.edit textarea {
	width: -moz-available;          /* WebKit-based browsers will ignore this. */
	width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
	width: fill-available;
}
div.edit select {
	width: 100%;
}
div.softsadm .buttongrp {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	align-items: flex-start;
}