/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #f5f5f5;
	color: #005432;
    cursor: pointer;
    padding: 8px;
    width: 100%;
    text-align: left;
    border: 1px solid #ddd;
    border-radius: -4px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    transition: 0.4s;
	font-size: 1.2em;
	font-weight: 500;
	margin: 1px 0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
	color: #005432;
	text-decoration: underline;
}

/* Style the accordion panel. Note: hidden by default */
/* This is the version we'd use for no effects

div.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
/* This is the version of this style for no effects
div.panel.show {
    display: block !important;
}
/*this version has effects for transition*/

div.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: 0.6s ease-in-out;
	opacity: 0;
	font-style: normal;
	border: 1px solid #ddd;
	text-align: left;
}

div.panel.show {
    opacity: 1;
    max-height: 4000px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}
.panel p {
	margin: 10px 0;
}

h3 {
	font-size: 1.3em;
	margin-top: 10px;
}
h4 {
	font-style: italic;
	font-size: 1.1em;
	margin: 10px 0;
}

/*.accordion:after {
  content: '\002B';
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}*/