﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Playfair+Display&family=Roboto&family=Source+Serif+Pro&family=Tinos&display=swap');
/* CSS Document */
body {
	background-color: #555555;
	color: #aaaaaa;
	font-size: 100%;
	line-height: 1.6;
	margin: 0px;
}

A:link, A:visited {
	color: #ff0000;
	font-weight: normal;
	text-decoration: underline;
}

A:hover {
	background: #eeeeee;
	color: #ff0000;
	height: 0px;
	font-weight: normal;
	text-decoration: none;
}

h1 {
	color: #ffffff;
	font-family: 'Tinos', serif;
	font-weight: bold;
	text-align: center;
}

.accomplishments {
	font-family: 'Source Serif Pro', serif;
	font-size: 0.875em;
	font-weight: 700;
	text-align: center;
	vertical-align: text-top;
}

.bio {
	color: #ffff80;
	font-family: 'Source Serif Pro', serif;
	font-size: 0.9375em;
	text-align: justify;
}

.profile {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8125em;
	text-align: center;
	vertical-align: top;
}

.stats {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
}

img.border {
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	height: 124px;
	width: 124px;
	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.no_border {
	border-style: none;
	height: 125px;
	width: 125px;
	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*/;
}

table.mainstyle {
	border-collapse: collapse;
	border-style: none;
	margin-left: auto;
	margin-right: auto;
	vertical-align: top;
	width: auto;
	max-width: 93%;
}

th, td {
	border-bottom: 2px solid #C0C0C0;
	margin: 2px;
	padding: 3px;
	vertical-align: 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: 120px;
	bottom: 100%;
	left: 50%;
	margin-left: -60px;
 /* 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;
}