<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.navSubtree a {
	text-decoration: none;
	padding: 8px 0;
	position: relative;
	color: rgba(0, 0, 0, 0.7);
	font-weight: 600;
	font-size: 14px;
}

.navSubtree div.base {
	margin-bottom: 10px;
}

.navSubtree a.selected:before {
	background: #d80000;
}

.navSubtree a.base {
	padding-left: 18px;
	display: block;
	transition: all 250ms;
	box-shadow: 0px 0px 0px rgba(0,0,0,.5), 0px 0px 50px rgba(0, 0, 0, .1) inset;
}
.navSubtree a.open,
.navSubtree a.selected,
.navSubtree a:hover {
	color: #948470;
}
.navSubtree a.base:hover {
	box-shadow: 0px 0px 2px rgba(0,0,0,.5), 0px 0px 20px rgba(0, 0, 0, .2) inset;
}
.navSubtree a.base.open,
.navSubtree a.base.selected {
	box-shadow: 1px 1px 3px rgba(0,0,0,.5), 0px 0px 20px rgba(0, 0, 0, .2) inset;
}
.navSubtree .icon {
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}

.navSubtree div.sub {
	padding-left: 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.navSubtree div.sub:first-of-type {
	border: none;
}

.navSubtree a.sub {
	display: block;
	padding-left: 15px;
}


@media all and (max-width: 900px) {
	.navSubtree {display: none;}
}
</pre></body></html>