@charset "utf-8";
/*for History Made Page (Gallery)*/
/*Global Design - including mobile layout*/
* {
  box-sizing: border-box; 
}
#lrgImage {
	display:none;
	z-index:100;
}
.container {
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: column;
	flex-flow: column;
}
.accordionwrapper {
	box-sizing: border-box;
	padding-bottom: 3px;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%; /*equivalent to setting width*/
}
.accordion {
	background-color: #eee;
	background-image: -o-linear-gradient(to right, transparent, white 90%);
	background-image: -webkit-linear-gradient(to right, transparent, white 90%);
	background-image: -moz-linear-gradient(to right, transparent, white 90%);
	background-image: -ms-linear-gradient(to right, transparent, white 90%);
	background-image: linear-gradient(to right, transparent, white 90%);
	cursor: pointer;
	font-family: inherit;
	font-size: 24px;
	font-size: 1.5rem;
  	font-weight: bold;
	color: midnightblue;
	padding: 25px 30px 10px 20px;
	width: 100%;
	border-radius: 30% 30% 0 0;
	text-align: left;
	outline: none;
	-o-transition: background-color .9s;
	-webkit-transition: background-color .9s;
	-moz-transition: background-color .9s;
	-ms-transition: background-color .9s;
	transition: background-color .9s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.accordion .make {
	line-height: 35.2px;
	line-height: 2.2rem;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.active, .accordion:hover {
	background-color: steelblue;
}
.panel {
	padding: 0 2px;
	display: none;
	background-color: white;
	overflow: hidden;
}
.row {
	border-bottom: thin solid #C0C0C0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.row rtitle {
	background-color: #E7E7E7;
	font-weight: bold;
	padding-left: .3em;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.row rdata {
	-webkit-box-flex: 4;
	-ms-flex: 4;
	flex: 4;
}
.accordion:after {
	/*content: '\02795';*/ /* Unicode character for "plus" sign (+) */
	font-size: 13px;
	color: midnightblue;
	float: right;
	margin-left: 5px;
}
.active:after {
  	/*content: "\2796";*/ /* Unicode character for "minus" sign (-) */
}
ul {
	list-style: none;
}
select {
	margin-bottom: 5px;
	padding: 0.2rem 1rem;
	color: #714821;
	border-radius: 7px;
	outline: none;
	flex-basis: 100%;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
}
select:focus {
	color: #9F6D32;
	outline: none;
	border-radius: 5px;
	flex-basis: 100%;
	-moz-box-shadow: 0 0 5px #9F6D32;
	-webkit-box-shadow: 0 0 5px #9F6D32;
	box-shadow: 3px 2px 20px #9F6D32;
}
/***************
Media Queries
***************/
@media only screen and (max-width: 555px) {
	.pagetitle {
		font-size: 2.5rem; 
	}
	rtitle {
		-webkit-box-flex: 0;
		-ms-flex: 0;
		flex: 0;
		width: 100px;
	}
	.row rdata {
		-webkit-box-flex: 2;
		-ms-flex: 2;
		flex: 2;
	}
}