/* BUTTONS:					Style the buttons that are used to open and close the accordion panel */
.accordion 					{
								background-color: 	white;
								color: 				black;
								cursor: 			pointer;
								padding: 			2px;
								width: 				100%;
								border: 			none;
								text-align: 		left;
								outline: 			none;
								font-size: 			100%;
								transition: 		0.4s;
								display: 			block;
								font-family: 		Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
								line-height: 		125%;
								font-stretch: 		condensed;
								font-style: 		normal;
								font-weight: 		bold;
								text-transform: 	none;
							}
.active, .accordion:hover 	{  	background-color: 	var(--ohng-gold);	}
.accordion:after 			{	content: 			'\002B';
								color: 				black;
								font-weight: 		bold;
								float: 				right;
								margin-left: 		5px;				}
.accordionactive:after 		{	content: 			"-"; 				}
.panel 						{	padding: 			0 2px;
								background-color: 	white;
								max-height: 		0;
								overflow: 			hidden;
								transition: 		max-height 0.2s ease-out;
							}
.contacts					{	font-family: 		Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
								font-size: 			80%;
								line-height: 		150%;
								font-stretch: 		condensed;
								font-style: 		normal;
								font-weight: 		normal;
								text-transform: 	none;	
								padding-top: 		5px;
							}

