/* width: 960px */

:root
{
	--mild-accent-color: #e6e6d6;
	--standard-link-color: #06679a;
	--logo-theme-color: #9a0000;
}

html
{
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

*, *:before, *:after
{
	box-sizing: inherit;
}

body
{
	background-color: var(--mild-accent-color);
	font-family: arial, sans-serif;
	margin: 0;
	padding: 0;
	letter-spacing: -0.01em;
}

a
{
	text-decoration: none;
	color: var(--standard-link-color);
}

a:hover
{
	text-decoration: underline;
}

p
{
	line-height: 140%;
	font-size: 95%;
}

h1.page-top
{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	color: var(--logo-theme-color);
	font-size: 200% !important;
	letter-spacing: -0.04em;
	margin: 0 0 1rem 0;
	line-height: 100%;
}

h2
{
	color: #2f0000;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 155%;
	letter-spacing: -0.04em;
	margin-bottom: 0.7rem;
	line-height: 95%;
}

ul
{
	margin-left: 2rem;
}

input[type=submit]
{
	background-color: #2d5268;
	border: none;
	padding: 0.2rem 0.4rem;
	color: white;
	font-weight: bold;
	font-size: 90%;
}

input[type=text]
{
	border: solid 1px #d0d0bc;
	background-color: var(--mild-accent-color);
	padding: 0.2rem;
	height: 1.6rem;
}

textarea
{
	border: solid 1px #d0d0bc;
	background-color: #eae8db;
	padding: 0.2rem;
}

select
{
	border: solid 1px #d0d0bc;
	background-color: #eae8db;
	height: 1.6rem;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* general width-based hiders */

@media (min-width: 1030px)
{
	.format-phone-only
	{
		display: none;
	}
}

@media (min-width: 600px) and (max-width: 1029px)
{
	.format-phone-only
	{
		display: none;
	}

	.format-desktop-only
	{
		display: none;
	}
}

@media (max-width: 599px)
{
	.format-desktop-only
	{
		display: none;
	}
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

a.widget_button
{
	display: inline-block;
	border: solid 1px #c8c8c8;
	padding: 0.3rem 1rem;
	font-weight: bold;
	font-size: 80%;
	color: #333;
	background-color: #ecede8;
	margin: 0.1rem 0.3rem 0 0;
}

a.widget_button:hover
{
	background-color: #f5f5f5;
	border: solid 1px #d2d2d2;
	text-decoration: none;
}

a.widget_button span.arrow
{
	color: #ac1212;
	font-size: 75%;
	position: relative;
	top: -1px;
}

div.graydate
{
	font-family: Georgia, serif;
	font-weight: normal;
	font-style: italic;
	font-size: 85%;
	color: #555;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* general page_section */

div.page_section_width_container_outer
{
	text-align: center;
}

/* for larger devices, center with fixed width of 960px */
div.page_section_width_container_inner
{
	padding: 1rem 0 0 0;
	width: 960px;
	text-align: left;
	margin: 0 auto;
	overflow: auto;
}

/* for smaller devices, center with fixed margin and variable width */
@media (max-width: 1029px)
{
	div.page_section_width_container_inner
	{
		padding: 1rem 1rem 0 1rem;
		width: auto;
	}
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* page_section_header */

header#page_section_header div.page_section_width_container_inner
{
	position: relative;
}

header#page_section_header
{
	background-color: white;
	clear: both;
	padding: 0 0 .5rem 0;
}

header#page_section_header div.logo
{
	margin-right: 2rem;
	float: left;
}

header#page_section_header div.logo img.logo
{
	height: 100%;
	min-width: 20%;
	width: 10rem;
}

header#page_section_header div.title
{
	font-family: Arial, sans-serif;
	float: left;
	display: table;
	margin-top: 1rem;
}

header#page_section_header div.title h1
{
	margin: 0;
	font-size: 190%;
	font-weight: bold;
	letter-spacing: -0.03em;
	line-height: 95%;
	text-align: right;
	display: table-cell;
	border-right: solid 3px #ddd;
	padding: 0 0.8rem 0 0;
	vertical-align: middle;
	width: 18rem;
}

header#page_section_header div.title h1 a
{
	color: black;
}

header#page_section_header div.title h2
{
	font-family: Arial, sans-serif;
	font-size: 110%;
	font-weight: bold;
	line-height: 100%;
	color: var(--logo-theme-color);
	display: table-cell;
	margin: 0;
	padding: 0.2rem 0 0 0.8rem;
	vertical-align: middle;
	width: 7rem;
}

header#page_section_header div.title div.url
{
	/* Only appears in print version */
	display: none;
}

header#page_section_header div.header_extras
{
	float: right;
}

header#page_section_header div.donate a:after
{
	content: ' »';
}

@media (min-width: 1030px)
{
	header#page_section_header div.search
	{
		position: absolute;
		top: 2rem;
		right: 0;
	}

	header#page_section_header div.search a.search_icon,
	header#page_section_header div.header_extras div.menu
	{
		display: none;
	}

	header#page_section_header div.donate
	{
		position: absolute;
		top: 3.75rem;
		right: 0;
		font-weight: bold;
		font-size: 110%;
	}
}

@media (max-width: 1029px)
{
	header#page_section_header div.header_extras div.menu
	{
		position: absolute;
		top: .2rem;
		right: .85rem;
		font-size: 300%;
		color: #06679a;
	}

	header#page_section_header div.title
	{
		margin-right: 3rem;
	}

	header#page_section_header div.search form,
	header#page_section_header div.donate
	{
		display: none;
	}

	header#page_section_header div.language
	{
		position: absolute;
		top: 4rem;
		right: .8rem;
	}

	/* smaller version of header for inside pages on mobile */
	header#page_section_header.small div.header
	{
		display: flex;
		align-items: center;
		min-height: 3.3rem;
	}

	header#page_section_header.small div.title
	{
		padding: 0 0 .5rem 0;
		margin: 0;
		/* border: solid 1px orange; */
		width: 60%;
	}

	header#page_section_header.small div.logo
	{
		margin-right: 0.8rem;
		flex-grow: 0;
		flex-shrink: 0;
	}

	header#page_section_header.small div.title h1
	{
		border-right: solid 2px #ddd;
	}

	header#page_section_header.small div.title h2
	{
		margin-top: 0;
	}

	header#page_section_header.small div.logo
	{
		width: 25%;
	}

	header#page_section_header.small div.logo img
	{
		height: auto;
		padding: 0;
		margin: 0;
	}
}

@media (min-width: 600px) and (max-width: 1029px)
{
	header#page_section_header.small div.title h1
	{
		font-size: 160%;
		width: 10rem;
	}

	header#page_section_header.small div.title h2
	{
		font-size: 110%;
		width: 6rem;
	}

	header#page_section_header.small div.logo img
	{
		max-width: 80%;
	}
}

@media (max-width: 599px)
{
	header#page_section_header.large div.logo
	{
		width: 100%;
		text-align: center;
	}

	header#page_section_header.large div.logo img
	{
		margin: 0 auto;
	}

	header#page_section_header.large div.title
	{
		float: none;
		margin: 0;
		padding: 0.75rem 0 0.75rem 0;
	}

	header#page_section_header.large div.title h1
	{
		font-size: 150%;
		padding-right: 0.8rem;
		width: 65%;
		border-right: solid 2px #ddd;
	}

	header#page_section_header.large div.title h2
	{
		font-size: 100%;
		padding-left: 0.8rem;
		width: auto;
	}

	header#page_section_header.small div.title h1
	{
		font-size: 100%;
		padding-right: 0.4rem;
		width: auto;
	}

	header#page_section_header.small div.title h2
	{
		font-size: 80%;
		padding-left: 0.4rem;
		width: auto;
	}

	header#page_section_header.small div.logo img
	{
		max-width: 100%;
	}
}

@media print
{
	header#page_section_header div.logo,
	header#page_section_header div.title
	{
		text-align: center;
	}

	header#page_section_header div.title div.url
	{
		display: block;
		font-size: 90%;
	}
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* page_section_menu */

@media (min-width: 1030px)
{
	nav#page_section_menu div.page_section_width_container_inner
	{
		padding: 0;
		overflow: visible;
	}

	nav#page_section_menu
	{
		background-color: #f6f6f6;
		height: 48px;
		background-image: -moz-linear-gradient(top, #fff 10%, #dedede 100%); /* FF3.6+ */
		background-image: -webkit-linear-gradient(top, #fff 10%, #dedede 100%); /* Chrome10+,Safari5.1+ */
		background-image: linear-gradient(top, #fff 10%, #dedede 100%); /* W3C */
	}

	nav#page_section_menu div.upper_border
	{
		background-color: #eee;
		height: 6px;
		background-image: -moz-linear-gradient(top, #e2e2e2 0%, #fff 100%); /* FF3.6+ */
		background-image: -webkit-linear-gradient(top, #e2e2e2 0%, #fff 100%); /* Chrome10+,Safari5.1+ */
		background-image: linear-gradient(top, #e2e2e2 0%, #fff 100%); /* W3C */
	}

	div#menu_items
	{
		clear: both;
		font-weight: bold;
		float: left;
		font-size: 90%;
	}

	div#menu_items ul
	{
		margin: 0;
	}

	div#menu_items > ul li
	{
		list-style: none;
		position: relative;
		float: left;
		text-align: left;
		margin-right: 1px;
	}

	div#menu_items > ul a
	{
		padding-left: 1em;
		display: block;
		width: 7.5em;
		line-height: 41px;
		text-decoration: none;
		border-left: solid 1px #fff;
		margin: 0 -1px -1px 0;
		text-align: left;
		color: var(--logo-theme-color);
	}

	div#menu_items > ul a span
	{
		margin-left: 3px;
		color: #00aeef;
	}

	div#menu_items > ul :hover > a
	{
		text-decoration: underline;
	}

	div#menu_items > ul .sub1
	{
		position: absolute;
		top: 41px;
		left: 0;
		visibility: hidden;
	}

	div#menu_items > ul .sub1 a
	{
		line-height: 30px;
		background-color: #ddd;
		width: 18em;
		border-bottom: solid 1px #ccc;
		border-top: solid 1px #ddd;
		text-align: left;
		padding-left: 1em;
		position: relative;
		z-index: 99;
	}

	div#menu_items > ul .sub1 :hover a
	{
		background-color: #e7e7e7;
		border-bottom: solid 1px #ccc;
	}

	div#menu_items :hover > ul
	{
		visibility: visible;
	}

	/* not used in desktop version */
	div#menu_container input#menu_hamburger,
	div#menu_container span#menu_hamburger_icon,
	div#menu_container span#menu_close_icon,
	div#menu_container div#menu_page_overlay
	{
		display: none;
	}

	div#menu_container
	{
		position: relative;
	}

	div#menu_social
	{
		text-align: right;
		position: absolute;
		top: 0.5rem;
		right: 0;
		width: 20%;
	}
}

@media (max-width: 1029px)
{
	nav#page_section_menu div.page_section_width_container_inner
	{
		padding: 0;
	}

	div#menu_items
	{
		position: absolute;
	}

	div#menu_container
	{
		overflow-x: hidden;
	}

	div#menu_container input#menu_hamburger
	{
		display: block;
		width: 50px;
		height: 50px;
		position: absolute;
		top: 0.5rem;
		right: 0;
		cursor: pointer;
		z-index: 103;
		opacity: 0;
	}

	div#menu_container span#menu_hamburger_icon
	{
		display: block;
		position: absolute;
		top: 0.5rem;
		right: 0.5rem;
		font-size: 270%;
		color: #06679a;
	}

	div#menu_container span#menu_close_icon
	{
		display: block;
		position: absolute;
		top: 1.3rem;
		right: 1rem;
		font-size: 270%;
		color: #06679a;
	}

	div#menu_container div#menu_page_overlay
	{
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		z-index: 101;
		background-color: black;
		opacity: 0;
		visibility: hidden;
  		transition: opacity 0.5s ease;
  		-moz-transition: opacity 0.5s ease;
	}

	div#menu_container div#menu_items
	{
		padding: 1.5rem;
		margin-left: 3rem;
		background-color: white;
		top: 0;
		right: 0;
		width: calc(100vw - 5rem);
		opacity: 0;
		visibility: hidden;
  		transition: opacity 0.5s ease;
  		-moz-transition: opacity 0.5s ease;
  		z-index: 102;
  		font-size: 120%;
  		line-height: 140%;
	}

	div#menu_container input#menu_hamburger:checked ~ div#menu_items
	{
		opacity: 1;
		visibility: visible;
	}

	div#menu_container input#menu_hamburger:checked ~ div#menu_page_overlay
	{
		opacity: 0.5;
		visibility: visible;
	}

	div#menu_container div#menu_items ul
	{
		list-style-type: none;
	}

	div#menu_container div#menu_items ul.sub1
	{
		margin-left: 2rem;
	}

	div#menu_container div#menu_items ul.sub0 > li
	{
		font-weight: bold;
	}

	div#menu_container div#menu_items ul.sub1 > li
	{
		font-size: 100%;
		font-weight: normal;
	}

	div#menu_social
	{
		display: none;
	}
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* banners, child of <banner> tag must be a div */

#page_section_banners
{
	background-color: white;
}

#page_section_banners banner.top_border
{
	background-image: -moz-linear-gradient(top, #d3d3d3 0%, #fff 35px); /* FF3.6+ */
	background-image: -webkit-linear-gradient(top, #d3d3d3 0%, #fff 35px); /* Chrome10+,Safari5.1+ */
	background-image: linear-gradient(top, #d3d3d3 0%, #fff 35px); /* W3C */
	padding-top: 1.5rem;
}

#page_section_banners banner
{
	display: block;
}

#page_section_banners banner.red
{
	background-color: var(--logo-theme-color);
	color: white;
}

#page_section_banners banner.full_width > div
{
	width: 100%;
}

#page_section_banners banner.content_width > div,
#page_section_banners banner.content_width > header
{
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1029px)
{
	#page_section_banners banner.content_width > div,
	#page_section_banners banner.content_width > header
	{
		width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* common banner for title/subtitle bar */

#page_section_banners banner.title_bar > div
{
	width: 960px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 1rem;
	padding-bottom: 1rem;
	display: flex;
	align-items: center;
}

#page_section_banners banner.title_bar div.title
{
	flex-shrink: 0;
	min-width: 0;
	max-width: 70%;
	text-align: right;
	padding-right: 1rem;
	font-size: 200%;
}

#page_section_banners banner.title_bar div.title a
{
	color: white;
}

#page_section_banners banner.title_bar div.subtitle
{
	flex: 1;
	min-width: 0;
	border-left: solid 1px #bd4d4c;
	padding-left: 1rem;
	font-size: 120%;
	font-weight: bold;
	line-height: 100%;
}

#page_section_banners banner.title_bar div.subtitle em
{
	color: #fdddbc;
	font-weight: bold;
	font-style: italic;
}

@media (max-width: 1029px)
{
	div#page_section_banners banner.title_bar > div
	{
		width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* large-font red title banner, used below highlight features */

#page_section_banners banner.large_title
{
	padding: 2rem 0;
}

#page_section_banners banner.large_title > div
{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 220%;
	line-height: 105%;
	font-weight: bold;
	text-align: center;
}

/* large social media banner */

#page_section_banners banner.social_banner
{
	text-align: center;
	padding: 0 0 0.7rem 0;
}

#page_section_banners banner.social_banner .action-button
{
	display: inline-block;
	height: 2.8rem;
	border-radius: 1.5rem;
	background-color: rgb(207,47,47);
	color: white;
	font-size: 110%;
	font-weight: bold;
	padding: 0.8rem 1rem 0.7rem 1rem;
	margin: 0.5rem;
	background-repeat: no-repeat;
	background-position: left center;
	background-origin: content-box;
	cursor: pointer;
}

#page_section_banners banner.social_banner .action-button span
{
	padding-left: 35px;
}

@media (max-width: 1029px)
{
	#page_section_banners banner.social_banner .action-button
	{
		font-size: 100%;
		height: 1.8rem;
		padding: 0.3rem 0.7rem;
	}
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* page_section_banner */

div#page_section_banner div.page_section_width_container_outer
{
	background-color: white;
}

div#page_section_banner div.page_section_width_container_outer.top_border
{
	background-image: -moz-linear-gradient(top, #d3d3d3 0%, #fff 35px); /* FF3.6+ */
	background-image: -webkit-linear-gradient(top, #d3d3d3 0%, #fff 35px); /* Chrome10+,Safari5.1+ */
	background-image: linear-gradient(top, #d3d3d3 0%, #fff 35px); /* W3C */
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* page_section_content */

div#page_section_content
{
	background-color: white;
}

div#page_section_content div.page_section_width_container_outer.top_border
{
	background-image: -moz-linear-gradient(top, #d3d3d3 0%, #fff 35px); /* FF3.6+ */
	background-image: -webkit-linear-gradient(top, #d3d3d3 0%, #fff 35px); /* Chrome10+,Safari5.1+ */
	background-image: linear-gradient(top, #d3d3d3 0%, #fff 35px); /* W3C */
}

div#page_section_content div.page_section_width_container_outer
{
	padding-top: 1rem;
	padding-bottom: 1rem;
}

div#page_section_content p
{
	line-height: 150%;
	margin: .75rem 0;
	word-break: break-word;
}

div#page_section_content h3
{
	font-size: 125%;
	line-height: 150%;
	color: #2f0000;
	font-weight: normal;
	margin: .7rem 0;
}

div#page_section_content div.dividebar
{
	display: grid;
	grid-template-columns: 1fr 2fr;
}

div#page_section_content blockquote
{
	float: right;
	width: 30%;
	border: solid 1px #d0d0bc;
	background-color: #e6e6d6;
	padding: 1em 1.3em;
	margin: .7em 0 .7em 1.2em;
	text-align: center;
	font-size: 120%;
	line-height: 180%;
	font-family: Georgia, serif;
}

@media (max-width: 1029px)
{
	div#page_section_content blockquote
	{
		float: none;
		width: 100%;
		margin: 0.7rem 0;
		padding: 0 0.8rem;
	}
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* sidebar */

div#page_section_content div.dividebar > div.sidebar
{
	background-image: -moz-linear-gradient(right, #e0e0e0 0%, #fff 8px); /* FF3.6+ */
	background-image: -webkit-linear-gradient(right, #e0e0e0 0%, #fff 8px); /* Chrome10+,Safari5.1+ */
	background-image: linear-gradient(right, #e0e0e0 0%, #fff 8px); /* W3C */
	margin-right: 2rem;
	padding-right: 2.5rem;
}

div#page_section_content div.dividebar > div.sidebar select
{
	width: 100%;
}

div#page_section_content nav#menu_sidebar ul
{
	list-style-type: none;
	border-top: solid 1px #ddd;
	font-weight: bold;
	font-size: 85%;
	margin-bottom: 2rem;
	margin-left: 0;
}

div#page_section_content nav#menu_sidebar ul li
{
	margin: 0.7rem 0;
	padding: 0 0 0.7rem 0;
	border-bottom: solid 1px #ddd;
	background-position: right;
}

div#page_section_content div.dividebar > div.sidebar .ds_quick div.df
{
	margin: 0.5rem 0;
}

div#page_section_content div.dividebar > div.sidebar .sidebar-box
{
	margin-bottom: 2rem;
}

div#page_section_content div.dividebar > div.sidebar .sidebar-text
{
	padding-top: 1rem;
}

div#page_section_content div.dividebar > div.sidebar a.sidebar-button
{
	display: block;
	width: 250px;
	height: 53px;
	background-image: url(/i/library-sidebar-button.png);
	padding: 0.85rem 0 0 1rem;
	font-size: 130%;
	color: #2f0000;
	-moz-box-shadow: 3px 3px 8px #ccc;
	-webkit-box-shadow: 3px 3px 8px #ccc;
	box-shadow: 3px 3px 8px #ccc;
	font-weight: bold;
}

div#page_section_content div.dividebar > div.sidebar a.sidebar-button em,
div#page_section_content div.dividebar > div.sidebar .sidebar-box h2 em
{
	font-style: normal;
	color: #c10000;
}

.mobile-executions
{
	margin-bottom: 1rem;
}

div#page_section_content div.dividebar > div.sidebar .sidebar-box .executions,
.mobile-executions .executions
{
	background-color: #184e6d;
	color: white;
	padding: 0.2rem 1rem;
	margin-top: 0.5rem;
	clear: both;
	overflow: hidden;
}

div#page_section_content div.dividebar > div.sidebar .sidebar-box .executions .execution,
.mobile-executions .executions .execution
{
	border-bottom: solid 1px #306382;
	padding: 0.4rem 0;
}

div#page_section_content div.dividebar > div.sidebar .sidebar-box .executions .tally,
.mobile-executions .executions .tally
{
	float: right;
	font-weight: bold;
}

div#page_section_content div.dividebar > div.sidebar .sidebar-box .note
{
	font-size: 90%;
	margin-top: 1rem;
}

div#page_section_content div.dividebar > div.sidebar .sidebar-box .note p
{
	line-height: 120%;
}

@media (max-width: 1029px)
{
	div#page_section_content div.dividebar
	{
		display: block;
	}

	div#page_section_content div.dividebar > div.sidebar
	{
		display: none;
	}
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* page_section_footer */

footer#page_section_footer
{
	padding: 1rem 0 1.5rem 0;
}

footer#page_section_footer div.page_section_width_container_inner div
{
	font-size: 90%;
	text-align: center;
}

footer#page_section_footer div.links
{
	padding-top: 1rem;
}

footer#page_section_footer div.links a:not(:first-child)
{
	border-left: solid 1px #a2a267;
	padding-left: 0.75rem;
	margin-left: 0.5rem;
}

/* sidebars */

#recent-sidebar h2
{
	border-bottom: solid 1px #ccc;
	padding-bottom: 12px;
}

#recent-sidebar .item
{
	border-bottom: solid 1px #ccc;
	padding: 12px 0;
}

#recent-sidebar .item .pubdate
{
	font-family: Georgia, serif;
	font-weight: normal;
	font-style: italic;
	font-size: 85%;
	color: #555;
}

#recent-sidebar .viewmore
{
	margin-top: 1rem;
}

/* embedded youtube videos */

.youtube-wrapper
{
	position: relative;
	padding-bottom: 56.25%; /* for 16:9 videos */
	height: 0;
}

.youtube-wrapper iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* pagination */

.pagination
{
	padding: 0.5rem 0;
}

.page-number
{
	padding: 0.2rem 0.4rem;
}

a.page-number
{
	background-color: #eae8db;
	border: solid 1px #d0d0bc;
	margin: 0 0.1rem;
}

