/*Tabs*/
.historyTab{
	display: inline-block;
	vertical-align: bottom;
    padding: .25em;
    border: 1px solid #0391ce;
    border-bottom: 0;
    border-radius: .25em .25em 0 0;
    cursor: pointer;
    user-select: none;
}
.historyTab.activeTab{
	background-color: #0391ce;
	color: #FFF;
}
.historySections{
	border-bottom: 1px solid #ccc;
}
.historySection{
	max-height:100em; overflow: auto;
	-webkit-transition: max-height .5s ease-in-out;
	transition: max-height .5s ease-in-out;
}
.historySection.sectionHidden{
	max-height:0;
}
/*/Tabs*/

/*Accordian*/
.unitAnchor{
	position:relative;
	cursor: pointer;
}
.unitAnchor:after{
	display:inline-block;
	position:absolute; top:50%;right:.5em;bottom:0;
    line-height: 0;
	content: '-';
}
.unitAnchor.unitHidden:after{
	content: '+';
}

.unitContent{
	max-height:100em; overflow: auto;
	-webkit-transition: max-height .5s ease-in-out;
	transition: max-height .5s ease-in-out;
}
.unitContent.unitHidden{
	max-height:0;
}
/*/Accordian*/