@media only screen and (max-width: 800px) {

	/* Force table to not be like tables anymore */
	.fix_tables table,
	.fix_tables thead,
	.fix_tables tbody,
	.fix_tables th,
	.fix_tables td,
	.fix_tables tr {
		display: block;
		border-bottom: 1px solid #041e46 !important;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	.fix_tables thead tr {
		position: absolute;
		top: -9999px;
		right: -9999px;
	}

	.fix_tables td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee !important;
		position: relative;
		padding-right: 50% !important;
		white-space: normal !important;
		text-align:right;
	}
	.fix_tables th{
			text-align:center;
	}
	.fix_tables td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		right: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		text-align:right;
		font-weight: bold;
		
	}

	/*
	Label the data
	*/
	.fix_tables td:before { content: attr(data-title); }
}