@charset "utf-8";
/* CSS Document by Jim L. Copyright Protected, unauthorized use will be prosecuted under 
// WebMasterSolutions Inc. Trademark and Copyright Laws
// CSS background color may be changed to the color of your choice 
// EXAMPLE:: background-color: #FFF1F1; 
// Bare in mind once changed if already uploaded, you Will have to rename the file
// And the Call from your <head> Or you will wait until your server is good and
// Ready to Clear its CACHE out, its easier to re-name everything for instant results //
// DO NOT FORGET the call for this is simple; <button class="accordion">My Description</button>
// Then this; <div class="panel"> type here, whatever you want or image, or a call for a map, it all works
// before you close the <div class="panel"> when you are done with whatever, then go ahead and close the
// code with; </div> thats it, that simple. You don't need bootstrap at all to run this.  
////////////////////////////////////////////////////////////////////////////////////////////////  */

/* Start Accordion Script Calls */
.accordion {
  font-family: Verdana, sans-serif;
  background-color: #FFFFFF; /* color can be changed */
  color: #3B3435;  /* Font Colors can be changed */
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 1px solid #C6C4C5;
  border-radius: 4px;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.7s;
}

.active, .accordion:hover {
  background-color: #000000;
  color: #f3f3f3;
  border: 1px solid #C6C4C5;
}

.accordion:after {
  content: '\002B';
  color: #000000;
  font-weight: normal;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";  
}

.panel {
  padding: 0 18px;
  background-color: white;
  font-family: Verdana, sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
