*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	font-size: 24px;
}

*:disabled
{
	opacity: 0.5;
}

html
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: #259FF9 linear-gradient(to bottom, #D6EEFF, #259FF9) repeat-x fixed;
}

body.mobile
{
	overflow: hidden;
}
body.desktop
{
	padding: 12px 16px;
}

h2
{
	font-size: 48px;
	color: #002875;
}

table
{
	border-collapse: collapse;
}
th, td
{
	border: 1px solid #002875;
	text-align: center;
	padding: 4px 6px;
}
th
{
	color: #002875;
	background: #79C4FB;
}
th.right, td.right
{
	text-align: right;
}

p
{
	margin: 6px 0;
}

a
{
	color: #002875;
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}

button, input[type=button], input[type=submit], a.button
{
	font-size: 32px;
	color: #C0E4FF;
	background-image: linear-gradient(to bottom, #003FB8, #002875);
	border: 1px solid #C0E4FF;
	border-radius: 8px;
	padding: 8px 16px;
}
.desktop button:hover, .desktop input[type=button]:hover, .desktop input[type=submit]:hover, .desktop a.button:hover
{
	background-image: linear-gradient(to bottom, #0054F5, #003FB8);
}
a.button, a.button:hover
{
	text-decoration: none;
	display: inline-block;
}

.player
{
	position: relative;
	width: 64px;
	height: 64px;
	margin: 0 auto;
}
.player .name
{
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 4px;
	padding: 1px 4px;
	font-size: 14px;
	font-weight: normal;
	color: #002875;
	background: rgba(192, 243, 255, 0.9);
	border-radius: 6px;
}
#selected .player .name
{
	position: relative;
	background: none;
	font-size: 28px;
	padding-left: 116px;
	line-height: 90px;
}
.player img
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: 1px 1px 4px #002875;
}

.tabs
{
	display: block;
	border-bottom: 1px solid #002875;
	margin-bottom: 16px;
}
.tabs::after
{
	content: "";
	display: block;
	clear: left;
}
.tabs li
{
	display: block;
	float: left;
	border: 1px solid #002875;
	border-bottom-width: 0;
	margin: 8px 8px 0;
}
.tabs a
{
	display: block;
	font-size: 36px;
	padding: 8px 16px;
}
.tabs a:hover
{
	text-decoration: none;
	background: #79C4FB;
}
.tabs .opened
{
	margin-top: 0;
	background: #79C4FB;
}
.tabs .opened a
{
	padding: 12px 16px;
}
.tabContent
{
	display: none;
}
