﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
/* CSS Document */
body {
	font-size: 100%;
	line-height: 1.6;
}
.champ {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.84375em;
	text-align: left;
	vertical-align: middle;
}
.stats {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.84375em;
	text-align: left;
}
.title {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.125em;
	font-weight: bold;
	text-align: center;
}
hr {
	border: 0;
	background-color: #e6e0d4;
	color: #e6e0d4;
	height: 2px;
	width: 98%;
}
hr.line {
	border: 0;
	background-color: #d70a53;
	color: #d70a53;
	height: 2px;
	width: 98%;
}
div.youtube {
	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.noborder {
	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*/
	vertical-align: top;
}
img.profile {
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	object-fit: cover;
}
table.mainstyle {
	border-collapse: collapse;
	border-style: none;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	vertical-align: top;
	width: auto;
	max-width: 98%;
}
table.t1 {
	border-collapse: collapse;
	border-style: none;
	margin-left: auto;
	margin-right: auto;
	max-width: 90%;
	vertical-align: center;
	width: 600px;
}
td {
	border-style: none;
	margin: 2px;
	padding: 3px;
	vertical-align: text-top;
}
/* 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: 150px;
  bottom: 100%;
  left: 50%;
  margin-left: -75px; /* Use half of the width (120/2 = 60), to center the tooltip */
  background-color: #111111;
  color: #ffffff;
  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;
}