@media only screen and (min-width: 0px) {
	.component.expandable-text .interior {
		padding-bottom: 0;
		padding-top: 0;
	}
	.component.expandable-text .heading {
		/*overflow-wrap: break-word;
		word-wrap: break-word;
		hyphens: auto;*/
	}
	.component.expandable-text .content-container {
		padding: 48px 0;
	}
	.component.expandable-text .content-container.top-rule {
		border-top: 1px solid #979797;
	}
	.component.expandable-text .content-container.bottom-rule {
		border-bottom: 1px solid #979797;
	}
	.component.expandable-text .controls {
		display: none;
	}

	/* JS Enabled Only Styles */
	.component.expandable-text:not(.no-js) .content.readmore {
		overflow: hidden;
		position: relative;
		z-index: 0;
	}
	.component.expandable-text:not(.no-js) .content.readmore:not(.compacted)::after {
		content: '';
		width: 100%;
		height: 50%;
		opacity: 1;
		pointer-events: none;
		position: absolute;
		bottom: 0;
		left: 0;
		-webkit-transition: opacity 0.5s;
		transition: opacity 0.5s;
	}
	.component.expandable-text:not(.no-js).grey .content.readmore:not(.compacted)::after {
		background: -webkit-gradient(linear, left top, left bottom, from(rgba(235,235,235,0)), to(rgba(235,235,235,1)));
		background: -webkit-linear-gradient(top, rgba(235,235,235,0), rgba(235,235,235,1));
		background: -o-linear-gradient(top, rgba(235,235,235,0), rgba(235,235,235,1));
		background: linear-gradient(to bottom, rgba(235,235,235,0), rgba(235,235,235,1));
	}
	.component.expandable-text:not(.no-js).white .content.readmore:not(.compacted)::after {
		background: -webkit-gradient(linear, left top, left bottom, from(rgba(235,235,235,0)), to(rgba(255,255,255,1)));
		background: -webkit-linear-gradient(top, rgba(235,235,235,0), rgba(255,255,255,1));
		background: -o-linear-gradient(top, rgba(235,235,235,0), rgba(255,255,255,1));
		background: linear-gradient(to bottom, rgba(235,235,235,0), rgba(255,255,255,1));
	}
	.component.expandable-text:not(.no-js) .content.readmore.active:not(.compacted)::after {
		opacity: 0;
	}
	.component.expandable-text:not(.no-js) .content.readmore:not(.compacted) + .controls {
		display: block;
		height: 20px;
		position: relative;
	}
	.component.expandable-text:not(.no-js) .controls button {
		background: transparent;
		height: 20px;
		line-height: 20px;
		font-family: inherit;
		font-size: inherit;
		font-weight: 600;
		color: #00267e;
		white-space: nowrap;
		cursor: pointer;
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%,0);
		transform: translate(-50%,0);
		-webkit-transition: opacity 0.5s;
		transition: opacity 0.5s;
	}
	.component.expandable-text:not(.no-js) .content.readmore.active + .controls button.expand,
	.component.expandable-text:not(.no-js) .content.readmore:not(.active) + .controls button.collapse {
		opacity: 0;
		pointer-events: none;
	}
	.component.expandable-text:not(.no-js) .controls button .fa-plus {
		width: 0.5em;
	}

}
@media only screen and (min-width: 640px) {

	/* JS Enabled Only Styles */
	/*
	.component.expandable-text:not(.no-js) .content.readmore {
		max-height: 450px;
	}
	*/

}
@media (min-width: 1024px) {

	/* JS Enabled Only Styles */
	/*
	.component.expandable-text:not(.no-js) .content.readmore {
		max-height: 650px; 
	}
	*/

}