﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lora&family=Playfair+Display&family=Roboto&display=swap');
/* CSS Document */
BODY {
	color: #aaaaaa;
	background: #555555;
	font-family: 'Roboto', sans-serif;
	font-size: 100%;
	line-height: 1.6;
	text-decoration: none;
}

A:hover {
	background: #eeeeee;
	color: #ff0000;
	text-decoration: none;
}

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

.results_header {
	font-size: large;
	font-weight: bold;
	text-align: center;
}

.preview_header {
	font-size: 14px;
	text-align: center;
}

.results {
	font-size: 12px;
	font-style: normal;
	text-align: center;
}

h1 {
	color: #ff0000;
	font-family: 'Playfair Display', serif;
	font-size: 1.5em;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

hr.red {
	border: 0;
	color: #ff0000;
	background-color: #ff0000;
	height: 2px;
	width: 88%;
}

.page-menu {
	border-color: #000000;
	border-style: solid;
	border-width: thin;
	margin: 0 auto;
	padding: 10px;
	width: 665px;
	text-align: center;
	z-index: 0;
	top: auto;
}

.page-menu_left {
	border-color: #000000;
	border-style: solid;
	border-width: thin;
	margin: 0 auto;
	padding: 10px;
	width: 665px;
	z-index: 0;
	top: auto;
}

/* 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: 122px;
	bottom: 100%;
	left: 50%;
	margin-left: -61px;
 /* Use half of the width (120/2 = 60), to center the tooltip */
	background-color: #111111;
	color: #ffffff;
	text-align: center;
	font-size: 100%;
	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;
}