.expand-content {
	position:		relative;
	overflow:		hidden;
	max-height:		300px;
	transition:		max-height 500ms;
}

.expand-content-button {
	width:			100%;
	height:			6em;
	padding:		3em 0 0;
	margin:			0;
	border:			none;
	position:		absolute;
	bottom:			0;
	left:			0;
	background:		linear-gradient(to bottom, rgba(238, 238, 238, 0), rgba(238, 238, 238, 1));
}

.expand-content-button-text {
	display:		none;
}

/* closed */
.expand-content-button-text.closed {
	display:		inline-block;
}

/* open */
.expand-content.open {
	max-height:		9999px!important;
	padding-bottom:		6em;
}

.expand-content.open .expand-content-button-text.closed {
	display:		none;
}

.expand-content.open .expand-content-button-text.open {
	display:		inline-block;
}
