/*
* Table of Contents
* 1. FONTS
* 2. CORE LAYOUT
*  - Masthead
*  - Navigation
*  - Mobile Navigation
*  - Content Subnavigation
*  - Body
*  - Footer
*  - Misc Layout Styles
* 3. DESKTOP LAYOUT OVERRIDES
*  - Desktop: General
*  - Desktop: Navigation
*  - Desktop: Banner and Content Subnavigation
* 4. CORE CONTENT
*  - Standard Tags and Classes
* 5. SECTION-SPECIFIC CONTENT
*  - Content: Guide
*  - Content: Posts/Blog
*  - Content: Glossary
*/


/*
** FONTS
*/

@import url("https://fast.fonts.net/t/1.css?apiType=css&projectid=587016e1-b3dd-4829-bdc6-b7eb4b254983");

@font-face{
font-family:"Futura W01 Book";
src:url("../fonts/57a6731b-fa5c-4c8a-bea8-e2f1a287f309.eot?#iefix");
src:url("../fonts/57a6731b-fa5c-4c8a-bea8-e2f1a287f309.eot?#iefix") format("eot"),url("../fonts/4d0e252c-d811-4a5d-a7f3-6ad72c6b76f2.woff") format("woff"),url("../fonts/54250d43-02be-4ff9-b802-a4ea104a0611.ttf") format("truetype"),url("../fonts/15c556fc-4608-4b01-8a0d-9c8631c8bd74.svg#15c556fc-4608-4b01-8a0d-9c8631c8bd74") format("svg");
}

@font-face{
font-family:"Futura W01 Bold";
src:url("../fonts/3b3d00eb-6d89-47ec-83ee-48276a47ad94.eot?#iefix");
src:url("../fonts/3b3d00eb-6d89-47ec-83ee-48276a47ad94.eot?#iefix") format("eot"),url("../fonts/2a65cbfc-5071-4b4d-bfc2-e052bb091ee2.woff") format("woff"),url("../fonts/812f781d-aa66-47a1-b6a2-7941effc1527.ttf") format("truetype"),url("../fonts/2a371030-ff67-40ac-8307-082c1fccf151.svg#2a371030-ff67-40ac-8307-082c1fccf151") format("svg");
}

@font-face{
font-family:"FuturaW01-BoldCondensed 774890";
src:url("../fonts/d5a62439-27d1-4deb-b8df-4c2610128f1b.eot?#iefix");
src:url("../fonts/d5a62439-27d1-4deb-b8df-4c2610128f1b.eot?#iefix") format("eot"),url("../fonts/e07f45c2-9c42-4c23-ab7a-c161556274ef.woff") format("woff"),url("../fonts/c188225b-c194-419b-8d14-c5d677fcb3eb.ttf") format("truetype"),url("../fonts/a92ba10a-1759-4dc6-b9b5-06e311b67829.svg#a92ba10a-1759-4dc6-b9b5-06e311b67829") format("svg");
}


/*
** CORE LAYOUT
*/

html {
	background: #1b374c;
	width: 100%;
	overflow-x: hidden;
}

body {
	background: #fefefe;
	font-family: 'Futura W01 Book', Verdana, Arial, Helvetica, sans-serif;
	overflow-x: hidden;
}

.container {
	max-width: 1000px;
}


/* Masthead */

#masthead {
	border-bottom: 12px solid #f5f5f5;
	width: 100%;
}

#masthead .container {
	max-width: 1200px;
}

#masthead .site-title {
	background: url('../images/logo-horizontal.svg') no-repeat left center;
	background-size: 75%;
	margin-bottom: 0;
	max-width: 100%;
	padding-left: 10px;
}

#masthead .site-title a {
	display: block;
	height: 88px;
	overflow: hidden;
	margin: 15px 10px;
	width: 100%;
	text-align: left;
	text-decoration: none;
	text-indent: -9999px;
}

#masthead #masthead-desktop-right {
	padding-top: 30px;
}

/* Teacher-Powered Definition Block */
.entry-content .has-dark-gray-background-color,
.entry-content .has-dark-gray-background-color:visited {
	background-color: #262626;
	opacity: .95;
}


/* Navigation */

#masthead a.menu-toggle {
	color: #1b374c;
	font-size: 48px;
	display: block;
	text-align: center;
	position: absolute;
	z-index: 99;
	right: 0;
	margin-top: 20px;
	padding: 0 6vw;
}

a.news-button {
	font: 1em 'FuturaW01-BoldCondensed 774890', Verdana, Arial, sans-serif; 
	height: 32px; 
	letter-spacing: .01em;
	background: #d35269;
	color: #fff !important;
	border: 0;
	border-radius: 20px;
	padding: 10px;
	margin: 0px 4px 0px 0px;
	cursor: pointer;
	text-decoration: none;
}


/* Mobile Navigation */

@media screen and (max-width: 991px) {
	
	#masthead .site-title {
		background-size: contain;
	}

	#masthead #site-navigation {
		background: #c0e7d2;
		display: none;
		height: 100vh;
		left: 0;
		margin: 0 -15px;
		overflow: auto;
		padding-top: 20vw;
		padding-bottom: 20px;
		position: fixed;
		top: 0;
		width: calc(100% + 30px);
		z-index: 90;
	}

	#masthead #site-navigation div ul {
		list-style: none;
		margin: 0;
		padding: 0;
		text-align: left;
	}

	#masthead #site-navigation div ul a {
		color: #1b374c;
		font-size: 24px;
		display: block;
		position: relative;
		padding: 10px 40px;
		transition: .5s background;
		text-decoration: none;
	}

	#masthead #site-navigation>div>ul>li.menu-item-has-children>a {  }

	#masthead #site-navigation>div>ul>li.menu-item-has-children.open>a {  }

	#masthead #site-navigation div ul a i.fa {
		color: #00d4ad;
		position: absolute;
		right: 50px;
	}


	#masthead #site-navigation div ul a:hover, #masthead #site-navigation div ul a:focus {
		background: #c0e7d2;
		text-decoration: none;
	}

	#masthead #site-navigation div>ul>li>ul {  }

	#masthead #site-navigation>div>ul>li>ul li a {
		background: #fff;
		color: #1b374c;
		font-size: 1rem;
		font-weight: normal;
		padding-left: 50px;
	}

	#masthead #site-navigation>div>ul>li>ul li a:hover, #masthead #site-navigation>div>ul>li>ul li a:focus {
		background: #c0e7d2;
	}

	#masthead #site-navigation>div>ul>li>ul li>ul {
		display: block !important;
	}

	#masthead #site-navigation>div>ul>li>ul li>ul li a {
		font-size: 0.9rem;
		padding: 10px 60px;
	}

	#masthead #site-navigation>div>ul {  }


	/* TP Definition Block */

	.entry-content .has-dark-gray-background-color, .entry-content .has-dark-gray-background-color:visited {
		background-color: #262626;
		opacity: .95
	}
}


/* Content Subnav */

#content .subnav ul {
	background: #f0cf51;
	font-family: 'Futura W01 Book', Verdana, Arial, Helvetica, sans-serif;
    height: auto;
    text-align: center;
    margin: -40px 0 30px 0;
    padding: 0 0 10px 0;
}

#content .subnav ul li {
    margin: 0;
    padding: 0;
    display: inline-block;
    list-style: none;
}

#content .subnav ul li a {
	display: block;
    line-height: 56px;
    padding: 0 15px;
    color: #fffcf2;
    font-size: 1.2em;
    text-decoration: none;
    color: #efe2d4;
    font-size: 1em;
    line-height: 40px;
}

#content .subnav ul li.current_page_item a {
    color: #fff;
}


/* Footer */

#colophon {
	background: #1b374c;
	color: #fff;
}

#colophon #copyright {
	background: #c0e7d2;
	color: #1b374c;
	padding: 15px 0;
	text-align: right;
}

#colophon #copyright a {
	color: #1b374c;
}

#colophon #copyright p {
	margin: 0;
}

#colophon .site-info {
	padding: 20px 0;
}

#colophon #site-info p.style {
    color: #c0e7d2;
}


/* Misc Layout Styles */

.assistive-text, .edit-link {
	display: none;
}

.desktop-only {
	display: none;
}

.full-width {
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%;
}

.entry-content {
	margin: 0 auto;
	max-width: 750px;
}
.entry-content-wide {
	max-width: 1000px;
}

.wp-block-cover.is-light .wp-block-cover__inner-container {
    color: #ffffff;
}


/*
** DESKTOP LAYOUT OVERRIDES
*/

@media screen and (min-width: 992px) {

	/* Desktop: General */

	#primary {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.desktop-only {
		display: block;
	}

	span.desktop-only {
		display: inline;
	}

	.mobile-only {
		display: none !important;
	}


	/* Desktop: Navigation */

	#masthead .menu-toggle {
		display: none;
	}

	#site-navigation {
		font: 16px  'FuturaW01-BoldCondensed 774890', Verdana, Arial, sans-serif;
		font-weight: normal;
		margin-top: 10px;
		padding: 0;
		text-transform: uppercase;
	}

	#site-navigation a {
		color: #525252;
		padding: 10px;
	}

	#site-navigation ul.nav-menu {
		margin-bottom: -12px;
	}

	#site-navigation ul.nav-menu>li {
		margin: 0 -2px;
		width: 20%;
	}

	#site-navigation ul.nav-menu>li>a {
		border-bottom: 12px solid #1b374c;
		padding-left: 20px;
		padding-right: 20px;
		width: 100%;
	}

	#site-navigation ul.nav-menu>li:nth-child(2)>a {
		border-bottom-color: #f0cf51;
	}

	#site-navigation ul.nav-menu>li:nth-child(3)>a {
		border-bottom-color: #c0e7d2;
	}

	#site-navigation ul.nav-menu>li:nth-child(4)>a {
		border-bottom-color: #00d4ad;
	}

	#site-navigation ul.nav-menu>li:nth-child(5)>a {
		border-bottom-color: #d35269;
	}

	#site-navigation .menu-toggle, #site-navigation #mobile-launch {
		display: none;
	}

	#site-navigation>div ul li.current_page_item>a, #site-navigation>div ul li.current_page_ancestor>a {
		text-decoration: underline;
	}

	#site-navigation>div ul ul {
		visibility: hidden;
		opacity: 0;
		transition: visibility 0s, opacity 0.1s linear;
	}

	#site-navigation>div ul li:hover > ul, #site-navigation>div ul li.active > ul {
		visibility: visible;
		opacity: 1;
	}

	#site-navigation>div ul {
		list-style: none;
		position: relative;
		margin: 0 auto;
		padding-left: 0;

	}

	#site-navigation>div>ul {
		text-align: center;
	}

	#site-navigation>div ul:after {
		content: "";
		clear: both;
		display: block;
	}

	#site-navigation>div ul li {
		display: inline-block;
	}

	#site-navigation>div ul li a {
		display: inline-block;
		line-height: 28px;
		padding: 6px 10px;
		transition: color .15s;
		text-decoration: none;
	}

	#site-navigation>div ul ul {
		background-color: rgba(0,0,0,.7);
		border-radius: 0px;
		letter-spacing: 0;
		font-family: 'Futura W01 Book', Verdana, Arial, Helvetica, sans-serif;
		text-transform: none;
		margin: 0 0 0 0;
		padding: 0;
		position: absolute;
		text-align: left;
		width: 200px;
		top: 88%;
		z-index: 999;
	}

	#site-navigation>div ul ul li {
		display: block;
		float: none; 
		margin-right: 0;
		position: relative;
		transition: background .15s;
		text-align: left;
	}

	#site-navigation>div ul ul li:hover {
		background-color: rgba(255,255,255,.1);
	}

	#site-navigation>div ul ul li a {
		color: #fff;
		display: block;
		font-size: 16px;
		line-height: 16px;
		padding: 10px;
	}

	#site-navigation>div ul ul li a:hover {
		color: #f5f5f5;
	}

	#site-navigation>div ul ul ul {
		background: rgba(0,0,0, .7);
		position: absolute;
		left: 100%;
		top: 0;
	}


	/* Desktop: Banner and Content Subnavigation */

	#content .entry-header.banner {
		height: 380px;
	}

	#content .subnav ul {
		background: #fff;
	    height: 60px;
	    border-bottom: 4px solid #f0cf51;
	    padding-bottom: 5px;
	    text-align: left;
	}

	#content .subnav ul li.current_page_item {
		background: url('/files/caret.png') bottom center no-repeat;
	}

	#content .subnav ul li.current_page_item a {
		color: #262626;
	}

	#content .subnav ul li a {
	    line-height: 56px;
	    color: rgba(38, 38, 38, .85);
	    font-size: 1.2em;
	    text-decoration: none;
	}

}


/*
** CORE CONTENT
*/

/* Standard Tags and Classes */

a, a:hover {  }

img {
	height: auto;
	max-width: 100%;
}

#content p {
  line-height: 1.5em;
  color: #262626;
  font-weight: normal;
  border: 0;
  padding: 0;
  margin: 0 0 12px 0;
}

#content h1, #content h2, #content h3, #content h4 {
  font-family:'Futura W01 Bold', Verdana, Arial, sans-serif;
  line-height: 120%;
  color: #262626;
  border: 0;
  padding: 0;
}

#content h1 { font-size: 1.8em; margin: 0 0 15px 0; }
#content h2 { font-size: 1.3em; margin: 15px 0 5px 0; }
#content h3 { font-size: 1em; margin: 15px 0 5px 0; }
#content h4 { font-size: 0.8em; }

#content h1.with-subtitle, h2.with-subtitle { margin-bottom: 0; }
#content h1.is-subtitle, h2.is-subtitle { margin-top: 0; }

#content h2.bottom-border {
    font-size: 1.8em;
    margin: 0 -30px 25px -30px;
    padding: 0 0 38px 0;
    color: #525252;
    background: url('/files/line.png') bottom center no-repeat;
    text-align: center;
}

#content a { color: #1b374c; }
#content a:hover { color: rgba(27, 55, 76, .85); }

#content ul, ol { margin: 0 0 15px 0; padding: 5px 0 0 35px; }
#content ul li, ol li { margin: 0 0 10px 0; padding: 0; line-height: 1.4em; }

#content strong { font-family:'Futura W01 Bold'; font-size: 1em; }

.entry-content a.wp-block-button__link, input.button-submit, .button-link, .button, .node-type-guide-resource .field-name-field-link a, .node-type-guide-resource .field-name-field-file a, a.tp-button {
	background: #d35269;
	font-size: 1.1em;
	color: #fff !important;
	border: 0;
	border-radius: 6px;
	padding: 10px;
	margin: 10px 0;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
}

#content .entry-header {
	margin-bottom: 50px;
}

#content .entry-header.banner {
	height: 35vw;
	margin-bottom: 50px;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

#content .entry-header.banner img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#content .entry-header.banner h1.entry-title {
	background: rgba(0,0,0,.7);
	color: #fff;
	display: block;
    font-size: 2em;
    text-align: left;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    position: absolute;
    max-width: 1000px;
    bottom: 0;
    padding: 10px 10px;
    width: 100%;
    margin: 0;
}
.js-wpv-loop-wrapper .wp-block-columns {
	gap: 2em;
}


/*
** Content: Guide
*/

#guide-navigation {
	margin-bottom: 50px;
}

#guide-navigation ul {
	color: #1b374c;
	padding-left: 0;
}

#guide-navigation ul ul {
	display: none;
}

#guide-navigation ul li {
	padding-left: 5px;
}

#guide-navigation ul li a {
	text-decoration: none;
}

#guide-navigation ul li.current_page_item>a {
	font-weight: bolder;
}

#guide-navigation ul li.page_item_has_children {
	list-style-type: "\25BA";
}

#guide-navigation li.current_page_item.page_item_has_children, #guide-navigation li.current_page_ancestor {
	list-style-type: "\25BC";
}

#guide-navigation li.current_page_item>ul, #guide-navigation li.current_page_ancestor>ul {
	display: block;
	margin-top: 10px;
	padding-left: 20px;
}

#content .guide-resources>h2 {
	background: url('../images/guide-nav/resources-icon.png') no-repeat center left;
	padding: 10px 10px 10px 40px;
	font: 2rem 'Futura W01 Book', sans-serif;
}

#content .guide-resources .guide-resources-section {
	margin-bottom: 50px;
}

#content .guide-resources .guide-resources-section h3 {
	font: 1.5rem 'Futura W01 Book', sans-serif;
	margin-bottom: 8px;
}

#content .guide-resources .guide-resources-section h4 {
	font: 1.2rem 'Futura W01 Book', sans-serif;
}


/*
** CONTENT-SPECIFIC STYLES
*/

/*
** Content: Posts/Blog
*/

body.blog article, body.single-post article {
	margin-bottom: 40px;
}

body.blog #content article .entry-header, body.single-post #content article .entry-header:not(.banner) {
	margin-bottom: 0;
}

body.single-post #content article h3.subtitle {
	margin: 5px 0;
}

body.blog article .entry-meta, body.single-post article .entry-meta {
	margin-bottom: 35px;
	font-style: italic;
	font-size: .9rem;
}

body.blog article .entry-meta {
	margin: 5px 0;
}


/*
 * Content: Publications and Resources
 */
.js-wpv-view-layout-6669 img, .js-wpv-view-layout-6684 img, .js-wpv-view-layout-7744 img { border: 1px solid #DDD; }


/*
** Content: Glossary
*/

#content .glossary .glossary-letter-group {
	margin-bottom: 50px;
}

#content .glossary .glossary-letter-group h2 {
	font-size: 2.5rem;
}


/*
** Content: Who We Are
*/


.bio {
	clear: both;
	margin: 40px 0 120px 0;
}

.bio-photo {
	display: table;
	float: right;
	margin: 0 0 20px 20px;
}

.bio-photo img {
	max-height: 200px;
	max-width: 200px;
}

.bio-photo .caption, .caption {
	color: #525252;
	font-size: 0.8em;
	margin: 10px 0 0 0;
	text-align: center;
}

img.contact {
	margin: 0 5px 0 0;
	max-height: 20px;
	max-width: 20px;
}

img.round {
	border-radius: 50%;
}

.social-icon {
	margin: 0px 1px 0px 1px;
	max-height: 32px;
	max-width: 32px;
}