  div.expand-button-wrapper {
	width:100%;
	text-align:right;
	margin-bottom:-1.5em !important;
}
span.expand-all-button-icon {
	display: inline-block;
	background-image: url(https://hope.edu/_resources/img/icn-close-black.svg);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	height: 10px;
	width: 10px;
	line-height: 10px;
	margin-right: 10px;
	opacity: .5;
	position: relative;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);					
	-webkit-transition: -webkit-transform .25s ease-out;
	-moz-transition: -moz-transform .25s ease-out;
	transition: transform .25s ease-out;
}
button.expand-all.expanded > span.expand-all-button-icon {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: -webkit-transform .25s ease-out;
	-moz-transition: -moz-transform .25s ease-out;
	transition: transform .25s ease-out;
}
span.ui-accordion-header-icon:hover {
	opacity: 1.0;
}