/*
Theme Name: INL
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inl
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 INL is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}
.background{background-position: 30% 20% !important;}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #8ed8f8;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {

}

a:visited {

}

a:hover,
a:focus,
a:active {

}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}

/* Small menu */
.menu-toggle {
	display: none;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*search*/
.searchwp-live-search-results{
	background: rgba(0, 0, 0, 0.25) !important;
	padding: 5px;
}


/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;


}

/*Added by Dustin 2/16/2018*/
.article .page-header h2{
	margin: 45px 0 0 0 !important;
}

.article .ssba{
	padding-bottom: 20px;
}

/* Added by Dustin 07/12/2018 */
.alert-update{
	border-bottom: 3px solid #005b94;
	padding: 10px 0;
}
.alert-update h4{
	font-weight: 600;
}
.alert-update span{
	font-weight: 600;
}
.warning.message.employee{
	background-color: #005b94;
    border-color: #005b94;
}
.warning.message.employee .btn-blue,
.warning.message.emergency .btn-blue{
	width: 128px;
	float: right;
	margin-right: 5px !important;
}
.warning.message.employee .inner-message p,
.warning.message.emergency .inner-message p{
	width: 695px;
	color: white;
}
.warning.message.stack{
	top: 180px;
}
.warning.message.stack.shrink{
	top: 150px;
}
.warning.message{
	transition: top .5s;
}
.warning.message.shrink{
	top: 90px;
	transition: top .5s;
}
.alert-rss-updates{
	float: right;
	color: #ea6720;
}
.alert-rss-updates-page{
	float: left;
	color: #ea6720;
	text-decoration: none;
	padding: 0 10px;
	position: relative;
	bottom: 42px;
}
.alert-rss-updates-page span{
	vertical-align: text-bottom;
}


/* 70th anniversary  */
@media screen and (min-width:1050px){
	.page-id-7217 .wrapper{
		width: 100%;
	}
	.page-id-7217 .inner{
		padding: 0 !important;
		float: right;
	}
}
.page-id-7217 .banner .mask{
	background: rgba(6, 31, 33, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  width: 100%;
  z-index: 5;
}
.social-icon{
	color: #356cab;
}
.social-icon .fa-linkedin-square{
	color: #0077B5;
}
.social-icon .fa-facebook-official{
	color: #3C5A99;
}
.social-icon .fa-reddit-square{
	color: #FF4500;
}
.social-icon .fa-twitter-square{
	color: #1DA1F2;
}
.social-icon:hover{
	color: #8bd7f9;
}
.anniversary-table{
	text-transform: uppercase;
}
.anniversary-table a{
	text-decoration: none;
	color: #35629b;
}
.anniversary-table td{
	vertical-align: middle;
	padding: 10px;
}
.anniversary-table td:nth-child(odd){
	text-align: right;
	width: 33%;
}
.anniversary-table td:nth-child(even){
	text-align: left;
}
.anniversary-table tr:nth-child(odd){
	background: white;
}
.anniversary-table tr:nth-child(even){
	/* background: #d0d7db; */
	background: white;
}

/* NEW NEWS SEARCH STYLING */
@media screen and (max-width: 768px){
	.result-2019{
		display:block;
	}
	.result-2019 .result-image-container,
	.result-2019 .result-post-details{
		width:100% !important;
	}
	.result-2019 .result-image-container{
		height:150px;
	}
	.newsLeft, .newsRight{
		float:none !important;
		width: auto !important;
		padding:0 !important;
	}
}
@media screen and (min-width: 768px){
	.newsLeft{
		width:75% !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	.newsRight{
		width:25% !important;
	}
	.newsWrapper{
		width:90% !important;
	}
	.result-2019{
		display:flex;
	}
}

.result-2019{
	margin: 25px 0px;
	background: #fff;
  transition: all 300ms ease 0ms,transform 300ms ease 0ms,transform 300ms ease 0ms,transform 300ms ease 0ms,transform 300ms ease 0ms;
}

.result-2019:hover{
	/* box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.3); */
	transform: scaleX(1.02) scaleY(1.02);
}

.result-2019 .result-image-container{
	width: 30%;
}
.result-2019 .result-image-container:hover{
	cursor: pointer;
}
.result-2019 .result-post-details{
	width: 70%;
}

.result-2019 .result-image-container,
.result-2019 .result-post-details{
	padding: 25px;
	vertical-align: top;
}

.result-2019 .result-post-details .btn-blue{
	margin-bottom: 0;
}

.result-post-details .result-body{
	font-size: 14px;
}

.result-2019 .title-link{
	font-family: 'Raleway';
	font-size: 24px;
	font-weight: 800;
	text-transform: uppercase;
	color: #35629b;
	text-decoration: none;
}

.result-2019 .date{
	margin-bottom: 0;
	margin-top: 5px;
	font-weight: 600;
	line-height: 20px;
}

.result-2019 .news-type{
	text-transform: uppercase;
	text-decoration: none;
	line-height: 20px;
}

.result-2019 .news-type:hover{
	color: #35629b;
	font-weight: 600;
}

.result-2019 .result-body{
	margin-top: 10px;
	line-height: 1.3em;
}

.result-2019 .btn-blue{
	background: white;
	float: right;
	width: 100px;
	font-size: 12px;
	padding: 6px 10px;
}

.result-2019 .btn-blue:hover{
	background: rgba(6, 31, 33, 0.4);
}

.newsWrapper .pagination{
	text-align: right;
}

.newsWrapper .pagination .page-numbers{
  margin: 0 2px 10px 2px;
  text-align: center;
  text-decoration: none;
  padding: 10px 15px;
  border: 3px solid #8ed8f8;
  font-size: 12px;
  line-height: 23px;
  text-transform: uppercase;
  color: #8ed8f8;
  font-weight: 700;
  cursor: pointer;
  background: rgba(6, 31, 33, 0.4);
  font-family: "Raleway";
  display: inline-block;
  zoom: 1;
  -webkit-transition: all 0.50s;
  -moz-transition: all 0.50s;
  transition: all 0.50s;
}
.newsWrapper .pagination .page-numbers.current,
.newsWrapper .pagination .page-numbers:hover{
	background: rgba(6, 31, 33, 0.9);
  color: #fff !important;
}
.newsWrapper .pagination .page-numbers.current{
	cursor: default;
}

.newsWrapper .filters select,
.newsWrapper .filters input{
	border: 3px solid #33619d;
  color: #33619d;
  font-family: 'Raleway';
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 12px;
  margin: 0;
	border-radius: 3px;
	height:40px;
}

.newsWrapper .filters .search-btn{
	border: 3px solid #005b94;
  color: #fff;
  font-family: 'Raleway';
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 12px;
  margin: 0;
	border-radius: 3px;
	height:40px;
	background: #005b94;
	box-shadow: unset;
	text-shadow: unset;
  transition: all 0.50s;
}
.newsWrapper .filters .search-btn:hover{
	background: rgba(6, 31, 33, 0.9);
  color: #fff !important;
}

.results .no-results{
	text-align: center;
  font-size: 24px;
  line-height: 3em;
	text-transform: uppercase;
	color: #33619d;
}

@media screen and (max-width: 425px){
	.result-2019 .btn-blue{
		width: 100%;
	}
}

@media screen and (max-width: 768px){
	.newsBanner{
		height: 200px;
	}
	.newsBanner .background{
		height: 200px;
	}
	.newsBanner .wrapper{
		height: 200px;
	}
	.newsBanner .inner{
		height: 200px !important;
	}
	.result-2019 .btn-blue{
		margin-bottom: 20px !important;
	}
}

/* TRENDING TOPICS */
.tt-link{
	text-transform: uppercase;
	color: #33619d;
	text-decoration: none;
	font-weight: 800;
}
.tt-link:not(:last-child):after{
	content: ' • ';
	color: #33619d;
}

.tt-body a{
	text-transform: uppercase;
	color: #33619d;
	text-decoration: none;
	font-weight: 800;
}

.tt-body p{
	margin-bottom: .75em;
}

.tt-title.subpage{
	font-size: 30px;
	margin-bottom: 0;
}
.tt-subtitle.subpage{
	color: #666;
	font-family: 'Raleway', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.tt-subtitle-ul{
	margin: 0 !important;
}

.tt-title.link{
	color: #35629b;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
}

.widget-grey .current-page,
.tt-link.current-page{
	color: #666;
}

.tt-image-gallery img{
	margin: auto;
	height: auto;
	padding: 0;
}

.faq{
	background: white;
	padding: 25px;
	margin: 10px 0;
}
.faq h3{
	font-family: 'Raleway';
	color: #35629b !important;
}
.faq .btn-blue,
.factsheet .btn-blue{
	background: white;
	float: right;
	width: 100px;
	font-size: 12px;
	padding: 6px 10px;
	margin-bottom: 0;
}

.faq .btn-blue:hover,
.factsheet .btn-blue:hover{
	background: rgba(6, 31, 33, 0.4);
}

.faqs-answer{
	overflow: hidden;
	transition: height 500ms ease;
}

.factsheet{
	display: flex;
	background: white;
	margin: 10px 0;
}

.factsheet-left{
	width:30%;
}
.factsheet-right{
	width:70%;
	padding: 10px;
}

.factsheet-title{
	font-family: 'Raleway';
	color: #35629b !important;
	text-decoration: none;
	font-weight: 800;
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 15px;
	text-transform: uppercase;
	text-align: left;
}

p, a, li, span, h1, h2, h3, h4, h5{
	line-height: 1.5em !important;
}


/* STEM CARDS */
.stem-card{
	width: 24%;
	background: white;
	padding: 20px;
	margin: .5%;
	min-height: 350px;
	text-align: center;
	position: relative;
	float: left;
}

.stem-card i{
	padding: 25px;
}

.stem-card .card-title{
	text-align: center;
	color: #005a96;
}

.stem-card .card-link-container{
	width:100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.stem-card .btn-blue{
	width: 150px;
	margin-bottom: 20px;
}

/* STEM JUMP CARDS */
.stem-jump, .stem-stat{
	width: 24%;
	background: white;
	padding: 20px;
	margin: .5%;
	text-align: center;
	position: relative;
	float: left;
	min-height: 250px;
}

.stem-jump i, .stem-stat i{
	padding: 25px;
}

.stem-jump .jump-title, .stem-stat .stat-value{
	text-align: center;
	color: #005a96;
}

.stat-value{
	margin-bottom: 0;
}

.stem-jump .jump-link-container{
	width:100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.stem-jump .btn-blue{
	width: 150px;
	margin-bottom: 20px;
}

/* STEM CONTENT SECTIONS */
.support-content, .volunteer-content{
	background: #c3c3c3;
}

.stem-content{
	padding: 50px 0;
}

.stem-content .stem-title{
	text-align: center;
}

/* STEM TAB SECTIONS */
.stem-tabs{
	width:80%;
	margin: 50px auto;
}

.tabs-switchers{
	/* width: 30%; */
	display: table-cell;
}

.tabs-switch{
	padding: 1.5em;
	background: rgba(6, 31, 33, 0.4);
	margin: 20px 20px 20px 0px;
}

.tabs-switch:hover{
	background: #005a96;
}

.tabs-switch.active{
	background: #005a96;
}

.tabs-switch.active .tabs-title,
.tabs-switch:hover .tabs-title,
.tabs-switch:hover .tabs-teaser,
.tabs-switch.active .tabs-teaser{
	color: white;
}

.tabs-content{
	width: inherit;
	display: table-cell;
	/* border: gray 1px solid; */
	background: white;
}

.tabs-content .tabs-title{
	font-size: 30px;
}

.tabs-item{
	overflow: hidden;
	margin:0;
	display: none;
}

.tabs-item.active{
	display: block;
	margin:20px;
}

.stem-contacts{
	width: 80%;
	margin: 50px auto;
}

.stem-contacts .contact{
	width: 32%;
	margin: 0px .5%;
	float: left;
}

.stem-post{
	margin: 50px;
}

/* STATS SECTION */
.stem-stats{
	margin: 50px auto;
}

.stat-disclaimer{
	float: right;
	margin: 10px;
}

/* GOALS SECTION */
.goal-content{
	background: #c3c3c3;
}
.goals-container{
	width:80%;
	margin:auto;
}

.goal-image-box, .goal-container{
	width: 45%;
	float: left;
	margin: 50px 2.5%;
}

.stem-goal{
	margin: 15px auto;
	background: white;
}

.stem-goal-icon{
	width: 25%;
	float: left;
	padding: 20px;
	text-align: center;
}

.stem-goal-icon{
	color: #005a96;
}

.stem-goal-text{
	padding: 20px;
	width: 75%;
	float: left;
}

.stem-goal-text h3{
	color: #005a96 !important;
}

/* Statewide Map */
.statewide-map-description, .statewide-map-image{
	width: 50%;
	float: left;
}

/* STEM Meet Our Team */
.social-icon .fa-instagram{
	color: #e1306c;
}

.stem-member{
	float: left;
	background: white;
	width: 19%;
	margin: .5%;
	text-align: center;
	min-height: 250px;
}

.stem-member .member-name{
	color: #005a96;
	text-align: center;
	margin-bottom: 0;
}

/* STEM NEWS AND EVENTS */
.news-content{
	background: #c3c3c3;
}

.news-content .pagination{
	text-align: right;
}

.news-content .pagination .page-numbers{
  margin: 0 2px 10px 2px;
  text-align: center;
  text-decoration: none;
  padding: 10px 15px;
  border: 3px solid #8ed8f8;
  font-size: 12px;
  line-height: 23px;
  text-transform: uppercase;
  color: #8ed8f8;
  font-weight: 700;
  cursor: pointer;
  background: rgba(6, 31, 33, 0.4);
  font-family: "Raleway";
  display: inline-block;
  zoom: 1;
  -webkit-transition: all 0.50s;
  -moz-transition: all 0.50s;
  transition: all 0.50s;
}
.news-content .pagination .page-numbers.current,
.news-content .pagination .page-numbers:hover{
	background: rgba(6, 31, 33, 0.9);
  color: #fff !important;
}
.news-content .pagination .page-numbers.current{
	cursor: default;
}

.stem-news-item{
	width: 32%;
	margin: .5%;
	background: white;
	float: left;
	position: relative;
	min-height: 550px;
}

.stem-news-item .stem-news-text{
	margin: 0 15px 70px 15px;
}

.stem-news-item .stem-news-button{
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.stem-news-text .date{
	margin-bottom: 0;
}

.stem-news-item .title-link{
	font-family: 'Raleway';
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	color: #35629b;
	text-decoration: none;
}

.stem-news-item .news-type{
	text-transform: uppercase;
	text-decoration: none;
	line-height: 20px;
}

.stem-news-item .news-type:hover{
	color: #35629b;
	font-weight: 600;
}

.stem-events-title{
	text-align: center;
}

/* JOKE OF THE WEEK */
.stem-joke{
	border: #005a96 2px dotted;
	text-align: center;
	padding: 20px;
}
.stem-joke h3{
	text-align: center !important;
}

/* RESOURCE SECTION */

.stem-flipbook{
	float: left;
	width: 48%;
	margin: 1%;
	background: white;
	padding:10px;
}

.stem-flipbook:hover{
	cursor: pointer;
}

.stem-flipbook-image{
	width:100%;
}

.stem-flipbook-title{
	font-size: 16px !important;
	text-align: center !important;
}

/* RESOURCE ACCORDIONS */

.stem-accordions{
	margin: 50px auto;
}

.stem-accordion{
	background: white;
	margin: 10px auto;
}

.stem-accordion-header{
	background: white;
	padding: 20px;
}

.active .stem-accordion-header{
	background: #35629b;
}

.stem-accordion-header:hover{
	background: #35629b;
	cursor: pointer;
}

.stem-accordion-header:hover .stem-accordion-title,
.stem-accordion-header:hover .stem-accordion-help,
.active .stem-accordion-title,
.active .stem-accordion-help{
	color: white;
}

.stem-accordion-collapse{
	padding: 0px;
	overflow: hidden;
	height: 0;
	transition: height 500ms ease;
}

.stem-accordion-sizebox{
	padding: 20px;
}

/* STEM BREADCRUMB */
.stem-bread a, .stem-bread i{
	color: #35629b;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
}

.stem-bread{
	margin-bottom: 20px;
}

/* HOME NEWS UPDATE */

.home-news.result-2019{
	 	text-align: left;
 }

.home-news.result-2019 .result-image-container, .home-news.result-2019 .result-post-details{
	 padding: 0 25px;
	 width: 50%;
 }

.home-news.result-2019 .title-link{
	color: #000;
	font-weight: 400;

}

/* FEATURED NEWS TITLE */
.featured-news-title{
	font-size: 35px !important;
}

/* BANNER LOCATIONS */
.background-default{
	background-position: 30% 20% !important;
}

.background-center{
	background-position: center !important;
}

.background-top{
	background-position: top !important;
}

.background-bottom{
	background-position: bottom !important;
}

.background-left{
	background-position: left !important;
}

.background-right{
	background-position: right !important;
}
