.footer {
font-size: 20px; }

textarea {
    all: unset; /* Removes all default styles */
    display: block; /* Restores block behavior */
    width: 90%; /* Reapply your styles */
    height: auto;
    border: 0px solid #ccc;
    border-radius: 5px;
    padding: 10px; /* Optional customization */
    white-space: pre-wrap;
    font-size: 16px;
}




.address-block {
  font-size: 0.8em;       /* Equivalent to <font size="3"> */
  line-height: 1.2;       /* Adjusts spacing between lines */
  margin: 0;
  padding: 0;
}




p{
	text-align:justify;
}




.homeContainer {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  *zoom: 1; }
  .container:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.homeContainer-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  *zoom: 1; }
  .container-fluid:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }


img {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}

// some stories were xed out because of issues created on news page.  Check it out and see what is going on
.xstories {
  text-align: center;
  margin-bottom: 30px; 
  height: auto;
  overflow: hidden;}

.xstories .stories-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  margin-top: 20px;

  transform-origin: 50% 65%;
  transition: transform 1s, filter 3s ease-in-out;
  filter: brightness(125%);
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.8);
}

  
.stories:hover img {
	filter: brightness(100%);
	transform: scale(1.2);
}
  
  
  .stories .stories-title {
    font-size: 14px;
    font-size: 1em;
    margin: 0 0 10px; }
  .stories .date {
    color: #a59e95;
    font-size: 12px;
    font-size: 0.8571428571em;
    font-family: "Novecento Sans", "Raleway", "Noto Sans" "Open Sans", sans-serif;
    //text-transform: lowercase; }
    .stories .date .fa {
      font-size: 16px;
      font-size: 1.1428571429rem;
      margin-right: 5px; }

/* Style the image inside the block */
.stories img {
  margin-top: 20px; /* Positions the image */
  width: 75%;
  max-width: 300px;
  height: auto; /* Maintains aspect ratio */
}

/* Style the heading */
.stories h3 {
  margin: 15px 0 10px; /* Adds spacing around the heading */
  font-size: 1.5em; /* Adjusts the font size */
  color: #007b7e; /* Matches the border color */
  text-align: center; /* Centers the heading */
}

/* Style the paragraph */
.stories p {
  margin: 0 20px; /* Adds side margins for text readability */
  font-size: 1rem; /* Sets the text size */
  color: #333; /* Neutral dark color for readability */
  text-align: center; /* Centers the paragraph text */
}





/*=========================================== 
 * Accordian Libraries
 *===========================================*/

[data-accordion-element-content] {
  height: auto;
  overflow: hidden;
  transition: height 0.5s;
}

* {
  box-sizing: border-box;
}

.card {
  width: auto;
  margin: 50px auto;
  border-radius: 2px;
  background: var(--light);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

article {
  position: relative;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s;
  background: #E8EAF6;
}
article.selected {
  transform: scale(1.1);
  box-shadow: 0 0 5px rgba(2, 2, 2, 0.4);
  z-index: 2;
}

h1.acc {
  position: relative;
  background: #3F51B5;
  padding: 20px 75px 20px 30px;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  overflow: hidden;
  transition: background 0.3s;
}
h1.acc:hover, .selected h1.acc {
  cursor: pointer;
  background: #3949AB;
}
h1.acc:before, h1.acc:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  margin-right: 30px;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}
h1.acc:before {
  transform: rotate(0deg);
  -webkit-animation: close-line-one-in 0.8s forwards;
          animation: close-line-one-in 0.8s forwards;
}
.selected h1.acc:before {
  -webkit-animation: close-line-one-out 0.8s forwards;
          animation: close-line-one-out 0.8s forwards;
}
h1.acc:after {
  transform: rotate(90deg);
  -webkit-animation: close-line-two-in 0.8s forwards;
          animation: close-line-two-in 0.8s forwards;
}
.selected h1.acc:after {
  -webkit-animation: close-line-two-out 0.8s forwards;
          animation: close-line-two-out 0.8s forwards;
}

.acccontent {
  opacity: 0;
  transform: translateY(20px);
  transition: all ease-out 0.4s 0.1s;
}
.selected .acccontent {
  transform: translateY(0);
  opacity: 1;
}
.collapsed .acccontent {
  display: none;
}

.drop {
  padding: 0px 15px 15px;
  background: #E8EAF6;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.drop-li{
	margin: 0 0 0 0;
}

@-webkit-keyframes close-line-one-out {
  0%, 50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(50px);
  }
  76% {
    transform: translateX(50px) translateY(50px);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes close-line-one-out {
  0%, 50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(50px);
  }
  76% {
    transform: translateX(50px) translateY(50px);
  }
  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes close-line-one-in {
  0%, 20% {
    transform: rotate(45deg);
  }
  60% {
    transform: translateX(50px) translateY(50px) rotate(45deg);
  }
  61% {
    transform: translateX(50px);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes close-line-one-in {
  0%, 20% {
    transform: rotate(45deg);
  }
  60% {
    transform: translateX(50px) translateY(50px) rotate(45deg);
  }
  61% {
    transform: translateX(50px);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes close-line-two-out {
  0%, 50% {
    transform: rotate(90deg);
  }
  75% {
    transform: translateY(-50px) rotate(90deg);
  }
  76% {
    transform: translateY(-50px) translateX(50px) rotate(90deg);
  }
  100% {
    transform: rotate(135deg);
  }
}
@keyframes close-line-two-out {
  0%, 50% {
    transform: rotate(90deg);
  }
  75% {
    transform: translateY(-50px) rotate(90deg);
  }
  76% {
    transform: translateY(-50px) translateX(50px) rotate(90deg);
  }
  100% {
    transform: rotate(135deg);
  }
}
@-webkit-keyframes close-line-two-in {
  0% {
    transform: rotate(135deg);
  }
  50% {
    transform: translateY(-50px) translateX(50px) rotate(135deg);
  }
  51% {
    transform: translateY(-50px) rotate(90deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes close-line-two-in {
  0% {
    transform: rotate(135deg);
  }
  50% {
    transform: translateY(-50px) translateX(50px) rotate(135deg);
  }
  51% {
    transform: translateY(-50px) rotate(90deg);
  }
  100% {
    transform: rotate(90deg);
  }
}

h2.accordianSub{
	color:var(--contrast);
	font-size:20px;
	margin: 10px 5px 5px 5px;
}

ul.accordianList{
	list-style-position: outside;
	margin-left: 0; padding-left: 40px;

}

li.accordianListLine{
	font-size:11px;
	margin: -5px 0 0 0}

br.accordianListBr {
            display: block;
            margin-top: -1em;
        }

/*=========================================== 
 * end Accordian Libraries
 *===========================================*/


