html {
  font-family:Georgia;
  font-size: 14pt;
 }
      /* See p attributes, after <h> styles below, for line-height */

  
	  
	  
sub {
  vertical-align:sub;
   line-height:0;
}
sup {
  vertical-align:super;
  line-height:0;
}

/*                          tooltip                                        */
:root{
  --tt-gap: 8px;                 /* space between trigger and tooltip */
  --tt-pad: 10px 12px;
  --tt-radius: 10px;
  --tt-shadow: 0 8px 24px rgba(0,0,0,.18);
  --tt-bg: #111;
  --tt-fg: #fff;
  --tt-z: 9999;
  --tt-maxw: 320px;              /* default */
  --tt-minw: 200px;              /* prevents tall skinny columns */
  --tt-fs: 14px;
  --tt-line: 1.35;
}

/* Phones: near full width, slightly larger text */
@media (max-width: 480px){
  :root{
    --tt-maxw: calc(100vw - 16px);
    --tt-minw: min(220px, calc(100vw - 16px));
    --tt-fs: 15px;
    --tt-radius: 12px;
  }
}

/* Big desktops: allow a bit wider tooltips */
@media (min-width: 1200px){
  :root{ --tt-maxw: 440px; }
}

/* Reduce motion friendliness */
@media (prefers-reduced-motion: reduce){
  #tooltip{ transition: none !important; }
}

/* === Tooltip core === */
#tooltip{
  position: fixed;               /* stable on scroll */
  z-index: var(--tt-z);
  background: var(--tt-bg);
  color: var(--tt-fg);
  padding: var(--tt-pad);
  border-radius: var(--tt-radius);
  box-shadow: var(--tt-shadow);
  font-size: var(--tt-fs);
  line-height: var(--tt-line);


  /* closed state */
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,0,0) scale(.98);
  transition: opacity .12s ease, transform .12s ease, visibility 0s linear .12s;

  /* viewport safety */
  max-width: var(--tt-maxw);
  min-width: var(--tt-minw);
  max-height: 70vh;              /* scroll internally if very tall */
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  white-space: normal;           /* multi-line */
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* open state: interactive so links can be clicked */
#tooltip[data-open="true"]{
  opacity: 1;
  visibility: visible;
  transform: translate3d(var(--tx,0), var(--ty,0), 0) scale(1);
  pointer-events: auto;
  font-family:sans-serif;
}

/* caret arrow */
#tooltip::after{
  content:"";
  position:absolute;
  width:8px; height:8px;
  background:var(--tt-bg);
  transform:rotate(45deg);
  left: var(--caret-left, 50%);
  top: var(--caret-top, auto);
  bottom: var(--caret-bottom, auto);
  translate: -50% 0;
  box-shadow: var(--tt-shadow);
  
}
.btn {
 border: none;
  margin: 0;
  padding: 0;
  font: inherit;
  text-decoration: underline 3px dotted #620404;
  background-color:inherit;
 }
 
/*                                      End of tooltip                    */
 
.header {
  background-color: none;
  padding: 0px;
  margin-bottom: 0;
}

.header_title {
font-family: 'Arial', sans-serif;
font-size: 1.5em;
font-weight: bold;
color: #620404;
margin: 1% 0% 0% 5%;
  }
@media screen and (max-width: 600px) {
    .header_title {font-size:1.3em;}
 }
.header_subtitle {
   font-family: 'Arial', sans-serif;
   font-size: 16px;
   color: #620404;
   font-weight: normal;
   margin: 0% 0% 1% 6%;
   display: inline-block;
   }
@media screen and (max-width: 600px) {
    .header_subtitle {margin-bottom:20px;}
	.header_subtitle {font-size: 12px}
 }
 .social {
	display: inline-block;
	float: right;
	margin-right: 5%;
	font-family: 'Arial', sans-serif;
   	font-size: 16px;
   	color: #620404;
   font-weight: normal;  
 } 

 fieldset {
background-color: none;
border: 1px solid #620404;
border-radius: 5px;
/* padding: 20px 10px 10px 10px; */
text-align:left;
/*box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
 border-top-width: 50px; */
}
   
  /*            Search Box                                 */

.search
{
	float: right;
	margin-right: 5%;
	display: inline-block;
	border: 1px solid gray;
	overflow: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.search input[type="text"]
{
	border: 0px;
	width: 67%;
	padding: 5px 5px;
}

.search input[type="text"]:focus
{
	outline: 0;
}

.search input[type="submit"]
{
	border: 0px;
	background: none;
	background-color: gray;
	color: #fff;
	float: right;
	padding: 5px;
	border-radius-top-right: 5px;
	-moz-border-radius-top-right: 5px;
	-webkit-border-radius-top-right: 5px;
	border-radius-bottom-right: 5px;
	-moz-border-radius-bottom-right: 5px;
	-webkit-border-radius-bottom-right: 5px;
        cursor:pointer;
}

/* Small screen width for Search Box */

@media only screen and (min-width : 150px) and (max-width : 200px)
{
	.search	{width: 95%;}
}
/*                       End of Search Box                  */

 
/*topnav list*/
ul.topnav {
  list-style-type: none;
  margin: 20px 0px 5px 0px;
  padding: 0;
  overflow: hidden;
  background-color:/* #f0f0f0 */;
  position: relative;
  top: 0;
  width: 90%;
  display: block;
  margin-left:auto;
  margin-right:auto;
 }

ul.topnav li {
  float: left;
}

ul.topnav li a {
  display: block;
  font-family: Arial;
  font-size:.7em;
  color: #6e0000;
  background-color:#6204042F;
  text-align: center;
  padding: 6px 12px;
  margin:2px;
  text-decoration: none;
  line-height: 1.0em;
  border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
        cursor:pointer;
 
}

/* ul.topnav li a:visited {
background-color: #0000ff;
color: #ffffff:
 } */

ul.topnav li a:hover:not(.active) {
  background-color: #80000023;
}

ul.topnav li a.active {
  background-color: #04AA6D;
}


/* ul.topnav li:nth-of-type(even) {
    background-color: #a7544945;
}	 */
	
	
	

ul.topnav li.right {
  float: right;
}
 @media screen and (max-width: 600px) {
    ul.topnav {margin-top: 3em;}
	 ul.topnav li.right, 
  ul.topnav li {float: none;}
 }






/* unvisited link */
a:link {
  text-decoration:underline;
  text-decoration-color:#620404;
  color:black;
}

a:visited {
  color:  blue;
}

/* mouse over link */
a:hover {
  color:  #620404;
  text-decoration: bold;
}

/* selected link */
a:active {
  color: black;
  text-decoration: none;
}


/*End of topnav*/	

.ad_top {
clear: both;
justify-content: center;
margin:  20px 0px 20px 0px;
width: 90%;
/* border: 2px solid blue; */
display: block;
margin-left:auto;
margin-right:auto;
 }
  .ad_rttop {
margin: 7% 20% 5% 20%;
max-width: 100%;
height: 600px;
/* border: 2px solid blue; */
 }
 
.ad_btm {
clear: both;
justify-content: center;
margin:  20px 0px 20px 0px;
width: 90%;
/* border: 2px solid blue; */
display: block;
margin-left:auto;
margin-right:auto;
 } 
.smallad {
justify-content: center;
margin:  0px 10px 0px 10px;
/* border: 2px solid blue; */
 }
 



.page_title {
width: 100%;
margin-left: 5%;
overflow: hidden;
font-family: 'Arial', sans-serif;
font-size: 1.3em;
font-weight: bold;
font-style:italic;
color: #620404;
text-align:left;
margin-bottom:20px;
 }
 
.page_subtitle {
width: 80%;
padding: 0% 10% 0% 7%;
margin-bottom: 20px;
 }
.attribution_btmpage{ 
 font-size:0.7em; font-weight:normal; text-align:right;
 } 
.paragraph_label {
font-family:arial;
font-size:.9em;
font-weight: bold;
color:#620404; 
 }
.map_legend {
width: 80%;
padding: 1% 0% 1% 20%;
display: inline;
 }
ul.map_legend {
display: inline;
}
 
.wrapper { /* Added only to keep footer at bottom*/
position: relative;
min-height: 100vh;
margin: 0% 3% 0% 3%;
 }
 
.content {  /* Also, added only to keep footer at bottom*/
padding-bottom: 8rem;
 }
 
 /* For desktop: */
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/*.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 1;
  /*background-color:#26caba;
  width: 10%;
  padding-top: 100px;
}*/

.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 1;
  /*background-color:#988358;*/
  width: 65%;
  
}

.flex-items:nth-child(2) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 2;
  /*background-color: #65945c;*/
  width: 33%;
  text-align: center; /* Horizontally centers internal divs */
}


  /* For tablets: */
 
@media screen and (max-width: 768px) {
.flex-container {
  display: flex;
  flex-direction: column;
  justify-content: normal;
  align-items: normal;
  align-content: normal;
  
}

/*.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 3;
  background-color: #6c7984;
  width: 100%;
}*/

.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 1;
  background-color: ;
  width: 100%;
}

.flex-items:nth-child(2) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 2;
  background-color: ;
  width: 100%;
  text-align: center;  /* Horizontally centers internal divs */
}
 }
 /* Horizontally centers internal divs */
   /* For phones: */
@media screen and (max-width: 600px) {
.flex-container {
  display: flex;
  flex-direction: column;
  justify-content: normal;
  align-items: normal;
  align-content: normal;
}

/*.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 3;
  background-color: #ff8040;
  width: 100%;
}*/

.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 1;
  background-color: ;
  width: 100%;
}

.flex-items:nth-child(2) {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 2;
  background-color:;
  width: 100%;
  text-align: center;  /* Horizontally centers internal divs */
}
 }

.article_column {
display: inline-block;
max-width: 98%;
/* margin-left:1%; */


 }

/*article_title*/

/*article_subtitle*/


/*article_attribution*/
.article_attribution {
display: inline-block;
margin: 0.6em 0em 0.6em 0em;
font-family: arial;
font-size: .8em;
 }
 .topic {
 display: inline-block;
 height: 1em;
 text-height: 0.8em;
 padding: 0px;
 margin: 0;
 border: 0;
 background-color: #e7e7e7;
 text-align: center;
}

 /*article_body*/
.article_body {
	width:  90%;
	padding: 10px 0px 5px 0px;
    margin: 2% 0% 0% 5%;
	text-align:left;
	border-top: 1px solid #c0c0c0;
	background: none;
}
@media screen and (max-width: 600px) {
    width:100%;
	margin: 0%;
	/* display: flex;
	 flex-wrap: wrap;  */
 }
 .article_photo_rt {
float: right;
margin: 2% 0% 0% 2%;
max-width: 100%;
 }
 .click_enlarge {  /* styling of text saying "Click to enlarge" */
    margin: 0px;
	padding: 0px;
	font-family: 'Arial', sans-serif;
    font-size: 0.9em;
	font-weight: bold;
	color: #8000007C;
	line-height: 1.0;
	text-align:center; 
 }
 .image_width {
 max-width: 60%; 
  }
 .linkback {
 position: absolute;
 right: 40%;
 }
 .responsive {
max-width: 75%;
min-width: 50%;
height: auto;
 }

  
  
/* .rt_column {      ??? Still needed- probably not needed, flex_items div replaced 
display: inline-block;
 }
 details > summary {
  list-style: none;
}
details summary::-webkit-details-marker {
  display:none;
}*/
.center_rtcolumn { /* Div horizontally centered by text-align center in flex it;ems */
margin: 10% 5% 0% 5%;
 } 
.rtcolumn_title {
	width:  100%;
	text-justify: auto;
	border: none;
	border-radius: 5%;
	margin-top: -33px;
	
}
.article_rtcolumn_border {
	width:  100%;
	text-justify: auto;
	border: 1px solid #6204044B;
	border-radius: 25px;
	border-top-width: 50px;
	margin: 0% 11% 0% 0%;
	text-align: center;
	/* box-shadow:  #c0c0c0; */
	
}
.border_box {
border:thin;
border: 2px solid #6204044B;
border-radius: 5px;
padding: 0px 10px 10px 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
border-top-width: 50px;
background-image: linear-gradient( #6204044B, white);
 }
.text {
	width:  100%;
	padding: 0px 0px 0px 0px;
    margin: 0% 0% 0% 0%;
	text-align:left;
 }
 
.text_right {
	width:  75%;
	padding: 0px 0px 0px 0px;
    margin: 0% 0% 0% 0%;
	text-align:right;
 }
p.indent {
    
}
 
div.a {
  text-indent: 15px;
}

.small_title {
text-align:center;
width: 100%;
font-family: 'Arial', sans-serif;
font-size: 1.25em;
font-weight: bold;
color: #620404;
z-index: 12;
margin-top: -30px;
position:static;
}

.titlebox {
  background-color:#51000023;
  /*background: url('../images/equation.svg')center / cover no-repeat;*/
  color: #800000;
/*   cursor: pointer; */
  padding: 7px 0px 0px 0px;
/*   vertical-align:middle; */
  max-width: 95%;
  height: 1.7em;
  border: none;
  outline: none;
  font-size: 0.8em;
  font-family: 'Arial', sans-serif;
  text-align:center;
  margin-bottom:10px;
  
}


 .image {
  
  text-align: center;
 
} 
 /* Centers an image horizontally.  Won't work if image size=100% 
Probably easier to just add to html attributes  class="center"    */
  .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}
@media screen and (max-width: 600px) {
    .center {width: 95%;}
 }


.center_form {
float: right;

 }

.footer {
  position: absolute;
  height: 8rem;  /* Added along with wrapper and content only to keep footer at bottom */
  width: 90%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 1% 0% 0% 5%;
  background-color: #efefef;
  display: inline-block;
}
.footer_text {
 text-align: center;
  font-size: 12px;
}
.leftbox { /*  Revise as needed */
float: left;
width: 200px;
 }
.middlebox{


}
.rightbox {
float: right;
width: 300px;

 }
 
.scroll {
overflow-x:auto;
 overflow-y:auto;
margin-bottom:20px;
 }
 
/*span:after,
span:before{
    content:"\00a0\00a0\00a0\00a0\00a0";
    text-decoration:line-through;
	font-weight: bold;
	font-style: normal;
}*/


.two-divs-sbs {
 width: 40%;
  display: inline-block;
  margin:40px;
 }
 @media screen and (max-width: 768px) {
 .two-divs-sbs {
  width:100%;
  margin: 40px 5px 40px 5px;
	 }
}
  @media screen and (max-width: 600px) {
  .two-divs-sbs {
  width:95%;
  margin: 40px 5px 40px 5px;
}
} 

#three-divs-sbs {  /* three-divs-sbs */
 display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* border: 1px black solid; */
    margin: auto;
    background-color: none;
    align-items: stretch;
/*   justify-content: center; */
    flex-wrap: wrap;
     max-width:95%;
	 
 }					 /* End of three-divs-sbs */
 

 .flex-item-3sbs {
    background-color: #f1f1f1;
    padding: 0px;
    font-family: 'Arial', sans-serif;
    font-size: 1em;
    color: dark grey;
    margin-left: auto;
    margin-right: auto;
	
}
.flex-item-3sbs:hover {
  background-color:none;
  color: white;
  opacity:0.6; 
}

@media screen and (max-width: 768px) {
.flex-item-3sbs {
 left-margin: auto;
 right-margin: auto;
  }
  }
 
 /* Ordered list styles */
 


ol.a {
	counter-reset:li; /* Initiate a counter */
	margin-left:0; /* Remove the default left margin */
	padding-left:0; /* Remove the default left padding */
	/* font-family: 'Arial', sans-serif; */
	font-weight:normal;
}
ol.a li {
	position:relative; /* Create a positioning context */
	margin:0 0 6px 2em; /* Give each list item a left margin to make room for the numbers */
	padding:4px 8px; /* Add some spacing around the content */
	list-style:none; /* Disable the normal item numbering */
	border-top:0px solid #666;
	background:none;
	line-height:1.3;
}
ol.a li:before {
	content:counter(li); /* Use the counter as content */
	counter-increment:li; /* Increment the counter by 1 */
	/* Position and style the number */
	position:absolute;
	top:5px;
	left:-2em;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	width:2em;
	/* Some space between the number and the content in browsers that support
	   generated content but not positioning it  */
	margin-right:8px;
	padding:4px;
	border-top: 0px solid #666;
	color:#fff;
	background:#6204044B;
	font-weight:bold;
	font-family: 'Arial', sans-serif;;
	text-align:center;
}

ol.a ol.a li:last-child {margin-bottom:0px;}

ol.b {/*                             List in accordion                                     */
	counter-reset:li; /* Initiate a counter */
	margin-left:0; /* Remove the default left margin */
	padding-left:0; /* Remove the default left padding */
}
ol.b li {
	position:relative; /* Create a positioning context */
	margin:0 0 6px 2em; /* Give each list item a left margin to make room for the numbers */
	padding:4px 8px; /* Add some spacing around the content */
	list-style:none; /* Disable the normal item numbering */
	border-top:0px solid #666;
	background:none;
}
ol.b li:before {
	content:counter(li); /* Use the counter as content */
	counter-increment:li; /* Increment the counter by 1 */
	/* Position and style the number */
	position:absolute;
	top:10px;
	left:-2em;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	width:2em;
	/* Some space between the number and the content in browsers that support
	   generated content but not positioning it  */
	margin-right:8px;
	padding:4px;
	border-top: 0px solid #666;
	color:#fff;
	background:#8000003E;
	font-weight:bold;
	font-family:"Helvetica Neue", Arial, sans-serif;
	text-align:center;
}

ol.b li:last-child {margin-bottom:0px;}

/*                                  End of list in accordion                           */

li ul {
margin-top:2px;

}
 
ul.a li {
text-align: left;
margin: 5px;
margin-left: 10px;

/* list-style-image: url('sqpurple.gif'); */
}

ul.a li::marker  {
color: #620404;
}

/*ul.a li::before {
   content: "\2022";  Add content: \2022 is the CSS Code/unicode for a bullet 
  color:#620404;
  
}*/


ul.b li	{
margin: 7px 50px 40px 50px;
font-size: 0.5em;
font-family: 'Arial', sans-serif;
/* font-weight: 200; */
/* color: #4F4F4F; */
 }
ul.b li::marker  {
color: #b47474;
}
ul.c li{
margin-bottom: 40px;
 }
ul.d li{
list-style: none;
margin-bottom: 10px;
 }
 /* End of list styles */

/* Text elements */
h1 {
	padding: 0px;
	font-family: 'Arial', sans-serif;
	font-size: 1.3em;
	font-weight: bold;
	color: #800C25;
	text-align:left;
}
h2 {
	margin: 0px;
	padding: 0px;
	font-family: 'Arial', sans-serif;
	font-size: 1.3em;
	display: inline-block;
}
@media screen and (max-width: 600px) {
    h2 {font-weight: bold;
	color: black;
	h2 font-size: 1.0em;}
    }
h3 {
	margin: 10px 0px 0px 0px;
	padding-bottom: 0px;
	font-size: 1em;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	color: #620404;
	display: inline-block;
    text-align:left;
	
}
h4	{
	margin: 0px;
	padding: 0px;
	font-size: 0.9em;
	font-family: 'Arial', sans-serif;
	font-weight:700;
	color: #620404;
 	line-height: 100%;
	text-align:left;
}
h5	{ /*  used for word "source" in tooltip label */
	margin: 0px;
	padding: 0px;
	font-size: 0.8em;
	font-family: 'Arial';
	font-style:italic;
   /*  line-height: 100%; */
	text-align:right;
}
 


h6 {
    margin: 0px;
	padding: 0px;
	font-family: 'Arial', sans-serif;
	font-style:italic;
    font-size: 0.7em;
	color: #d1b5b5; 
 } 
h7 {
    margin: 0px;
	padding: 0px;
	font-family: 'Arial', sans-serif;
    font-size: 0.9em;
	font-weight: bold;
	font-style: italic;
	color: gray;   
 }
 h8 {
    margin: 0px;
	padding: 0px;
	font-family: 'Arial', sans-serif;
    font-size: 0.8em;
	font-weight: normal;
	/* color: #818181; */
	line-height: 1.4;
	float: right;
	word-spacing:10px;
 }
 h9 {
    margin: 0px;
	padding: 0px;
	font-family: 'Arial', sans-serif;
    font-size: 1em;
	font-weight: normal;
	font-style: normal;
	color: gray;   
 }
 h10 {
	margin: 0px;
	padding: 0px;
	font-family: 'Arial', sans-serif;
	font-size: 5em;
	font-weight: 200;
	color: #000000;
	text-align:left;
}
 h11 {
	margin: 0px;
	padding: 0px;
font-family:serif;
	font-size: 4em;
	font-weight: 200;
	color: gray;
	text-align:center;
}

p, ol, ul {
	margin-top: 0px;
text-decoration: none;
}

p {
	line-height:1.4em;
	text-justify: auto;
}

strong {
	font-weight: 700;
}


/*                   Links - styles must be in order shown below */

/* unvisited link */
a:link {
  text-decoration:underline;
  text-decoration-color:#620404;
  color:black;
}

a:visited {
  color:  #474747;
}

/* mouse over link */
a:hover {
  color:  #620404;
  text-decoration: bold;
}

/* selected link */
a:active {
  color: black;
  text-decoration: none;
}
/* links in a tooltip */

a.tt:link {
  text-decoration:underline;
  color:white;
}

a.tt:visited {
  color:  white;
}

/* mouse over link */
a.tt:hover {
  color:  #fffac4;
  text-decoration: none;
}

/* selected link */
a.tt:active {
  color: white;
  text-decoration: none;
}


/*                   End of Links                                 */

/* Button */

.button1 {
  background-color: white;
  color: black;
  border: 2px solid #04AA6D;
}

.button1:hover {

}

.button2 {
  background-color: #04AA6D;
  color: white;
  border: none;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  background-color: white;
  color: black;
  border: 2px solid #008CBA;
}

.button2:hover {
  background-color: #008CBA;
  color: white;
}

.button3 {
 background-color: #3498DB;
  color: white;
   border: none;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 10px;
  background-color: white;
  color: black;
  border: 2px solid #008CBA;
}

.button3:hover {
  background-color: #008CBA;
  color: white; 
}
.button4 {
  transition-duration: 0.4s; 
  box-shadow: 2px 2px 10px 3px gray; /* horiz vert blur spread color */
 }
 
 .button4:hover {
opacity: 50%;
}
.button5 {
  background-color: #51000023;
  color: black;
   border: none;
  padding: 6px;
  text-align: center;
  text-decoration: bold;
  /* display: inline-block; */
  font-size: 12px;
  font-weight:bold;
  margin: 0 20% 0 50%;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 10px;
  border: none;
 }
 .button5:hover {
  background-color: gray;
  color: white; 
}

#button6 {
  background-color: #6204044b;
  color: black;
   border: none;
  padding: 6px;
  text-align: center;
  text-decoration: bold;
  /* display: inline-block; */
  font-size: 12px;
  font-weight:bold;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 10px;
  border: none;

 }
 #button6:hover {
  background-color: #008CBA;
  color: white; 
}

/* End of buttons */

/* details drop down */

details {
  padding: 10px;
  background-color: #51000023;
  border-radius: 5px;
  box-shadow: 0px 2px 10px 0px gray;
  color: #3c3c3c;
  transition: 0.2s; 
 }
 
  details:hover { 
  background:#80000018;
}
summary{  
   display: inline-flex;
  /*  list-style: triangle; */
   display:list-item
 }

/* End of details drop down */

/*                       Javascripts                 */

/* Readmore javascript style */
.more {
display: none;
}
/* End of Read more javascript style */

/*                       Accordian script                 */

.accordion {
  background-color:#dbdbed;
  /*background: url('../images/equation.svg')center / cover no-repeat;*/
  color: #444444;
  cursor: pointer;
  padding: 0% 3% 0% 10%;
  margin: 3px;
  width: 95%;
  height: 2.5em;
  border: none;
  text-align: left;
  outline: none;
  font-size: 0.9em;
  transition: 0.4s;
}

/* Accordion 1 */
.accordion.active, .accordion:hover { background-color: #80000023; }
.accordion.active:after { content: "\2212"; }

/* Accordion 2 */
.accordion2.active, .accordion2:hover { background-color: #b9918f79; }
.accordion2.active:after { content: "\2212"; }


/* .active, .accordion:hover {
  background-color: #80000023; 
}
.accordion:after {
  content: '\002B';
  color: #b47474;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
} */
.panel {
  padding: 0 0px;
  display: none;
  background-color: none;
  overflow: visible;
  font-size: 1em;
  font-weight:100;
  width: 95%;
  text-align: left;
  margin-left: 4%;
}
/* End of accordion */




/*           flex-container2       */
.flex-container2 {
  display: flex;
  margin: 1% 5% 2% 5%;
  background-color: none;
  justify-content: center;
  flex-wrap: wrap;
  
}
.flex-container2 > div {
  background-color:none;
  margin: 0;
 /*  padding: 20px; */
  max-width: 40%;
  font-family: 'Arial', sans-serif;
  font-size: 1em;
  color: dark grey;
}
 @media screen and (max-width: 600px) {
  .flex-container2 > div   {max-width: 100%;}
 }
/*           End flex-container2       */



/*           flex-container3       */
.flex-container3 {
  display: flex;
  flex-direction: row;
  margin: 0;
  background-color: none;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  max-width:100%;
  }
.flex-container3 > div {
  background-color: #f1f1f1;
  width:33%;
  margin: 0;
  padding: 0px;
  font-family: 'Arial', sans-serif;
  font-size: 1em;
  color: dark grey;
}
 @media screen and (max-width: 600px) {
  .flex-container3 > div   {max-width: 100%;}
 }
/*           End flex-container3       */


/*           flex-container4       */
.flex-container4 {
  display: flex;
  /* background-color:  #623d3a79; */
/*   background-image: linear-gradient(#623d3a79, gray); */
 /*  justify-content: center; */
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  margin-bottom:40px;
 /*  margin: auto; */
  }
.flex-container4 > div {
  flex: 25%;
  padding: 20px;
  background-color: none;
  max-width:75%;
  max-height:100px;
  margin: 10px 20px 5px 20px;
  padding: 0px;
  font-family: 'Arial', sans-serif;
  font-size: 1em;
  color: dark grey;
}
 @media screen and (max-width: 600px) {
  .flex-container4 > div   {max-width: 100%;}
 }
/*           End flex-container4       */


 .flex-container-btm {
  display: flex;
  margin: 0 0px 0 0px;
  background-color: none;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  max-width:100%;
  /* height:500px; */
  background-color: /* powderblue */;
  overflow:hidden;
  }
 @media screen and (max-width: 768px) {
 .flex-container-btm {
 flex-direction: column;

 }
  /* .flex-container-btm > div   {max-width: 100%;} */
 }

  #leftbox {
           padding-left:0%;
            background: none;
            width: 45%;
            height: 280px;
			margin: 0px 0px 50px 20px;
			display: inline-block;
        }

        #middlebox {
            float: left;
            background: none;
            width: 40%;
            height: 280px;
			margin: 0px 0px 50px 20px;
        }

        #rightbox {
            float: right;
            background: none;
            width: 45%;
            height: 280px;
			margin: 0px 0px 50px 20px;
			display: inline-block;
			}

 @media screen and (max-width: 768px) {
 #leftbox {


   }  
 #middlebox {


   } 
 #rightbox {


   }   
 }


 @media screen and (max-width: 600px) {
 #leftbox {
 width:100%;
   }  
 #middlebox {
 width:100%;
 margin-top:20px;
   } 
 #rightbox {
 width:100%;
 margin-top:20px;
   }   
 }

.full_page_view {
text-align:center;
font-size:0.9em;
font-family:arial;
 }

 
/*           flex-container_map_legend       */
.flex-container_map_legend {
  display: flex;
  margin: 20Px;
  background-color: none;
  align-items: top;
  justify-content: center;
  flex-wrap: nowrap;
  max-width:100%;
  }
.map_legend_graphic {
  margin: 0;
  padding: 0 0 0 20px;
}
.map_legend_text {
  margin: 0;
  padding: 0px 20px 0px 5px;
  font-family: 'Arial', sans-serif;
  font-size: 1em;
  color: dark grey;
  
}
 @media screen and (max-width: 600px) {
  .flex-container_map_legend > div   {max-width: 100%;}
 }
 .map_legend_note1 {
  margin-top: 20px;
  padding-left: 30%;
  font-family: 'Arial', sans-serif;
  font-size: .9em;
  color: dark grey;
  text-align:left;
}
 .map_legend_note2 {
  margin: 0% 5% 0% 0%;
/*   padding-right: 5%; */
  font-family: 'Arial', sans-serif;
  font-size: .8em;
  color: dark grey;
  text-align:right;
}
 
 
/*           End of flex-container_map_legend       */

    #map {
       width: auto;
       height: 100%;
       margin: 0% 5% 0% 5%;
       border-style:solid;
       border-width:1px;
       border-color:#c0c0c0;
    }  
/*                   Multiple modals on page              */

    /* myModal styling - the window that displays on click */
    #myModal {
      display: none;
      position: fixed;
      z-index: 5;
      padding-top: 60px;
      left: 0; top: 0;
      width: 100%; height: 100%;
      overflow: auto;
      background-color:#ffffff;
	  opacity:1;
	  margin:auto;
    }

    #myModal img {
      margin: auto;
      display: block;
      max-width: 80%;
      max-height: 80%;
    }
	
	.myImages:hover {
     margin-right:auto;
     margin-left:auto;
	 opacity: 0.6;
	 }
	
	 .myImages:hover,
	 .myImages:focus {
     color: #bbb;
     text-decoration: none;
     cursor: pointer;
    }


    #caption {
      text-align: center;
      color: white;
      padding: 10px;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 20px;
	  padding:8px 12px;
	  font-family: 'Arial', sans-serif;
      color: #620404;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
	  transition: 0.3s;
	  background-color:#408080;
	  border-radius: 10px;
    }
	.close:hover,
    .close:focus {
     color: #bbb;
     text-decoration: none;
     cursor: pointer;
}
	/* 100% Image Width on Smaller Screens */
/* 	@media only screen and (max-width: 700px){
     .modal-content {
    width: 100%;
  } */

/*                   End of Multiple modals on page              */


/*NEW Modal image - has box close X script*/



/*END OF NEW Modal image script*/




/* label on activity map */
.map-label {
    position: absolute;
    width:200px;
    font-size:1em;
}
/* end of label on activity map */


/* styled-table */
.styled-table {
    border-collapse: collapse;
    margin: 20px 0px 60px 15px;
    font-size: 0.85em;
    font-family: sans-serif;
    min-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
    background-color: #623d3a79;
    color: #ffffff;
    text-align: left;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
	vertical-align:top;
}
#centered_columns {
	text-align:center;
 }
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
/* styled-table-group (rows in groups) */
.styled-table-group {
    border-collapse: collapse;
    margin: 20px 0px 60px 15px;
    font-size: 0.85em;
    font-family: sans-serif;
    min-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table-group thead tr {
    background-color: #623d3a79;
    color: #ffffff;
    text-align: left;
}
.styled-table-group th,
.styled-table td {
    padding: 12px 15px;
	vertical-align:top;
}
.styled-table-group tbody tr {
    border-bottom: 1px solid #dddddd;

 }


/* .styled-table tbody tr:last-of-type {
    color: #009879;
} */

/* End of Styled Table */

/* table-events */
.table-events {
    border-collapse: collapse;
	border: 1px solid #620404;
    /* margin: 20px 0px 60px 15px; */
    font-size: 0.80em;
    font-family: sans-serif;
    min-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	background-color: #bfa6a479;
}
.table-events thead tr {
    background-color:#620404 /* #623d3a79 */;
    color: #ffffff;
    text-align: left;
}
.table-events th,
.table-events td {
    padding: 12px 15px;
	vertical-align:top;
	text-align: left;
}
.table-events tbody tr {
    border-bottom: 1px solid #dddddd;
}

.table-events tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
.table-events tbody {
border: 2px solid black;
 }

/* .table-events tbody tr:last-of-type {
    color: #009879;
} */

/* End of table-events */

/* table-credits */
.table-credits {
    border-collapse: collapse;
	border: 1px solid #620404;
    /* margin: 20px 0px 60px 15px; */
    font-size: 0.80em;
    font-family: sans-serif;
    min-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	height:200px;
	background-color: #bfa6a479;
   
}

.table-credits thead tr {
    background-color: #620404;
    color: #ffffff;
    text-align: left;
	position: sticky; 
    top: 0px;
}

.table-credits td {
    padding: 12px 15px;
	vertical-align:top;
	text-align: left;
	word-wrap: break-word;
}
.table-credits tbody tr {
    border-bottom: 1px solid #dddddd;
}

.table-credits tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

/* .table-credits tbody tr:last-of-type {
    color: #009879;
} */


/* End of table-credits */



figure {	/* figure centered */
  border: none;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: table; 
  max-width:100%;

}	/* End of figure centered*/

 figcaption {	/* figcaption under figure */
  background-color: none;
  color: #181818;
  font-style:normal;
  font-family:sans-serif;
  font-size:.8em;
  padding: 4px;
  text-align: left;
  max-width:100%;
}			/* End of figcaption under figure */	

#float_right {
float:right;
 }
  @media screen and (max-width: 600px) {
  #float_right {
  float:none;
}

#float_left {
float:left;
 }

.figure_pdf {
  transition-duration: 0.4s;
  box-shadow: 2px 2px 10px 3px gray;
   margin-left: auto;
  margin-right: auto;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: table; 
  max-width:100%; 
 } 
.figure_pdf:hover {
  background-color:none;
  color: white;
  opacity:0.6; 
  }
 



#right {	/* figcaption right side of figure */
  background-color: none;
  color: darkgray;
  font-style:normal;
  font-family:sans-serif;
  font-size:.8em;
  padding: 12px;
  text-align: left;
  max-width:100%;
  display: table-cell;
  vertical-align: middle;
	
}/* End of figcaption right side of figure */

#center {	/* figcaption centered horizontally over or under figure */
  background-color: none;
  color: darkgray;
  font-style:normal;
  font-family:sans-serif;
  font-size:.8em;
  padding: 12px;
  max-width:100%;
  display: table-cell;
  text-align: center; 
}

#button {
  transition-duration: 0.4s;
  box-shadow: 4px 3px 6px 4px gray;
 }			





/* pdf embedded in Iframe*/
 .pdf {
        width: 100%;
        aspect-ratio: 4 / 3;
    }
    .pdf,
    html,
    body {
        height: 100%;
        margin: 0;
        padding: 0;
		background:transparent;
		border:none;
		/* overflow: hidden; */
    }
/* Delete h stylings below??  Use unknown. */

/*    h1,
    h3 {
        text-align: center;
    }

    h1 {
        color: green;
    } */
	
	/* End pdf embedded in Iframe */

/* attribution of content in iframe */
	
.attribution_iframe {
font-family:arial;
margin-left:5%;
font-size:0.7em;
font-weight:normal;
color:black;
margin: 2% 0% 0% 5%;

 }
/* end of attribution of content in iframe */
	
/* fieldset */
	
fieldset {
background-color: none;
border: 1px solid #620404;
border-radius: 5px;
/* padding: 20px 10px 10px 10px; */
text-align:left;
/*box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
 border-top-width: 50px; */
}

legend {
  background-color: none;
  color: #620404;
  padding: 5px 10px;
  /* margin-left:50%; */
  text-align: center;
  text-style: bold;
}

input {
  margin: 5px;
}
/* End of fieldset */



#contact-form {
width: 500px;
color: green;

 }
 



/* dropdown navigation list for pdf pages	 */		
/* .dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;} */

/*                       End of dropdown list for pdf page                   */


.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
 font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color:#3498db;
  font-family: inherit;
  margin: 0;
   cursor: pointer;
  border-radius: 10px;
}

 
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
 .items {
 float: left;
 display: block;
 max-width: 97%;
 padding: 0px;
 margin: 0px 100px 20px 0px;
 border: 1px solid #c0c0c0;
 background-color: none;
 text-align: center;
} 
  .item_left {
 float: left;
 display: block;
 max-width: 50%;
 text-height: 0.8em;
 padding: 0px;
 margin: 0;
 border: 0;
 background-color: none;
 text-align: left;
}
   .item_right {
 float: left;
 display: block;
 max-width: 30%;
 text-height: 0.8em;
 padding: 100px 0 0 0px;
 margin: 0 15% 0 0;
 border: 0;
 background-color: none;
 text-align: left;
 font-family: arial;
 font-weight: normal;
 font-size: 1em;
 line-height: 100%;
}

.zoom {
  padding: 0px;
  background-color: none;
  transition: transform .6s; /* Animation */
  width: 1200px;
  height: ;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(2.5);  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
   margin-right: auto;
   margin-left:auto;
   padding-left: 45%;
}
  
/*                                  Tooltip                                                                               */
/* .tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0;
}

.dotted-underline-button {
  border: none;
  margin: 0;
  padding: 0;
  font: inherit;
  text-decoration: underline 3px dotted #620404;
} */

/* Hidden by default; JS toggles visibility via .active on the container */
/* .tooltip-text {
  position: absolute;
  z-index: 100; */

  /* visibility toggle */
/*   visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease; */

  /* box + wrapping */
 /* display: block;                  block so it can expand */
  /*white-space: normal;             allow multi-line */
  /*overflow-wrap: anywhere;         break long words/URLs */
 /*  line-height: 1.4; */

  /* size: wrap-friendly and viewport-safe */
/*   width: clamp(16rem, 90vw, 36rem);
  max-height: none;
  overflow: visible; */

  /* styling */
 /*  background: #333;
  color: #fff;
  text-align: left;
  padding: 8px;
  border-radius: 6px; */

  /* default position (centered above) */
/*   left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 8px);
}

.tooltip-text::after {
  content: "";
  position: absolute;
  left: var(--arrow-left, 50%);
  transform: translateX(-50%);
  top: 100%;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip-container.active .tooltip-text {
  visibility: visible;
  opacity: 1;
} */

/* Optional arrow flip support if your JS flips above/below */
/* .tooltip-below .tooltip-text {
  top: calc(100% + 8px);
  bottom: auto;
}
.tooltip-below .tooltip-text::after {
  top: auto;
  bottom: 100%;
  border-color: transparent transparent #333 transparent;
} */

 