/* ## corrects possible view port issues in browsers that do not recognize the viewport meta tag ## */
/* http://timkadlec.com/2013/01/windows-phone-8-and-device-width/ */
@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }


/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
HTML5 display definitions
========================================================================== */

/*
* Corrects `block` display not defined in IE 8/9.
*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
* Corrects `inline-block` display not defined in IE 8/9.
*/

audio,
canvas,
video {
    display: inline-block;
}

/*
* Prevents modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/

audio:not([controls]) {
    display: none;
    height: 0;
}

/*
* Addresses styling for `hidden` attribute not present in IE 8/9.
*/

[hidden] {
    display: none;
}

/* ==========================================================================
Base
========================================================================== */

/*
* 1. Sets default font family to sans-serif.
* 2. Prevents iOS text size adjust after orientation change, without disabling
*    user zoom.
*/

html {
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/*
* Removes default margin.
*/

body {
    margin: 0;
}

/* ==========================================================================
Links
========================================================================== */

/*
* Addresses `outline` inconsistency between Chrome and other browsers.
*/

a:focus {
    outline: thin dotted;
}

/*
* Improves readability when focused and also mouse hovered in all browsers.
*/

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
Typography
========================================================================== */

/*
* Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
* Safari 5, and Chrome.
*/

h1 {
    font-size: 2em;
}

/*
* Addresses styling not present in IE 8/9, Safari 5, and Chrome.
*/

abbr[title] {
    border-bottom: 1px dotted;
}

/*
* Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
*/

b,
strong {
    font-weight: bold;
}

/*
* Addresses styling not present in Safari 5 and Chrome.
*/

dfn {
    font-style: italic;
}

/*
* Addresses styling not present in IE 8/9.
*/

mark {
    background: #ff0;
    color: #000;
}


/*
* Corrects font family set oddly in Safari 5 and Chrome.
*/

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/*
* Improves readability of pre-formatted text in all browsers.
*/

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
* Sets consistent quote types.
*/

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
* Addresses inconsistent and variable font size in all browsers.
*/

small {
    font-size: 80%;
}

/*
* Prevents `sub` and `sup` affecting `line-height` in all browsers.
*/

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
Embedded content
========================================================================== */

/*
* Removes border when inside `a` element in IE 8/9.
*/

img {
    border: 0;
}

/*
* Corrects overflow displayed oddly in IE 9.
*/

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
Figures
========================================================================== */

/*
* Addresses margin not present in IE 8/9 and Safari 5.
*/

figure {
    margin: 0;
}

/* ==========================================================================
Forms
========================================================================== */

/*
* Define consistent border, margin, and padding.
*/

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
* 1. Corrects color not being inherited in IE 8/9.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/*
* 1. Corrects font family not being inherited in all browsers.
* 2. Corrects font size not being inherited in all browsers.
* 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
*/

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/*
* Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/

button,
input {
    line-height: normal;
}

/*
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Corrects inability to style clickable `input` types in iOS.
* 3. Improves usability and consistency of cursor style between image-type
*    `input` and others.
*/

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/*
* Re-set default cursor for disabled elements.
*/

button[disabled],
input[disabled] {
    cursor: default;
}

/*
* 1. Addresses box sizing set to `content-box` in IE 8/9.
* 2. Removes excess padding in IE 8/9.
*/

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/*
* 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
* 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
*    (include `-moz` to future-proof).
*/

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
* Removes inner padding and search cancel button in Safari 5 and Chrome
* on OS X.
*/

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
* Removes inner padding and border in Firefox 4+.
*/

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
* 1. Removes default vertical scrollbar in IE 8/9.
* 2. Improves readability and alignment in all browsers.
*/

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
Tables
========================================================================== */

/*
* Remove most spacing between table cells.
*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.customTable, .customtable {width:100%; position: relative;}
.customTable th, .customtable th {background:#7d3db8;color:#fff;font-weight:bold;padding:5px;}
.customTable th a, .customtable th a{color:#fff;}
.customTable tr td, .customtable tr td {padding: 5px 5px 8px 5px; vertical-align: middle;}
.customTable tr:nth-child(even) td, .customtable tr:nth-child(even) td {background: #f2f1f1;}



/* ===============  Default Adjustments  =============== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 600;
}

::-moz-selection { background: #3197fc; text-shadow: none; }
::selection { background: #3197fc; text-shadow: none; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}
img { max-width:100% !important; height:auto !important; vertical-align: middle; }
fieldset {border: 0;margin: 0; padding: 0; }
textarea { resize: vertical; }

p { margin:0 0 1em 0; }

.ir { background-color: transparent; border: 0; overflow: hidden; *text-indent: -9999px; }
.ir:before { content: ""; display: block; width: 0; height: 100%; }
.hidden { display: none; visibility: hidden; }

.visuallyHidden,
.visually-hidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; -webkit-transition: none; -moz-transition: none; -o-transition: none; transition: none; }
.visuallyHidden.focusable:active,
.visuallyHidden.focusable:focus,
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; border: 1px dashed #fff; }

.svg-legend {
    position: absolute; top: -9999em; left: -9999em;
    width: 0; height: 0;
    overflow:hidden;
}

.tablewrap,
.table-wrapper {
	overflow:auto;
}

.styledtable {width: 100%;}
.styledtable th {background:#7d3db8;color:#fff;font-weight:bold;padding:5px;}
.styledtable th a, .styledtable th a:link {color: #fff;}
.styledtable td {padding: 10px 5px;}
.styledtable tr:nth-child(even) td {background: #f2f1f1;}

@media only screen and (max-width: 767px) {
	.styledtable {overflow-x: scroll; max-width: 100%;}
}

.boardtable td:first-child {color: #7d3db8; font-weight: 700;}

.agendaminuteDataTbl th,
.agendaminuteDataTbl td { text-align: center; vertical-align:top;}

.agendaminuteDataTbl th + th,
.agendaminuteDataTbl td + td  { text-align: left;}

.agendaminuteDataTbl th + th + th,
.agendaminuteDataTbl td + td + td  { text-align: center;}


.agendaminuteDataTbl td .agendasminutes {width:130px;}
.agendaminuteDataTbl td .agendasminutes img {margin-right:10px; display:inline-block;}
.agendaminuteDataTbl td .agendasminutes a {display:inline-block;}

/*images*/
.imageWCaption {text-align: center; margin: 0 0 10px 0;}
.imagecaption {padding: 4px 0; font-size: .8em; font-style: italic;}

#site-header .visually-hidden.focusable:focus {
    position: fixed;
    top: 0;
    left: 0;
    clip: auto;
    display: block;
    padding: 10px;
    width: 100%;
    height: auto;
    text-align: center;
    color: #fff;
    background: #7d3db8;
    margin: 0;
    line-height: normal;
    z-index: 1000;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 500;
}

button.custom {
    background: none;
    border: none;
    padding: 0;
}

iframe,
embed { max-width: 100%; }

/* Prevent chrome from highlighting elements that's not supposed to be highlighted */
.click-user *:focus, .click-user *:active, [tabindex="-1"] { outline:0; }

#focus-overlay {
    display: none;
    position: relative;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 3px 2px #78aeda;
    box-shadow: 0 0 3px 2px #78aeda;
    -webkit-transition: all 0.2s cubic-bezier(0, 1, 0, 1);
    -o-transition: all 0.2s cubic-bezier(0, 1, 0, 1);
    -moz-transition: all 0.2s cubic-bezier(0, 1, 0, 1);
    transition: all 0.2s cubic-bezier(0, 1, 0, 1);
}

#focus-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-box-shadow: 0 0 2px 1px #008cff, 0 0 2px #008cff inset;
    box-shadow: 0 0 2px 1px #008cff, 0 0 2px #008cff inset;
    -webkit-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

#focus-overlay.focus-overlay-active {
    display: block;
}

#focus-overlay.focus-overlay-animating:after {
    opacity: 1;
}

.focus-overlay-target {
    outline: none;
}

/* http://zzzzbov.com/blag/scalable-videos-with-aspect-ratio */
[data-aspect-ratio] { display: block; max-width: 100%; position: relative; }
[data-aspect-ratio]:before { content: ''; display: block; }
[data-aspect-ratio] > * { display: block; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
[data-aspect-ratio="3:1"]:before { padding-top: 33.33%; }
[data-aspect-ratio="7:3"]:before { padding-top: 42.85%; }
[data-aspect-ratio="2:1"]:before { padding-top: 50%; }
[data-aspect-ratio="16:9"]:before { padding-top: 56.25%; }
[data-aspect-ratio="3:2"]:before { padding-top: 66.66%; }
[data-aspect-ratio="4:3"]:before { padding-top: 75%; }
[data-aspect-ratio="1:1"]:before { padding-top: 100%; }
[data-aspect-ratio="3:4"]:before { padding-top: 133.33%; }
[data-aspect-ratio="2:3"]:before { padding-top: 150%; }
[data-aspect-ratio="9:16"]:before { padding-top: 177.77%; }
[data-aspect-ratio="1:2"]:before { padding-top: 200%; }
[data-aspect-ratio="1:3"]:before { padding-top: 300%; }
[data-aspect-ratio="19:11"]:before { padding-top: 57.89%; }

.responsive-table {
    margin:0 0 20px 0;
    overflow-x:auto;
    width: 100%;
    display: block;
    max-width: 100%;
}

.responsive-table table {
    width: 100%;
    border-top: 3px solid #2166B1;
    border-bottom: 3px solid #2166B1;
}

.responsive-table table th {
    background: #eee;
    color: #444;
    border: 1px solid #ccc;
    text-align: left;
    font-weight: bold;
    padding: 7px 8px;
}

.responsive-table table td {border:1px solid #ccc; padding:7px; }
.responsive-table table td p {margin:7px 0;}
.responsive-table.no-border table,
.responsive-table.no-border table th,
.responsive-table.no-border table td { border: none; }
.responsive-table.fixed-col td:first-child { width: 25%; }
.responsive-table.no-pad table td { padding: 0; }

.responsive-table-bare {
    overflow-x:auto;
    width: 100%;
    display: block;
    max-width: 100%;
}

.responsive-table-bare table {
    width: 100%;
}

.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.hide       { display:none; }
.smallest   { font-size:.8em; }
.smaller    { font-size:.9em; }
.larger     { font-size:1.1em; }
.largest    { font-size:1.2em; }
.bold       { font-weight:bold; }
.italic     { font-style:italic !important; }
.strike     {text-decoration:line-through !important;}

.red, .red:visited          { color:#7d3db8 !important; }
.green, .green:visited      { color:#390 !important; }
.lgreen, .lgreen:visited    { color:#97937d !important; }

.bgYellow { background:yellow; }
.bgGreen { background:lime; }
.vtop { vertical-align:top; }
.center { text-align:center; }
.left { text-align:left; }
.right { text-align:right; }
.floatLeft { float:left; }
.floatRight { float:right; }
.imgLeft { float:left; margin-right:5px; padding:5px; border:1px solid #c4c4c4; }
.imgRight { float:right; margin-left:5px; padding:5px; border:1px solid #c4c4c4; }
.nowrap { white-space:nowrap; }
.borderless { border:0; border-collapse:collapse; }
.breakforprint { page-break-after:always; }
.clear { overflow:hidden; clear:both; height:0; margin:0; font-size:1px; line-height:0; }
.skip { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.important { color:red; font-weight:bold; text-transform:uppercase; }


/* ## Base List styles ## */
ul, ol { margin:0 0 1em; }
.noBullet { padding:0 0 0 1em; list-style-type:none; }
.noIndent { padding:0; list-style-type:none; }
.bulletSquare { list-style-type:square; }

/* ## Note/hint text or link ## */
.note { margin:0 7px; font-size:.8em; color:#4e4e4e; }
.note a, .note a:link, .note a:visited { text-decoration:underline; }

.desktop-only { display: none; }

/* ================================================================
PRIMARY LAYOUT STYLES
================================================================ */

/* Enter unique styles for site here */

/* ## Disabled Form Fields ## */
input[disabled=true]    { background-color: #F0F0F0; }
textarea[disabled=true] { background-color: #F0F0F0; }
select[disabled=true]   { background-color: #F0F0F0; }
input[readonly=true]    { background-color: #F0F0F0; }
textarea[readonly=true] { background-color: #F0F0F0; }
select[readonly=true]   { background-color: #F0F0F0; }


/* Removed :link from the list to help cut down on writing time and prevent the need for extra specificity for classes */
a,
a:visited {
    color: #7d3db8;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
}

a:hover,
a:active,
a:focus {
    color: #7b767f;
    text-decoration: underline;
}

a:active,
a:focus {
    outline: 0;
}
.btnText { margin:0; padding:0; color:#6D6D6D; text-decoration:underline; border:0; background:none; }
.btnText:hover { color:#6D6D6D; text-decoration:none; }


/* ## Link Modifiers ## */
a .text { text-decoration:underline; }
a:hover .text, a:active .text, a:focus .text { text-decoration:none; }
a [class^="icon-"] { text-decoration:none; }
a.removeLink { color:#f00; font-size:0.9em; }


/* ## Link Lists ## */
/* We use '<ul class="linkList">' when setting a list of organized links. */
ul.linkList {margin:0 0 15px 0; padding:0; list-style-type:none;}
ul.linkList li {margin-bottom:8px;}
ul.linkList a,
ul.linkList a:link,
ul.linkList a:visited { text-decoration:none;}
ul.linkList a:hover,
ul.linkList a:active {text-decoration:underline;}


/* ## Start Up Layout - Use, modify, or delete as need be ## */
html {overflow:hidden; overflow-y:auto;}
body {width:100%; background:#fff; overflow:hidden; overflow-y:auto;}
.siteBody { min-height:300px; margin:15px 0; }


/* ## Site Header ## */
.siteHeader {position:relative; min-height:80px; margin-bottom:3px; z-index:1000;}
.siteHeader a.sitelogo,
.siteHeader a.sitelogo:link,
.siteHeader a.sitelogo:visited {float:left; display:block; width:300px; height:47px; margin-bottom:10px; background:url(/cms/images/dev/placeholders/AE_logo_tag_3color_300w.png) no-repeat 0 0; text-indent:-9999em;}

@media only screen and (min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-device-pixel-ratio: 1.5) {

    .siteHeader a.sitelogo,
    .siteHeader a.sitelogo:link,
    .siteHeader a.sitelogo:visited {
        background-image:url(/cms/images/dev/placeholders/AE_logo_tag_3color_300w_2x.png);
    }
}

.siteHeader .hdrPhonenum {
    background-position: 100% 0;
    background-repeat: no-repeat;
    bottom: 12px;
    display: block;
    height: 34px;
    position: absolute;
    right: 12px;
    text-indent: -9999em;
    width: 200px;
}
.headerLinks {
    font-size: 0.9em;
    margin: 0 0 10px;
    padding: 5px 0 0;
    text-align: right;
}
.headerLinks a, .headerLinks a:link, .headerLinks a:visited {
    margin: 0 3px;
    text-decoration: none;
}
.headerLinks a:hover, .headerLinks a:active {
    text-decoration: underline;
}

#google_translate_element {Xdisplay: none;}

/* ## Disabled Form Fields ## */

.siteSearch {
    color: #FFFFFF;
    margin: 0;
}
.siteSearch label {
    display: none;
}






/* ==========================================================================
Global Modules
========================================================================== */

.mod { position: relative; }

.title {
    position: relative;
    margin: 0 0 10px;
    color: #414042;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 1.875rem /* 30px */;
    font-weight: normal;
}

.titleAlt {
    margin: 0 0 0.1em;
    font-size: 1.2em;
}

.titleAlt2 {
}
.title .more {
    position: absolute;
    top:0;
    right: 0;
    font-size: 0.6em;
}

.modContent{
    padding: 15px;
}




/* Item Lists Content
========================================================================== */

.itemList {
    margin:0;
    padding:0;
    list-style:none;
}

.item {
    display: table;
    padding: 1em 0;
    width: 100%;
    border-top: 1px solid #ccc;
}
.item:first-child { border-top:0; padding-top:0; }
.item:last-child { padding-bottom: 0; }

.item > .content {
    display: table-cell;
    width: 100%;
    vertical-align: top;
}

.item .contentExtra {
    display: table-cell;
    vertical-align: top;
}

.content .title { margin:0; }
.itemList .content p { margin: 0; }
.content .date { font-size:0.85em; }

.newsOverview ul.itemList li {margin: 0; padding: 20px;}
.newsOverview ul.itemList li:before {display: none;}

.newsOverview .bdr {border: none; background: none;}

/* Item Media
========================================================================== */

.aside {
    display: table-cell;
    padding: 0 15px 0 0;
    text-align: center;
}

.caption {
    display: block;
    font-size: 0.8em;
    line-height: 1.2em;
}


/* Media Queries for Item Lists
========================================================================== */


@media (max-width : 400px) {

    .item { display: block; }
    .item > .content { display: block;}
    .item > .aside { display: block;}

}


/* News
========================================================================== */

.article > .aside {
    float:right;
    margin: 1em;
}

.meta{
    margin:0.5em 0;
}

.meta > div {
    float: left;
}

.meta .social-tools{
    float: right;
}


/* ==========================================================================
Filters
========================================================================== */

.filter{
    padding: 1em;
    border: 1px solid #444444;
    background: #cccccc;
}

.filter-options{
    float: left;
}

.filter-actions{
    float: right;
}

.agendaminuteFilter select {
	margin: 0 0 5px 0;
}

/* Pagination
========================================================================== */

.paging {
    padding: 1em;
}

.paging-results {
    float: left;
}

.paging-list {
    float: right;
}

.paging-list ul {
    display: block;
    padding: 0;
    margin: 0;
}

.paging-list li{
    display: block;
    padding: 0;
    margin: 0;
    border: 1px solid #002B40;
    border-left-width: 0;
    float: left;
}

.paging-list li:first-child{
    border-left-width: 1px;
}

.paging-list li a,
.paging-list li span {
    display: block;
    min-width: 30px;
    padding: 2px 5px;
    text-align: center;
}

.paging-list li a {
    /* Link State */
}

.paging-list li span {
    /* Current Page State */
}

.paging-list li.disabled {
    display: none;
}

.paging-list li.disabled+li {
    border-left-width: 1px;
}

.paging-list li.disabled+.all {
    border-left-width: 0;
}


/* pagination and filters */

.filters {float:left; display:inline; margin:0 0 5px 0;}
.filters .filterList {float:left; display:inline; margin-bottom:5px;}
.filters label { display:inline; margin:0 5px 0 0; font-weight:bold; font-size:0.8em; }
.filters .sortList {float:left; display:inline;  padding:3px 10px 0;}
.filters .sortList label {margin:0 5px 0 0;}
.filters select {margin-right:10px;}


.filters .sortList .last {border-right:0;}
.filters .sortItem {display:inline; margin:0; padding:2px 4px; font-size:0.8em; border-right:1px solid #999999;}
.filters .sortItem a, .filters .sortItem a:link, .filters .sortItem a:visited {padding-right:12px; text-decoration:none; background:url(/cms/images/layout/arrow_sortorder.gif) no-repeat 100% 2px;}
.filters .sortItem a.down, .filters .sortItem a.down:link, .filters .sortItem a.down:visited {font-weight:bold; background-position:100% -18px;}
.filters .sortItem a.up, .filters .sortItem a.up:link, .filters .sortItem a.up:visited {font-weight:bold; background-position:100% -38px;}

.pagination {float:right; width:400px; margin:0 0 10px 0; text-align:right;}
.pagination .view {float:right; display:inline; padding:0 0 0 10px;}
.pagination .view a,.pagination .view a:link, .pagination .view a:visited { display:inline-block; text-decoration:none; padding:2px 6px;}
.pagination .paging {float:right; display:inline; padding:0 10px; border-right:1px solid #999999;}
.pagination .paging a,.pagination .paging a:link,.pagination .paging a:visited {float:left; display:inline; margin:0 3px; padding:2px 6px; text-align:center; text-decoration:none; }
.pagination .paging .active {float:left; display:inline; margin:0 4px; padding:2px 6px; text-align:center; color:#000; background-color:#d2d2d2; text-decoration:none; border:1px solid #969696;}
.pagination .paging .total { float:left; display:block; padding-top:2px; color:#999999;}
.pagination a.arrowRight,.pagination a.arrowRight:link,.pagination a.arrowRight:visited {float:left; display:inline; background:url(/cms/images/layout/arrow_right_gray.gif) no-repeat 50% 50%; text-indent:-9999em;}
.pagination a.arrowLeft,.pagination a.arrowLeft:link,.pagination a.arrowLeft:visited {float:left; display:inline; background:url(/cms/images/layout/arrow_left_gray.gif) no-repeat 50% 50%; text-indent:-9999em;}



/* ==============================================================
GLOBAL STYLES
============================================================== */

/*--- where is this used at? ----*/
.alert {
    overflow:hidden;
    border: 2px solid #CE2127;
    margin: 1em;
    padding: 10px 10px 20px;
    min-height: 50px;
    color: #000;
    background-color: #EBEBEB;
	text-align: center;
}
.alert a { color:#000; }
.alert img {display: none;}
.alert h3.newsAlertTitle {margin-top: 5px;font-size: 1.4em;}

.bdr        { border:1px solid #555244; padding:1px; background-color:#a7a496; }
.bdrTop     { border-top:1px solid #999; }
.bdrRight   { border-right:1px solid #999; }
.bdrBottom  { border-bottom:1px solid #999; }
.bdrLeft    { border-left:1px solid #999; }

.bdrDash        { border:1px dashed #555244; }
.bdrDashTop     { border-top:1px dashed #999; }
.bdrDashRight   { border-right:1px dashed #999; }
.bdrDashBottom  { border-bottom:1px dashed #999; }
.bdrDashLeft    { border-left:1px dashed #999; }

.alternate  {background-color: #d8d8d8;}
.row        {background-color: #ffffff;}


/* ##  Error Markers  ## */

.fieldlbl {padding:4px 2px 0 0; text-align:right;}
.field {padding-left:2px;}
.fieldpad {padding-bottom:2px;}

.fieldtext {color:#000000;}
.fielderror {color:#cc0000;}
.fieldnorm {width:16px; height:20px;}
.fieldreq {width:16px; height:20px; background:transparent url(/cms/images/global/field-req.gif) no-repeat center right;}
span.fieldreq {padding:0 6px; background-position:center center;}
span.fieldnorm {padding:0 6px; background-position:center center;}
.fieldred {width:16px; height:20px; background:transparent url(/cms/images/global/field-error.gif) no-repeat center right;}
span.fieldred {padding:0 6px; background-position:center center;}


/* ##  Tooltip Classes  ## */

.toolTipWrpr {display:none;width:340px;z-index:99;}
.toolTipShadow {background: url(/cms/images/core/tooltipbacktop.png) no-repeat top left;padding: 10px 13px 1px 13px;color:#666666;}
.toolTopShadowBottom {background: url(/cms/images/core/tooltipbackbottom.png) no-repeat top left;width:340px;height:16px;}
.toolTipDate {font-size:11px;color:#999999;font-weight:bold;}
.toolTipName {font-size:14px;color:#666666;font-weight:bold;margin-bottom:14px;}


/* ##  Generic Pager  ## */

.interior-main .genericPager {padding:10px 15px 20px 10px;}
.interior-main .genericPager ul {list-style-type: none; margin:0; padding:0;}
.interior-main .genericPager ul li {float:left; display:block; font-size:11px; margin:0 5px 5px 0; padding: 0;}
.interior-main .genericPager ul li:before {display: none !important;}
.interior-main .genericPager ul li a {float:left; color:#003871; padding:2px 4px; border:1px solid #ddd; text-decoration:none; }
.interior-main .genericPager ul li a:hover,
.interior-main .genericPager ul li a:focus { color:#000; background-color:#CFCFCF; border: 1px solid #000; text-decoration:none; }
.interior-main .genericPager ul li.nolink {color:#fff; border:1px solid #ddd; padding:2px 4px;}
.interior-main .genericPager ul li.active {color:#686868; border:1px solid #ddd; padding:2px 4px; background-color:#CFCFCF;}


/* ##  Smart Bug  ## */

.smartbug ul { list-style-type:none; background-color:#ccc; font-size:10px; border-left:1px solid #000; border-right:1px solid #000; border-top:1px solid #000; padding:0px; }
.smartbug li { border-bottom:1px solid #000; }
.smartbug a, .smartbug a:link, .smartbug a:visited { text-decoration:none; display:block; color:#000; padding:5px; }
.smartbug a:hover { background-color:#999; text-decoration:underline; }


/* ##  Master Overlay Styles ## */

.siteOverlay {
    display:none;
    position:relative;
    width:550px;
    max-width:95%;
    min-height:1px;
    background-color:#fff;
    z-index:1000;
    -webkit-border-radius:5px;
    border-radius:5px;
    -webkit-box-shadow:0 0 15px #333;
    box-shadow:0 0 15px #333;
}
.siteOverlay .overlayBar {position:relative; padding:7px 10px; text-align:right; border-bottom:1px solid #e6e6e6;}
.siteOverlay .overlayClose {display:inline-block; cursor:pointer; z-index:5;}
.siteOverlay .overlayContent {padding:15px;}


/* =================================================================
MODULE STYLES
===================================================================*/


/* ##  Breadcrumb  ## */

.breadcrumbs { padding:0 0 10px 0; font-size:.9em; }
.breadcrumbs a, .breadcrumbs a:visited { text-decoration:none; }
.breadcrumbs a:hover, .breadcrumbs a:focus, .breadcrumbs a:active { text-decoration:underline; }
.breadcrumbs span { margin:0 2px; font-weight:normal; }



/* ##  PAGE TOOLS  ## */
/* Print and Email icons and wrapper */

.pageToolsWrapper {float:right; display:inline; padding:5px 0 0 0; text-align:right;}

.pageTool { margin:0 10px 0; font-size:0.938em; color:#686868; font-weight:normal; text-decoration:none; cursor:pointer; }

.pageToolsWrapper a { float:right; display:inline;  }
.pageToolsWrapper a:hover,
.pageToolsWrapper a:active {color:#1C4E87; text-decoration:underline;}

.pageToolsWrapper a.bookmark,
.pageToolsWrapper a.bookmark:link,
.pageToolsWrapper a.bookmark:visited {padding:0 0 0 18px; margin-left:7px; background-position:0 -39px;}
.pageToolsWrapper a.bookmark:hover,
.pageToolsWrapper a.bookmark:active {background-position:0 -119px;}

.pageToolsWrapper .addthis_toolbox { float:right; display:inline; }
.pageToolsWrapper .addthis_toolbox a,
.pageToolsWrapper .addthis_toolbox a:link,
.pageToolsWrapper .addthis_toolbox a:visited {background:none; padding:0; margin:0 0 0 5px; }

.addthis_toolbox { display:inline; }


/* ## Email a Friend ## */

.emailFriendWrapper {}
.emailFriendWrapper .inner { padding:10px; }
.emailFriendWrapper .emailFriendSender { margin:10px 0 20px; border-bottom:1px dashed #ccc; }
.emailFriendWrapper .emailFriendAdditional { margin:10px 0 0; padding:20px 0 0; border-top:1px dashed #ccc; }


.agendasminutes {display: block; width: 90px; margin: 0 auto; text-align: left;}

/* =================================================================
THIRD PARTY STYLES
===================================================================*/



/* =================================================================
PRINT STYLES
===================================================================*/

@media print {
    * { background: transparent !important; color: #000 !important; -webkit-box-shadow:none !important; box-shadow:none !important; text-shadow: none !important; }
    a, a:visited { text-decoration: underline; }
/*a[href]:after { content: " (" attr(href) ")"; }
abbr[title]:after { content: " (" attr(title) ")"; }
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }*/
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
thead { display: table-header-group; }
tr, img { page-break-inside: avoid; }
img { max-width: 100% !important; }
@page { margin: 0.5cm; }
p, h2, h3 { orphans: 3; widows: 3; }
h2, h3 { page-break-after: avoid; }
}




/* ===============  HOME SLIDESHOW  =============== */

.mainStage {position:relative; overflow:hidden; width:960px; height:425px; margin:0 20px;}

.mainStage h1 {color:#72A3D0; font:normal 14px Sone,'Arial Narrow',Arial,Helvetica,sans-serif; font-stretch:condensed; margin:0 0 0.6em 0; padding:0; text-transform:lowercase; text-shadow:1px 1px 1px #fff; z-index:2;}
.mainStage h1 sup {font-size:0.5em;}
.mainStage h3 {color:#72A3D0; font:bold 20px 'Arial Narrow',Arial,Helvetica,sans-serif; font-stretch:condensed; margin:0 0 0.6em; z-index:2;}
.mainStage-top {position:absolute; top:20px; border-bottom:1px dashed #bbc2c9; width:100%;padding-bottom:4px; z-index:1;}
.mainStage .items {width:20000em; position:absolute; clear:both}
.mainStage .single {float:left; position:relative; width:960px; height:425px; margin:0; padding:0;  background-repeat:no-repeat; background-position:right 0;}
.mainStage .single h3 { font-size:60px; text-transform:uppercase; margin:80px 0 0 0; text-shadow:2px 2px 2px #ABC9E4;}
.mainStage .single p {font-size:14px; font-weight:bold; color:#72a3d0; line-height:1.6em;}

.mainStage .navi {position:absolute; top:15px; right:0;}
.mainStage a.browse {background:url(/cms/images/slideshow/slide_arrows.png) no-repeat; display:block; width:25px; height:30px; cursor:pointer; font-size:1px; position:absolute; z-index:1000; top:0;}
.mainStage a.right {background-position:-25px 0; right:0;}
.mainStage a.right:hover {background-position:-25px -30px}
.mainStage a.right:active {background-position:-25px -60px}
.mainStage a.left {margin-left:0;right:35px;}
.mainStage a.left:hover {background-position:0 -30px;}
.mainStage a.left:active {background-position:0 -60px;}
.mainStage a.disabled {visibility:hidden !important;}


/* ## Button Styles ## */
/*
<span class="btnWrapper"><input class="btn" value="Submit" /></span>
or
<a href="#" class="btnWrapper"><span class="btn">Submit</a></a>
*/

.btnWrapper {
    display: inline-block;
    padding: 2px;
    /*background-color: #3F3F3F;*/
    text-decoration: none !important;
}

.btn {
    display: inline-block;
    font-size: .8125rem /* 13px */;
    color: #fff;
    background: #7d3db8;
    text-align: center;
    padding: 10px 20px;
    margin: 0;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
	border: none;
}

.btn:hover,
.btn:focus {
    color: #fff;
}

a.btn:visited, a.btn:active {color: #fff;}

.btnWrapper:hover .btn {
    background-color: #7A7A7A;
}
/*.btnAlt {background-color:#cccccc ;}
.btnAlt .btn{color:#666666; background-color:#cccccc ; border:1px solid #fff; text-align:center; text-decoration:none; cursor:pointer;}
.btnAlt:hover, .btnAlt:hover .btn { background-color:#E3E3E3; }*/

.btnLarge .btn {padding:5px 10px; font-size:1.4em;}

.btnFullWidth {display:block;}
.btnFullWidth .btn {display:block; padding-left:0; padding-right:0; }
.btnFullWidth input.btn { width:100%; }


.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ## modifier for icon fonts (IcoMoon) embedded within button wrapper ## */

.btnWrapper [class^="icon-"] { margin:0 3px; font-size:0.7em; }


/* ## Site Icons ## */

.iconImage { position:relative; display:inline-block; bottom:1px; width:10px; height:10px;  vertical-align:middle; text-indent:-9999em; background:url(/cms/images/layout/icons_default.png) no-repeat 0 0; overflow:hidden; }
.iconCart { width:22px; height:22px; background-position:0 0; }
.iconRefresh { width:22px; height:22px; background-position:0 -27px; }
.iconContinueArrow { width:22px; height:16px; background-position:0 -57px; }
.iconCheckbox { width: 18px; height: 14px; background-position: -23px -112px; }
.iconXSquareRed { width: 12px; height: 12px; background-position: 0 -112px; }
.iconSearch { width: 14px; height: 14px; background-position: -55px 0; }
.iconQuestion { width: 22px; height: 22px; background-position: 0 -75px; }


/* ## truncate styling ## */

.truncateLink {}
.truncateLink a, .truncateLink a:link, .truncateLink a:visited { margin-left:5px; }
.truncateLink a.truncateMore, .truncateLink a.truncateMore:link, .truncateLink a.truncateMore:visited {}
.truncateLink a.truncateLess, .truncateLink a.truncateLess:link, .truncateLink a.truncateLess:visited {}


/* ## footer ## */

.footer {position:relative; margin-bottom:10px; padding:20px 0 0;}
.footerBar {margin-bottom:10px; min-height:1px; padding:10px; background-color:#ecf1f8;}
.ftrPhonenum {float:left; width:170px; height:28px; text-indent:-9999em; background-position:100% 0; background-repeat:no-repeat;}

.advFooter {position: relative; margin-bottom:15px; padding:0 0 5px 0;}
.advFooter li.callout {margin-bottom:10px;}
.advFooter .callout a,
.advFooter .callout a:link,
.advFooter .callout a:visited {font-weight:bold; font-size:1.1em; color:#6d6d6d;}

ul.advList {margin:0 0 10px; padding:0; list-style-type:none;}
ul.advList a,
ul.advList a:link,
ul.advList a:visited {text-decoration:none;}
ul.advList a:hover,
ul.advList a:active {text-decoration:underline;}
ul.advList .listhdng {display:block; margin-bottom:8px; font-size:1.1em;}
ul.advList .listhdng,
ul.advList .listhdng a,
ul.advList .listhdng a:link,
ul.advList .listhdng a:visited {font-weight:bold; color:#6d6d6d;}

.footerHeading {display:block; margin:0 0 2px; font-weight:bold; font-size:1.1em;}

.welcomeMessage {position:absolute; bottom:5px; right:0; width:50%; padding:20px; font-size:12px; background-color:#ECF1F8; border:1px solid #9BAAB7;}
.welcomeMessage .iconClose {position:absolute; top:3px; right:3px; width:13px; height:13px; background:url(/cms/images/layout/icon_x.gif) no-repeat 0 0; cursor:pointer;}

.subFooter { padding:10px 0; }
.footerLinks {}
.footerLinks a,
.footerLinks a:link,
.footerLinks a:visited {text-decoration:none; color:#666666;}

.footerLinks a:hover,
.footerLinks a:active {text-decoration:underline;}

.copyright { text-align:right; color:#787878;}


/* ## Footer Email Signup ## */

.emailSignup {margin:0 0 15px;}
.emailSignup p { margin:0 0 2px 0; }
.emailSignup .imgLabel {float:left; margin:5px 7px 0 0;}
.emailSignup .text {float:left; width:165px; margin:0 5px 0 0;}


/* ## Footer Social Follow ## */

.followUs {margin:0 0 10px;}
ul.socialFollow {margin:0; padding:0; list-style-type:none;}
ul.socialFollow li {display:inline-block;}
ul.socialFollow li a {display:inline-block; width:32px; height:32px; background:url(/cms/images/layout/social-32.png) no-repeat 0 0; text-indent:-9999em; overflow:hidden;}
ul.socialFollow li.facebook a {background-position:0 0;}
ul.socialFollow li.twitter a {background-position:0 -69px;}
ul.socialFollow li.gplus a {background-position:0 -138px;}
ul.socialFollow li.pinterest a {background-position:0 -207px;}

/*social widget on pages*/
.eventsDetailsWrpr div[id$="divTwitter"] {
  margin: 2px 0 0 4px;
}


/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.tableWrapper { overflow:auto; }


/* ## NEW Limit Text Box ## */

.limitTextBox {}
.limitTextBox span { display:none; }
.limitTextBoxBar { width:100%; margin:0 0 15px 0; font-size: .8em;}
.limitTextBoxBarWrpr {
    width:100%;
    border:0px solid #000;
    overflow:hidden;
    font-size:9px;
    color:#000;
    white-space:nowrap;
    height:5px;
    background-color:#FDFBBE;
}
.limitTextBoxBarInner { width:0%; background-color:#FF0000; }
.limitTextBoxInputWrpr { display:table-cell; width:100%; vertical-align:top; }
.limitTextBoxInputWrpr textarea { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; vertical-align:top; }
.limitTextBoxSpellWrpr { display:table-cell; padding-left:5px; vertical-align:top; }
.limitTextBoxSpellWrpr img { max-width:16px !important; cursor: pointer; }

/* Site Styles */

#site-container {
    position: relative;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#site-container::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

#site-container.active {
    left: 80%;
}

#site-container.active::after {
    opacity: 0.8;
    z-index: 8000;
}

.header-top {
    background: #371b51;
    color: #fff;
}

a.header-site-link {
    text-decoration: none;
    color: #fff !important;
	display:inline-block;
}

a.header-site-link:hover {
    text-decoration: none;
}
a.header-site-link:focus {
	color: #ccc;
}

.header-title {
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
}

.header-container.active {
    position: relative;
}

.header-bottom {
    background: #7d3db8;
}

.header-tagline {
    padding: 0 0 0 10px;
}

.header-slogan {
    display: block;
    margin: 3px 0 0 0;
    padding: 0;
    font-size: .77rem;
}
.header-slogan.mobile {
	display: none;
}

.header-slogan.desktop {
    display: none;
}

.header-btn-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: auto;
    font-size: 0;
    width: 100%;
    background: #7d3db8;
    padding: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a.header-btn,
button.header-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 47px;
    height: 41px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #7d3db8;
    border: 1px solid #fff;
    margin: 3px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a.header-btn:hover,
a.header-btn:focus,
button.header-btn:hover,
button.header-btn:focus {
    background: #fff;
}

a.header-btn:hover svg,
a.header-btn:focus svg,
button.header-btn:hover svg,
button.header-btn:focus svg {
    fill: #414042;
}

a.header-btn.desktop,
button.header-btn.desktop {
    display: none;
}

a.header-btn.alt,
button.header-btn.alt {
    background: #072d3f;
    border-color: rgba(255, 255, 255, 0);
}

a.header-btn.alt:hover,
a.header-btn.alt:focus,
button.header-btn.alt:hover,
button.header-btn.alt:focus {
    border-color: rgba(255, 255, 255, 1.0);
}

.header-btn img {
    position: relative;
    left: 2px;
}

.header-btn svg {
    display: inline-block;
    width: 65%;
    height: 65%;
    fill: #fff;
}

.hamburger-menu {
    font-size: 0;
    overflow: visible;
    margin: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: .15s;
    -moz-transition-duration: .15s;
    -o-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-property: opacity,-webkit-filter;
    transition-property: opacity,-webkit-filter;
    -o-transition-property: opacity,filter;
    -moz-transition-property: opacity,filter;
    transition-property: opacity,filter;
    transition-property: opacity,filter,-webkit-filter;
    background-color: transparent;
    text-align: center;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 47px;
    height: 41px;
    background: #414042;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    position: absolute;
    width: 30px;
    height: 4px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #fff;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    -moz-transition-property: transform, -moz-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform, -moz-transform;
}

.hamburger-inner {
    top: 50%;
    left: 8px;
    display: block;
    margin-top: -2px;
    -webkit-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    -moz-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    -o-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    -webkit-transition-duration: 75ms;
    -moz-transition-duration: 75ms;
    -o-transition-duration: 75ms;
    transition-duration: 75ms;
}

.hamburger-inner:after,.hamburger-inner:before {
    display:block;
    content:""
}

.hamburger-inner:before {
    top:-10px;
    -webkit-transition: top 75ms ease .12s,opacity 75ms ease;
    -o-transition: top 75ms ease .12s,opacity 75ms ease;
    -moz-transition: top 75ms ease .12s,opacity 75ms ease;
    transition: top 75ms ease .12s,opacity 75ms ease;
}

.hamburger-inner:after {
    bottom:-10px;
    -webkit-transition: bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
    -o-transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
    -moz-transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19),-moz-transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19),-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19),-moz-transform 75ms cubic-bezier(.55,.055,.675,.19);
}

.hamburger-menu.active .hamburger-inner {
    -webkit-transition-delay: .12s;
    -moz-transition-delay: .12s;
    -o-transition-delay: .12s;
    transition-delay: .12s;
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -moz-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -o-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger-menu.active .hamburger-inner::before {
    top: 0;
    -webkit-transition: top 75ms ease,opacity 75ms ease .12s;
    -o-transition: top 75ms ease,opacity 75ms ease .12s;
    -moz-transition: top 75ms ease,opacity 75ms ease .12s;
    transition: top 75ms ease,opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger-menu.active .hamburger-inner::after {
    bottom: 0;
    -webkit-transition: bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -o-transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -moz-transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s,-moz-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s,-moz-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.hamburger-menu:hover .hamburger-box,
.hamburger-menu:focus .hamburger-box {
    background: #fff;
}

.hamburger-menu:hover .hamburger-inner,
.hamburger-menu:focus .hamburger-inner,
.hamburger-menu:hover .hamburger-inner::after,
.hamburger-menu:focus .hamburger-inner::after,
.hamburger-menu:hover .hamburger-inner::before,
.hamburger-menu:focus .hamburger-inner::before {
    background: #414042;
}

.header-search-box {
    position: absolute;
    background: #fff;
    color: #414042;
    left: 0;
    top: 100%;
    width: 100%;
    line-height: normal;
    max-height: 0;
    overflow: hidden;
    z-index: 2;
    -webkit-transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    -moz-transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    -o-transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    opacity: 0;
}

.header-search-box.active {
    max-height: 5em;
    opacity: 1;
}

.header-search-box .search-box-wrapper {
    padding: 10px;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif; /* 1 */
}

.header-search-box .search-input-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.header-search-box input {
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    font-size: 18px;
    font-size: 1.125rem;
    -webkit-transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    -moz-transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    -o-transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    border: none;
}

.header-search-box .search-input-icon svg {
    fill: #7d3db8;
    width: 30px;
    height: 30px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header-search-box .search-input-icon:hover svg,
.header-search-box .search-input-icon:focus svg {
    fill: #7b767f;
}

.header-btn-search .close-svg {
    display: none;
}

.header-btn-search:hover,
.header-btn-search:focus,
.header-btn-search.active {
    background: #fff;
}

.header-btn-search:hover svg,
.header-btn-search:focus svg,
.header-btn-search.active svg {
    fill: #414042;
}

.header-btn-search.active svg.close-svg {
    display: inline-block;
    fill: #414042;
}


.header-btn-search.active .search-svg {
    display: none;
}

.full-banner-wrapper {
    margin: 0 0 50px 0;
}
.full-banner-img-wrapper img {width: 100% !important;}

.sync-sliders-wrapper {
    margin: 20px 0;
}

.main-sync-img-wrapper {
    display: block;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.main-sync-img-wrapper:hover,
.main-sync-img-wrapper:focus {
    opacity: 0.8;
}

.main-sync-img-wrapper img {
    width: 100%;
}

.secondary-sync-slider-wrapper {
    display: none;
    max-height: 500px;
}

.secondary-sync-slider {
    height: 100%;
}

.secondary-sync-slider .slick-list {
    min-height: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    padding: 0 !important;
}

.secondary-sync-slider .secondary-sync-slide {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px;
    margin: 0 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.secondary-sync-slider a {
    color: #7d3db8;
    text-decoration: none;
}

.secondary-sync-slider a:hover,
.secondary-sync-slider a:focus {
    text-decoration: underline;
}

.secondary-sync-slide.slick-current {
    background: #3a3531;
}

.secondary-sync-slide::before {
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #3a3531;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.secondary-sync-slide.slick-current::before {
    opacity: 1;
}

.secondary-sync-slide.slick-current a {
    color: #fff;
}

.secondary-sync-img-wrapper {
    display: inline-block;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -moz-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-right: 15px;
}

.secondary-sync-content-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

/*.secondary-sync-slider .slick-track {
    -webkit-transform: translateY(144px);
    -moz-transform: translateY(144px);
    -ms-transform: translateY(144px);
    transform: translateY(144px);
}*/

button.ss-button {
    width: 35px;
    height: 35px;
    fill: #333;
}

.ss-button svg {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

button.ss-button:hover svg,
button.ss-button:focus svg {
    fill: #1b75bc;
}

#ss-button-prev {
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#ss-button-next {
    position: absolute;
    bottom: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.event-week-header {
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
}

.event-week-header-line {
    color: #414042;
    font-size: 1.125rem /* 18px */;
    font-weight: 600;
    line-height: 1;
}

.event-week-header-big {
    color: #7d3db8;
    font-size: 3.75rem /* 60px */;
    font-weight: 800;
    margin: -5px 0;
}

a.view-all {
    color: #7d3db8;
    text-transform: uppercase;
    font-size: .9375rem /* 15px */;
    font-weight: 600;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    text-decoration: none;
}

a.view-all:hover,
a.view-all:focus {
    text-decoration: underline;
}
.event-week-wrapper {
	padding: 0 20px 0 0;
}
.event-week-dates-wrapper {
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    margin: 30px 0;
    color: #414042;
}

a.event-week-item {
    display: table;
    width: 100%;
    text-decoration: none;
    color: #414042;
    margin: 0 0 30px 0;
}

a.event-week-item:hover,
a.event-week-item:focus {
    color: #7d3db8;
}

a.event-week-item:hover .event-week-item-title,
a.event-week-item:focus .event-week-item-title {
    text-decoration: underline;
}

.event-week-item-date {
    display: table-cell;
    vertical-align: top;
    text-align: center;
    line-height: 1;
    width: 75px;
}

.event-week-item-day {
    display: block;
    font-size: 25px;
    padding-bottom: 5px;
    margin-bottom: 8px;
    border-bottom: 1px solid #dedede;
}

.event-week-item-month {
    display: block;
    text-transform: uppercase;
	font-size: .8em;
}

.event-week-item-content {
    display: table-cell;
    vertical-align: top;
    padding: 0 0 0 25px;
}

.event-week-item-title {
    display: block;
    font-size: 1rem;
}

.event-week-item-time {
    display: block;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif; /* 1 */
    font-size: 1rem;
}

.module-header-wrapper {
    margin: 0 0 30px;
}

.module-title {
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 1.5rem /* 24px */;
    font-weight: 600;
    color: #414042;
}

.event-item {
    margin-bottom: 20px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.events-item-wrappers {
	text-align:center;
}

.home-cols .grid_4.event-item {
	max-width:300px;
	margin-left:auto;
	margin-right:auto;
	float:none;
	display:inline-block;
}

@media only screen and (min-width: 48em) and (max-width: 63.938em) {
	.home-cols > [class*="grid_"] {width:50%;}
	.home-cols .grid_4.event-item {
		width: 50%; 
		float: left; 
		margin: 0 auto 20px;	
	}
}

@media only screen and (min-width: 64em)  {
	.events-item-wrappers {
		text-align:left;
	}
	
	.home-cols .grid_4.event-item {
		float:left;
	}
}

.event-item:hover .event-item-title,
.event-item:focus .event-item-title {
    color: #7d3db8;
}

.event-item-img {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.event-item-content {
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    display: inline-block;
    height: auto;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 600;
}

.event-item-title {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.event-item-time-wrapper {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #fff;
}

.event-item-time {
    position: relative;
    display: inline-block;
    padding: 42px 8px 4px;
    text-align: center;
    font-family: Oswald,sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.event-item-day {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: inline-block;
    font-size: 32px;
    font-size: 2rem;
}

.event-item-month {
    border-top: 1px solid #fff;
    font-size: 18px;
    font-size: 1.125rem;
}

.gray-bg-wrapper {
    background: #ebebeb;
    margin: 50px 0;
    padding: 50px 0;
}

.gray-bg-wrapper:last-child {
	margin-bottom:0;
}

.recent-news-item {
    color: #414042;
    margin-bottom: 20px;
}

.recent-news-item .title {
	line-height: .7em;
}

.recent-news-item .title a {
    color: #414042;
	font-size: .7em;
	font-weight: 700;
}

.recent-news-item .content {
    font-size: 1.125rem /* 18px */;
}

.recent-news-item img {
	max-width: 100%;
	margin: 0 auto 10px;
	display: block;
}



a.read-more {
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 600;
    font-size: .9375rem /* 15px */;
    text-decoration: none;
    text-transform: uppercase;
    color: #7d3db8;
}

a.read-more:hover,
a.read-more:focus {
    text-decoration: underline;
}

.home-content-wrapper {
    margin: 20px 0;
    padding: 20px 0;
}

.home-content-item {
    text-align: center;
    line-height: 1;
    color: #414042;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    margin-bottom: 20px;
}

.home-content-img {
    margin-bottom: 20px;
}

.home-content-title {
    font-weight: bold;
    color: #000;
    margin: 0 0 20px;
}

.home-content-item a {
    color: #7d3db8;
    font-weight: bold;
    text-decoration: none;
	display:block;
}

.home-content-item a:hover,
.home-content-item a:focus {
    text-decoration: underline;
}

.gray-bg-content {
    background: #ebebeb;
    padding: 30px 0;
    margin: 50px 0 0;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
}

.gray-bg-content [class*="grid"] {
    padding-bottom: 10px;
}

.newsletter-signup-wrapper {
    background: #7d3db8;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.newsletter-signup-wrapper label,
.newsletter-signup-wrapper input {
    display: inline-block;
    vertical-align: middle;
    padding: 0 3px;
	margin: 5px 0;
}

.newsletter-signup-wrapper input[type="text"] {
    height: 30px;
    width: 250px;
}

.newsletter-signup-wrapper input[type="submit"] {
    height: 30px;
}


.SlideshowWrpr {
	text-align: center;
}

.SlideshowWrpr .slick-prev,
.SlideshowWrpr .slick-next {
	z-index: 999;
}
.SlideshowWrpr .slick-prev:before,
.SlideshowWrpr .slick-next:before {
	font-size: 30px;
	color: #7d3db8;
}

.SlideshowWrpr .slideshowBottomUnderlay,
.SlideshowWrpr .sswControls {display: none;}


.footer-wrapper {
    background: #371b51 url("/cms/images/layout/footer-transparent-logo.png") no-repeat right -50px top 10px;
    color: #fff;
    padding: 40px 0;
}

.footer-social-wrapper {
    text-align: center;
    margin: 10px auto 30px;
    max-width: 350px;
}

.footer-social {
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 35px;
    fill: #fff;
	margin:0 10px;
}

.footer-social svg {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a.footer-social.twitter:hover svg,
a.footer-social.twitter:focus svg {
    fill: #1da1f2;
}

a.footer-social.facebook:hover svg,
a.footer-social.facebook:focus svg {
    fill: #000;
}

a.footer-social.youtube:hover svg,
a.footer-social.youtube:focus svg {
    fill: #cd201f;
}

a.footer-social.instagram:hover svg,
a.footer-social.instagram:focus svg {
    fill: #405de6;
}

a.footer-social.blogger:hover svg,
a.footer-social.blogger:focus svg {
    fill: #f57d00;
}

.footer-info-wrapper {
    color: #cccccc;
}

.footer-info-address {
    font-size: .875rem /* 14px */;
}

.footer-info-wrapper > * {
    display: block;
}

a.footer-top-link {
    display: block;
    margin: 0 0 10px 0;
    color: #cccccc;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif; /* 1 */
    font-weight: normal;
}

a.footer-top-link img {
    display: inline-block;
    vertical-align: middle;
}

.footer-top-link-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

a.footer-top-link:hover,
a.footer-top-link:focus {
    color: #fff;
    text-decoration: none;
}

a.footer-top-link:hover .footer-top-link-text,
a.footer-top-link:focus .footer-top-link-text {
    text-decoration: underline;
}

.footer-top-links-wrapper {
    margin: 30px 0;
}

.footer-bottom-content-wrapper {
    color: #ccc;
    text-transform: uppercase;
    font-size: .875rem /* 14px */;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    padding: 0 10px;
}

.footer-bottom-content-wrapper a {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
    color: #ccc !important;
}

.footer-bottom-content-wrapper a:hover,
.footer-bottom-content-wrapper a:focus {
    color: #fff;
}

.footer-bottom-content-text {
    margin-bottom: 5px;
}

.interior-main {
    font-size: 1.125rem /* 18px */;
    color: #414042;
    margin-bottom: 30px;
	padding: 20px 30px;
}

.interior-top {
    position: relative;
    text-align: center;
    margin: 0 0 20px;
}

.interior-banner img {
    width: 100% !important;
}

.interior-nav {
    margin: 0 auto;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
}

.interior-nav-parent-title {
    color: #737373;
    text-transform: uppercase;
    font-size: 1.125rem /* 18px */;
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
}

.interior-nav-bar {
    background: #7b767f;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

.interior-nav-title {
    margin: 0 0 5px;
    text-transform: uppercase;
    font-size: 1rem /* 20px */;
}

.interior-nav-bar-links.desktop {
    display: none;
}

.interior-nav-bar-links.mobile {
    width: 100%;
    max-width: 300px;
	min-width: 290px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
	font-size: .9em;

}

a.interior-nav-bar-link {
    position: relative;
    color: #ccc;
    display: block;
    font-weight: 600;
}

a.interior-nav-bar-link:hover,
a.interior-nav-bar-link:focus {
    color: #fff;
}

.light-gray-bg {
    background: #f4f4f4;
    padding: 10px;
    margin: 0 0 35px;
}

.bolded-header-wrapper {
    position: relative;
    border-bottom: 1px solid #d0d0d0;
    text-align: center;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    line-height: 1;
    margin: 0 0 30px;
}

.bh-title-wrapper {
    display: inline-block;
}

.bh-top {
    display: table;
    table-layout: fixed;
    margin: 0 auto 20px;
    text-transform: uppercase;
}

.bh-left {
    padding: 0 20px;
    color: #7d3db8;
    font-size: 3.75rem /* 60px */;
    font-weight: 800;
}

.bh-right {
    color: #414042;
    font-size: 1.75rem /* 28px */;
    font-weight: 800;
    padding: 0 20px;
}

.bh-right-line:not(:last-child) {
    margin-bottom: -5px;
}

.bh-bottom {
    color: #414042;
    margin: 0 0 20px;
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
}

.bh-btn {
    margin-bottom: 20px;
}

.cc-line {
    margin-bottom: 30px;
}

.cc-table {
    margin-bottom: 30px;
    min-width: 400px;
}

.cc-table th {
    text-align: left;
    font-weight: bold;
}

.interior-main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.interior-main ul li {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 10px 20px;
}

.interior-main ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 9px;
    height: 9px;
    background: #7d3db8;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.interior-main ul.formee-list li::before {display: none;}

.header-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 30px;
}

.header-row-title {
    color: #414042;
    font-weight: 600;
    font-size: 1.5rem /* 24px */;
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
}

.header-row-link {
    font-size: .9375rem /* 15px */;
    font-weight: 600;
    text-transform: uppercase;
}

.ae-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 10px;
    position: relative;
    margin: 0 0 15px 0;
    border: 1px solid #d9d9d9;
}

.ae-item::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 3px;
    height: 50px;
    background: #7d3db8;
}

.ae-item-content {
    max-width: 700px;
}

.ae-item-title {
    font-family: 'Montserrat', Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 1.875rem /* 30px */;
    margin: 0 0 15px 0;
}

.ae-item-time {
    font-size: 1.125rem /* 18px */;
    margin: 0 0 15px 0;
}

a.ae-item-link {
    display: inline-block;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}



.responsiveTable {
 width: 100%;
 position: relative;
 display: flex;
 flex-direction: column;
}
.responsiveTable .tablediv {
 margin: 20px 0px;
 border: 1px solid #000;
}
.tablediv-header,
.tablediv-td {
 padding: 10px;
 border-bottom: 1px solid #000;
 text-align: center;
}
.tablediv-header span {
 font-weight: bold;
 color: #333;
}
.tablediv-td:last-child {
 border-bottom: 0;
}

.site-accordion.ui-widget{
    margin: 20px 0;
}

.site-accordion h3{
    background: #7d3db8; 
    color: #fff;
}

.site-accordion h3:hover,
.site-accordion h3:focus{background: #414042;}


.site-accordion.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    background-image: none;
    right: 1em;
    left: auto;
}
.site-accordion.ui-accordion .ui-accordion-header .ui-accordion-header-icon:after {
    content: '';
    padding: 5px;
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    display: block;
    height: 5px; 
    width: 5px;
    transform: rotate(45deg);
    transition: all ease .5s;
    position: relative;
}
.site-accordion.ui-accordion .ui-accordion-header-active .ui-accordion-header-icon:after {
    transform: rotate(225deg);
    transition: all ease .5s;
    top: 4px;
}
.site-accordion.ui-accordion .ui-accordion-header {
    padding: 15px 40px 15px 15px;
}


/* =================================================================
Media Queries
===================================================================*/

@media only screen and (max-width: 700px) {
	.newsletter-signup-wrapper label{display: block;}
}

@media only screen and (max-width: 768px) {
	.grid_4.recent-news-item {display: block; float: none; width: 100% !important;}

}

@media only screen and (min-width:48em) {
    .header-slogan.desktop {
        display: block;
    }		
}

@media only screen and (min-width:60em) {
    .desktop-only { display:inline-block; }
    .mobile-only { display: none; }

    #site-container.active {
        left: 0;
    }

    #site-container.active::after {
        content: none;
    }

    .header-container {
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 10px;
    }

    .header-top {
        padding:0 10px;
    }

    .header-logo {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
	}

    .header-tagline {
        padding: 0 10px;
        width: auto;
		max-width:700px;
    }

    a.header-btn.mobile,
    button.header-btn.mobile,
    .header-slogan.mobile,
    .hamburger-menu {
        display: none;
    }

	.header-slogan.desktop a.header-site-link {
		padding: 0;
	}

    .header-btn-wrapper {
        background: none !important;
        width: auto;
        padding: 0;
    }

    a.header-btn,
    button.header-btn {
        border-color: rgba(255, 255, 255, 0);
        width: 65px;
        height: 40px;
    }

    button.header-btn-search.desktop {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -moz-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        height: 60px;
        margin: 0;
    }

    button.header-btn-search.desktop svg {
        width: 20px;
        height: 20px;
    }

    a.header-btn-search,
    button.header-btn-search {
        -webkit-border-bottom-left-radius: 0px;
        border-bottom-left-radius: 0px;
        -webkit-border-bottom-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }


    #header-bottom-container {
        padding-left: 10px;
    }

    .header-search-box {
        left: auto;
        right: 10px;
        -webkit-border-top-left-radius: 5px;
        border-top-left-radius: 5px;
        -webkit-border-bottom-left-radius: 5px;
        border-bottom-left-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        border-bottom-right-radius: 5px;
        width: 405px;
    }

    .sync-sliders-wrapper {
        margin: 100px 0;
    }

    .sync-sliders-wrapper .main-sync-slider-wrapper {
        width: 100%;
    }

    .events-item-wrappers {
        margin: 0 -10px;
    }

	.recent-news-item .content {
		display: table;
	}

	.recent-news-item img {
		display: table-cell;
		vertical-align: top;
		max-width: 100px !important;
		margin: 0 7px 0 0;
	}

	.recent-news-item .content p {
		display: table-cell;
		vertical-align: top;
	}

    .footer-info-wrapper {
        text-align: center;
    }

    .footer-info-address {
        font-size: 1rem;
    }

    .footer-info-wrapper > * {
        display: inline-block;
        margin: 0 2px;
    }

    .footer-top-links-wrapper {
        text-align: center;
    }

    a.footer-top-link {
        display: inline-block;
        margin: 0 10px;
    }

    .footer-bottom-content-wrapper {
        text-align: center;
    }

    .gray-bg-content .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .interior-nav {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -moz-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .interior-nav-parent-title {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -moz-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        padding: 0 30px;
    }

    .interior-nav-bar {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
        -moz-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        padding: 15px 30px;
    }

    .interior-nav-title {
        margin: 0;
        padding: 0 20px 0 0;
    }

    .light-gray-bg {
        padding: 50px;
        margin: 0 0 30px;
    }

    .bh-left {
        display: table-cell;
        vertical-align: middle;
        border-right: 1px solid #d0d0d0;
        text-align: left;
    }

    .bh-right {
        display: table-cell;
        vertical-align: middle;
        text-align: left;
    }

    .bh-btn {
        position: absolute;
        right: -22px;
        top: 0;
    }

    .ae-item {
        padding: 30px;
    }

    .responsiveTable{
        flex-direction: row; 
        justify-content:center; 
    }
    .responsiveTable .tablediv{
        border-right: 0; 
        width: calc(100% * (1/3));;
    }
    .responsiveTable .tablediv:last-child{
        border-right: 1px solid #000;
    }

}

@media only screen and (min-width: 960px) {

		.interior-nav-title {
			font-size: 1.25rem
		}

		.bh-btn {
			right: 0;
		}
}

/* 16px baseline (1100px +) */
@media only screen and (min-width: 68.75em) {


    .sync-sliders-wrapper .main-sync-slider-wrapper {
        width: 51.55% !important;
    }
    .sync-sliders-wrapper .grid_4.secondary-sync-slider-wrapper {
        width: 48.45% !important;
    }
    .secondary-sync-slider-wrapper {
        display: block;
    }

    .footer-bottom-content-text,
    .footer-bottom-content-wrapper a {
        display: inline-block;
        margin-right: 15px;
    }
}
@media only screen and (min-width: 80em) {
    #header-bottom-container {
        padding-left: 170px;
    }
}

@media only screen and (min-width: 1025px) {
	#google_translate_element {display: block;}
	.site-header {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 5000;
		transition: all 0.4s ease;
	}
}

/* 16px baseline (1400px +) */
@media only screen and (min-width: 87.5em) {

    .footer-bottom-content-text,
    .footer-bottom-content-wrapper a {
        position: relative;
    }

    .footer-bottom-content-text::before,
    .footer-bottom-content-wrapper a::before {
        content: "";
        position: absolute;
        right: -10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background: #ccc;
        width: 1px;
        height: 85%;
    }

    .footer-bottom-content-wrapper > *:last-child::before {
        content: none;
    }

    .interior-nav-bar-links.mobile {
        /*display: none;*/
    }

    .interior-nav-bar-links.desktop {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    a.interior-nav-bar-link {
        margin: 0 10px;
    }

    a.interior-nav-bar-link::before {
        content: "";
        position: absolute;
        right: -10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 1px;
        height: 80%;
        background: #ccc;
    }

    a.interior-nav-bar-link:last-child::before {
        content: none;
    }
}

@media only screen and (max-width:47.9em) {

	.header-logo {max-width: 40px;}
	.header-tagline h1 {font-size: 1.1rem;}
	.header-btn-wrapper .hamburger-menu {position: absolute; left: 5px; top: 15px; z-index:10001;}
	button.header-btn.header-btn-search {position: absolute; right: 5px; top: 15px; background: transparent; border: none;}
	button.header-btn.header-btn-search:hover svg, button.header-btn.header-btn-search:focus svg {fill: #fff;}
	.header-btn-search.active svg.close-svg {fill: #fff;}
	.header-search-box {top: -67px;}
}

.header-logo-wrap {
	max-width: 72%; 
	margin: 0 auto; 
	padding:10px 0 10px 10px;
	display: flex; 
	align-items: center; 
	justify-content:center;
}

@media screen and (min-width: 60em)  {
	.header-logo-wrap {
		justify-content:flex-start;
		margin:0;
		padding:10px 0;
	}
}

@media only screen and (max-width:59.9em) {

	.header-btn-wrapper .hamburger-menu.active {position: absolute; left: 5px; top: 15px; z-index:10001;}
}

.moduleConfigWrpr iframe::-webkit-scrollbar {
    display: none;
}

.formee a.moreLink{text-decoration: none;}
.formee a.moreLink:hover{color:#C30000;}



.newsDetail .meta #CT_Main_0_ctl03_divTwitter {padding:2px 0px 0px 4px;}

@-moz-document url-prefix() {
  .newsDetail .meta #CT_Main_0_ctl03_divTwitter {padding:3px 0px 0px 4px;}
}

.header-logo svg,
.header-logo img {
	height:45px;
	min-width:45px;	
	max-width:100%;	
}
	
@media only screen and (min-width: 48rem) {
	.header-logo svg,
	.header-logo img {
		height:100px;
		width:100px;
	}
}

@media only screen and (min-width: 80rem) {
	.header-logo {
		margin-bottom:-50px;
	}
	.header-logo svg,
	.header-logo img {
		height:200px;
		width:200px;
	}
	
    .header-title {
        font-size: 3rem /* 48px */;
    }
}

.sitemap table {
    width: 100%;
	table-layout:fixed;
}

.sitemap table td {
    border: 10px solid #ccc;
    display: block;
    padding: 20px 30px 30px 30px;
    vertical-align: top;
}

.sitemap table a {
	display:block;
	margin:10px 0;
}

.sitemap table td:empty {
	display:none;
}

@media only screen and (min-width:60em){
	.sitemap table td {
		display: table-cell;
	}
}

.siteWrap {
	display: flex;
	min-height: calc(100vh - 160px);
	flex-direction: column;
	justify-content: flex-start;
}

@media only screen and (min-width:64em){
	.siteWrap {
		min-height: 100vh;
	}
}

.site-footer {
	margin-top:auto;
}

.grecaptcha-badge {
    bottom: 65px !important;
}


/* Ticket # 562113 - Update Image on News Listing to Sit on Top (Homepage News Listing) */

.recent-news-items-wrapper  {
	margin-left:-20px;
	margin-right:-20px;
}

.recent-news-items-wrapper .recent-news-item {
    width: 33%;
    padding: 20px;
}

    .recent-news-items-wrapper .recent-news-item .title {
        text-align: center;
        margin-bottom: 20px;
    }

    .recent-news-items-wrapper .recent-news-item .content {
        width: 100%;
        display: block;
    }

        .recent-news-items-wrapper .recent-news-item .content img {
            max-width: 100% !important;
            margin: 0 auto 20px;
            display: block;
            width: auto !important;
        }

        .recent-news-items-wrapper .recent-news-item .content .read-more {
            display: block;
            margin: 10px auto;
        }
