﻿* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
	background-color:#ECF5FF;
	max-width:1200px;
	margin:auto
}
a {
	color: #1F567C;
	text-decoration:none
}
a:visited {
	color: #1F567C;
	text-decoration:none
}
a:hover {
	color: #0000DD;
	text-decoration:none
}
.box {
	border:1px black solid;
	margin:5px;
	padding:10px;
	background-color:white;
	box-shadow:2px 2px 5px gray;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}

.text-color-white {
	color: #FFFFFF
}
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
.cell-border-table {
	border: 1px solid #333; 
}
.cell-border-table th, .cell-border-table td { 
	border: 1px dotted #000; 
}
.auto-style17 {
	background-image: url('images/backgrnd.jpg');
}
.auto-style4 {
	border: 1px solid #808080;
	text-align: center;
}
.cell-border-left {
	border: 1px solid #808080;
	text-align: left;
	padding:8px;
}
.cell-border-center {
	border: 1px solid #808080;
	text-align: center;
	padding:8px;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}

.text-color-white {
	color: #FFFFFF
}

.error {
	color: #FF0000;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #ECF5FF;
  font-family: Arial, Helvetica, sans-serif;
}

/* Links inside the navbar */
.navbar a {
  display:inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #FFCC66;
  border:1px black solid;
  border-radius:6px;
  margin: 0px 1px 0px 1px;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  background-color: #1F567C;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;  
  border:1px black solid;
  border-radius:6px;
  margin: 0px 1px 0px 1px;
  outline: none;
  color: #FFCC66;
  padding: 5px 8px;
  background-color: #1F567C;
  font-family: inherit;
}

/* Add a background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #8DA1BD;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1F567C;
  min-width: 160px;
  box-shadow: 5px 5px 9px 0px rgba(0,50,0,0.5);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #FFCC66;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  background-color: #1F567C;
}

/* Add a background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #8DA1BD;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Tooltip styles */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 190px;
  background-color: #eee;
  color: #000;
  text-align: center;
  border:1px black solid;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.listen-button {
	border:1px gray solid;
	padding-left:5px;
	padding-right:5px;
	border-radius:4px;
	font-size:12px;
	box-shadow:2px 2px 3px;
}
.link-button {
	border:3px #1F567C solid;
	border-radius:6px;
	font-size:18px;
	padding:1px 8px;
	box-shadow:2px 2px 3px;
}