

/*
Theme Name: mwcc
Theme URI: http://underscores.me/
Author: Jeff Cicero
Author URI: http://www.zone5.com
Description: MWCC Site Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mwcc
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.
mwcc is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

#page {
	overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

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

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

p {
	margin-bottom: 1.5em;
}

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: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

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

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

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

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: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

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;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

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

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

.main-navigation ul {
	display: none;
	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 li.focus>a {}

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

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {}

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

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

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

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: block;
	}
}

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

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

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

/*--------------------------------------------------------------
# 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;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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-size: 0.875rem;
	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. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 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-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# 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;
	table-layout: fixed;
}

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

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

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

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## 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;
}

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

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-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;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .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%;
}

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

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

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

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

/*--------------------------------------------------------------
## 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;
}

.adcalendar br {
	line-height: 0px;
	display: none;
}

.format_text a {
	font-weight: normal;
}

table[summary="Events Calendar"] {
	float: left;
	padding-right: 10px;
	margin-right: 20px;
}

/* These styles control the list view small grid. */
.calendartext {
	font-family: Tahoma !important;
	font-size: 1em !important;
	color: #214380 !important;
}

.titleSmallGrid {
	font-family: Tahoma !important;
	font-weight: Bold !important;
	font-size: 12px !important;
	color: #214380 !important;
}

.dayheaderSmallGrid {
	font-family: Tahoma !important;
	font-weight: Bold !important;
	font-size: 12px !important;
	color: #FFFFFF !important;
	background-color: #214380 !important;
}

.calendarcellSmallGrid {
	font-family: Tahoma !important;
	font-size: 11px !important;
	color: #214380 !important;
	background-color: #A7C4E1 !important;
}

.calendarcellSmallGrid a {
	font-weight: bold !important;
}

.calendarcellhiliteSmallGrid {
	font-family: Tahoma !important;
	font-size: 11px !important;
	color: #4C4C4C !important;
	background-color: #C1D5EA !important;
}

/* This style controls the style of grid cells not being used. */
.otherdaySmallGrid {
	font-family: Tahoma !important;
	font-size: 11px !important;
	color: Black;
	background-color: #F5F5F5 !important;
}

/*---:[ custom CSS ]:---*/
.acalendarboxright {
	float: right;
	width: 48%;
	border: 1px solid #000;
	margin: 5px;
}

.acalendarboxleft {
	float: left;
	width: 48%;
	border: 1px solid #000;
	margin: 5px;
}

.acalendarboxfull {
	/*float: left;*/
	/*width: 48%;*/
	border: 1px solid #000;
	margin: 5px;
}

.acalendartitle {
	width: 100%;
	font-weight: bold;
	font-size: 14px;
	padding-top: 5px;
	padding-bottom: 5px;
	background: #00335B;
	color: #FFF;
	text-align: center;
}

.acalendartitle a {
	color: #FFF;
	text-decoration: none;
}

.acalendartitle a:hover {
	color: #FFF;
	text-decoration: underline;
}

.acalendartitle a:visited {
	color: #FFF;
	text-decoration: none;
}

.acalendarcontent {
	font-size: 12px;
	padding: 5px;
}

.acalendarcontent a {
	text-decoration: none;
}

.acalendarcontent a:hover {
	text-decoration: underline;
}

.acalendarcontent .datelabel {
	display: block;
	font-weight: bold;
	font-size: 12px;
}

.acalendarcontent .eventlabel {
	font-size: 11px;
}

.view-full-calendar {
	margin-top: 0;
}

.view-full-calendar a,
.view-full-calendar a:visited {
	color: #ffffff;
}

.view-full-calendar a:hover {
	color: #ffffff;
	text-decoration: none;
}

.c-mobile-navigation.l-mobile-navigation ul ul.toggled {
	min-height: 20px;
}

/* current_page_ancestor */
.c-mobile-navigation ul li.current_page_ancestor>a {
	color: rgba(11, 49, 85, 0.85);
}

.c-mobile-navigation.l-mobile-navigation ul li.menu-item-has-children ul li ul li a .o-icon-caretclosed-icon {
	display: inline-block;
}

body.archive article.news-article .entry-meta {
	margin-top: 3px;
	margin-bottom: 8px;
}

body.archive article.news-article .alignleft.news-featured {
	margin-top: 0.25em;
}

/* OVERRIDES */
.site-main .c-sidebar-right--program .sidebar-right-top .widget.widget_text .widget-title {
	/*color: #0b3155;*/
	color: #00335B;
}

.site-main .c-sidebar-right--program .sidebar-right-top .widget.widget_text .textwidget a {
	color: rgba(11, 49, 85, 1);
}

.site-main .widget.widget_related_careers_widget .widget-title {
	/*color: #0b3155;*/
	color: #00335B;
}

.l-landing-wrap-alt .section-landing-left .section-header {}

.l-landing-wrap.l-landing-wrap-alt .section-landing-left .section-header:before {
	background-image: none;
	display: none;
	content: '';
}

.c-hero-header.c-hero-header-alt h2 {
	margin-top: .25em;
	margin-bottom: .25em;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 3rem;
	color: #f6b13d;
	text-transform: uppercase;
}

.c-landing-header .l-wrap.l-wrap-alt {
	padding-left: 2.34783%;
}

.l-landing-wrap.l-landing-wrap-alt {
	background-color: #fff;
}

.l-landing-wrap .section-landing-left.section-landing-left-alt {
	background-color: #fff;
}

.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt {}

.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt h2 {
	font-size: 38px;
	font-weight: 600;
	font-family: "Oswald", sans-serif;
	color: #008345;
}

.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt h2:first-of-type {
	margin-top: 0;
}

.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt p {}

.l-landing-wrap.l-landing-wrap-alt .section-article p {
	color: #000;
}

.l-landing-wrap.l-landing-wrap-alt .section-article {
	color: #000;
}

.l-landing-wrap .section-landing-right.section-landing-right-alt {
	background-color: #fff;
}

.l-landing-wrap .section-landing-right.section-landing-right-alt .section-landing-right-alt-form {
	padding-left: 0;
	padding-right: 0;
	top: 60px;
	position: absolute;
	/*width: 500px;*/
	/*width: auto;*/
	width: 552px;
	right: 10%;
	/*background-color:#fff;*/
	background: transparent;
	z-index: 555;
}

.l-landing-wrap .section-landing-right.section-landing-right-alt .section-landing-right-alt-form .wpcf7-form-inner {
	/*margin: 0 auto 0 -24px;*/
	margin: 0 auto;
	padding: 10px 30px;
	/*border: 28px solid #dedfe0;*/
	outline: 28px solid rgba(217, 218, 219, .86);
	width: 552px;
	position: relative;
	background-color: #fff;
	z-index: 556;
}

.section-alt-sidebar {
	margin-top: 4em;
	padding: 5px 30px 15px 30px;
	position: relative;
	background-color: #f7bc58;
	color: #000;
	width: 552px;
	margin-left: -28px;
	width: 609px;
}

.section-alt-sidebar h2 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #00335b;
	font: normal 42px/36px Oswald;
}

@media all and (min-width: 1000px) {
	.section-landing-form-mobile {
		display: none;
	}

	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt {
		padding-left: 40px;
	}

	.c-hero-header-alt .c-hero-header--image:before {
		padding-bottom: 51.05556%;
	}
}

@media all and (max-width: 1000px) {
	.section-landing-form-mobile {
		padding-left: 4.34783%;
		padding-right: 4.34783%;
		display: block;
	}
}

@media all and (max-width: 1000px) {
	.section-landing-right.section-landing-right-alt.section-landing-right-alt-form {
		display: none;
	}

	.section-alt-sidebar {
		width: 100%;
		margin-left: 0;
	}

	.l-wrap-alt .entry-header .section-title {
		text-align: center;
	}
}

@media all and (max-width: 600px) {
	.l-wrap-alt .entry-header {
		padding-top: .5em;
		padding-bottom: .5em;
	}

	.l-wrap-alt .entry-header .section-title {
		text-align: center;
	}

	.c-hero-header.c-hero-header-alt h2 {
		margin-top: 0;
		margin-bottom: 0;
		font-size: 2rem;
	}
}

@media all and (max-width: 1570px) {
	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt {
		width: 50%;
	}
}

@media all and (max-width: 1370px) {
	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt {
		width: 45%;
	}
}

@media all and (max-width: 1230px) {
	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt {
		width: 35%;
	}
}

@media all and (max-width: 1120px) {
	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt {
		width: 33%;
	}
}

@media all and (max-width: 1000px) {
	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt {
		width: 100%;
	}
}

@media all and (max-width: 1440px) and (min-width: 1001px) {
	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt {
		padding-left: 0;
	}

	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt .section-article .entry-content {
		padding-right: 1.5em;
	}
}

/*@media all and (max-width: 1500px) and (min-width: 1100px) {
	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt .section-article .entry-content {
		width: 70%;
	}
}
@media all and (max-width: 1099px) and (min-width: 1001px) {
	.l-landing-wrap.l-landing-wrap-alt .section-landing-left-alt .section-article .entry-content {
		width: 50%;
	}
}*/
.c-site-logo .c-site-logo__item.c-site-logo--full.c-site-logo--alt {
	width: 260px;
	height: 65px;
}

.c-site-logo .c-site-logo__item.c-site-logo--full {
	width: 250px !important;
}

@media screen and (min-width: 1025px) {
	.c-site-logo .c-site-logo__item.c-site-logo--full {
		width: 369px !important;
	}
}

.site-header.site-header-alt {
	background-color: rgba(0, 51, 91, .9);
}

.l-landing-header.l-landing-header-alt {
	position: absolute;
	bottom: 0;
}

/* New styles for slider (02/26/2020)*/
.main-carousel {
	height: 670px;
}

.c-hero-header {
	height: 670px;
}

.c-hero-header .c-hero-header--image {
	height: 100%;
}

#section-hero-header .c-hero-header--image {
	position: relative;
	margin-top: -168px;
}

@media screen and (min-width: 1440px) {
	.c-hero-slider__slide-caption {
		font-size: 3.5em !important;
	}
}

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

	.c-hero-header,
	.main-carousel {
		height: auto !important;
	}
}

/*--- New Homepage Styling ---*/
.c-site-logo .c-site-logo__item {
	display: none !important;
}

.c-site-logo__item.c-site-logo--full {
	display: block !important
}

@media (max-width: 767px) and (min-width: 240px) {

	.l-wrap .c-site-logo,
	.l-wrap .c-cta {
		width: 100% !important;
	}

	.l-wrap .c-site-logo {
		margin-bottom: 20px;
		max-width: inherit !important;
	}

	.l-branding .c-cta a {
		margin-bottom: 20px;
	}
}

.c-main-content .hentry .entry-content ul {
	margin-top: 0 !important;
}

.c-main-content .entry-content a {
	font-weight: 400 !important;
}

.c-main-content .entry-content h1,
.c-main-content h1 {
	font-weight: 700 !important;
    text-transform: uppercase;
}

.c-main-content .entry-content h2,
.c-main-content .entry-content h3,
.c-main-content .entry-content h4 {
	font-weight: 700 !important;
    margin-bottom: 10px !important;
    margin-top: 30px !important;
}

.c-main-content .entry-content h2 +  h3,
.c-main-content .entry-content h2 +  h4,
.c-main-content .entry-content h3 +  h4,
.c-main-content .entry-content > h2,
.c-main-content .entry-content > h3 {
	margin-top: 0 !important;
}


.c-main-content .entry-content h2 {
	font-size: 25px;
    font-family: "Oswald", sans-serif !important;
    line-height: 1.2em;
    margin-bottom: 10px !important;
    margin-top: 30px !important;
}

.o-button.o-button--cta {
	border-radius: 11px !important;
	min-width: auto !important;
	max-width: inherit !important;
	margin-right: 15px;
}

.c-cta {
	height: auto !important;
}

.c-cta a {
	display: inline-block !important;
}

.c-cta a:last-child {
	margin-right: 0;
}

.l-branding .c-cta {
	padding-top: 0 !important;
}

.l-audience-navigation ul li a {
	padding: 15px 10px 15px 10px !important;
	text-transform: none !important;
}

.c-audience-navigation {
	background: transparent !important;
}

.c-home-graphics--graphic strong,
.c-home-graphics--graphic p {
	color: #00335B;
	font-family: "Oswald", sans-serif;
	margin-bottom: 0;
    padding: 0;
    line-height: 1em;
}

.masthead--slideshow .slide-content {
	text-align: center !important;
	width: 100% !important;
}

.masthead--slideshow .slide-content h2 {
	font-family: "Oswald", sans-serif;
	color: #000;
	font-size: 30px;
	margin-bottom: 20px;
	line-height: 1em;
}

.masthead--slideshow .yellow-button {
	margin-top: 0;
}

.c-home-graphics--graphic h4 {
	font-size: 25px;
	font-family: "Oswald", sans-serif;
	color: #00335B;
	margin-top: 0;
	margin-bottom: 0;
}

.c-home-graphics .c-home-graphics--graphic {
	border-right: 0 !important;
	text-align: left !important;
	align-items: flex-start;
	padding-left: 2.12766%;
	padding-bottom: 30px;
}

.yellow-button {
	background-color: #f6b331;
	color: #0b3155;
	border: none;
	text-align: center;
	text-transform: none;
	font-family: "Lato", sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: bold;
	letter-spacing: 0;
	border-radius: 11px;
	min-width: auto !important;
	max-width: inherit !important;
	padding: 8px 23px;
	display: inline-block;
	text-decoration: none;
	margin-top: 20px;
}

.c-news-events-feature,
.c-news-events-feature .c-news-events-feature--item {
	background-color: #fff !important;
}

.c-news-events-feature .c-news-events-feature__news .c-news-events-feature--item-body ul li a,
.c-news-events-feature--item-body a,
.c-news-events-feature .c-news-events-feature__events .c-news-events-feature--item-body .event-calendar-item p {
	color: #343434 !important;
	text-decoration: none !important;
}

.c-news-events-feature .c-news-events-feature__news .c-news-events-feature--item-body ul li a,
.c-news-events-feature--item-body a,
.c-news-events-feature__events .event-calendar-item a {
	font-family: "Oswald", sans-serif;
	font-size: 25px;
	line-height: 28px;
}

.c-news-events-feature .l-inner-wrap ul li {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.c-news-events-feature--item-body ul li {
    margin-bottom: 20px !important;
}

.c-home-graphics {
	padding: 30px 0;
}

.c-home-graphics--graphic img {
	margin-right: 15px;
}

.home-text-section h2 {
	font-family: "Oswald", sans-serif;
	color: #00335B;
	text-transform: uppercase;
	font-size: 35px;
	margin-top: 0;
}

.home-text-section {
	border-top: 1px solid #ccc;
	display: flex;
}

.home-text-section img {
	display: none;
}

.home-text-section_text {
	padding: 30px 20px;
}

.home-cta-bar {
	background: #00335B;
	padding: 50px 0;
	text-align: center;
	color: #fff;
}

.home-cta-bar h2 {
	font-size: 40px;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	margin-bottom: 0;
	margin-top: 0;
	line-height: 1em;
}

.c-news-events-feature__events .event-calendar-item a {
	font-family: "Oswald", sans-serif;
}

.c-news-events-feature .c-news-events-feature--item .c-news-events-feature--item-body h1,
.c-news-events-feature .c-news-events-feature--item .c-news-events-feature--item-body h3 {
	color: #00335B !important;
	font-size: 40px !important;
	font-weight: bold;
	text-align: left !important;
}

.c-news-events-feature .c-news-events-feature__news .c-news-events-feature--item-header {
	background-color: transparent !important;
}

.c-news-events-feature .c-news-events-feature--item .c-news-events-feature--item-header:before {
	display: none !important;
}

.c-news-events-feature .c-news-events-feature__events .c-news-events-feature--item-body .event-calendar-item p {
	font-weight: 400;
	font-size: 16px;
}

.c-news-events-feature .block-post li,
.c-news-events-feature .c-news-events-feature__events .c-news-events-feature--item-body .event-calendar-item {
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px !important;
	padding-bottom: 15px;
}

.c-news-events-feature {
	padding: 20px 0;
}

.blog-icon {
	margin-right: 10px;
}

.c-testimonial blockquote {
	font-size: 18px !important;
	font-family: "Oswald", sans-serif !important;
}

.c-testimonial p {
	font-size: 15px !important;
	font-weight: bold !important;
	text-align: left;
	float: none !important;
	font-family: "Oswald", sans-serif !important;
	margin-top: 20px !important;
}

.c-testimonial .flex-row {
	align-items: center;
}

.c-testimonial {
	padding: 20px 0;
}

/* .c-testimonial .c-testimonial__figure figure, */
.c-testimonial .c-testimonial__figure div {
	margin: 0 !important;
	max-width: 245px !important;
}

.c-site-alert {
	padding-top: 0 !important;
	position: relative;
	top: 0;
	width: 100%;
	min-height: auto !important;
	text-align: center;
	padding: 10px 0 !important;
}

.c-site-alert p {
	font-size: 15px !important;
}

#google_language_translator {
	color: transparent;
	position: absolute;
	left: auto;
	top: -122px;
    right: 4px;
}

@media (min-width: 550px) {
	#google_language_translator {
		top: -203px;
	}
}

.goog-logo-link {
	display: none !important;
}

.goog-te-gadget {
	color: transparent !important;
}

.l-wrap {
	position: relative;
}

.l-wrap .c-search-form {
	width: auto !important;
	min-width: 200px;
}

.c-top-navigation #google_language_translator {
	width: 145px !important;
}

.l-branding .c-search-form .search-field {
	width: 100% !important;
}

.slick-arrow {
	background: #fff;
	padding: 10px 14px 8px;
	border-radius: 100%;
	content: url('../mwcc/assets/images/arrow-left.png');
	position: absolute;
	z-index: 900;
	top: 50% !important;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: none !important;
}

.icon-arrow-left {
	left: 40px;
}

.icon-arrow-right {
	right: 40px;
	transform: rotate(180deg);
	z-index: 0;
}

.accreditations_content,
.accreditations_images {
	flex: 0 0 50%;
	padding: 0 20px;
	text-align: center;
	margin-bottom: 25px;
}

.accreditations_content h2 {
	font-size: 40px;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	color: #00335B;
	margin-bottom: 0;
	margin-top: 0;
	line-height: 1em;
}

.c-accreditations {
	padding: 30px 0;
}

.c-accreditations .flex-row {
	align-items: center;
}

@media (min-width: 768px) {
	.l-branding .c-search-form .search-form .o-icon-search-icon {
		position: absolute !important;
		right: 0 !important;
	}

	.home-text-section_text {
		width: 66%;
		padding: 120px 30px;
		position: relative;
		z-index: 2;
	}

	.home-text-section img {
		width: 44%;
		position: absolute;
		right: 0;
		z-index: 1;
	}

	.home-text-section_text {
		padding: auto;
	}

	.c-testimonial .c-testimonial__figure {
		float: left !important;
	}

	.flex-row {
		display: flex !important;
	}

	.c-home-graphics {
		padding: 100px 0;
		margin-bottom: 0 !important;
	}

	.home-cta-bar {
		padding: 100px 0;
	}

	.c-news-events-feature {
		padding: 70px 0;
	}

	.slick-arrow {
		display: block !important;
	}

	.masthead--slideshow .slide-content h2 {
		font-size: 40px;
	}

	.c-home-graphics .c-home-graphics--graphic {
		width: 33.33333% !important;
		padding: 0 20px !important;
	}

	.home-text-section img {
		display: block;
	}

	#google_language_translator {
		color: transparent;
		position: absolute;
		left: 53px;
		top: -52px;
		right: auto;
	}

	.c-accreditations {
		padding: 60px 0;
	}

	.accreditations_content,
	.accreditations_images {
		padding: 0 20px;
		text-align: left;
		margin-bottom: 0px;
	}

	.accreditations_images {
		text-align: right;
	}

	.accreditations_images img {
		width: 49%;
	}

	.masthead--slideshow .slide-content h2 {
		color: #fff;
	}

	.masthead--slideshow .slide-content {
		text-align: center !important;
		width: 80% !important;
		position: absolute;
		left: 50% !important;
		top: 50% !important;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		color: #fff;
		z-index: 200 !important;
	}
}

@media (min-width: 769px) {
	.c-cta {
		width: auto !important;
		margin-right: 0 !important;
		float: right !important;
	}

	.c-accreditations {
		padding: 100px 0;
	}
}

@media (min-width: 768px) {
	.masthead--slideshow {
		margin-top: 220px;
	}
}


@media (min-width: 1230px) {
	.c-cta {
		margin-top: 24px !important;
	}

	.accreditations_images img {
		width: auto;
	}
}

@media (min-width: 1300px) {
	.c-site-logo {
		width: 28.52174% !important;
	}

	#google_language_translator {
		color: transparent;
		position: absolute;
		right: 58px;
    	top: -34px;
		left: auto;
	}

	.c-cta {
		margin-top: 24px !important;
		margin-right: 15px !important;
	}

	.masthead--slideshow {
		margin-top: 200px;
	}
}

@media (min-width: 1500px) {
	#google_language_translator {
		top: 7px;
		right: 0;
	}
}

@media (max-width: 767px) and (min-width: 240px) {
	.c-home-graphics .c-home-graphics--graphic {
		padding-bottom: 30px;
		text-align: center !important;
	}

	.c-cta .o-button.o-button--cta {
		margin-right: 3px;
		margin-bottom: 6px;
		padding: 8px !important;
		font-size: 9px;
		border-radius: 7px !important;
	}

	.l-wrap .c-cta {
		width: 100% !important;
		margin-left: 1.46395% !important;
		text-align: right;
	}

	.l-top-navigation .l-wrap .c-search-form {
		float: none !important;
	}

	.l-top-navigation .l-wrap .search-submit {
		position: absolute !important;
		right: 0 !important;
	}
}

@media (max-width: 1000px) and (min-width: 768px) {
	.l-wrap .c-cta {
		width: 100% !important;
		float: right !important;
		text-align: right !important;
	}
}

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	min-height: 1px;
	position: relative;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* The Close Button */
.cta-close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	padding: 0 20px;
	position: absolute;
	right: 20px;
}

.testimonial-icon-arrow-right {
	right: 20px;
	transform: rotate(180deg);
}

.testimonial-icon-arrow-left {
	left: 20px;
}

.slide-item--video {
	width: 100%;
	height: auto;
}


@media (min-width: 768px) {
	.l-top-navigation ul > li.has-dropdown:hover .mega-wrap-outer {
		width: 300px;
		max-width: inherit !important;
		overflow: visible !important;
	}

	.l-top-navigation ul li {
		position: relative !important;
	}

	.l-top-navigation ul > li.has-dropdown .mega-wrap-inner ul {
    	width: 100% !important;
	}

	.l-top-navigation .sub-menu .sub-menu{
		display: none !important;
	}

	.l-top-navigation li.menu-item-has-children:hover > .sub-menu {
		display: block !important;
	    left: 100%;
	    top: 0;
	    position: absolute;
	    background: #fff;
	}

	.l-top-navigation li.menu-item-has-children.right-flyout:hover > .sub-menu {
    	right: 284px;
    	top: 0;
    	left: auto;
    	padding-top: 20px;
    	padding-bottom: 20px;
	}

	.l-top-navigation ul > li.has-dropdown .mega-wrap-inner {
		width: auto !important;
	}

	.o-mega-widget-about.o-mega-widget__content {
		display: none !important;
	}

	.slick-slide {
		height: 430px;
	}

	.c-testimonial .c-testimonial__figure figure, .c-testimonial .c-testimonial__figure div {
		margin-left: 85px !important;
	}
}

.c-site-footer .c-footer-address .widget a {
	display: inline-block;
}

.o-button.o-theme-button {
    display: inline-block !important;
}
