/* $Id: waterfalls.css 6008 2025-12-04 22:45:35Z john $ */

body
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 15px;
	color: #000000;
}

td
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 15px;
	color: #000000;
}

h1
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: 19px;
	color: #808080;
	font-weight: bold;
}

h2
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-style: normal;
	line-height: 18px;
	color: #808080;
	font-weight: bold;
}

h3
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 17px;
	color: #808080;
	font-weight: bold;
}

h4
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	line-height: 16px;
	color: #808080;
	font-weight: bold;
}

a:link
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 15px;
	color:#000000;
	text-decoration:underline;
}

a:visited
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 15px;
	color:#000000;
	text-decoration:underline;
}

a:hover
{
	font-family: Sans, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 15px;
	color:#000099;
	text-decoration:underline;
}

.overlay {
	position: fixed; /* Sit on top of the page content */
	display: none; /* Hidden by default */
	width: 100%; /* Full width (cover the whole page) */
	height: 100%; /* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.3); /* Black background with opacity */
	z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
	cursor: pointer; /* Add a pointer on hover */
}

.overlaycontent{
	position: relative;
	top: 10%;
	height: 80%;
	width: 80%;
/*	font-size: 50px;
	right: 100px;
	bottom: 100px;*/
	background-color: rgba(255,255,255,1);
	color: white;
/*	transform: translate(-20%,-20%);
	-ms-transform: translate(-20%,-20%); */
}

.overlayclose{
	position: fixed;
	top: 0;
	right: 0;
	height: 40px;
	width: 40px;
/*	font-size: 50px;
	right: 100px;
	bottom: 100px;*/
	background-color: rgba(255,255,255,1);
	color: white;
/*	transform: translate(-20%,-20%);
	-ms-transform: translate(-20%,-20%); */
}

.container
{
	position: relative; /* Essential for positioning child elements */
	width: 800px;
	height: 240px;
/*	border: 1px solid black; */
}

.searchdiv
{
	justify-content: center;
	align-items: center;
}

.before,
.behind
{
	position: absolute; /* Allows precise positioning within the container */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
}

.before
{
	background-color: white;
	z-index: 2; /* Higher z-index places it in front */
}

.behind
{
	background-color: lightcoral;
	z-index: 1; /* Lower z-index places it behind */
}
