#state-select ul {
	list-style-type: none;
	text-align: center;
	display: block;	
}

#state-select li {
	display: inline;
	margin: .5em;
	padding: .5em;
	line-height: 2.5em;
}

#state-select li a {
	color: black;
	font-weight: bold;
	font-size: 1.5em;
}

/* highlight current state in state-select bar */
#state-select li {
    border-radius: 10px;
}

#GLH-CA #state-select #CA,
#GLH-IN #state-select #IN,
#GLH-OR #state-select #OR,
#GLH-PA #state-select #PA,
#GLH-SC #state-select #SC,
#GLH-WI #state-select #WI {
	border: 2px solid black;
}

#GLH-CA #state-select #CA a,
#GLH-IN #state-select #IN a,
#GLH-OR #state-select #OR a,
#GLH-PA #state-select #PA a,
#GLH-SC #state-select #SC a,
#GLH-WI #state-select #WI a {
	text-decoration: none;
}


/* highlight Updated! notice when present */
h2 .update-marker {
	background-color: var(--update-color);
	border: solid black 1px;
	border-radius: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

/* cookie-based popup to highlight new content */
#new-content-notice {
	position: fixed;
	top: 0;
	left: 25%;
	display: none;
	width: 50%;
	background-color: var(--update-color);
	border-radius: 10px;
	border: 1px solid black;
	z-index: 10;
}

#new-content-notice .button {
	background-color: white;
	border: solid black 1px;
	border-radius: 5px;
	padding-left: 3px;
	padding-right: 3px;
	cursor: pointer;
}

#new-content-notice .button:hover {
	background-color: darkgrey;
}

#new-content-notice #close, #cookie-status {
	float: right;
}

#new-content-notice #extra-info {
	display: none;
	font-size: .8em;
	padding-left: 1em;
	padding-right: 1em;
}

#new-content-notice #list-container {
    padding-left: 2.4em;
    padding-bottom: .5em;
}

.caption {
    padding-top: 2px;
	padding-left: 2px;
	padding-right: 2px;
}

.tree,
.tree-header {
	overflow: auto;
}

.tree {
	padding-top: 5px;
	margin-top: 3em;
	border-top: solid 2px black;
}

.span1 {
	width: 32.2%;
	margin-right: 1%;
	float: left;
}
	
.span2 {
	width: 66%;
	float: left;
}
	
.span3 {
	width: 98%;
	float: left;
}
	
.span-half {
	width: 48.5%;
	margin-right: 1%;
	float: left;
}
	
.image-and-caption {
	width: 100%;
	height: auto;
	margin-bottom: 3%;
	padding: 1px;
	position: relative;
}

.image-and-caption .credit {
	position: absolute;
	top: 3px;
	left: 3px;
	background-color: white;
	padding-left: 4px;
	padding-right: 4px;
	border-radius: 5px;
	opacity: .7;
}

.mobile, .tablet, .desktop {
	width: 100%;
	margin: 0 auto;
}
	
.center {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	float: none;
}


/* override old section class names */
/* allow custom reordering of images for different screens */
/* default for mobile (under 600px) */
.mobile {
	display: block;
}

.tablet {
	display: none;
}

.desktop {
	display: none;
}

/* stack the 4 GLH header images into 2x2 on < 600px screens */
.tree-header .image-and-caption {
	width: 48%;
	margin-right: 1%;
	float: left;
	font-size: .8em;
}

/* phones and small tablets larger than 600px */
@media only screen and (min-width: 600px) {
	
	.container {
		width: 97%;
		margin: 20px auto;
		float: none;
	}

	.main-content {
		background-color: white;
		background-image: url(/images/repeating-crane-background.png);
		background-repeat: repeat-y;
		background-size: 15%;
		padding-left: 13%;
	}
	
	.mobile {
		display: none;
	}

	.tablet {
		display: block;
	}

	.desktop {
		display: none;
	}
	
	.tree-header .image-and-caption {
    	width: 23%;
    	margin-right: 1%;
    	float: left;
    	font-size: .8em;
    }
}


/* desktops larger than 922px */
@media only screen and (min-width: 922px) {
	
	.container {
		width: 97%;
		margin: 20px auto;
	}

	.main-content {
		background-color: white;
		background-image: url(/images/repeating-crane-background.png);
		background-repeat: repeat-y;
		background-size: 20%;
		padding-left: 18%;
	}
	
	.mobile {
		display: none;
	}

	.tablet {
		display: none;
	}

	.desktop {
		display: block;
	}
	
	.tree-header .image-and-caption {
    	width: 23%;
    	margin-right: 1%;
    	float: left;
    	font-size: .8em;
    }
}