/* colors */
/* default-bg: #001f3e */
/* democrat-primary: #174b88 */
/* democrat-bg: #174b88 */
/* republican-primary: #75b93e */
/* republican-bg: #254049 */

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
	color: #2D7DAF;
}
a:hover, a:focus {
	color: #2D7DAF;
	text-decoration: underline;
}

body {
	background-color: #001f3e;
	/* font-family: 'Lato', sans-serif; */
	font-family: 'Montserrat', sans-serif;
	min-width: 360px;
}
body.partisan-democratic {
	background-color: #174b88;
}
body.partisan-republican {
	background-color: #254049;
}
body.partisan-republican-margins {
	max-width: 1800px;
	margin: auto;
}
body.non-partisan-margins {
	max-width: 1800px;
	margin: auto;
}

.lay-root {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	min-height: 100vh;
}
.root-foot {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	flex-grow: 1;
	
	background-color: #001f3e;
	color: #fff;
	padding: 15px 30px;
}
.partisan-democratic .root-foot {
	background-color: #174b88;
}
.partisan-republican .root-foot {
	background-color: #254049;
}
.root-foot a {
	color: #fff;
}
/* .root-foot .contact-info, .root-foot .root-foot-brand {
	outline: red dashed 2px;
	outline-offset: -1px;
} */
.root-foot .contact-info {}
.root-foot .root-foot-brand {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	background-image: url(../images/footer-logo.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 74px 65px;
	min-height: 75px;
	padding-left: 70px;
	text-transform: uppercase;
}
.root-foot .root-foot-brand:hover, .root-foot .root-foot-brand:focus {
	text-decoration: none;
}
@media (min-width: 768px) {
	.partisan-republican .root-foot {
		background-image: url(../images/footer-logo-republican.png);
		background-position: right center;
		background-repeat: no-repeat;
		background-size: contain;
		
	}
}
.partisan-republican .root-foot .root-foot-brand {
	display: none;
}
@media (max-width: 767px) {
	.root-foot .contact-info {
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		margin-bottom: 1rem;
		padding: 0 1rem 1rem;
	}
}
@media (min-width: 768px) {
	.root-foot {
		flex-grow: 1;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		
		padding: 40px 60px;
	}
	.root-foot .root-foot-brand {
		text-align: right;
	}
}

.main-navbar {
	background-color: #fff;
	/* background-image: url(../images/header-logo.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain; */
}
.democratic-navbar {
	background-color: #174b88;
}
.republican-navbar {
	background-color: #75b93e;
}
@media (min-width: 992px) {
	.main-navbar {
		height: 100px;
	}
	.democratic-navbar {
		height: 80px;
	}
	.republican-navbar {
		height: 80px;
	}
}

.site-navbar-brand {
	position: relative;
	color: #333;
	font-size: 12px;
	line-height: 15px;
	text-transform: uppercase;
}
.site-navbar-brand::before {
	content: "";
	position: absolute;
	top: -.5rem;
	right: 0px;
	bottom: -.5rem;
	left: -1rem;
	background-image: url(../images/header-logo.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
}
.site-navbar-brand:focus, .site-navbar-brand:hover {
	color: #333;
}
.site-title, .site-subtitle {
	display: block;
}
.site-title {
	font-family: 'Vidaloka', serif;
	letter-spacing: .17em;
}
.site-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
}
@media (min-width: 480px) {
	.site-navbar-brand {
		font-size: 18px;
		line-height: 21px;
	}
}
@media (min-width: 500px) {
	.site-navbar-brand {
		font-size: 20px;
		line-height: 23px;
	}
}
@media (min-width: 600px) {
	.site-navbar-brand {
		padding-left: 6rem;
	}
}
@media (min-width: 768px) {
	.site-navbar-brand {
		font-size: 24px;
		line-height: 27px;
	}
}
@media (min-width: 992px) {
	.site-navbar-brand {
		padding-left: 8rem;
	}
}

.navbar-toggler {
	border-width: 0px !important;
	text-transform: uppercase;
}
.main-navbar .navbar-nav .nav-link {
	color: #333;
	text-transform: uppercase;
}
.main-navbar .navbar-nav .nav-link:focus, .main-navbar .navbar-nav .nav-link:hover {
	color: #111;
}
.navbar .dropdown-menu {
	border-radius: 0;
	margin: 0;
	margin-top: -1px;
	padding: 0;
}
.navbar .dropdown-toggle {
	position: relative;
}
.navbar .dropdown-item {
	font-size: .9rem;
	font-weight: 600;
	padding: .5rem 1rem;
}
.navbar .dropdown-item:last-child {
	padding-bottom: 1rem;
}
.navbar .dropdown-item:focus, .navbar .dropdown-item:hover {
	color: inherit;
}
@media (max-width: 991px) {
	.main-navbar .navbar-nav .nav-item {
		border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	}
	.main-navbar .navbar-nav .nav-item:last-child {
		border-bottom-width: 0px;
	}
	.main-navbar .navbar-nav .nav-link {
		padding-left: .5rem;
	}
	.main-navbar .navbar-nav .nav-link:focus, .main-navbar .navbar-nav .nav-link:hover {
		/* background-color: rgba(0, 0, 0, 0.05); */
		background-color: #f2f2f2;
	}
	.main-navbar .navbar-nav .nav-item:first-child .nav-link {
		margin-top: .5rem;
	}
	.navbar .dropdown-toggle::after {
		content: "";
		position: absolute;
		right: 1rem;
		
		display: block;
		border-top: 0.5em solid;
		border-right: .5em solid transparent;
		border-bottom: 0;
		border-left: .5em solid transparent;
		margin: 0;
		/* vertical-align: .255em; */
	}
	.navbar .dropdown-menu {
		background-color: transparent;
		border: none;
	}
	.navbar .dropdown-item {
		border-top: 1px solid rgba(255, 255, 255, .2);
		color: rgba(255, 255, 255, .85);
	}
	.navbar .dropdown-item:focus, .navbar .dropdown-item:hover {
		background-color: rgba(255, 255, 255, .15);
		color: rgba(255, 255, 255, .85);
	}
}
@media (min-width: 992px) {
	.site-navbar-brand::before {
		top: -1.1rem;
		bottom: -1.1rem;
	}
	.navbar .dropdown-toggle::after {
		display: none;
	}
	.navbar .dropdown-item {
		border-top: 1px solid rgba(0, 0, 0, 0.15);
	}
	.navbar .dropdown-item:focus, .navbar .dropdown-item:hover {
		background-color: rgba(0, 0, 0, 0.19);
		color: inherit;
	}
}

.nav-item-search {}
.nav-item-search .dropdown-toggle::after {
	display: none;
}
.nav-item-search .dropdown-menu-search {
	background-color: #fff;
	border-radius: 0px;
	border-width: 0px;
}
.nav-item-search .dropdown-item-search {
	position: relative;
	
	padding: 0px 0px;
}
.nav-search-form .search-submit {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	
	color: #333;
	font-weight: bolder;
	text-transform: uppercase;
}
.nav-search-form .search-query {
	width: 100%;
}
/* @media (max-width: 991px) {
	.nav-item-search {
		padding: .5rem 0px;
	}
}
@media (min-width: 992px) {
	.nav-item-search {
		max-width: 150px;
	}
} */
@media (max-width: 991px) {
	.nav-item-search .dropdown-toggle {
		display: none;
	}
	.nav-item-search .dropdown-menu-search {
		display: block !important;
		margin: 0px;
		padding: .75rem .5rem;
		width: 100%;
	}
}
@media (min-width: 992px) {
	.nav-item-search .dropdown-menu-search {
		min-width: 15rem;
		padding: .5rem .5rem;
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
	}
}


.subsite-navbar-brand {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	line-height: 15px;
}
.subsite-title, .subsite-subtitle {
	display: block;
}
.subsite-title {
	font-weight: 600;
	text-transform: uppercase;
}
.subsite-subtitle {
	font-weight: 400;
}
.subsite-subtitle em {
	font-weight: 300;
	font-style: italic;
}
@media (min-width: 768px) {
	.subsite-navbar-brand {
		font-size: 18px;
		line-height: 19px;
	}
}

/* PARTISAN NAVBAR */
.partisan-navbar .navbar-nav {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}
.partisan-navbar .navbar-nav .nav-item {}
.partisan-navbar .navbar-nav .nav-item .nav-link {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	
	color: rgba(255, 255, 255, .85);
	font-weight: bold;
	padding: 1rem;
}
.partisan-navbar .navbar-nav .nav-item .nav-link:focus, .partisan-navbar .navbar-nav .nav-item .nav-link:hover {
	color: rgba(255, 255, 255, .95);
	background-color: rgba(255, 255, 255, .15);
}
.partisan-navbar .navbar-nav .nav-item.feature-nav-item .nav-link {
	background-color: rgba(0, 0, 0, 0.15);
	text-transform: uppercase;
}
.partisan-navbar .navbar-nav .nav-item.feature-nav-item .nav-link:focus, .partisan-navbar .navbar-nav .nav-item.feature-nav-item .nav-link:hover {
	background-color: rgba(0, 0, 0, 0.25);
}
@media (min-width: 992px) {
	.partisan-navbar .navbar-nav {
		flex-direction: row;
		
		height: 80px;
		margin-right: -1rem;
	}
	.partisan-navbar .navbar-nav .nav-item .nav-link {
		align-items: center;
		height: 80px;
	}
}


/* LAY_COPY */
.lay-copy .copy-head {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	
	background-color: #001f3e;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	min-height: 256px;
	padding: 3em 0px;
}
.lay-copy .copy-head-tall {
	min-height: 400px !important;
}
.lay-copy .copy-head::before {
	content: "";
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	
	/* background-image: url(../images/featured-image-01.jpg); */
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: .25;
}
.seed-0 .lay-copy .copy-head::before { background-image: url(../images/featured-image-00.jpg); }
.seed-1 .lay-copy .copy-head::before { background-image: url(../images/featured-image-01.jpg); }
.seed-2 .lay-copy .copy-head::before { background-image: url(../images/featured-image-02.jpg); }
.seed-3 .lay-copy .copy-head::before { background-image: url(../images/featured-image-03.jpg); }
.seed-4 .lay-copy .copy-head::before { background-image: url(../images/featured-image-04.jpg); }
.seed-5 .lay-copy .copy-head::before { background-image: url(../images/featured-image-05.jpg); }
.seed-6 .lay-copy .copy-head::before { background-image: url(../images/featured-image-06.jpg); }
.lay-copy .copy-head .container {
	position: relative;
}
.lay-copy .copy-head h1 {
	font-size: 2rem;
	font-weight: 800;
	margin: 0px;
	margin-bottom: 10px;
	padding: 0px;
	padding-right: 30%;
}
.lay-copy .copy-head h2 {
	font-size: 1.2rem;
}
.lay-copy .breadcrumb {
	background-color: transparent;
	font-size: 20px;
	font-weight: 600;
	margin: 0px;
	padding: 0px;
}
.lay-copy .breadcrumb a {
	color: #fff;
}
.lay-copy .breadcrumb a:hover, .lay-copy .breadcrumb a:focus {
	color: #fff;
	text-decoration: underline;
}
.lay-copy .breadcrumb .divider {
	padding-right: .33em;
}

@media (min-width: 992px) {
	.lay-copy .copy-head h1 {
		padding-right: 40%;
	}
}
@media (min-width: 1200px) {
	.lay-copy .copy-head h1 {
		font-size: 3rem;
	}
	.lay-copy .copy-head h2 {
		font-size: 2rem;
	}
}

.lay-copy .copy-body {}

/* LAY_COPY_DEFAULT */
.lay-copy-default .copy-body {
	display: flex;
	flex-direction: column-reverse;
	flex-wrap: nowrap;
	
	padding-top: 3em;
	padding-bottom: 3em;
}
.lay-copy-default .copy-body>.copy-content {}
.lay-copy-default .copy-body>.copy-nav {
	padding-top: 2em;
}
@media (min-width: 768px) {
	.lay-copy-default .copy-body {
		flex-direction: row-reverse;
	}
	.lay-copy-default .copy-body>.copy-content {
		flex-grow: 1;
	}
	.lay-copy-default .copy-body>.copy-nav {
		flex-basis: 240px;
		flex-grow: 0;
		flex-shrink: 0;
		
		padding-top: 0em;
		padding-left: 2em;
	}
}
@media (min-width: 992px) {
	.lay-copy-default .copy-body>.copy-nav {
		flex-basis: 320px;
		
		padding-left: 3em;
	}
}

/* COPY_CONTENT */
.copy-nav-head h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
	font-weight: 800;
	margin-bottom: 0px;
	border-bottom: 2px solid #000;
	padding-bottom: .5em;
}
/* .pagegroup .element .header h2, .copy-nav-head h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
	font-weight: 800;
	margin-bottom: .5em;
}
.copy-nav-head h2 {
	margin-bottom: 0px;
}
.group-layout-row.first .pagegroup .element .header h2, .copy-nav-head h2 {
	border-bottom: 2px solid #000;
	padding-bottom: .5em;
} */

.related-links-items, .related-links-items>.item {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.related-links-items .item a {
	display: block;
	color: #000;
	font-weight: 500;
	padding: 1em 0px;
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

/* ROOT (LATEST) NEWS  */
.root-latest-news {
	background-color: #ededed;
	border-bottom: 6px solid #75b93e;
	color: #333;
	padding: 30px;
}

.root-latest-news a {
	color: #333;
}
.root-latest-news a:hover, .root-latest-news a:focus {
	color: #333;
}
.root-latest-news .news-head {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 2rem;
	text-align: center;
	text-transform: uppercase;
}
.root-latest-news .news-items {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.root-latest-news .news-items, .root-latest-news .item {
	list-style: none;
	margin: 0;
	padding: 0;
}
.root-latest-news .news-items {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	
	margin: 0 auto;
	max-width: 1500px;
}
.root-latest-news .item {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	
	/* flex-grow: 1; */
	/* flex-basis: 0; */
	
	margin-right: 30px;
	padding-bottom: 2rem;
	padding-left: 5rem;
}
.root-latest-news .item:last-child {
	margin-right: 0;
}
.root-latest-news .news-items .date {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 3rem;
	
	text-align: center;
}
.root-latest-news .news-items .date .date-month {
	display: block;
	font-size: .9rem;
	font-weight: 300;
	line-height: 1em;
	text-transform: uppercase;
}
.root-latest-news .news-items .date .date-day {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1em;
}
.root-latest-news .news-items .type {
	border-bottom: 1px solid rgba(51, 51, 51, 0.5);
	font-size: .9rem;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: .5rem;
	padding-bottom: .5rem;
	text-transform: uppercase;
}
.root-latest-news .news-items .title {
	font-weight: 600;
}
@media (min-width: 768px) {
	.root-latest-news .news-head {
		font-size: 1.75rem;
	}
}
@media (min-width: 992px) {
	.root-latest-news .news-items {
		flex-direction: row;
	}
	.root-latest-news .item {
		width: 33.33%;
	}
}





/* .pull-left {
	float: left !important;
} */


table col.date {
	width: 5rem;
}


/* REMOVE HEADER FROM Reopen Readiness Metric Tracker PAGE */
/* SEE TICKET #38274 6-2-20 */
.page-reopen-readiness-metric-tracker .copy-head {
    display: none !important;
}