﻿// Small screens
@media only screen { } /* Define mobile styles */
@media only screen and (max-width: 21.9999em) { } 

// Medium screens
@media only screen and (min-width: 22em) { } 
@media only screen and (min-width: 22em) and (max-width: 39.999em) { } 

// Large screens
@media only screen and (min-width: 40em) { } /* min-width 1025px, large screens */
@media only screen and (min-width: 40em) and (max-width: 90em) { } /* min-width 1025px and max-width 1440px, use when QAing large screen-only issues */

// XLarge screens
@media only screen and (min-width: 90.063em) { } /* min-width 1441px, xlarge screens */
@media only screen and (min-width: 90.063em) and (max-width: 120em) { } /* min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues */

// XXLarge screens
@media only screen and (min-width: 120.063em) { } /* min-width 1921px, xxlarge screens */

:root {
  --Black: #000000;
  --White: #FFFFFF;
  --ColorDark: #004918;      /* Deep Green  */
  --ColorMedDark: #326d46;
  --ColorMed: #93B874;
  --ColorLight: #EAF7D9;
  --ShineBkg: #FFEE00;       /* Yellow  */
  --ShineTxt: #000000;
  --ShinePressBkg: #FF4D04;  /* Dark Orange  */
  --ShinePressTxt: #FFFFFF;
}
 
html { font-size: 16px; }      

a {color: var(--ColorDark); font-weight:600;}
a:link {color: var(--ColorDark);}
a:hover {color: var(--ColorDark); text-decoration: underline; }
a:visited {color: var(--ColorMedDark);}
a:active {color: var(--Black);}

h1  {font-size: 2.1rem; font-weight:bold; color: var(--ColorDark);}
h2  {font-size: 1.7rem; font-weight:bold;}
h3  {font-size: 1.6rem; color: var(--ColorDark);}
h4  {font-size: 1.4rem; font-weight:bold;}
h5  {font-size: 1.2rem;}
h6  {font-size: 1.0rem; font-weight:bold;}

.bland h1, .bland h2, .bland h3, .bland h4, .bland h5, .bland h6 {
    font-size: 1rem;
    color: var(--Black);
    margin: 0 0.5rem;
    display: inline;           /* Prevents line breaks before/after */
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}      /* Dont known if this works, not been tested */

.hideme { display: none; }

textarea {
  width: 100%;
  box-sizing: border-box; /* Includes padding and border in the total width */
  padding: 10px; 
  border: 1px solid #ccc;
  resize: vertical;
}

/* Base overlay styles - hidden by default */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Active class to make the overlay visible */
.overlay.active {
    display: flex;
}

/* A simple style for the modal content */
.modal-content {
    background-color: white;
    padding: 4em 4em;
    border-radius: 8px;
    text-align: center;
}

ul {margin-left:30px}
ol {margin-left:30px}

img {
  height: auto;
  max-width: 100%;
  display: inline-block;
}

img[Attributes Style] {
  aspect-ratio: auto 400 / 400;
}

.sourcecite{
  color: var(--ColorDark);
  background-color: var(--White);
  font-size: 0.9em;
  font-style: italic;
  font-weight: bold;
}

.BigFAQ{
  color: var(--ColorDark);
  font-size: 2em;
  font-weight: bold;
  float: left; 
  padding-right: 5px;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted var(--ColorDark);
}

.tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: var(--ColorDark);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -150px;
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 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: var(--ColorDark) transparent transparent transparent;
}

.beam {
  background-color: var(--ShinePressBkg); 
  color: var(--ShinePressTxt);
}

.button {
  background-color: var(--ColorMed); 
  border-color: var(--Black); 
  color: var(--ColorDark); 
  font-size: 1.1rem; 
  font-weight:900;
  margin-left:2px;
  box-shadow: 5px 7px #AAA;
}
button:hover, .button:hover, a.button:hover {background-color: var(--ColorMedDark); color: var(--White);}
button:focus, .button:focus, a.button:focus {background-color: var(--ColorDark); color: var(--White);}
.button:active {
  background-color: var(--ColorDark); 
  color: var(--White);
  box-shadow: 3px 5px #666;
  transform: translateY(4px);
}
/* Shine is for CTA buttons */
.button.shine  {
  background-color: var(--ShineBkg); 
  border-color: var(--Black); 
  color: var(--ShineTxt); 
  font-size: 1.1rem; 
  font-weight:900;
  box-shadow: 5px 7px #AAA;
}
button.shine:hover, .button.shine:hover {background-color: var(--ShinePressBkg); color: var(--ShinePressTxt);}
button.shine:focus, .button.shine:focus {background-color: var(--ShinePressBkg); color: var(--ShinePressTxt);}
.button.shine:active {
  background-color: var(--ShinePressBkg); 
  color: var(--ShinePressTxt);
  box-shadow: 3px 5px #666;
  transform: translateY(4px);
}
.button.radius, .button.radius.shine {border-radius:10px;}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  margin:auto;
  overflow: auto; /* Enable scroll if needed */
  background-color: var(--ColorDark); /* Fallback color */
  background-color: rgba(0,73,24,0.6); /* Black w/ opacity */
}
/* The Close Button */
.modal-close {
  color: var(--ColorMed);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--ColorDark);
  text-decoration: underline;
  cursor: pointer;
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  animation-name: animatetop;
  animation-duration: 0.6s
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

.banner { width:100%; background-color: var(--ColorDark); color:var(--White);}
.banner img,
.banner .logo img {background-color: var(--ColorDark); width: 100%; height: auto;}

.panel {background: var(--ColorLight); padding: 0 0 15px 0; min-height: 125px; text-align: center !important;  line-height:1.1;}
.panel img {margin-bottom:10px; width:100%; height:auto;}
.panel h3,
.panel h4,
.panel h5,
.panel h6 {font-size: 1.0rem; margin-bottom: 2px; font-weight:normal; color: var(--ColorDark);}

.fix-panel-height {display: flex; flex-wrap: wrap;}

.fix-panel-height > .columns {display: flex; flex-direction: column;}

.fix-panel-height .panel {flex: 1; display: flex; flex-direction: column; justify-content: flex-start;}

.child {text-align: center !important; line-height:1.1;}

figure {margin:0;}

.breadcrumbs  {
  background-color: var(--ColorLight);
}
.breadcrumbs>*  {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--ColorDark);
  text-transform: none;
}

#newsletter {padding:20px 0;background: var(--ColorDark); padding:10px 0 10px 0;color: var(--White);}

.row {max-width:100%;}

.contain-to-grid .top-bar {max-width:100%;}
.top-bar .title-area {margin-left:20px; margin-right:15px;}
.top-bar-section ul li>a {font-size:1rem;}
.top-bar-section .divider , .top-bar-section [role="separator"]  {border-top: solid 2px #777777;}
.top-bar-section>ul>.divider , .top-bar-section>ul>[role="separator"]  {border-right: solid 2px #777777;}
.top-bar-section .dropdown label {color:yellow; font-size:1rem; }

.zurb-footer-top {background: var(--ColorLight); color:var(--ColorDark); padding:35px 25px;}
.zurb-footer-middle {background: var(--ColorMed); color: var(--Black); padding:25px;}
.zurb-footer-bottom {background: var(--ColorDark); color: var(--White); padding:25px 0 10px 0;}
.zurb-footer-bottom a:link {color: var(--White);}
.zurb-footer-bottom a:visited {color: var(--White);}
.zurb-footer-bottom a:hover {color: var(--White); text-decoration: underline}

.heading {font-weight: bold; font-size:1.2rem;}

.sidebar {background: var(--ColorMed); padding:10px; color: var(--Black);}
.side-nav a {line-height: 1.10; padding-left: 10px; color: var(--Black);font-size: 1rem;}
.side-nav li a:not(.button):link, .side-nav li a:not(.button):visited  {color: var(--Black);}
.side-nav li a:not(.button):hover, .side-nav li a:not(.button):active  {color: var(--Black); font-weight: bold;}
.side-nav li.heading {font-weight: bold; font-size: 1rem; color: var(--ColorDark);}

.ImageLeft {
    float: left;
    text-align: center;
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 0px;
    position: relative;
    clear: left;
    width: 30%;
    min-width: 200px;
}
       
.ImageRight {
    float: right;
    text-align: center;
    margin-top: 0px;
    margin-right:0px;
    margin-bottom:10px;
    margin-left: 10px;
    position:relative;
    width: 30%;
    min-width: 200px;
}

.FeatureList {
    font-size:larger;
    font-weight: bolder;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    position:relative;
}				

.FeatureList li { 
    font-weight: normal;
    padding-left: 10px;
    color: black;
}

table td {font-size: 1.0rem;}

table th {
    background: var(--ColorLight);
    color: var(--ColorDark);
    font-weight: bold;
}

.video-container {
      position:relative;
      padding-bottom:56.25%;
      padding-top:30px;
      height:0;
      overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
}

.video-wrapper {
			width: 640px;
			float:none;
			margin-left:auto;
			margin-right:auto;
			max-width: 100%;
}

/* Style the tabs */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: var(--ColorLight);
  color: var(--Black);
  margin: 0;
}

/* Style the buttons inside the tab */
.tab button {
  color: var(--Black);
  background-color: var(--ColorMed);
  float: left;
  border: 1px solid var(--ColorLight);
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 1.1em;
  margin: 0;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: var(--ColorMedDark);
  color: var(--White);
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--ColorDark);
  color: var(--White);
  font-weight:700;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: none;
}

details {
      font-size:1em;
      background:  var(--White);
      margin-bottom: 2rem;
      padding: .5rem 1rem;
}

summary {
      font-size:1em;
      cursor: pointer;
}

summary > * {
      display: inline;
}

/* Generic Toggle Styles */
.toggle-section {
  margin: 1em 0;
  border: 1px solid #dddddd;
  border-radius: 5px;
}

.toggle-checkbox {
  display: none;
}

.toggle-label {
  display: block;
  padding: 0.75em 1em;
  background: var(--ColorWhite);
  font-weight: normal;
  cursor: pointer;
  user-select: none;
}

.toggle-content {
  display: none;
  padding: 1em;
  background: #f0f0f0;
}

.toggle-checkbox:checked ~ .toggle-content {
  display: block;
}
/* /Generic Toggle Styles */

/*  accordion for supplemental content has been depracated  */
 .accordion {
    border: 1px solid var(--ColorWhite);
    border-radius: 4px;
    margin-bottom: 10px;
    max-width:1024px;
  }
  .accordion-item {
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--ColorWhite);
    cursor: pointer;
    padding: 10px;
  }
  .accordion-content {
    display: none;
    padding: 10px;
  }
  .abox{
  	font-family:ariel;
  	background-color: var(--White);
  }
  .abox p { font-size: 16px; color:#555555; }
  .abox h1{ font-size: 18px; color:var(--ColorBlack); font-weight:bold; margin-bottom: 0px;}
  .abox h2{ font-size: 18px; color:var(--ColorBlack); font-weight:bold; margin-bottom: 0px;}
  .abox h3{ font-size: 18px; color:var(--ColorBlack); font-weight:bold; margin-bottom: 0px;}
  .abox h4{ font-size: 18px; color:var(--ColorBlack); font-weight:bold; margin-bottom: 0px;}
  .abox h5{ font-size: 18px; color:var(--ColorBlack); font-weight:bold; margin-bottom: 0px;}
  .abox h6{ font-size: 18px; color:var(--ColorBlack); font-weight:bold; margin-bottom: 0px;}
