@charset "utf-8";
/* CSS Document */

@media only screen and (min-width : 768px) { 
	
}
@media only screen and (max-width : 1023px) { 

	.responsiveTable {
		padding: 10px;
	}
	.responsiveTable table, 
	.responsiveTable thead, 
	.responsiveTable tbody, 
	.responsiveTable th, 
	.responsiveTable td, 
	.responsiveTable tr {
		display: block;
	}
	/* Hide table headers (but not display: none;, for accessibility) */
	.responsiveTable thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.responsiveTable tr {
		border: 1px solid #ccc;
	}
	.responsiveTable td {
		position: relative;
		max-width: 100%;
		margin: 0;
		/*padding-left: 50%;*/
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
	}
	.responsiveTable td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
	}

}
