body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0; 
	padding: 0;
	color: #000000;
	background-color: #FFF;
	font-size: 14pt;
}

#container {
	width: 880px;
	margin: 0 auto;
}

#header { 
	display: flex;
	justify-content: space-between;
}

#header .logo h1 {
	font-size: 26px;
}

#header .links {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: 30px;
}

#header .links-top {
	display: flex;
	align-items:start;
	margin-bottom: 10px;
}

#header .button {
	padding:10px;
	color:#ffffff;
	background-color:#115F69;
	font-size:14px;
}

#header .button:hover {
	color:#ffffff;
	opacity: 0.8;
	border: none;
}

#header .facebook {
	margin-right: 10px;
}

#header .facebook:hover {
	border: none;
	opacity: 0.8;
}

#topmenu {
	font-size: 16px;
	color: white;
	background-color: #115F69;
	padding: 15px;
}

#topmenu a {
	color: white;
}

#topmenu a:hover {
	color: #009ca8;
	border: none;
}

#footer {
	font-size: 14px;
	text-align: center;
	padding: 10px;
	color: white;
	background-color: #115F69;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	color: #009ca8;
	border-bottom: 1px solid #009ca8;
}

a.logo:hover {
	border-bottom: none;
}

a:active {
	text-decoration: none;
}

a.email {
	color: #009ca8;
}

a.email:hover {
	color: #116067;
}

.li-number {
	list-style-type: decimal;
}

/* Exhibit layouts (exh.php) */
.section p {
	text-align: center;
	margin: 0;
}
.exhibit {
	display: block;
	clear: both;
	margin-bottom: 15px;
	height: 400px;
}

.exhibit > p:first-child {
	text-align: left;
	font-weight: bold;
	border-bottom: 1px solid #115F69;
}

img.exhibit-image {
	float: left;
	margin-top: 20px;
	margin-right: 10px;
	box-shadow: 3px 5px 5px #A8A8A8;
}

img.exhibit-image-r {
	float: right;
	margin-top: 20px;
	margin-left: 10px;
	box-shadow: 3px 5px 5px #A8A8A8;
}

img.entrant {
	float: right;
	box-shadow: 3px 5px 5px #A8A8A8;
}

/* Responsive Video */
.embed-responsive { 
    position: relative; 
    padding-bottom: 56.25%; 
    padding-top: 30px; 
    height: 0; 
    overflow: hidden; 
}

.embed-responsive iframe, 
.embed-responsive object, 
.embed-responsive embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

/* Expand & Collapse */
.faq {
	margin-bottom: 20px;
}

.faq details summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: #f3f4f6;
  border-radius: 0.375rem;
  position: relative;
  font-weight: 600;
}

.faq details summary::-webkit-details-marker {
  display: none;
}

.faq details summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > .answer {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  background: #ffffff;
  border-radius: 0 0 0.375rem 0.375rem;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.faq details + details {
  margin-top: 0.5rem;
}