* { 
	margin: 0; 
	padding: 0; 
}

#page-wrap {
	margin: 50px;
}
p {
	margin: 20px 0; 
}

	/* 
	Generic Styling, for Desktops/Laptops 
	*/
	table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	/* Zebra striping */
	tr:nth-of-type(odd) { 
		background: #eee; 
	}
	th { 
		background: #333; 
		color: white; 
		font-weight: bold; 
	}
	td, th { 
		padding: 6px; 
		border: 1px solid #ccc; 
		text-align: left; 
	}




@media
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {

		/* Force table to not be like tables anymore */
		.rel table {
			display: block;
		}
		.rel thead{
			display: block;
		}
		.rel tbody {
			display: block;
		}
		.rel th{
			display: block;
		}
		.rel td {
			display: block;
		}
		.rel tr {
			display: block;
		}

		/* Hide table headers (but not display: none;, for accessibility) */
		.rel thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

		.rel tr { border: 1px solid #ccc;margin:5px; }

		.rel td {
			/* Behave  like a "row" */
			border: none;
			
			position: relative;
			padding-left: 80%;
		}

		.rel td:before {
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 6px;
			left: 6px;
		
			padding-right: 10px;
			white-space: nowrap;
		}
		.uk-panel-box-secondary {padding:5px !important;}
}




