.maxmin {
	font-weight: bold;
	/* border: 2px solid black; */
	border-radius: 10px;
	/* padding: 10px;
	margin: .2em; */
}
.maxtitle {
	padding: 0.7em;
	margin: 0px;
}
.maxtitle:before { /* This is the +- button style */
	/* border: 2px solid black; */
	border-radius: 1em;
	width: 1.5em;
	text-align: center;
	display: inline-block;
	cursor: default;
	content: "\25BC";  /* down chevron = \02C5  down triangle = \25BC */
}
.maxclose:before {
	content: "\25B2";	/* up chevron = \02C4  up triangle = \25B2 */
}
/*.maxbutton:before {
	content: "+";
}*/
.mincontent {
	font-weight: normal;
	max-height: 0;
	transition: all 0.25s;
	overflow: hidden;
}
.maxcontent {
	max-height: 100%;
	padding: .5em;	
}

