.d3-hwschematic text {
	font-family: monospace;
}

.d3-hwschematic .node {
	stroke: #BDBDBD;
	stroke-width: 1px;
	fill: #e6ffff;
	border: 2px;
}

.d3-hwschematic .node text {
	font-style: normal;
	font-family: monospace;
	fill: black;
	stroke-width: 0px;
}

.d3-hwschematic.node-operator {
	stroke: BLACK;
	stroke-width: 1px;
	fill: #e6ffff;
	border: 2px;
}

.d3-hwschematic.node-operator text {
	font-style: normal;
	font-family: monospace;
	fill: black;
	stroke-width: 0px;
}

.d3-hwschematic .node-external-port {
	stroke: #000;
	stroke-width: 0px;
	fill: #BDBDBD;
	border: 1px;
}

.d3-hwschematic .node-external-port text {
	font-style: normal;
	font-family: monospace;
	fill: black;
	stroke-width: 0px;
}

.d3-hwschematic .link {
	stroke: #000;
	stroke-opacity: .6;
	fill: none;
}

.d3-hwschematic .link-selected {
	stroke: orange;
	fill: none;
}

.d3-hwschematic .link-wrap {
	stroke-width: 8;
	fill: none;
	stroke: transparent;
}
.d3-hwschematic .link-wrap.link-wrap-activated {
	stroke: deepskyblue;
}

.d3-hwschematic .port {
	stroke: #000;
	opacity: .6;
}

.d3-hwschematic tspan {
	white-space: pre;
}

.d3-hwschematic-tooltip {
	z-index: 2;
	background: cornsilk;
	border: 1px solid black;
	border-radius: 5px;
	padding: 5px;
	position: fixed;
}