/*Forest City Tree Slideshow*/

/*@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}*/

@keyframes slidy {
0% { left: 0%; }
11% { left: -100%; }
22% { left: -200%; }
33% { left: -300%; }
44% { left: -400%; }
55% { left: -500%; }
66% { left: -600%; }
77% { left: -700%; }
88% { left: -800%; }
100% { left: -800%; }

}


figure { 
  margin: 0; 
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
}
div#captioned-gallery { 
  width: 100%; 
  overflow: hidden; 
}
figure.slider { 
  position: relative; 
  width: 900%;
  font-size: 0; 
  animation: 54s slidy infinite; 
}
figure.slider figure { 
  width: 11.11%; 
  height: auto;
  display: inline-block;  
  position: inherit; 
}
figure.slider img { 
	width: 100%; 
	height: auto; 
	}
	
figure.slider figure figcaption { 
  position: absolute; 
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: #fff; 
  width: 100%;
  font-size: 1.5rem; 
  text-align: center;
  padding: .6rem; 
}
.bartlett-callout {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f2f8f2;
	border-left: 6px solid #1a5e2a; /* Bartlett green bar style */
	padding: 15px 20px;
	margin-bottom: 30px;
	gap: 20px;
}

.bartlett-callout p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #1a1a1a;
}

.bartlett-callout a {
	color: #1a5e2a;
	text-decoration: underline;
	font-weight: bold;
}

.bartlett-logo {
	max-height: 60px;
	width: auto;
}


