﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Assistant&family=Barlow&family=Bebas+Neue&family=Bree+Serif&family=Caladea&family=Catamaran&family=Crimson+Text&family=Fira+Sans&family=IBM+Plex+Sans&family=Lato&family=Libre+Franklin&family=Lora&family=Mulish&family=Nunito&family=Nunito+Sans&family=Open+Sans&family=Roboto&family=Sanchez&family=Source+Serif+Pro&display=swap');
/* CSS Document */
body {
	background: rgb(104,110,111);
	background: linear-gradient(0deg, rgba(104,110,111,1) 0%, rgba(83,88,89,1) 50%, rgba(66,70,71,1) 100%);
	color: #FFFFFF;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 100%;
	line-height: 1.6;
	margin: 0px;
}

a, a:link, a:visited {
	color: #e5ff4c;
	text-decoration: none;
}

a:hover {
	background-color: #d0ccc8;
	color: #c8102e;
	text-decoration: none;
}

.nav {
	color: #ffffff;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 0.75em;
	font-weight: bold;
	text-align: center;
}

caption {
	color: #ffffff;
	font-family: 'Sanchez', serif;
	font-size: 1.25em;
	font-weight: bold;
	margin: 1px;
	padding: 3px;
	text-align: justify;
}

img.headline {
	border-style: none;
	display: block;
 /*images must be set to block in order use auto margins*/
	margin: 0 auto;
 /*centers images in most browsers*/
	text-align: center;
 /*centers images in older browsers*/;
}

img.kyky {
	border-style: none;
	max-height: 135px;
	max-width: 135px;
}

table.mainstyle {
	border-collapse: collapse;
	border-style: none;
	margin-left: auto;
	margin-right: auto;
	min-width: 90%;
	border-spacing: 15px;
	vertical-align: top;
	width: auto;
}

table.referees {
	border-collapse: collapse;
	border-style: none;
	font-size: 0.953125em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	vertical-align: middle;
}

th {
	border-style: none;
	color: #ffffff;
	font-family: 'Sanchez', serif;
	font-size: 1.25em;
	margin: 2px;
	padding: 3px;
	text-align: justify;
}

td {
	border-style: none;
	font-size: 0.8125em;
	margin: 2px;
	padding: 3px;
	vertical-align: middle;
}

td.builders {
	text-transform: uppercase;
	vertical-align: top;
	width: 300px;
}

td.hall {
	text-transform: uppercase;
	vertical-align: top;
	width: 200px;
}

td.name {
	text-transform: uppercase;
	width: 50%;
}

td.staff {
	vertical-align: top;
	max-width: 50%;
}
/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted;
 /* If you want dots under the hoverable text */;
}

/* Tooltip text */
.tooltip .tooltiptext {
	visibility: hidden;
	width: 300px;
	bottom: 100%;
	left: 50%;
	margin-left: -150px;
 /* Use half of the width (120/2 = 60), to center the tooltip */
	background-color: #111111;
	color: #ffffff;
	text-transform: none;
	text-align: center;
	font-weight: normal;
	padding: 3px 0;
	border-radius: 6px;
  /* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 1;
}

.tooltip .tooltiptext::after {
	content: " ";
	position: absolute;
	top: 100%;
 /* At the bottom of the tooltip */
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #111111 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
	visibility: visible;
}