@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* CSS Document */
.month {
	font-size: 0.75em;
	font-weight: bold;
}
.year {
	font-size: 0.875em;
	font-weight: bold;
}
table.res-listing {
	font-size: 0.875em;
	text-align: left;
	margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    min-width: 68%;
    text-align: left;
}
th, td {
	margin: 0px;
	padding: 2px;
	vertical-align: middle;
}
th {
	text-transform: uppercase;
}
td {
    border-style: none;
	text-align: center;
}
/* 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;
}