@media all and (max-width : 768px) {

.pageContent {
	-ms-grid-row: 			3;
	-ms-grid-row-span:		3;
	-ms-grid-column: 		1;
	-ms-grid-column-span:	3;
	grid-area: 				pageContent;
	background-color:		rgb(255, 255, 255);
	border-radius:			10px;
}

#contact {
	grid-area:				program;
	background-color:		#f2f2f2;
	border: 				thin silver solid;
	padding: 				0.2em;
	border-radius: 			10px;
	margin: 				10px auto;
	font-size:				85%;
	max-width:				337px;
}

table {
	background-color:		white;
	border: 				thin solid silver;
	border-collapse: 		collapse;
}

td, th {
	border:					thin dotted silver;		
}

th {
	font-weight:			normal;
	width:					59px;
}

td {
	font-size:				97%;
}


#map {
	border: 				thin silver solid;
	background-color:		#f2f2f2;
	padding: 				0.5em;
	border-radius: 			10px;
	width:					95%;
	margin: 				10px auto;
}

iframe {
	width: 					100%;
}
}