﻿* { 
	margin: 0; 
	padding: 0; 
}
/*body { 
	font: 13px/1.5 Arial,sans-serif; 
}*/
#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; 
	}*/
	
	td, th { 
		border: none;
		
	}
	@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	.responsive>thead>tr>th>tbody>tr>td { 
		display: block; 
		text-align:left;
	}
	.responsive>tbody>tr>td { 
		display: block; 
		text-align:left;
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.tableheader { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		/*padding-left: 50%; */
		text-align:left !important;
		padding:3px !important;
		
	}
	
	td:after { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		float:left;
		text-align:left;
	}