@media only screen and (max-width: 800px) {
	/* Force table to not be like tables anymore */
	#no-more-tables .table,
	#no-more-tables .tableHead, #no-more-tables .tableBody,
	#no-more-tables .tableHeadCell, #no-more-tables .tableCell,
	#no-more-tables .tableRow, #no-more-tables .tableHeadRow {
		display: block;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	#no-more-tables .tableHead .tableHeadRow {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#no-more-tables .tableRow {
		border: 1px solid #ccc;
	}
	#no-more-tables .tableCell {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
		white-space: normal;
		text-align: left;
		padding-top: 2px;
		padding-bottom: 2px;
	}
	#no-more-tables .tableCell:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
		content: attr(data-title); /* Label the data */
	}
}