/* Tree Chart CSS */
.tree ul {
    padding-top: 20px; position: relative;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tree li {
	float: left; text-align: center;
	list-style-type: none !important;
	position: relative;
	padding: 20px 5px 0 5px !important;
	transition: all 0.5s !important;
	-webkit-transition: all 0.5s !important; 
	-moz-transition: all 0.5s !important;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before, .tree li::after{
	content: '';
	position: absolute; top: 0; right: 50%;
	border-top: 2px solid #666;
	width: 50%; height: 20px;
}
.tree li::after{
	right: auto; left: 50%;
	border-left: 2px solid #666;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after, .tree li:only-child::before {
	display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child{ padding-top: 0;}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before, .tree li:last-child::after{
	border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before{
	border-right: 2px solid #666;
	border-radius: 0 5px 0 0;
	-webkit-border-radius: 0 5px 0 0;
	-moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
	border-radius: 5px 0 0 0;
	-webkit-border-radius: 5px 0 0 0;
	-moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before{
	content: '';
	position: absolute; top: 0; left: 50%;
	border-left: 2px solid #666;
	width: 0; height: 20px;
}

.tree li span{
	border: 1px solid #C2790A;
	padding: 15px;
	text-decoration: none;
	color: #000;
	font-family: arial, verdana, tahoma;
	font-size: 18px;
	display: inline-block;
	background-color: #F69B11;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/*PIE Chart CSS*/

 .list-text {margin-top:100px; font-size: 25px;}
.reappie-chart {
    border: 1px solid #c0c0c0;
}



/* line 20, ../sass/pizza.scss */
[data-pie-id] li:nth-child(1) {
  color: #1F4E79;
}

/* line 20, ../sass/pizza.scss */
[data-pie-id] li:nth-child(2) {
  color: #BDD7EE;
}

/* line 20, ../sass/pizza.scss */
[data-pie-id] li:nth-child(3) {
  color: #FFC000;
}

/* line 20, ../sass/pizza.scss */
[data-pie-id] li:nth-child(4) {
  color: #92D050;
}

#pie-chart{ border:1px solid #c0c0c0;}


ul.reappie li {
    list-style: none !important;
    margin: 0 0 14px 0;
    font-size: 16px;
}

.reappie span {
    border-radius: 6px;
    padding: 5px;
}

.reappie em {
    color: #000;
    font-style: normal;
}

.darkblue {
    background-color: #1F4E79;
}

.lightblue {
    background-color: #BDD7EE;
}

.yellow {
    background-color: #FFC000;
}

.green {
    background-color: #92D050;
}
.alert-banners article.node--type-alert-banner[data-alert-type="Announcement"]{background: #7f0808;color: #fff !important;}