/*
 * jQuery OrgChart Plugin
 * https://github.com/dabeng/OrgChart
 *
 * Demos of jQuery OrgChart Plugin
 * http://dabeng.github.io/OrgChart/local-datasource/
 * http://dabeng.github.io/OrgChart/ajax-datasource/
 * http://dabeng.github.io/OrgChart/ondemand-loading-data/
 * http://dabeng.github.io/OrgChart/option-createNode/
 * http://dabeng.github.io/OrgChart/export-orgchart/
 * http://dabeng.github.io/OrgChart/integrate-map/
 *
 * Copyright 2016, dabeng
 * http://dabeng.github.io/
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.428571429;
	color: #333333;
}

#chart-container {
	position: relative;
	display: inline-block;
	top: 10px;
	left: 10px;
	width: calc(100% - 24px);
	overflow: auto;
	text-align: center;
}

.home-link {
	margin-top: 20px;
	margin-right: 20px;
	float: right;
}

.home-link a {
	font-size: 36px;
	color: #d43f3a;
	text-decoration: none;
}

.home-link a:hover {
	text-shadow: 0 0 6px #d43f3a;
}

.home-link a:hover+i {
	animation: jump 0.6s ease infinite;
	-webkit-animation: jump 0.6s ease infinite;
}

.home-link i {
	position: relative;
	font-size: 48px;
	color: #fff;
	text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0
		#b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, .1), 0 0 5px
		rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .3), 0 3px 5px
		rgba(0, 0, 0, .2), 0 5px 10px rgba(0, 0, 0, .25), 0 10px 10px
		rgba(0, 0, 0, .2), 0 20px 20px rgba(0, 0, 0, .15);
}

.orgchart {
	display: inline-block;
	min-height: 202px;
	min-width: 202px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-size: 10px 10px;
	padding: 20px;
}

.orgchart .hidden, .orgchart ~.hidden {
	display: none !important;
}

.orgchart *, .orgchart *:before, .orgchart *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.orgchart.b2t {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.orgchart.l2r {
	position: absolute;
	transform: rotate(-90deg) rotateY(180deg);
	-ms-transform: rotate(-90deg) rotateY(180deg);
	-moz-transform: rotate(-90deg) rotateY(180deg);
	-webkit-transform: rotate(-90deg) rotateY(180deg);
	transform-origin: left top;
	-ms-transform-origin: left top;
	-moz-transform-origin: left top;
	-webkit-transform-origin: left top;
}

.orgchart .verticalNodes ul {
	list-style: none;
	margin: 0px;
	padding-left: 18px;
	text-align: left;
}

.orgchart .verticalNodes ul:first-child {
	margin-top: 2px;
}

.orgchart .verticalNodes>td::before {
	content: '';
	border: 1px solid rgba(217, 83, 79, 0.8);
}

.orgchart .verticalNodes>td>ul>li:first-child::before {
	top: -4px;
	height: 30px;
	width: calc(50% - 2px);
	border-width: 2px 0 0 2px;
}

.orgchart .verticalNodes ul>li {
	position: relative;
}

.orgchart .verticalNodes ul>li::before, .orgchart .verticalNodes ul>li::after
	{
	content: '';
	position: absolute;
	left: -6px;
	border-color: rgba(217, 83, 79, 0.8);
	border-style: solid;
	border-width: 0 0 2px 2px;
}

.orgchart .verticalNodes ul>li::before {
	top: -4px;
	height: 30px;
	width: 11px;
}

.orgchart .verticalNodes ul>li::after {
	top: 1px;
	height: 100%;
}

.orgchart .verticalNodes ul>li:first-child::after {
	top: 24px;
	width: 11px;
	border-width: 2px 0 0 2px;
}

.orgchart .verticalNodes ul>li:last-child::after {
	border-width: 2px 0 0;
}

.orgchart.r2l {
	position: absolute;
	transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform-origin: left top;
	-ms-transform-origin: left top;
	-moz-transform-origin: left top;
	-webkit-transform-origin: left top;
}

.orgchart>.spinner {
	font-size: 100px;
	margin-top: 30px;
	color: rgba(68, 157, 68, 0.8);
}

.orgchart table {
	border-spacing: 0 !important;
	border-collapse: separate !important;
}

.orgchart>table:first-child {
	margin: 20px auto;
}

.orgchart td {
	text-align: center;
	vertical-align: top;
	padding: 0;
}

.orgchart tr.lines td.topLine {
	border-top: 2px solid #333;
}

.orgchart tr.lines td.rightLine {
	border-right: 1px solid #333;
	float: none;
	border-radius: 0px;
}

.orgchart tr.lines td.leftLine {
	border-left: 1px solid #333;
	float: none;
	border-radius: 0px;
}

.orgchart tr.lines .downLine {
	background-color: #333;
	margin: 0px auto;
	height: 20px;
	width: 2px;
	float: none;
}

/* node styling */
.orgchart .node {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 3px;
	border: 1px solid transparent;
	border-bottom: none;
	text-align: center;
	width: 160px;
	text-align: center;
}

.orgchart.l2r .node, .orgchart.r2l .node {
	width: 50px;
	height: 130px;
}

.orgchart .node>.spinner {
	position: absolute;
	top: calc(50% - 15px);
	left: calc(50% - 15px);
	vertical-align: middle;
	font-size: 30px;
	color: rgba(68, 157, 68, 0.8);
}

.orgchart .node:hover {
	background-color: rgba(238, 217, 54, 0.5);
	transition: .5s;
	cursor: default;
	z-index: 20;
}

.orgchart .node.focused {
	background-color: rgba(238, 217, 54, 0.5);
}

.orgchart .ghost-node {
	position: fixed;
	left: -10000px;
	top: -10000px;
}

.orgchart .ghost-node>* {
	fill: #ffffff;
	stroke: #bf0000;
}

.orgchart .node.allowedDrop {
	border-color: rgba(68, 157, 68, 0.9);
}

.orgchart .node .title {
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	background-color: rgba(217, 83, 79, 0.8);
	border: 1px solid #333;
	border-bottom: none;
	color: #fff;
	border-radius: 4px 4px 0 0;
	color: #fff;
}

.orgchart.b2t .node .title {
	transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	-moz-transform-origin: center bottom;
	-webkit-transform-origin: center bottom;
}

.orgchart.l2r .node .title {
	transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
	-ms-transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
	-moz-transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
	-webkit-transform: rotate(-90deg) translate(-40px, -40px)
		rotateY(180deg);
	transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	-moz-transform-origin: bottom center;
	-webkit-transform-origin: bottom center;
	width: 120px;
}

.orgchart.r2l .node .title {
	transform: rotate(-90deg) translate(-40px, -40px);
	-ms-transform: rotate(-90deg) translate(-40px, -40px);
	-moz-transform: rotate(-90deg) translate(-40px, -40px);
	-webkit-transform: rotate(-90deg) translate(-40px, -40px);
	transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	-moz-transform-origin: bottom center;
	-webkit-transform-origin: bottom center;
	width: 120px;
}

.orgchart .node .title .symbol {
	float: left;
	margin-top: 4px;
	margin-left: 2px;
}

.orgchart .node .content {
	width: 100%;
	height: 20px;
	font-size: 11px;
	line-height: 18px;
	border: 1px solid #ccc;
	border-radius: 0 0 4px 4px;
	text-align: center;
	background-color: #fff;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.orgchart.b2t .node .content {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform-origin: center top;
	-ms-transform-origin: center top;
	-moz-transform-origin: center top;
	-webkit-transform-origin: center top;
}

.orgchart.l2r .node .content {
	transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
	-ms-transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
	-moz-transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
	-webkit-transform: rotate(-90deg) translate(-40px, -40px)
		rotateY(180deg);
	transform-origin: top center;
	-ms-transform-origin: top center;
	-moz-transform-origin: top center;
	-webkit-transform-origin: top center;
	width: 120px;
}

.orgchart.r2l .node .content {
	transform: rotate(-90deg) translate(-40px, -40px);
	-ms-transform: rotate(-90deg) translate(-40px, -40px);
	-moz-transform: rotate(-90deg) translate(-40px, -40px);
	-webkit-transform: rotate(-90deg) translate(-40px, -40px);
	transform-origin: top center;
	-ms-transform-origin: top center;
	-moz-transform-origin: top center;
	-webkit-transform-origin: top center;
	width: 120px;
}

.orgchart .node .edge {
	font-size: 15px;
	position: absolute;
	color: rgba(68, 157, 68, 0.5);
	cursor: default;
	transition: .2s;
	-webkit-transition: .2s;
}

.orgchart.noncollapsable .node .edge {
	display: none;
}

.orgchart .edge:hover {
	color: #449d44;
	cursor: pointer;
}

.orgchart .node .verticalEdge {
	width: calc(100% - 10px);
	width: -webkit-calc(100% - 10px);
	width: -moz-calc(100% - 10px);
	left: 5px;
}

.orgchart .node .topEdge {
	top: -4px;
}

.orgchart .node .bottomEdge {
	bottom: -4px;
}

.orgchart .node .horizontalEdge {
	width: 15px;
	height: calc(100% - 10px);
	height: -webkit-calc(100% - 10px);
	height: -moz-calc(100% - 10px);
	top: 5px;
}

.orgchart .node .rightEdge {
	right: -4px;
}

.orgchart .node .leftEdge {
	left: -4px;
}

.orgchart .node .horizontalEdge::before {
	position: absolute;
	top: calc(50% - 7px);
	top: -webkit-calc(50% - 7px);
	top: -moz-calc(50% - 7px);
}

.orgchart .node .rightEdge::before {
	right: 3px;
}

.orgchart .node .leftEdge::before {
	left: 3px;
}

.orgchart .node .toggleBtn {
	position: absolute;
	left: 5px;
	bottom: -2px;
	color: rgba(68, 157, 68, 0.6);
}

.orgchart .node .toggleBtn:hover {
	color: rgba(68, 157, 68, 0.8);
}

.orgchart ~.mask {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 999;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.3);
}

.orgchart ~.mask .spinner {
	position: absolute;
	top: calc(50% - 54px);
	left: calc(50% - 54px);
	color: rgba(255, 255, 255, 0.8);
	font-size: 108px;
}

.orgchart .node {
	transition: all 0.3s;
	webkit-transition: all 0.3s;
	opacity: 1;
	top: 0;
	left: 0;
}

.orgchart .slide-down {
	opacity: 0;
	top: 40px;
}

.orgchart.l2r .node.slide-down, .orgchart.r2l .node.slide-down {
	top: 130px;
}

.orgchart .slide-up {
	opacity: 0;
	top: -40px;
}

.orgchart.l2r .node.slide-up, .orgchart.r2l .node.slide-up {
	top: -130px;
}

.orgchart .slide-right {
	opacity: 0;
	left: 130px;
}

.orgchart.l2r .node.slide-right, .orgchart.r2l .node.slide-right {
	left: 40px;
}

.orgchart .slide-left {
	opacity: 0;
	left: -130px;
}

.orgchart.l2r .node.slide-left, .orgchart.r2l .node.slide-left {
	left: -40px;
}



body {
	color: #333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857;
}

#headline {
	background-color: rgba(0, 0, 0, 0.5);
	text-align: center;
}

.

.orgchart>.spinner {
	color: rgba(255, 255, 0, 0.75);
}

.orgchart .node .title {
	background-color: #fff;
	color: #000;
}

.orgchart .node .content {
	border-color: #333;
}

.orgchart .node>.spinner {
	color: rgba(184, 0, 54, 0.75);
}

.orgchart .node:hover {
	background-color: rgba(255, 255, 0, 0.6);
}

.orgchart .node.focused {
	background-color: rgba(255, 255, 0, 0.6);
}

.orgchart .node .edge {
	color: rgba(0, 0, 0, 0.6);
}

.orgchart .edge:hover {
	color: #000;
}

.orgchart tr.lines td.leftLine, .orgchart tr.lines td.topLine, .orgchart tr.lines td.rightLine
	{
	border-color: #ccc;
	border-radius: 0;
}

.orgchart tr.lines .downLine {
	background-color: #ccc;
}

.orgchart .second-menu-icon {
	color: rgba(184, 0, 100, 0.8);
	font-size: 18px;
	opacity: 0;
	position: absolute;
	right: -5px;
	top: -5px;
	transition: opacity 0.5s ease 0s;
	z-index: 2;
}

.orgchart .second-menu-icon:hover {
	color: #b80064;
}

.orgchart .node:hover .second-menu-icon {
	opacity: 1;
}

.orgchart .node .second-menu {
	background-color: #fff;
	border-radius: 35px;
	box-shadow: 0 0 4px 1px #999;
	display: none;
	position: absolute;
	right: -70px;
	top: 0;
	z-index: 1;
}

.orgchart .node .second-menu .avatar {
	border-radius: 30px;
	float: left;
	height: 60px;
	margin: 5px;
	width: 60px;
}

.orgchart ~ .mask .spinner {
	color: rgba(255, 255, 0, 0.75);
}


.orgchart.view-state .edge {
	display: none;
}

#edit-panel {
	background-color: #449d44;
	border-radius: 4px;
	color: #fff;
	float: left;
	left: 10px;
	margin-top: 10px;
	padding: 10px;
	position: relative;
	width: calc(100% - 40px);
}


.gradient_0 .title, .legend_0{
	background: #57bb8a !important;
}

.gradient_5 .title, .legend_5{
	background: #63b682 !important;
}

.gradient_10 .title, .legend_10{
	background: #73b87e !important;
}

.gradient_15 .title, .legend_15{
	background: #84bb7b !important;
}

.gradient_20 .title, .legend_20{
	background: #94bd77 !important;
}

.gradient_25 .title, .legend_25{
	background: #a4c073 !important;
}

.gradient_30 .title, .legend_30{
	background: #b0be6e !important;
}

.gradient_35 .title, .legend_35{
	background: #c4c56d !important;
}

.gradient_40 .title, .legend_40{
	background: #d4c86a !important;
}

.gradient_45 .title, .legend_45{
	background: #e2c965 !important;
}

.gradient_50 .title, .legend_50{
	background: #f5ce62 !important;
}

.gradient_55 .title, .legend_55{
	background: #f3c563 !important;
}

.gradient_60 .title, .legend_60{
	background: #e9b861 !important;
}

.gradient_65 .title, .legend_65{
	background: #e6ad61 !important;
}

.gradient_70 .title, .legend_70{
	background: #ecac67 !important;
}

.gradient_75 .title, .legend_75{
	background: #e9a268 !important;
}

.gradient_80 .title, .legend_80{
	background: #e79a69 !important;
}

.gradient_85 .title, .legend_85{
	background: #e5926b !important;
}

.gradient_90 .title, .legend_90{
	background: #e2886c !important;
}

.gradient_95 .title, .legend_95 {
	background: #e0816d !important;
}

.gradient_100 .title, .legend_100 {
	background: #dd776e !important;
}

.gradient_white .title, .legend_white {
	background: #fff !important;
}

.legend {
    padding: 5px;
}

