iframe#map {
	overflow: hidden; border:0; display:block; width:64em; height:48em; margin-left:auto; margin-right:auto;
}
table#ukclubs {font-size:1.4em; width:100%; border-collapse:separate; border:solid 1px grey}
table#ukclubs td {padding-left:0.4em; border:solid 1px grey;width:32%;}
table#ukclubs th {padding: 1em 0; border:solid 1px grey;}
@media print 
{
	table#ukclubs {font-size:12pt; border-collapse:collapse; border:solid 1px black;}
}

@media only screen and (max-width: 768px) 
   (min-device-width: 768px) and (max-device-width: 1024px)  { 
  	iframe#map {
  		width:100%;
  	} 
	table#ukclubs {border:none;}
	table#ukclubs td {padding-left:1em; border:none; width:100%;}

	/* Force table to not be like tables anymore */
	table#ukclubs, table#ukclubs thead, table#ukclubs tbody, table#ukclubs th, table#ukclubs td, table#ukclubs tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	table#ukclubs thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	table#ukclubs tr { border: 1px solid #ccc; }
	
	table#ukclubs td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 4.5em;
		width:100%;
		height:3em;
	}
	
	table#ukclubs td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 0;
		left: 0.4em;
		width: 80%; 
		padding-right: 4.5em; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	table#ukclubs td:nth-of-type(1):before { content: "Club:"; }
	table#ukclubs td:nth-of-type(2):before { content: "Website:"; }
	table#ukclubs td:nth-of-type(3):before { content: "Venue:"; }

}