/** VERSION 1.1 **/
/** Please note: altering any details within this stylesheet will result in changes to the PSH about page (about/index.html) **/
@charset "utf-8";

table.tab_1 {
	width:100%;
	text-align:center;
}

table.tab_2 {
	display:none;
}

/** toggle display of tables at page width of 1244px **/
@media only screen and (max-width: 1244px) {
	table.tab_1 {
		display:none;
	}
	
	table.tab_2 {
		display:table;
		width:100%;
		text-align:center;
	}
}