/** VERSION 1.1 **/
/** Please note: altering any details within this stylesheet will result in changes to the main PSH learn page (learn/index.html) **/
@charset "utf-8";
table.screen_shrink {
	display:none;
}

table {
	width:100%;
	height:auto;
	text-align:center;
}

table.bold a {
	font-weight:bold;
}

/** at 1023px hide bold and display screen_shrink **/
@media only screen and (max-width: 1023px) {
	table.bold {
		display:none;
	}
	
	table.screen_shrink {
		display:table;
	}
	
	table.screen_shrink a {
		font-weight:bold;
	}
}
