/* CSS file */

body {
	font-family: Arial;
	font-size: 16px;
	background-image: url("../../graphics/ebg.jpg");
	margin-left: 1.5%;
	margin-right: 1.5%;
}
h3 {
/* Page header */
	font-family: "Comic Sans MS";
	font-size: 28px;
	font-weight: bold;
	color: #202020;
	text-align: center;
	text-decoration: underline;
	margin: 20px 0px 20px 0px;
}

a:link {color: blue}
a:visited {color: blue}


/* Tooltip popup text */

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: lightgrey;
  color: black;
  font-family: Arial;
  text-align: left;
  padding: 5px 5px;
  border-radius: 5px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  width: 150px;
  bottom: 120%;
  left: -60px;
  margin-left: -60px; }

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}