@charset "utf-8";

.navSubtree.box {
	padding: 12px 0;
}

.navSubtree a {
	padding: 5px 0;
	text-decoration: none;
	position: relative;
	color: #222;
}

.navSubtree .h2s,
.navSubtree a.base {
	padding-left: 16px;
	padding-right: 16px;
}
.navSubtree div.sub {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #fff;
}

.navSubtree a.pitch1 { padding-left: 14px; }
.navSubtree a.pitch2 { padding-left: 28px; }
.navSubtree a.pitch3 { padding-left: 42px; }


.navSubtree .h2s:before {
	content: url('navicon.14x10.png');
	position: relative;
	top: -1px;
	margin-right: 7px;
}
.navSubtree a.selected {
	color: #f47920;
}

.navSubtree a.base {
	text-transform: uppercase;
	transition: all 600ms;
}

.navSubtree a.base.selected,
.navSubtree a.base.open { background: rgba(0,0,0,0.05); }
.navSubtree a.base:hover {
	transition: all 200ms;
	background: rgba(0,0,0,0.1);
}

.navSubtree a.sub.selected {
	font-weight: 600;
	background-color: rgba(255, 255, 255, .6);
}

.navSubtree .open.pitch0 { background: rgba(0,0,0,0.06); }

.navSubtree a.base .icon {
	display: inline-block;
}

.navSubtree a.sub {
	display: block;
	position: relative;
}
.navSubtree a.sub:before {
	content: '';
	display: inline-block;
	width: 16px;
}
.navSubtree a.sub:after {
	content: '';
	display: block;
	position: absolute;
	width: 6px;
	height: 6px;
	top: 13px;
	transform: translateX(2px);
	border-radius: 100%;
	transition: all 200ms;
	box-sizing: border-box;
	background: #aaa;
}
.navSubtree a.sub:hover:after {
	border: 1px solid #888;
	border-radius: 100%;
	background: #fff;
}
.navSubtree a.sub.selected:after {
	background: none;
	border: 1px solid #f47920;
	border-radius: 100%;
	width: 8px;
	height: 8px;
	transform: translateX(1px);
	top: 12px;
}

@media all and (max-width: 700px) {
	.navSubtree {
		display: none;
	}
}