html, body {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	background-color: #003147;
	background: transparent;
	color: #eee;
	font-size: 1em;
	margin: 0;
	padding: 0.5em;
	font-family: sans-serif;
}

body.desktop {
	background: #012f50;
	background: -moz-linear-gradient(top, #012f50 0%, #012730 85%);
	background: linear-gradient(top, #012f50 0%, #012730 85%);
}

div.scoreblock {
	position: relative;
	margin-bottom: 1em;
}

h1 {
	border-left: 0.2em solid #33B5E5;
color: #AABBCC;
font-size: 1.4em;
margin: 0 0.5em 0.5em 0;
padding: 0 0 0 0.5em;
text-shadow: 1px 1px 2px #000000;
	
}

a:link, a:visited {
	color: #33B5E5;
display: block;
font-weight: bold;
padding: 0.2em;
text-decoration: none;
}

.winner {
	margin-bottom: 0.5em;
	text-align: center;
}
.winner b {
	background-color: rgba(0, 128, 128, 0.5);
	color: #fff;
	padding: 0.2em 0.5em;
}
.winner b.self {
	background-color: rgba(0, 128, 0, 0.5);
}

.title {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: rgba(255, 255, 255, 0.1);
	font-size: 6em;
	font-weight: bold;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0.5em;
	padding-left: 1em;
	z-index: -1;
	text-transform: uppercase;
	max-width: 100%;
}

.scoretable {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width: 80%;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0px 1px;
}

.scoretable tr {
	margin-bottom: 1px;
}

.scoretable tr td {
	background-color: rgba(0,0,0,0.3);
	padding: 2px 4px;
	color: #aaa;
}

.scoretable tr.self td {
	background-color: rgba(0, 128, 0, 0.5);
	color: #bbb;
}

.c {
	text-align: center;
}

.r {
	text-align: right;
}

.l {
	text-align: left;
}

