.page_header
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	font-family: arial;
	display: flex;
	align-items: center;
	width: 100%;

	/* IE10 Consumer Preview */ 
	background-image: -ms-linear-gradient(bottom, #ffffff 0%, #58ae5c 100%);

	/* Mozilla Firefox */ 
	background-image: -moz-linear-gradient(bottom, #ffffff 0%, #58ae5c 100%);

	/* Opera */ 
	background-image: -o-linear-gradient(bottom, #ffffff 0%, #58ae5c 100%);

	/* Webkit (Safari/Chrome 10) */ 
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffffff), color-stop(1, #58ae5c));

	/* Webkit (Chrome 11+) */ 
	background-image: -webkit-linear-gradient(bottom, #ffffff 0%, #58ae5c 100%);

	/* W3C Markup, IE10 Release Preview */ 
	background-image: linear-gradient(to top, #ffffff 0%, #58ae5c 100%);
}

.text_outlining
{
	text-align: center;
	font-size: 48px;
	font-weight: bold;
	color: white;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	letter-spacing: 1px;
	margin: 0 auto;
}

.red_button
{
	font-size: 10px;
	font-family: arial;
	color: #ffffff;
	width: 150px;
	height: 25px;
	background-color: #ff7171;
	border: 2px outset #cc3333;
	text-align: center;
}

.red_button:hover
{
	font-size: 10px;
	font-family: arial;
	color: #ff2222;
	width: 150px;
	height: 25px;
	background-color: #ffbbcc;
	border: 2px inset #cc3333;
}

.score_field
{
	width: 25px;
	text-align: center;
}

.final_score_field
{
	width: 33px;
	text-align: center;
}

.column_header
{
	font-weight: bold;
	text-align: center;
}

.special_column_header
{
	font-weight: bold;
	text-align: center;
	background-color: #ccc;
}

.team1_column_header
{
	font-weight: bold;
	text-align: center;
	color: #ef44af;
}

.team2_column_header
{
	font-weight: bold;
	text-align: center;
	color: #ffa500;
}

.team3_column_header
{
	font-weight: bold;
	text-align: center;
	color: #69d5ff;
}

.team4_column_header
{
	font-weight: bold;
	text-align: center;
	color: #a865c9;
}

.team_name
{
	border: 1px solid;
	padding: 2px;
}