@charset "utf-8";
@import url("charactercss.css") screen;
/* CSS Document */

/**
 * Framework starts from here ...
 * ------------------------------
 */

.tree,
.tree ul {
	margin-left: 6em; /* indentation */
	padding-top: 20px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0;
	list-style: none;
	position: relative;
	border-top: medium solid #FFFFFF;
}

.tree ul {
	/* [disabled]margin-left: .5em; */
} /* (indentation/2) */

.tree:before,
.tree ul:before {
	content: "";
	display: block;
	width: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	border-left-style: solid;
	border-left-width: 1px;
}

.tree li {
	margin: 0;
	padding-top: 0;
	padding-right: 1.5em;
	padding-left: 1.5em;
	padding-bottom: 5em;
	position: relative;
	text-align: center;
}
ul.tree li {
	display: inline-block;
}


.tree li:before {
	content: "";
	display: block;
	width: 10px;
	border-top: 1px solid;
	margin-top: 80px; /* border top width */
	position: absolute;
	/* [disabled]top: 1em; */ /* (line-height/2) */
	left: 0;
}

.tree li:last-child:before {
	background: white; /* same with body background */
	height: auto;
}
