/* ============= Page layout ============= */
@import url("font/font.css");

/* ============= General Page styles ============= */
body{
	font-family: "Roboto", sans-serif;
	font-size:1.2em;
	padding: 5px 7px 0 5px;
	margin:0;
	color: var(--contentFG);
	background-color:var(--contentBG);
}
a{
	text-decoration: none;
	color:var(--accentColor);
}
a:hover{
	text-decoration: underline;
}
a img{
	border-width:0;
}
ul,ol{
	margin: 5px 0 0 0;
	padding: 0 0 0 20px;
	list-style-position: outside;
}
p{
	text-align: justify;
	margin: 2px 0 5px 0;
}
table{
	border-collapse: collapse;
}
q:before, 
q:after {
	content: "";
}

h1,h2,h3,h4,h5,h6{
	margin-bottom: 0.5em;
}

/* ============= Content styles ============= */
/* ---------- tooltips ---------- */
.tooltip{
	background-color: var(--contentBG);
    border: 2px solid var(--accentColor);
	font-size:0.9em;
}
.tooltip_ti{
	font-size:1.2em;
	padding: 5px 5px 3px 5px;
	background-color: var(--accentColorAlpha);
}
.tooltip_co{
	padding: 0 5px 2px 5px;
}
.tooltip a{
	color:var(--accentColor);
}
.tooltip .text{
	margin:0;
}
.tooltip p{
	text-align: left;
	margin:0.1em 0;
	line-height: 1.2;
}
.tooltip a.tooltip_x{
	position: absolute;
	right: -10px;
	color: var(--accentDarkFG);
	top: -10px;
	text-decoration: none;
	background-color: var(--accentColor);
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
    font-size: 1.5em;
}
.tooltip a.tooltip_x::before{
	content:"\274C";
	font-family:"fontello";
}
.tooltip a.tooltip_x span{
	position:absolute;
	left:-9999px;
}

/* === ConceptTree ========================================================== */
.treeRoot>.nodeRoot>.nodeLblFra{
	border-left:0;
}
.treeRoot>.nodeRoot>.nodeLblFra>.nodeLbl{
	border-width: 2px;
}
.treeRoot>.nodeChildren_hide>.nodeLblFra>.nodeLbl{
	border-bottom-width: 5px;
}
.treeRoot>.nodeRoot>.nodeLblFra>.nodeLbl .nodeTi{
	font-size: 1.1em;
}
.nodeChild{
	padding-left:10px;
}
.nodeChild_pre{
	border-left:2px solid silver;
}
.nodeLbl,.nodeRef{
	padding:5px 8px;
	display:inline-block;
	margin-top:10px;
	background-color:var(--accentLight);
	max-width:500px;
	position: relative;
	border: 2px solid var(--accentColorAlpha);
}
.nodeChildren_hide>div>.nodeLbl{
	box-shadow: 5px 5px 0 var(--accentColorAlpha);

}
.nodeLblCo{
	padding-left:0;
	background-position: center left;
	background-repeat: no-repeat;
}
.nodeRef{
	border-color: var(--accentColorAlpha);
	box-shadow: inset 0 0 5px #AAA;
}
a.nodeRefLnk{
	color: var(--accentColor);
	text-decoration: underline;
}
.nodeDesc{
	font-size: 0.8em;
}
.nodeChildren{
	padding-left:5px;
}
.nodeChildren_hide>.nodeChildren{
	opacity:0;
	height:0 !important;
	transition-property : opacity,display;
	transition-duration : 0.1s;
}
.nodeChildren_show>.nodeChildren{
	opacity:1;
	height:auto;
	transition-property : opacity,display;
	transition-duration : 1.5s;
}
.nodeLead{
	display:inline-block;
	height:23px;
	border-left:2px solid silver;
	border-bottom:2px solid silver;
	vertical-align: top;
}
.nodeLeadSpacer{
	display:inline-block;
	width:12px;
	height:18px;
}
.nodeRoot{
	display:inline-block;
}
.nodeLblFra,.nodeRefFra{
	display:inline-block;
}
.nodeChildren_1 .nodeLbl{
	min-width: 60px;
}
.nodeChildren_2 .nodeLbl{
	min-width: 120px;
}
.nodeChildren_3 .nodeLbl{
	min-width: 180px;
}
.nodeChildren_4 .nodeLbl{
	min-width: 240px;
}
.nodeChildren_5 .nodeLbl{
	min-width: 300px;
}
.nodeChildren_6 .nodeLbl{
	min-width: 360px;
}
.nodeChildren_7 .nodeLbl{
	min-width: 420px;
}
.nodeChildren_8 .nodeLbl{
	min-width: 480px;
}
.nodeChildren_9 .nodeLbl{
	min-width: 540px;
}
.nodeChild_co:target>div>div>.nodeLbl{
	box-shadow: 0 0 5px #444;
}
.nodeIco {
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: middle;
}

.nodeIco img {
    max-width: 22px;
    height: auto;
}
.imgBase {
    max-width: 22px;
    height: auto;
}

.nodeTi{
	line-height:16px;
	font-weight: bold;
	word-wrap: break-word;
}
span.nodeTi,
a.nodeTi{
	color:var(--accentColor);
	text-decoration: none;
}
.nodeChildren_hide>.nodeChildren > .nodeChild{
	display:none;
}
a.nodeMoreDesc_a {
    position: absolute;
    right: -.6em;
    top: calc(50% - .6em);
    width: 1.2em;
    height: 1.2em;
    background-color: silver;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    text-align: center;
    font-size: 0.8em;
    line-height: 1.2em;
}
a.nodeMoreDesc_a::before {
    content:"\002B";
	font-family:"fontello";
}

a.nodeMoreDesc_a span{
	position:absolute;
	left:-9999px;
}

/* Node types */
.nodeType_imp{
	background-color: var(--accentLight);
}
.treeSearch_mach > .nodeLblFra > .nodeLbl{
	border: 1px solid var(--accentColor);
	box-shadow: inset 0 0 5px var(--accentColor);
}
.treeSearch_mach > .nodeLblFra > .nodeLbl .nodeTi{
	color: var(--accentColor);
}
.treeSearch_cur > .nodeLblFra > .nodeLbl{
	animation:glow 0.5s ease-in-out 0s 1 alternate;
	background-color:var(--accentColorAlpha);
}
@keyframes glow {
	0% {transform: scale(1);}
	50% {transform: scale(1.03);}
	100% {transform: scale(1);}
}

/* === STOP - ConceptTree ========================================================== */