/* ## 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: sans-serif; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * 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: 600;
}

/*
 * 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"] {
        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;
}

/* ===============  Default Adjustments  =============== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-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%;
    height: auto !important;
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

embed, iframe {
    max-width: 100%;
}

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;
}

    .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;
    }

.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;
}

.normal {
    font-weight: normal;
}

.red, .red:visited {
    color: #f00 !important;
}

.green, .green:visited {
    color: #390 !important;
}

.lgreen, .lgreen:visited {
    color: #97937d !important;
}

.lblue, .lblue:visited {
    color: #16498e !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;
}

.underline {
    text-decoration: underline;
}

.click-user *:focus, .click-user *:active {
    outline: 0;
}

/* ## 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;
    font-size: .8em;
    color: #4e4e4e;
}

    .note a, .note a:link, .note a:visited {
        text-decoration: underline;
    }


/* ================================================================
   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;
}

h1 {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
    line-height: 1.2;
}

h2 {
    font-size: 1.25rem;
    margin: 0 0 0.7rem 0;
    font-weight: bold;
    line-height: 1.2;
    color: #000;
}

h3 {
    font-size: 1.15rem;
    margin: 0 0 0.7rem 0;
    font-weight: bold;
    line-height: 1.2;
    color: #000;
}

h4 {
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
    font-weight: bold;
    color: #000;
}

h5 {
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
    font-weight: bold;
    color: #000;
}

h6 {
    font-size: .9rem;
    margin: 0 0 0.3rem 0;
    font-weight: bold;
    color: #000;
}

@media only screen and (min-width:60em) {
    h1 {
        font-size: 2rem;
    }
    /* h2 {font-size: 1.7rem;}
	h3 {font-size: 1.35rem;} */
}

/* 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: #1853B9;
    text-decoration: underline;
}

    a:hover, a:active, a:focus {
        color: #1853B9;
        text-decoration: none;
    }

.btnText {
    margin: 0;
    padding: 0;
    color: #005193;
    text-decoration: none;
    border: 0;
    background: none;
}

    .btnText:hover {
        color: #005193;
        text-decoration: underline;
    }

.svg-legend {
    height: 0;
    position: absolute;
    top: -999em;
    width: 0;
}

/* ## 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;
}


/* ## Focus Overlay - Advanced Focus States - It is still important to add basic css focus states for when no JS is active ## */
#focus-overlay {
    display: none;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 0 3px 2px #78aeda;
    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;
        box-shadow: 0 0 2px 1px #008cff, 0 0 2px #008cff inset;
        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;
}

.skip a {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    text-align: center;
}

    .skip a:focus {
        position: static;
        width: auto;
        height: auto;
        background: #444444;
        color: #ffffff;
        font-weight: bold;
        display: block;
        padding: 10px;
    }




/* ## 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.subpage {
    background: #061734;
}

body {
    background: #fff;
    font-family: 'Lato', sans-serif;
}

@media only screen and (min-width:60em) {
    .site-header {
        text-align: left;
    }
}

.header-top {
    background: #fff;
    position: relative;
    text-align: left;
}

.secondary-nav {
    padding: 0;
    margin: 0;
    list-style-type: none;
    line-height: 19px;
}

    .secondary-nav li {
        display: inline-block;
    }

        .secondary-nav li.navLink.extra-link {
            display: none;
        }

        .secondary-nav li > a {
            color: #595959;
            display: inline-block;
            padding: 0;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
        }

            .secondary-nav li > a:hover, .secondary-nav li > a:focus {
                text-decoration: underline;
            }

        .secondary-nav li:last-child > a {
            padding-right: 0;
        }

        .secondary-nav li.navLink.right-link {
            float: right;
        }

        .secondary-nav li.language {
            display: inline-block;
        }

            .secondary-nav li.language > a {
                position: relative;
            }

.toggle-language {
    cursor: pointer;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.translate {
    margin: 0 0 1rem 0;
}

@media only screen and (min-width:60em) {
    .header-top {
        display: block;
        padding: 10px 0;
        height: 75px;
    }

    .secondary-nav {
        float: right;
    }

        .secondary-nav li:after {
            content: "";
            display: inline-block;
            border-left: 1px solid rgba(255,255,255,0.5);
            width: 1px;
            height: 10px;
        }

        .secondary-nav li:last-child:after {
            display: none;
        }

        .secondary-nav li > a {
            padding: 0 15px;
        }

        .secondary-nav .desktop-no {
            display: none;
        }

        .secondary-nav li.navLink {
            display: inline-block;
        }

            .secondary-nav li.navLink.extra-link {
                display: inline-block;
            }

            .secondary-nav li.navLink.right-link {
                float: none;
            }
}

@media only screen and (max-width:59.938em) {
    .cm-menu .extra-link.mobile-no {
        display: none;
    }

    .cm-menu .extra-link.version {
        font-size: 13px;
        color: #fff;
        text-align: center;
        padding: 5px 0 4px;
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}

.header-bottom {
    background: #f2f2f2;
    padding: 0;
    height: 75px;
    position: relative;
    z-index: 10;
    -webkit-box-shadow: inset 0px 14px 10px -4px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0px 14px 10px -4px rgba(0,0,0,0.1);
    box-shadow: inset 0px 14px 10px -4px rgba(0,0,0,0.1);
}

.site-logo {
    display: inline-block;
    margin: 7px 6px 6px 6px;
    font-size: 1em;
    width: 62px;
    height: 62px;
}

    .site-logo svg {
        width: 62px;
        height: 62px;
    }

    .site-logo .desktop {
        display: none;
    }

    .site-logo .mobile {
        display: inline;
    }


@media only screen and (min-width:60em) {
    .header-bottom {
        height: 75px;
    }

    .site-logo-wrpr {
        display: block;
        height: 75px;
    }

    .site-logo {
        width: 115px;
        margin: 0px;
        position: absolute;
        top: -58px;
    }

        .site-logo svg {
            width: 115px;
            height: 115px;
        }

    .cm-menu .extra-link {
        display: none;
    }
}

.cm-menu .my-dashboard {
    position: absolute;
    right: 0;
    top: 4px;
}


#main-content {
    background-color: #eaeaea;
    background-image: url(/cms/images/logo_bg.png);
    background-repeat: no-repeat;
    background-position: 100% 0;
    -webkit-box-shadow: inset 0px 8px 8px -8px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: inset 0px 8px 8px -8px rgba(50, 50, 50, 0.2);
    box-shadow: inset 0px 8px 8px -8px rgba(50, 50, 50, 0.2);
}

.main-content {
    position: relative;
    padding: 50px 0 40px;
    color: #000;
    line-height: 1.7;
}

.background-image {
    position: absolute;
    width: 1920px;
    top: 0;
    left: 50%;
    height: 100%;
    background: #eaeced;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

@media only screen and (min-width:1040px) {
    .background-image {
        background-size: auto auto;
    }
}

.background-image:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: inset 0px 8px 8px -8px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: inset 0px 8px 8px -8px rgba(50, 50, 50, 0.2);
    box-shadow: inset 0px 8px 8px -8px rgba(50, 50, 50, 0.2);
}

.background-image img {
    display: none;
}

.background-image .img-overlay {
    text-align: center;
}

    .background-image .img-overlay:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.background-image p {
    margin: 0;
}

.page-heading {
    padding: 0 0 1.8rem 0;
    position: relative;
}

    .page-heading h1 {
        font-size: 24px;
        font-weight: 900;
        color: #000;
        margin: 0;
        line-height: 1;
        text-transform: uppercase;
    }

.page-content {
    background: #fff;
    padding: 20px 10px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.2);
    border-top: 5px solid #226dc6;
}

.page-content-nobkgd {
    margin: 0 -10px 20px;
}

.main-content.home {
    overflow: hidden;
}

@media only screen and (min-width:48em) {
    .main-content {
        padding: 40px 0 60px;
        min-height: 636px;
    }

        .main-content.home {
            padding: 0 0 30px;
            min-height: 730px;
        }

    .page-content {
        padding: 40px;
        margin-bottom: 0;
    }

    .two-column .page-heading {
        margin-left: 4.5%;
    }

    .two-column .page-content, .two-column .formee-msg-error {
        margin-left: 4.5%;
    }

    .two-column .page-content-nobkgd {
        margin-left: 5.0%;
        margin-right: 10px;
    }
}

.site-footer {
    background: #013668 url(/cms/images/footer.png) no-repeat 0% 100%;
    padding: 3rem 0;
    text-align: center;
    color: #fff;
    position: relative;
    text-shadow: 1px 1px 0 rgba(0,0,0,.9);
}

    .site-footer:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, #333, rgba(255,0,0,0) 415px);
    }

    .site-footer a {
        color: #fff;
        text-decoration: underline;
    }

        .site-footer a:hover, .site-footer a:focus {
            text-decoration: none;
        }

    .site-footer h4 {
        color: #fff;
        text-transform: uppercase;
        font-weight: normal;
        font-size: 18px;
    }

    .site-footer .grid_12 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        width: 100%;
        justify-content: space-between; /* horizontal */
    }

    .site-footer .footer-left,
    .site-footer .footer-right {
        padding: 1rem 0;
        width: 100%;
    }

    .site-footer .footer-full {
        width: 100%;
    }

@media only screen and (min-width:48em) {

    .site-footer .footer-left,
    .site-footer .footer-right {
        font-size: 18px;
        padding: 0rem 2rem;
        -ms-flex: 1;
        -webkit-flex: 1;
        flex: 1;
    }

    .site-footer .footer-left {
        flex: 0 0 300px;
    }

    .site-footer .footer-right {
        width: calc(100% - 300px);
    }
}

.flex > div {
    margin: 0 0 1rem 0;
    background: #ececec;
    padding: 20px;
}

@media only screen and (min-width:48em) {
    .flex {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        width: 100%;
    }

        .flex > div {
            width: 48%;
            margin: 0 1% 1rem 1%;
        }

            .flex > div:first-child {
                margin-left: 0;
            }

            .flex > div:last-child {
                margin-right: 0;
            }

        .flex.flex-3 > div {
            width: 32%;
        }

        .flex.flex-4 > div {
            width: 23%;
        }
}


/* ## Disabled Form Fields ## */

.siteSearch {
    color: #FFFFFF;
    float: right;
}

    .siteSearch label {
        display: none;
    }

@media only screen and (max-width:47.938em) {
    .siteSearch {
        display: none;
    }
}

/* ==========================================================================
   Global Modules
   ========================================================================== */

.mod {
    position: relative;
    margin: 0 0 1em;
}

.more-link {
    text-align: right;
}

    .more-link a {
        text-decoration: none;
    }

        .more-link a:after {
            content: "";
            width: 10px;
            height: 10px;
            border-right: 2px solid #1853B9;
            border-bottom: 2px solid #1853B9;
            display: inline-block;
            transform: rotate(-45deg);
        }

        .more-link a:hover,
        .more-link a:focus {
            text-decoration: none;
            color: #000;
        }

.back-link a:before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #1853B9;
    border-bottom: 2px solid #1853B9;
    display: inline-block;
    transform: rotate(135deg);
}

.title {
    position: relative;
    margin: 0 0 1em;
}

.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: 1.5em 0;
    width: 100%;
    border-top: 1px solid #cfd1d3;
}

    .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;
        padding: 0 10px;
    }

.content .title {
    margin: 0 0 5px;
}

.itemList .content p {
    margin: 0;
}

.content .date {
    font-size: 0.85em;
}

.contentExtra.itemInfo {
    width: 65%;
}

.contentExtra.itemQty {
    width: 15%;
    padding-top: 5px;
    font-weight: normal;
}

.contentExtra.itemTotal {
    width: 10%;
    padding-top: 5px;
    font-weight: normal;
    text-align: right;
}

    .contentExtra.itemQty span,
    .contentExtra.itemTotal span {
        color: #000;
    }

/* Order History */

.cartHistory .cartItemDetails {
    display: table;
    width: 100%;
}

    .cartHistory .cartItemDetails .contentExtra {
        vertical-align: middle;
    }

        .cartHistory .cartItemDetails .contentExtra:first-child,
        .cartHistory .cartItemDetails .contentExtra:nth-child(2) {
            /* min-width:25%; */
        }

.cartHistory .item .contentExtra:first-child {
    padding-left: 0;
}

.cartHistory .item .contentExtra:last-child {
    padding-right: 0;
}

.cartHistory .cartItemDetails .buttons {
    text-align: right;
}

    .cartHistory .cartItemDetails .buttons .btnWrapper {
        margin-right: 0;
    }

.cartHistory .cartItemDetails .title {
    font-size: 20px;
    margin: 0 0 0.5rem;
    font-weight: bold;
    color: #000;
}

@media only screen and (min-width:70em) {
    .orderHistory .buttons .btn {
        min-width: 200px;
    }
}

@media only screen and (max-width:47.938em) {
    .orderHistory {
        padding: 30px 20px;
    }
}
/* 16px baseline ( - 479px) */
@media only screen and (max-width:29.938em) {
    .cartHistory .cartItemDetails {
        font-size: 14px;
    }

    .cartHistory .item .contentExtra {
        padding: 0 5px;
    }

    .orderHistory {
        padding: 30px 10px;
    }

        .orderHistory .cartItemDetails .buttons .btn {
            min-width: 0;
        }
}

/* Devices
   ========================================================================== */
.devices-wrpr > div:first-child hr {
    display: none;
}

.device-item {
    border-top: 1px solid #afb4c0;
    width: 100%;
    padding: 17px 0px;
}

.devices {
    width: 100%;
}

    .devices p {
        margin: 0;
    }

    .devices strong {
        margin-right: 10px;
    }

    .devices hr {
        margin: 1.75em 0;
    }

    .devices img,
    .image-device img {
        width: 50px !important;
        max-width: 50px !important;
        margin: 5px 25px 10px 0;
    }

.device-item span.btnWrapper a.btn {
    display: block;
}

@media only screen and (min-width:30em) {
    .image-device {
        display: table-cell;
    }

        .image-device + .content {
            display: table-cell;
            vertical-align: top;
            width: 100%;
        }
}

@media only screen and (min-width:48em) and (max-width:59.9em) {
    .devices > div:first-child {
        width: 20%;
    }

    .devices > div:nth-child(2) {
        width: 79%;
    }

    .devices .devices-buttons {
        width: 100%;
    }
}

@media only screen and (min-width:60em) {
    .devices {
        display: table;
    }

        .devices > div {
            display: table-cell !important;
            float: none !important;
            vertical-align: top;
        }

        .devices .devices-buttons {
            vertical-align: middle;
            text-align: right;
        }
}

/* 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;
            padding: 0 0 20px 0;
        }
}


/* 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;
    background: #ebecee;
    margin: 0 0 1rem 0;
}

.filter-options {
    float: left;
}

.filter-actions {
    float: right;
}

/* 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: 100%;
    padding: 15px 0 10px 0;
    text-align: right;
    font-weight: 500; /* background:#eaeced; */
}

    .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: left;
        display: inline;
        padding: 0 0; /*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: -2px 0 0;
            padding: 3px 13px;
            text-align: center;
            color: #000;
            background-color: #fff;
            text-decoration: none;
            border: 1px solid #cfd1d3;
        }

        .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;
    }

    .pagination .showing {
        float: left;
        margin: 2px 10px 0;
        font-size: 14px;
    }

.my-tickets .pagination {
}

.my-tickets .pagination,
.expired-tickets .pagination {
    -webkit-box-shadow: inset 0px 3px 4px -3px rgba(50, 50, 50, 0.3);
    -moz-box-shadow: inset 0px 3px 4px -3px rgba(50, 50, 50, 0.3);
    box-shadow: inset 0px 3px 4px -3px rgba(50, 50, 50, 0.3);
}

.pagination .formee select {
    width: 100%;
    margin-bottom: 10px;
}

    .pagination .formee select:first-child {
        margin-right: 30px;
    }

.order-history .pagination .inner {
    margin: 0 10px 0 0;
    padding: 12px 0;
}

.order-history-filter {
    margin-left: 10px;
    text-align: left;
}

@media only screen and (min-width:30em) {
    .pagination .formee select {
        width: 200px;
    }
}

@media only screen and (min-width:48em) {
    .order-history .pagination .inner {
        float: left;
    }

    .order-history-filter {
        float: right;
        margin-left: 0;
        text-align: right;
    }
}

/* ==============================================================
   GLOBAL STYLES
   ============================================================== */
.alerts-wrapper {
    background-color: #c30000;
}

.alert {
    overflow: hidden;
    padding: 10px;
    min-height: 50px;
    color: #fff;
    background-color: #c30000;
    font-size: 14px;
    text-align: left;
}

.alert-items {
    padding: 10px 0 10px 40px;
    background: transparent url(/cms/images/alert.png) no-repeat 0px 10px;
}

.alert a, .alert .date {
    color: #fff;
}

.alert-title {
    font-weight: bold;
    text-transform: uppercase;
}

.bdr {
    border: 1px solid #ccc;
    padding: 1px;
}

.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: rgba(0,0,0,0.03);
}

.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;
}


/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 320px;
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 15px;
        border-radius: 6px;
        /* Position the tooltip text */
        position: absolute;
        z-index: 1;
        bottom: 155%;
        left: 50%;
        margin-left: -160px;
        /* Fade in tooltip */
        opacity: 0;
        transition: opacity 0.3s;
    }

        /* Tooltip arrow */
        .tooltip .tooltiptext:after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext,
    .tooltip:focus .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

@media only screen and (max-width:70em) {
    .tooltip {
        position: static;
    }

        .tooltip .tooltiptext {
            width: 320px;
            left: 0;
            margin-left: 0;
            bottom: 100%;
            margin-bottom: 5px;
            width: 100%;
            max-width: 320px;
        }
}

@media only screen and (max-width:30em) {
    .my-tickets .buttons {
        position: relative;
    }

        .my-tickets .buttons .tooltip {
            position: static;
        }

            .my-tickets .buttons .tooltip .tooltiptext:after {
                left: 238px;
            }
}

.tooltip .tooltiptext {
    padding: 10px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

.creditCardFields .tooltip {
    position: static;
}

    .creditCardFields .tooltip .tooltiptext {
        padding: 10px;
        font-size: 13px;
        line-height: 1.5;
        left: 0;
        margin-left: 0;
        bottom: 100%;
        margin-bottom: 5px;
        width: 100%;
        max-width: 320px;
    }

label[for="firstName"] .tooltip .tooltiptext:after {
    left: 105px;
}

label[for="lastName"] .tooltip .tooltiptext:after {
    left: 105px;
}

label[for="email"] .tooltip .tooltiptext:after {
    left: 67px;
}

label[for="phone"] .tooltip .tooltiptext:after {
    left: 73px;
}

/* ##  Generic Pager  ## */

.sortStatus {
    float: left;
}

.genericPager {
    float: right;
}

    .genericPager ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .genericPager li {
        float: left;
        display: block;
        font-size: 14px;
        margin: 0 5px 5px 0;
    }

        .genericPager li a {
            float: left;
            padding: 2px 7px;
            border: 1px solid #ddd;
            text-decoration: none;
        }

            .genericPager li a:hover, .genericPager li a:focus {
                color: #fff;
                background-color: #1853B9;
                text-decoration: none;
            }

        .genericPager li.nolink {
            color: #fff;
            border: 1px solid #ddd;
            padding: 2px 7px;
        }

        .genericPager li.active {
            color: #fff;
            border: 1px solid #ddd;
            padding: 2px 7px;
            background-color: #1853B9;
        }


/* ##  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;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 15px #333;
    -moz-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
===================================================================*/

.bar {
    margin-bottom: 10px;
}

/* ##  Breadcrumb  ## */

.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;
    text-align: right;
}

.pageTool {
    margin: 0 10px 0;
    font-size: 0.938em;
    color: #686868;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
}

.pageToolsWrapper a {
    display: inline;
    margin-left: 10px;
    text-decoration: none;
}

    .pageToolsWrapper a:hover,
    .pageToolsWrapper a:active {
        color: #1C4E87;
        text-decoration: none;
    }

    .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;
}

@media only screen and (max-width:59.938em) {
    .pageToolsWrapper {
        display: none;
    }
}

/* ## 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;
    }

/* =================================================================
                        PRINT STYLES
===================================================================*/

.hd {
    padding: 10px;
    border-bottom: 3px solid #ccc;
    margin: 0 0 10px 0;
}

.ftr {
    padding: 10px;
    border-top: 3px solid #ccc;
    font-size: 12px;
    margin: 20px 0 0 0;
    text-align: center;
}

.printBody {
    margin: 0;
    padding: 0;
    color: #333;
    background: #fff;
    width: 100%;
}

.printWrpr {
    width: 660px;
    text-align: left;
    margin: 0 auto;
    z-index: 1;
}

.emailBody {
    margin: 0;
    padding: 0;
    background: #fff;
    width: 100%;
}

.emailWrpr {
    width: 680px;
    text-align: left;
    margin: 0 auto;
    z-index: 1;
}

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    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;
    }
}

/* ## 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;
    text-decoration: none !important;
    -wekbit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn, a.btn {
    display: inline-block;
    margin: 0;
    padding: 16px 20px;
    font-weight: bold;
    color: #fff;
    background-color: #16498e;
    border: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    font-size: 14px;
    text-transform: uppercase;
    min-width: 140px;
    line-height: normal;
    -wekbit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .btn:hover, .btn:focus {
        background-color: #575757;
        color: #fff;
        text-decoration: none;
    }

.btnAlt {
    background-color: #fff;
}

    .btnAlt .btn {
        color: #16498e;
        background-color: #fff;
        padding: 15px 18px;
        border: 1px solid #16498e;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

        .btnAlt .btn:hover, .btnAlt .btn:focus {
            background-color: #575757;
            color: #fff;
        }

.btnRed {
    background-color: #f21701;
}

    .btnRed .btn {
        color: #fff;
        background-color: #f21701;
        border: none;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btnRed:hover, .btnRed:hover .btn {
        background-color: #575757;
    }

.btn.blue {
    background: #fff;
    color: #16498e;
    -webkit-box-shadow: inset 0px 0px 0px 1px #16498e;
    -moz-box-shadow: inset 0px 0px 0px 1px #16498e;
    box-shadow: inset 0px 0px 0px 1px #16498e;
}

    .btn.blue:hover, .btn.blue:focus {
        background-color: #575757;
        color: #fff;
        -webkit-box-shadow: inset 0px 0px 0px 1px #575757;
        -moz-box-shadow: inset 0px 0px 0px 1px #575757;
        box-shadow: inset 0px 0px 0px 1px #575757;
    }

.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%;
    }

.btnWide {
    max-width: 100%;
    width: 100%;
}

    .btnWide .btn {
        width: 100%;
    }

@media only screen and (min-width:48em) {
    .btnWide {
        max-width: 300px;
    }
}

.btn.print {
    min-width: 180px;
}

.margT10 {
    margin-top: 10px;
}

.margB0 {
    margin-bottom: 0;
}

.margB5 {
    margin-bottom: 5px;
}

.margB10 {
    margin-bottom: 10px;
}

.margB20 {
    margin-bottom: 20px;
}

.margR10 {
    margin-right: 10px;
}

.margR30 {
    margin-right: 30px;
}

.paddT10 {
    padding-top: 10px;
}

.paddA10 {
    padding: 10px;
}

.buttons .btnWrapper {
    margin-right: 30px;
}

    .buttons .btnWrapper.btnAlt {
        margin-right: 0;
    }

@media only screen and (max-width:47.938em) {
    .mobPad010 {
        padding: 0 10px;
    }
}

@media only screen and (max-width:479px) {
    .page-content .btnWide input.btn {
        min-width: 280px;
    }

    .buttons .btnWrapper {
        margin-right: 20px;
    }

    .buttons .btn {
        min-width: 120px;
    }
}

/* ## modifier for icon fonts (IcoMoon) embedded within button wrapper ## */

.btnWrapper [class^="icon-"] {
    margin: 0 3px;
    font-size: 0.7em;
}

/* ## 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 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 ## */
.social-icons {
    text-align: center;
    margin-top: 5px;
}

    .social-icons svg {
        fill: #fff;
        width: 20px;
        height: 20px;
    }

    .social-icons a {
        text-decoration: none;
        display: inline-block;
        margin: 0 4px;
        width: 30px;
        height: 25px;
    }

        .social-icons a:hover,
        .social-icons a:focus {
            text-decoration: none;
            opacity: .65;
        }

@media only screen and (min-width:48em) {
    .social-icons a {
        margin: 0 6px;
    }
}

/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.table-wrapper {
    overflow: auto;
}

.data-table {
    widtH: 100%;
    display: table;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .data-table tr:nth-child(odd) {
        background: #e6e6e6;
    }

    .data-table th {
        background: #023864;
        padding: 6px 15px;
        font-size: 1em;
        border: 1px solid #023864;
        border-bottom: 2px solid #72a943;
        color: #fff;
    }

        .data-table th a {
            color: #fff;
            text-decoration: underline;
        }

    .data-table td {
        vertical-align: top;
        padding: 6px 15px;
        border: 1px solid #E1E1E1;
    }

        .data-table td td {
            border-style: none;
        }


    .data-table.theme-1 {
        line-height: 1.6;
    }

        .data-table.theme-1 tr:nth-child(odd) {
            background: #fff;
        }

        .data-table.theme-1 tr {
            border-style: none;
            border-bottom: 1px solid #b4b8bf;
        }

        .data-table.theme-1 td {
            border-style: none;
            padding: 20px 10px 20px 0;
            vertical-align: bottom;
        }

@media only screen and (max-width:59.938em) {

    .responsive-table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table tr,
    .responsive-table td {
        display: block;
        width: 100%;
    }

        .responsive-table tr {
            border: 1px solid #E1E1E1;
        }

        .responsive-table th {
            display: none;
        }

        .responsive-table td {
            border-style: none;
        }

    .data-table.theme-1 td {
        padding: 10px 10px 10px 0;
    }

        .data-table.theme-1 td:nth-child(2) {
            padding: 0 10px 0 0;
        }

        .data-table.theme-1 td:nth-child(3):empty {
            display: none;
        }
}

/* ## NEW Limit Text Box ## */

.limitTextBox {
}

    .limitTextBox span {
        display: none;
    }

.limitTextBoxBar {
    width: 100%;
    margin: 0px 0 15px 0;
}

.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 {
        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;
    }

.vd {
    padding: 0 5px;
}

.topOfPage {
    text-align: right;
}

    .topOfPage a {
        background: transparent url(/cms/images/arrow.gif) no-repeat 100% 50%;
        padding-right: 13px;
    }

.figure-right {
    display: table;
    max-width: 100%;
    float: right;
    margin: 0 0 15px 20px;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 5px 0;
    max-width: 50%;
}

.figure-left {
    display: table;
    max-width: 100%;
    float: left;
    margin: 0 20px 15px 0;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 5px 0;
    max-width: 50%;
}

    .figure-right figcaption,
    .figure-left figcaption {
        margin-top: 5px;
        display: table-caption;
        caption-side: bottom;
        font-size: 0.9em;
    }

    .figure-right img,
    .figure-left img {
        display: block;
        width: 100%;
    }

@media only screen and (max-width:29.9rem) {
    .figure-right,
    .figure-left {
        float: none;
        margin: 0 auto 1rem auto;
        max-width: 100%;
        text-align: center;
    }
}

.hidden-info, a.hidden-info {
    color: #fff;
    background: #000;
    -webkit-transition: all 0s;
    transition: all 0s;
}

    .hidden-info:focus {
        display: block;
        padding: 10px;
        width: 100%;
        text-align: center;
    }


.form-wrpr {
}

.contact-form .btnWrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 0 10px;
    display: block;
}

.contact-form input.btn {
    width: 100%;
}

@media only screen and (min-width:48em) {
    .form-wrpr {
        margin: 0 -10px;
    }

    .contact-form .grid_6:first-child {
        padding-right: 2.7%;
    }

    .contact-form .grid_6:last-child {
        padding-left: 2.7%;
    }
}

.data-table.phone-table tr:nth-child(2n+1) {
    background: none;
}

.data-table.phone-table td {
    border: none;
    padding: 6px 15px 6px 0;
}

    .data-table.phone-table td:first-child {
        font-weight: 600;
    }

.data-table.phone-table tr {
    border-bottom: 1px solid #cfd1d3;
}

@media only screen and (min-width:60em) {
    .data-table.phone-table td {
        padding: 10px 15px 10px 0;
    }
}

@media only screen and (max-width:59.938em) {
    .responsive-table.phone-table tr {
        border: none;
        border-bottom: 1px solid #cfd1d3;
    }

    .data-table.phone-table td:first-child {
        padding-bottom: 0;
    }
}
/* =================================================================
                        Home Page
===================================================================*/
h2.callouts-heading {
    text-align: center;
    font-size: 1.75rem;
    color: #fff;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 1);
    padding: 0 20px;
}

.callouts-wrpr {
    margin: 20px auto;
}

a.callout {
    /* max-width:240px; */
    width: 280px;
    height: 190px;
    border-radius: 50px 0 50px 0;
    background-color: #a0cd3f;
    box-shadow: 10px 10px 10px 0 rgba(0,0,0,0.4);
    display: block;
    text-align: center;
    /* padding:21px 0 28px; */
    margin: 0 auto 30px;
    -wekbit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    position: relative;
}

    a.callout .inner {
        position: absolute;
        top: 10px;
        left: 10px;
        display: block;
        padding: 21px 0 28px;
        width: 100%;
        height: 100%;
        border-radius: 50px 0 50px 0;
        background-color: #fff;
        -wekbit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        a.callout .inner:hover,
        a.callout .inner:focus {
            text-decoration: none;
            background: #bfd9a9;
        }

    a.callout span.h2 {
        color: #555;
        text-transform: uppercase;
        font-size: 18px;
        display: block;
    }

    a.callout img {
        margin-bottom: 10px;
    }

    a.callout span.h2 span {
        display: inline-block;
        text-transform: none;
        font-size: 15px;
        color: #000;
        font-weight: 500;
    }

@media only screen and (min-width:48em) {
    h2.callouts-heading {
        text-align: center;
        font-size: 2.25rem;
    }

    .callouts-wrpr {
        margin: 40px auto 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    a.callout {
        /* padding:60px 20px 50px; */
        width: 31%;
        margin: 0 2% 20px;
        width: 300px;
        height: 300px;
    }

        a.callout .inner {
            padding: 60px 20px 50px;
        }

        a.callout span.h2 {
            font-size: 22px;
        }

        a.callout img {
            margin-bottom: 15px;
        }
}

.appButtons {
    text-align: center;
}

    .appButtons a {
        display: inline-block;
        margin: 0 0 10px;
        width: 160px;
    }

@media only screen and (min-width:48em) {
    .appButtons {
        text-align: left;
    }

        .appButtons .grid_6:first-child {
            text-align: right;
        }

        .appButtons a {
            margin: 0 5px 10px;
            width: 160px;
        }
}



/* FAQ
====================================== */
.faq-accordion-wrpr {
    margin: 10px 0 30px;
    border-bottom: 1px solid #cfd1d3;
}

.faq-accordion {
    display: block;
    text-decoration: none;
    cursor: pointer;
    padding: 18px 30px 14px 0;
    width: 100%;
    border-top: 1px solid #cfd1d3;
    text-align: left;
    outline: none;
    transition: 0.4s;
    -wekbit-transition: 0.4s;
    position: relative;
}

    .faq-accordion.active, .faq-accordion:hover {
    }


    .faq-accordion:before {
        position: absolute;
        right: 0px;
        top: 50%;
        margin-top: -20px;
        font-family: 'icomoon';
        content: "\232a";
        color: #1E3B68;
        font-size: 24px;
        font-weight: bold;
        -wekbit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .faq-accordion.active:before {
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

.faq-panel {
    padding: 0px;
    background-color: #EAECED;
    max-height: 0;
    line-height: 1.4;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    -wekbit-transition: max-height 0.2s ease-out;
}

    .faq-panel p:last-child {
        margin: 0;
    }

    .faq-panel p {
        word-break: break-word;
    }

.active .faq-panel,
.active + .faq-panel {
    padding: 30px;
    border-top: 1px solid #cfd1d3;
    max-height: none !important;
}

.faq-panel a,
.faq-panel a:visited {
    color: #1c4e87;
    font-weight: 500;
}


.FAQWrpr h2 {
    font-size: 22px;
    margin: 0 0 0.75rem 0;
}

.FAQWrpr h3 {
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
    font-weight: bold;
    color: #1E3B68;
    text-transform: none;
    line-height: 1.5;
}

@media only screen and (min-width:48em) {
    .FAQWrpr h2 {
        font-size: 24px;
    }
}



/* MANAGE PAYMENTS
====================================== */
.supportedPayments img {
    margin-top: 5px;
    margin-right: 4px;
    max-width: 54px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .card-list li {
        border-bottom: 1px solid #cfd1d3;
        padding: 29px 0;
        color: #555;
    }

        .card-list li:last-child {
            border-bottom: none;
        }

        .card-list li input[type="radio"] {
            margin-right: 15px;
        }

        .card-list li.default {
            color: #000
        }

        .card-list li .btn {
            background: none;
            color: #B1021F;
            padding: 0;
            font-weight: 600;
            float: right;
            min-width: 88px;
            margin: 5px 0 5px 10px;
            outline: 0;
        }

            .card-list li .btn:hover,
            .card-list li .btn:focus {
                text-decoration: underline;
            }

            .card-list li .btn:before {
                content: "+";
                font-weight: 300;
                font-size: 25px;
                width: 13px;
                height: 13px;
                line-height: 13px;
                border: 1px solid #B1021F;
                border-radius: 50%;
                padding: 1px;
                display: inline-block;
                -ms-transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                position: relative;
                left: -5px;
                top: 3px;
            }

        .card-list li button.set-nickname {
            padding: 5px 10px;
            background: #16498e;
            color: #fff;
            font-weight: bold;
            border: 1px solid #16498e;
            margin: 5px 5px 5px 34px;
            font-size: 14px;
        }

            .card-list li button.set-nickname:hover,
            .card-list li button.set-nickname:focus {
                background: #575757;
                color: #fff;
                border: 1px solid #575757;
            }

        .card-list li button.update-card {
            padding: 5px 10px;
            background: #5D9741;
            color: #fff;
            font-weight: bold;
            border: 1px solid #5D9741;
            margin: 5px 5px 5px 34px;
            font-size: 14px;
        }

            .card-list li button.update-card:hover,
            .card-list li button.update-card:focus {
                background: #575757;
                color: #fff;
                border: 1px solid #575757;
            }

        /* .card-list li label .card-name {font-weight:bold;}
.card-list li label .card-nickname {margin-left:35px; display:inline-block; font-size:14px; cursor:pointer; border: 1px solid #ccc;
padding: 2px 5px;}
.card-list li label .card-nickname:hover,
.card-list li label .card-nickname:focus {border: 1px solid #16498e;} */

        .card-list li .card-name {
            font-weight: bold;
        }

        .card-list li .card-nickname {
            margin-left: 35px;
            display: inline-block;
            font-size: 14px;
            cursor: pointer;
            border: 1px solid #ccc;
            padding: 2px 5px;
            text-decoration: none;
            color: #555;
        }

            .card-list li .card-nickname:hover,
            .card-list li .card-nickname:focus {
                border: 1px solid #16498e;
            }

        .card-list li div.edit-card {
            margin-left: 35px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .card-list li div.edit-nickname label {
        }

        .card-list li div.edit-nickname input {
            margin: 3px 0 10px;
            padding: 5px 10px;
            border: 1px solid #cfd1d3;
        }

        .card-list li div.edit-nickname button.btn-save {
            padding: 5px 10px;
            background: #16498e;
            color: #fff;
            font-weight: bold;
            border: 1px solid #16498e;
            width: 70px;
            margin: 0 5px 5px 0;
        }

        .card-list li div.edit-nickname button.btn-cancel {
            padding: 5px 10px;
            background: #fff;
            color: #16498e;
            font-weight: bold;
            border: 1px solid #16498e;
            width: 70px;
        }

        .card-list li div.edit-card label {
        }

        .card-list li div.edit-card input {
            margin: 3px 0 10px;
            padding: 5px 10px;
            border: 1px solid #cfd1d3;
        }

        .card-list li div.edit-card button.btn-save {
            padding: 5px 10px;
            background: #5D9741;
            color: #fff;
            font-weight: bold;
            border: 1px solid #5D9741;
            width: 70px;
            margin: 0 5px 5px 0;
        }

        .card-list li div.edit-card button.btn-cancel {
            padding: 5px 10px;
            background: #fff;
            color: #5D9741;
            font-weight: bold;
            border: 1px solid #5D9741;
            width: 70px;
        }

            .card-list li div.edit-card button.btn-save:hover,
            .card-list li div.edit-card button.btn-save:focus,
            .card-list li div.edit-card button.btn-cancel:hover,
            .card-list li div.edit-card button.btn-cancel:focus {
                background: #575757;
                color: #fff;
                border: none;
            }

/* @media only screen  and (max-width:29.938em) {
	.card-list li div.edit-nickname {max-width: 300px;}
	.card-list li div.edit-nickname button.btn-save {margin:0 5px 5px 0;}
} */

/* BUY TICKETS
====================================== */


.ticketOptionsWrpr {
    font-size: 18px;
    color: #636363;
}

#ticketOptions.ui-accordion {
    text-align: left;
    margin-bottom: 15px;
}

    #ticketOptions.ui-accordion .ui-accordion-header {
        font-size: 24px;
        font-weight: bold;
        font-family: 'Open Sans', sans-serif;
        margin-top: 20px;
        padding: 30px 13px 30px 120px;
        margin: 0 0 10px;
        text-align: left;
        position: relative;
    }

#ticketOptions .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    color: #404040;
    background: #fff /*rgba(0, 0, 0, 0.03)*/ url(/cms/images/svg/bus.svg) no-repeat 10px 50% / 86px auto;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.1);
}

#ticketOptions .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br, .ui-corner-top {
    border: none !important;
    border-radius: 0 !important;
}

#ticketOptions.ui-accordion .ui-accordion-header-active {
}

#ticketOptions.ui-accordion .ui-accordion-header .ui-accordion-header-icon { /*display:none;*/
    background-image: none;
}

#ticketOptions.ui-accordion .ui-accordion-content {
    color: #636363;
    padding: 0;
}

#ticketOptions.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    right: 18px;
    left: auto;
    margin-top: -23px;
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    background: #ec018c;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

#ticketOptions.ui-accordion .ui-accordion-header span {
    font-size: 16px;
    font-weight: normal;
    width: 50px;
    height: 100%;
    position: relative;
    text-indent: 0;
    cursor: pointer;
}

    #ticketOptions.ui-accordion .ui-accordion-header span:after {
        position: absolute;
        content: "\2b";
        top: 50%;
        left: 12px;
        font-family: "icomoon";
        color: #fff;
        margin-top: -8px;
    }

#ticketOptions.ui-accordion .ui-accordion-header-active span {
    cursor: default;
}

    #ticketOptions.ui-accordion .ui-accordion-header-active span:after {
        content: "\2d";
    }

.ticketMsg {
    background: #ebebeb;
    border-top: 1px solid #cfd1d3;
    border-bottom: 1px solid #cfd1d3;
    padding: 24px 0;
    margin: 0;
}

    .ticketMsg span {
        display: block;
        font-size: 20px;
        font-weight: 600;
        text-align: left;
        padding: 0 20px;
    }

.ticketTbl {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    text-align: center;
    color: #232323;
    line-height: 1.2;
}

    .ticketTbl tr {
        border-top: 1px solid #cfd1d3;
        border-bottom: 2px solid #fff;
        display: table;
        width: 100%;
    }

        .ticketTbl tr:last-child {
            border-bottom: none;
        }

    .ticketTbl td.ticketType {
        background: #fff;
        border-bottom: 1px solid #cfd1d3;
        border-right: 1px solid #e1dddf;
        padding: 26px 20px;
        text-align: left;
        font-weight: bold;
    }

    .ticketTbl td.ticketQty {
        background: #fff;
        width: 80px;
        border-bottom: 1px solid #cfd1d3;
        font-size: 29px;
    }

    .ticketTbl td.ticketButton {
        width: 63px;
        border-bottom: 1px solid #cfd1d3;
        color: #fff;
        font-weight: 800;
    }

    .ticketTbl td.ticketQty input {
        border: none;
        text-align: center;
        width: 100%;
        padding: 0 12px;
    }

    .ticketTbl td.ticketButton .btn {
        padding: 25px 12px;
        padding: 28px 17px;
        border: none;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

.tableBottom {
    background: #023864;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
}

    .tableBottom span {
        display: block;
        padding: 25px 20px;
    }

        .tableBottom span:empty {
            padding: 0;
        }

.ticketOptionsWrpr .btn {
    padding: 13px 35px;
}

.ticketOptionsWrpr .btnWrapper {
    margin-bottom: 10px;
}

.ticketOptionsWrpr .btnAlt {
    float: right;
    margin-left: 10px;
}

.buyTickets .buy-btn {
    max-width: 300px;
    width: 100%;
    margin-right: 30px;
}

.buyTickets .btnWide {
    max-width: 300px;
    width: 100%;
}

.btn.buy-btn {
    min-width: 220px;
}

.eventsTheme.buyTickets > .itemList {
    margin-bottom: 50px;
}

/* 16px baseline ( - 767px) */
@media only screen and (max-width:47.938em) {
    .eventsTheme.buyTickets > .itemList {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width:63.938em) {
    .btn.buy-btn {
        max-width: 300px;
        width: 100%;
        display: block;
        margin: 0 auto 10px auto;
        float: none;
    }

    .buyTickets .btnWide {
        float: none;
        display: block;
        margin: 0 auto 30px auto;
    }
}

/* 16px baseline ( - 479px) */
@media only screen and (max-width:29.938em) {
    .ticketOptionsWrpr .btn {
        padding: 7px 10px;
        width: 100%;
        display: block;
    }
}


.eventsTheme.tickets .item > .content {
    display: block;
    padding: 0 0 0 0;
}

.ticketsHdng {
    border: 1px solid #b3b7be;
    margin: 0 0 10px;
    display: table;
    width: 100%;
    -webkit-box-shadow: 2px 2px 4px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow: 2px 2px 4px 0px rgba(50, 50, 50, 0.3);
    box-shadow: 2px 2px 4px 0px rgba(50, 50, 50, 0.3);
}


    .ticketsHdng:before {
        position: absolute;
        content: "";
        right: 30px;
        top: 50%;
        margin-top: -25px;
        font-family: 'icomoon';
        content: "\232a";
        color: #1E3B68;
        font-size: 28px;
        font-weight: bold;
        -wekbit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .ticketsHdng.expandcollapse-heading-expanded:before {
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .ticketsHdng:after {
        display: none
    }

    .ticketsHdng .itemImage {
        margin-left: 0;
        width: 90px;
        /* -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; */
        display: table-cell;
        width: 90px;
        /* border: 1px solid #9e9d9d; */
    }

        .ticketsHdng .itemImage img {
            vertical-align: top;
        }

    .ticketsHdng .content {
        padding-left: 20px;
        padding-right: 80px;
        font-size: 24px;
        font-weight: bold;
        background: #fff;
        display: table-cell;
        vertical-align: middle;
    }

        .ticketsHdng .content span {
            display: inline-block;
            line-height: 1.2;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
        }

            .ticketsHdng .content span.small {
                font-size: 16px;
                display: block;
            }


/* 16px baseline ( - 767px) */
@media only screen and (max-width:47.938em) {
    .ticketsHdng {
        margin: 0;
        border-bottom: 1px solid #cfd1d3;
    }

        .ticketsHdng:before {
            right: 10px;
        }

        .ticketsHdng .itemImage {
            margin-right: 10px;
            width: 60px;
            width: 60px;
        }

        .ticketsHdng .content {
            padding-right: 50px;
        }

            .ticketsHdng .content span {
                font-size: 18px;
            }

                .ticketsHdng .content span.small {
                    font-size: 14px;
                }
}



.eventsTheme.tickets .item .itemList {
    margin: 0 0 10px;
}

    .eventsTheme.tickets .item .itemList li {
        border-bottom: 1px solid #bbbcbc;
        text-align: left;
        margin: 0;
        display: table;
        table-layout: fixed;
        width: 100%;
        position: relative;
    }

        .eventsTheme.tickets .item .itemList li:first-child {
            border-top: 1px solid #bbbcbc;
        }

        .eventsTheme.tickets .item .itemList li:last-child {
            margin: 0;
        }

        .eventsTheme.tickets .item .itemList li .ticketType {
            display: table-cell;
            width: 100%;
            text-align: left;
            background: #EAECED;
            padding: 12px 20px 12px 40px;
            vertical-align: middle;
        }

.ticketType a.eventLink,
.ticketType a.eventLink:link,
.ticketType a.eventLink:visited {
    color: #000;
    font-weight: bold;
}

.eventsTheme.tickets .item .itemList li .ticketQty {
    display: table-cell;
    width: 190px;
    text-align: center;
    font-size: 22px;
    background: #fff;
    vertical-align: middle;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.eventsTheme.tickets .item .itemList li:first-child .ticketType {
    -webkit-box-shadow: inset 0px 4px 4px -4px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: inset 0px 4px 4px -4px rgba(50, 50, 50, 0.2);
    box-shadow: inset 0px 4px 4px -4px rgba(50, 50, 50, 0.2);
}

.eventsTheme.tickets .item .itemList li:first-child .ticketQty {
    -webkit-box-shadow: inset 0px 4px 4px -4px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: inset 0px 4px 4px -4px rgba(50, 50, 50, 0.2);
    box-shadow: inset 0px 4px 4px -4px rgba(50, 50, 50, 0.2);
}

.ticketQty a {
    text-decoration: none;
    background: #2E760B;
    width: 27px;
    height: 27px;
    display: inline-block;
    text-align: center;
    line-height: 27px;
    color: #fff;
    font-size: 30px;
    position: relative;
    top: 2px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

    .ticketQty a:first-child {
        background: #696a72;
        line-height: .8;
        top: 1px;
    }

    .ticketQty a:last-child {
        background: #16498e;
    }

.ticketQty span {
    display: inline-block;
    width: 40px;
    text-align: center;
    font-weight: bold;
}

.eventsTheme.tickets .item .itemList li .buy-ticket-call-us {
    float: right;
    font-size: small
}

.ticketsHdng.expandcollapse-heading-expanded + .slideDown .itemList {
    margin: 0;
}

@media only screen and (max-width:47.938em) {
    .eventsTheme.tickets .item .itemList li .ticketType {
        font-size: 14px;
        padding: 8px 20px 8px 3.5%;
    }

    .eventsTheme.tickets .item .itemList li .ticketQty {
        width: 120px;
    }

    .ticketQty span {
        width: 30px;
    }
}

.tickets-bottom {
    padding: 30px 0px;
}

@media only screen and (min-width:64em) and (max-width:68em) {
    .tickets-bottom {
        padding: 30px 10px;
    }
}

.eventsTheme.tickets.myTickets .item .itemList {
    padding: 0 10px;
}

.eventsTheme.tickets.myTickets .location {
    font-size: 13px;
    color: #6c6c6c;
    font-style: italic;
    font-weight: 600;
}

.eventsTheme.tickets.myTickets .inactiveTickets .ticketsHdng .itemImage {
    background: #cbc2c7;
    width: 95px;
    margin-left: 0;
    position: relative;
}

.eventsTheme.tickets.myTickets .activeTickets .itemList li {
    table-layout: auto;
}

    .eventsTheme.tickets.myTickets .activeTickets .itemList li .ticketType {
        width: auto;
    }

    .eventsTheme.tickets.myTickets .activeTickets .itemList li .itemImage {
        float: none;
        display: table-cell;
        width: 180px;
        background: #ec018c;
        margin: 0;
        padding-left: 25px;
        vertical-align: middle;
    }

        .eventsTheme.tickets.myTickets .activeTickets .itemList li .itemImage a {
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            display: inline-block;
            width: 100%;
            position: relative;
            padding: 7px 0;
            overflow-x: hidden;
        }

            .eventsTheme.tickets.myTickets .activeTickets .itemList li .itemImage a:hover,
            .eventsTheme.tickets.myTickets .activeTickets .itemList li .itemImage a:focus {
                text-decoration: none;
                color: #000;
            }

            .eventsTheme.tickets.myTickets .activeTickets .itemList li .itemImage a span {
                font-weight: normal;
                padding: 0;
            }

            .eventsTheme.tickets.myTickets .activeTickets .itemList li .itemImage a:after {
                position: absolute;
                content: "";
                width: 54px;
                height: 54px;
                right: -27px;
                top: 0;
                background: #f0f7fc;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
            }

.eventsTheme.tickets.myTickets .inactiveTickets .ticketsHdng .itemImage:after {
    position: absolute;
    content: "+";
    top: 0;
    left: 23px;
    font-size: 94px;
    font-weight: 300;
    color: #4f4f4f;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


.eventsTheme.tickets.myTickets .item.inactiveTickets .itemList {
    padding: 0 55px 0 10px;
}

    .eventsTheme.tickets.myTickets .item.inactiveTickets .itemList li .ticketType {
        padding-right: 52px;
    }

.eventsTheme.tickets.myTickets .inactiveTickets .itemList li .itemImage {
    background-color: #fff;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 84px;
    margin-top: -42px;
    position: absolute;
    right: -42px;
    top: 50%;
    width: 84px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

    .eventsTheme.tickets.myTickets .inactiveTickets .itemList li .itemImage.activateNow {
        background-image: url("/cms/images/svg/ActivateNow_wBG.svg")
    }

    .eventsTheme.tickets.myTickets .inactiveTickets .itemList li .itemImage.active {
        background-image: url("/cms/images/svg/Active_wBG.svg")
    }


.eventsTheme.tickets.myTickets .expiredTickets .ticketsHdng .content {
    background: #acacac;
}

    .eventsTheme.tickets.myTickets .expiredTickets .ticketsHdng .content span {
        color: #fff;
    }

.eventsTheme.tickets.myTickets .item.expiredTickets .itemList li .ticketType {
    background: #e7e7e7;
    color: #232323;
}

    .eventsTheme.tickets.myTickets .item.expiredTickets .itemList li .ticketType .eventLink {
        color: #777;
    }


.eventsTheme.tickets.myTickets .inactiveTickets .ticketsHdng .itemImage

-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.eventsTheme.tickets .item .itemList li .ticketType a.eventLink,
.eventsTheme.tickets .item .itemList li .ticketType a.eventLink:link,
.eventsTheme.tickets .item .itemList li .ticketType a.eventLink:visited {
    color: #232323;
    font-weight: 600;
    text-decoration: none;
}

.eventsTheme.tickets .item .itemList li .ticketQty a:hover,
.eventsTheme.tickets .item .itemList li .ticketQty a:focus {
    text-decoration: none;
}

.eventsTheme.checkout .item {
    font-weight: normal;
    text-align: left;
    margin: 0 0 2px;
    padding: 10px 0;
}

    .eventsTheme.checkout .item .grid_12:after {
        position: absolute;
        content: "";
        height: 1px;
        left: 0px;
        bottom: -10px;
        background: #cfd1d3;
        width: 100%;
    }

    .eventsTheme.checkout .item .eventLink {
        font-weight: bold;
        color: #041844;
    }

.eventsTheme.checkout .itemList {
    margin-bottom: 0;
}

.eventsTheme.checkout .checkoutTotal {
    font-weight: normal;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #b4b8bf;
}

    .eventsTheme.checkout .checkoutTotal .totalRow {
        font-size: 20px;
        font-weight: 600;
        margin: 20px 0 0;
    }

.eventsTheme.checkout .checkoutBottom .manage-payment {
    margin-bottom: 2rem;
    border-bottom: 1px solid #b4b8bf;
    padding: 1rem 0;
}

.eventsTheme.tickets.reserveTickets .ticketType .inner {
    margin: 0 0 20px;
}

.eventsTheme.tickets.reserveTickets .ticketType p {
    margin: 0 0 10px;
}

.checkoutTop img {
    max-width: 80px;
    width: 100%;
}

.checkoutBottom select {
    max-width: 300px;
}

@media only screen and (max-width:47.938em) {
    .eventsTheme.checkout .item .eventLink {
        font-size: 18px;
    }

    .eventsTheme.checkout .item {
        font-size: 16px;
    }

    .eventsTheme.checkout .checkoutTotal .totalRow {
        font-size: 18px;
    }

    .eventsTheme.checkout .checkoutTotal {
        font-size: 16px;
    }
}

@media only screen and (max-width:63.938em) {
    .checkoutBottom .grid_6 {
        width: 100%;
        padding: 0;
    }

    .checkoutBottom .push_6 {
        left: 0;
    }
}

/* 16px baseline ( - 479px) */
@media only screen and (max-width:29.938em) {
    .eventsTheme.checkout .itemList {
        padding: 20px 10px 0;
    }

    .eventsTheme.checkout .checkoutTotal {
        padding: 0 10px 20px;
    }

    .eventsTheme.checkout .item img {
        width: 100px;
    }

    .eventsTheme.checkout .right {
        text-align: left;
    }

    .eventsTheme.tickets.myTickets .activeTickets .itemList li .itemImage {
        width: 100px;
        padding-left: 10px;
    }

        .eventsTheme.tickets.myTickets .activeTickets .itemList li .itemImage a {
            font-size: 17px;
            padding: 10px 0;
        }

    .eventsTheme.tickets.myTickets .inactiveTickets .ticketsHdng .itemImage {
        width: 75px;
    }

        .eventsTheme.tickets.myTickets .inactiveTickets .ticketsHdng .itemImage:after {
            left: 13px;
        }
}


.shoppingCart .aside img {
    max-width: none;
}

.cartHistory .expand-collapse-content {
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.2);
}

    .cartHistory .expand-collapse-content .item {
        border-top: 1px solid #afb4c0;
        background: #eaeced;
        padding: 17px 40px;
    }

        .cartHistory .expand-collapse-content .item b,
        .cartHistory .expand-collapse-content .item strong {
            margin-right: 10px;
        }

@media only screen and (max-width:47.938em) {
    .cartHistory .expand-collapse-content .item {
        padding: 12px 20px;
    }
}

.savedCards {
    background: #fff;
    padding: 20px;
    border-top: 1px solid #161616;
    border-bottom: 1px solid #161616;
    margin: 0 0 20px;
}

.creditCardsTbl {
}

    .creditCardsTbl td {
        padding: 7px 30px 7px 0;
        vertical-align: middle;
        font-weight: bold;
    }

        .creditCardsTbl td:nth-child(2) {
            padding-right: 90px;
        }

        .creditCardsTbl td:last-child {
            padding-right: 0;
        }

    .creditCardsTbl input {
        margin-right: 8px;
    }

    .creditCardsTbl .cardName {
        font-size: 19.5px;
        font-weight: bold;
    }

    .creditCardsTbl .cardNumber {
        font-size: 18px;
        font-weight: normal;
    }

    .creditCardsTbl a {
        font-size: 16px;
        color: #000;
    }

    .creditCardsTbl span {
        font-weight: normal;
    }

/* 16px baseline (768px - 959px) */
@media only screen and (min-width:48em) and (max-width:59.938em) {
    .creditCardsTbl td:nth-child(2) {
        padding-right: 50px;
    }
}
/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {
    .creditCardsTbl td {
        padding: 7px 20px 7px 0;
    }

        .creditCardsTbl td:nth-child(2) {
            padding-right: 30px;
        }

    .creditCardsTbl .cardName {
        font-size: 18px;
    }

    .creditCardsTbl .cardNumber {
        font-size: 16px;
    }
}
/* 16px baseline ( - 479px) */
@media only screen and (max-width:29.938em) {
    .creditCardsTbl {
        display: block;
        width: 100%;
    }

        .creditCardsTbl tbody, .creditCardsTbl tr {
            display: block;
            width: 100%;
        }

        .creditCardsTbl tr {
            margin: 0 0 10px;
        }

        .creditCardsTbl td {
            display: block;
            width: 100%;
            padding: 5px 0;
        }
}

.date-picker-filed::-ms-clear {
    display: none;
}

.schedule .grid_6 {
    position: relative;
}

.schedule .ui-datepicker-trigger {
    position: absolute !important;
    margin-top: -5px !important;
    right: 0 !important;
    cursor: pointer;
    margin-right: 10px !important;
}

.appPage .schedule .ui-datepicker-trigger {
    margin-top: -13px !important;
}

.genericRightRailModule {
    margin: 0 0 20px;
}

.faqRail h4.hdgFaq {
    margin: 0 0 10px 0;
    padding: 8px 10px 8px 15px;
    font-size: 24px;
    font-weight: normal;
    font-style: normal !important;
    font-family: 'Lato', sans-serif;
    color: #fff;
    background: #333;
    text-transform: uppercase;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.newsSummary .modHead h3.hdng {
    margin: 0 0 10px 0;
    padding: 8px 10px 8px 15px;
    font-size: 24px;
    font-weight: normal;
    font-style: normal !important;
    font-family: 'Lato', sans-serif;
    color: #fff;
    background: #333;
    text-transform: uppercase;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/* 16px baseline (768px - 1199px) */
@media only screen and (min-width:48em) and (max-width:74.938em) {
    .faqRail h4.hdgFaq {
        font-size: 22px;
    }

    .newsSummary .modHead h3.hdng {
        font-size: 22px;
    }
}

.datepicker-control {
    width: 100% !important;
    padding-right: 40px !important;
}

.ui-datepicker-trigger {
    position: absolute;
    right: 25px;
    top: 45px;
}

@media only screen and (min-width:48em) {
    .refundForm {
        width: 100%;
        max-width: 630px;
    }
}

@media only screen and (min-width:30em) {
    .refundForm .btnWrapper {
        margin-left: 10px;
    }
}

.confirm-wrapper .title {
    font-size: 20px;
    margin: 0 0 .5em;
}

.confirmNote .btnWrapper {
    margin-bottom: 5px;
    width: 100%;
    max-width: 300px;
}

.confirmNote .print {
    width: 100%;
    max-width: 300px;
}

/* =================================================================
                       ADMIN buttons fix , module with no height
===================================================================*/

.modulePanel a, .modulePanel a:link, .modulePanel a:visited {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.overlayModulesWrprBrdr div.modulePanel {
    margin-right: 7px;
}

.portlet-content-overlay {
    min-height: 40px;
}


/* 16px baseline ( - 479px) */
@media only screen and (max-width:29.938em) {
    .btnWrapper.registerWrpr {
        float: none;
        display: block;
    }

    .ticketOptionsWrpr .btnWrapper {
        display: block;
    }

    .ticketOptionsWrpr .btnAlt {
        float: none;
        margin-left: 0;
    }

    .ticketOptionsWrpr .btn {
        padding: 7px 10px;
    }

    .eventsTheme.checkout .item .grid_12:after {
        display: none;
    }

    .ui-datepicker-trigger {
        right: 15px;
    }
}

.confirm-wrapper .accountBlocks {
    min-height: 0 !important;
}

    .confirm-wrapper .accountBlocks .inner {
        margin: 0;
    }

.confirmBlock .shoppingCart {
    background: #eaeced;
    padding: 12px 15px 0;
}

.confirmBlock .cartItemDetails {
    display: table;
    width: 100%
}

    .confirmBlock .cartItemDetails h2.title {
        font-weight: bold;
        text-transform: none;
    }

        .confirmBlock .cartItemDetails h2.title span { /* color:#505253; */
            font-size: 16px;
            font-weight: 500;
        }

.confirmBlock .shoppingCart .media {
    padding-right: 10px;
}

    .confirmBlock .shoppingCart .media img {
    }

@media only screen and (max-width:47.938em) {
    .confirmBlock .shoppingCart {
        padding: 15px 20px 0;
    }

    .confirmBlock .cartItemDetails h2.title {
        font-size: 20px;
    }

    .confirmBlock .shoppingCart .media {
        width: 70px !important;
        height: 70px !important;
        padding-right: 10px;
    }
}

/* 16px baseline ( - 479px) */
@media only screen and (max-width:29.938em) {
    .confirmBlock .shoppingCart {
        padding: 15px 20px 10px;
    }

        .confirmBlock .shoppingCart .media {
            display: block;
        }

    .confirmBlock .item .contentExtra {
        display: block;
        padding: 0;
    }

    .confirmBlock .item .itemQty .center {
        text-align: left;
    }

    .confirmBlock .item .itemTotal p {
        display: inline-block;
    }
}

.NB {
    margin: 20px 0 0;
}

.longEmail {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.service-alerts h2.groupHdng {
    margin: 10px 0 10px;
}

.service-alert-item h4 {
    font-weight: bold;
}

.service-alert-item p {
    margin: 0 0 .25em;
}

.service-alert-item {
    border-bottom: 1px solid #ccc;
    padding-bottom: .5em;
    margin-bottom: .75em;
}

    .service-alert-item:last-child {
        border-bottom: none;
    }

/* Radio group */
.segmented {
    display: flex;
    flex-flow: row wrap;
    box-sizing: border-box;
    text-align: center;
}

    .segmented label {
        display: block;
        flex: 1;
        box-sizing: border-box;
        border: 1px solid #ec018c;
        border-right: none;
        color: #ec018c;
        margin: 0;
        padding: .4em;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
    }

        .segmented label.checked {
            background: #ec018c;
            color: #fff;
        }

    .segmented.inverted label {
        border-color: #fff;
        color: #fff;
        background: none;
    }

    .segmented span {
        display: inherit;
    }

    .segmented input + label:hover {
        background: #ec018c;
        color: #fff;
    }

    .segmented input[checked] + label {
        background: #ec018c;
        color: #fff;
    }

    .segmented span label:first-of-type {
        border-radius: .4em 0 0 .4em;
        border-right: 0;
    }

    .segmented label:last-child {
        border-radius: 0 .4em .4em 0;
        border-right: 1px solid;
    }

    .segmented input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        margin: 0;
        position: absolute;
    }


.adminFix .background-image {
    position: static;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

    .adminFix .background-image:after {
        display: none;
    }

    .adminFix .background-image .img-overlay:after {
        display: none;
    }


.schedule .table-wrapper {
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

.schedule h2 {
    background: #1e3b68;
    padding: 13px 25px;
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}

.schedule-table {
    width: 100%;
    display: table;
    border-collapse: collapse;
    margin-bottom: 0;
    background: #fff;
    text-align: left;
}

    .schedule-table th {
        text-align: center;
        padding: 6px 15px;
        font-size: 16px !important;
        border: 1px solid #fff;
        border-bottom: 2px solid #26426d;
        font-family: 'Roboto Condensed', sans-serif;
    }

    .schedule-table td {
        padding: 6px 15px;
        width: 80px;
        vertical-align: middle;
        border-bottom: 1px solid #d1d1d1;
        white-space: nowrap;
        text-align: center;
    }

        .schedule-table th:nth-child(2n),
        .schedule-table td:nth-child(2n) {
            background: #f5f5f5;
        }

.cancel-text {
    margin: 0;
    font-weight: 900;
}

.cancelled, .schedule-table .cancelled td:nth-child(2n) {
    background-color: #A3A2A0;
    color: #000 !important;
}

    .cancelled .ng-binding {
        text-decoration: line-through;
    }

    .cancelled .train-num {
        text-decoration: none;
    }


.mi {
    position: relative;
}

@media only screen and (max-width:47.938em) {
    .mi {
        margin: 0 25px;
    }
}

.schedule .mi button {
    position: absolute;
    top: 55%;
    border-style: none;
    z-index: 1;
    color: #fff;
    width: 35px;
    height: 35px;
    opacity: 0.5;
    background: transparent;
    display: none;
}

    .schedule .mi button:hover,
    .schedule .mi button:focus {
        opacity: 1;
    }

.schedule .mi .left-button {
    left: -35px;
}

    .schedule .mi .left-button:before {
        content: "";
        width: 15px;
        height: 15px;
        border-left: 3px solid #1e3b68;
        border-bottom: 3px solid #1e3b68;
        display: inline-block;
        transform: rotate(45deg);
        margin-left: 6px;
        margin-top: 4px;
    }

.schedule .mi .right-button {
    right: -35px;
}

    .schedule .mi .right-button:before {
        content: "";
        width: 15px;
        height: 15px;
        border-right: 3px solid #1e3b68;
        border-bottom: 3px solid #1e3b68;
        display: inline-block;
        transform: rotate(-45deg);
        margin-left: -6px;
        margin-top: 4px;
    }

.schedule .mi button.show {
    display: block;
}

.identification .card {
    margin: 20px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ABB0B8;
    border-radius: 12px;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 6px 0 rgba(0,0,0,0.2);
}

    .identification .card .photo {
        background: #72a943;
        padding: 20px;
    }

        .identification .card .photo img {
            border-radius: 60px 0 60px 0;
            max-height: 135px !important;
        }

    .identification .card .text {
        padding: 20px;
    }

    .identification .card .name {
        color: #041844;
        font-size: 22px;
        font-weight: bold;
    }

    .identification .card .date {
        color: #041844;
        font-size: 16px;
        font-weight: bold;
    }

    .identification .card hr {
        margin: 1.5rem 0 1rem 0;
    }

    .identification .card .type {
        color: #16498e;
        font-size: 30px;
        font-weight: bold;
    }

    .identification .card .number {
        color: #04194D;
        font-size: 13px;
        margin: 0 0 60px 0;
    }

        .identification .card .number span {
            font-weight: bold;
        }

.radio-table-wrapper td,
.radio-table td {
    padding-right: 20px;
    white-space: nowrap;
    display: inline-block;
}

.radio-table-wrapper label,
.radio-table label {
    display: inline-block !important;
    margin-left: 4px !important;
}

@media only screen and (max-width:29.99em) {
    .radio-table-wrapper td,
    .radio-table td {
        display: block;
    }
}

@media only screen and (min-width:30em) {
    .radio-table-wrapper td,
    .radio-table td {
        display: block;
        float: left;
    }
}


.verified {
    margin-top: 2rem;
}

.btn-fix .btn {
    padding: 15px 10px;
    position: relative;
    margin-top: 5px;
}

@media only screen and (min-width:30em) {
    .btn-fix {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        width: 100%;
    }

        .btn-fix > span {
            width: 33.333%;
            padding: 0 10px;
            margin-top: 5px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
        }

            .btn-fix > span a {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -webkit-flex-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -webkit-justify-content: center;
                -ms-flex-pack: center;
                justify-content: center;
            }
}

.splitCard-table {
    width: 100%;
    margin: 0 0 1rem 0;
}

    .splitCard-table tr {
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 10px;
    }

    .splitCard-table img {
        width: 50px;
        margin: 0 0 0 10px;
    }

    .splitCard-table td:last-child input {
        margin: 0 !important;
    }

    .splitCard-table .splitCard-name {
        font-weight: bold;
    }

    .splitCard-table .splitCard-digits {
        white-space: nowrap;
    }

@media only screen and (min-width:60em) {
    .splitCard-table tr {
        padding: 0px;
    }

    .splitCard-table td {
        vertical-align: middle;
        padding: 5px 10px 5px 0;
        height: 60px;
    }

        .splitCard-table td:nth-child(2) {
            text-align: right;
        }

        .splitCard-table td:last-child {
            width: 110px;
        }
}

.formee .splitCard-table label {
    font-weight: normal;
    font-size: 16px;
    margin: 0;
}


.add-new-card {
    margin: 5px 0;
}

.verify-email-disclaimer {
    font-style: italic;
    font-size: 18px;
    color: red;
    font-weight: bold;
}

    .verify-email-disclaimer.centered {
        width: 100%;
        margin: 28px;
        text-align: center;
    }

        .verify-email-disclaimer.centered a {
            text-decoration: none;
            font-style: normal;
        }

.disclaimer {
    font-style: italic;
    font-size: 14px;
}

.verify-email-accounthome-disclaimer {
    font-style: italic;
    font-size: 18px;
    color: darkgreen;
    font-weight: bold;
}

    .disclaimer.centered {
        width: 100%;
        margin: 28px;
        text-align: center;
    }

        .disclaimer.centered a {
            text-decoration: none;
            font-weight: bold;
            font-style: normal;
        }

.appPage {
    margin: 15px;
    line-height: 1.7;
}

    .appPage .form-wrpr {
        margin: 0;
    }

    .appPage .contact-form .grid_6:first-child {
        padding-right: 0;
    }

    .appPage .contact-form .grid_6:last-child {
        padding-left: 0;
    }

.send-table {
    width: 100%;
    margin: 0 0 20px 0;
}

.saveCheckboxWrpr {
    position: relative;
    padding-left: 20px;
    margin-top: 15px;
}

    .saveCheckboxWrpr legend {
        float: left;
    }

    .saveCheckboxWrpr input[type="checkbox"] {
        position: absolute;
        left: 0;
        top: 10px;
    }

/* VRE */

.boxes {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
    justify-content: space-around; /* horizontal */
}

    .boxes > div {
        padding: 20px;
        border: 1px solid #D1D1D1;
        background-color: #FFFFFF;
        box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1);
        max-width: 280px;
        margin: 0 10px 1rem 10px;
        flex-direction: column;
        display: flex;
        -ms-flex: 1;
        -webkit-flex: 1;
        flex: 1;
    }

    .boxes .btn {
        width: 100%;
        margin-top: auto;
        background: #B30136;
    }

        .boxes .btn:hover,
        .boxes .btn:focus {
            background: #575757;
        }

.main-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 2rem auto;
    background: #091936;
}

    .main-top .main-right {
        color: #fff;
        flex-direction: column;
    }

        .main-top .main-right .block {
            flex-direction: column;
            display: flex;
            height: 100%;
        }

        .main-top .main-right .hero-text {
            padding: 40px 60px;
        }

            .main-top .main-right .hero-text h1 {
                font-size: 24px;
            }

            .main-top .main-right .hero-text a {
                color: #fff;
            }

        .main-top .main-right .action-buttons {
            margin-top: auto;
        }

            .main-top .main-right .action-buttons a {
                width: 100%;
                display: block;
                padding: 15px 60px;
                background: #216dc6;
                text-decoration: none;
                color: #fff;
                font-size: 20px;
                font-weight: bold;
                text-transform: uppercase;
            }

                .main-top .main-right .action-buttons a:nth-child(1) {
                    background: #216dc6;
                }

                .main-top .main-right .action-buttons a:nth-child(2) {
                    background: #16498e;
                }


                .main-top .main-right .action-buttons a:nth-child(3) {
                    background: #092b67;
                }

                .main-top .main-right .action-buttons a:hover,
                .main-top .main-right .action-buttons a:focus {
                    background: #575757;
                }

            .main-top .main-right .action-buttons svg {
                width: 50px;
                height: 50px;
                fill: #fff;
                margin-right: 10px;
                vertical-align: middle;
            }

@media only screen and (min-width:48em) {

    .main-top {
        flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
    }

        .main-top .main-left .block {
            height: 100%;
        }

        .main-top .main-left img {
            object-fit: cover;
            height: 100% !important;
        }

        .main-top .main-right {
            max-width: 530px;
            min-width: 400px;
        }
}

/* START Mega Menu */

ul.megamenu-menu > li.megamenu-active-menu-item:hover > a,
ul.megamenu-menu > li.megamenu-active-menu-item > a, ul.megamenu-menu > li.megamenu-active-menu-item > a:hover, ul.megamenu-menu > li:hover > a, ul.megamenu-menu > li > a:hover {
    background: #fff
}

*, :after, :before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

div.megamenu-wrapper {
    position: relative;
    height: 50px;
    width: 980px;
    background: #fff;
    right: 0;
    float: right;
}

@media (min-width:1000px) and (max-width:1030px) {
    div.megamenu-wrapper {
    }
}
/*.navbar-collapse.in {
overflow-y:unset !important
}*/
@media (min-width:1230px) {
    div.megamenu-wrapper {
    }
}

@media (min-width:920px) and (max-width:1229px) {
    div.megamenu-wrapper {
    }
}

div.megamenu-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none
}

div.megamenu-wrapper > ul {
    position: relative display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
}

ul.megamenu-menu > li {
    float: left;
    font-size: 18px
}

    ul.megamenu-menu > li > a {
        display: block;
        line-height: 50px;
        padding: 0 25px 0 15px;
        color: #333;
        text-decoration: none;
        font-weight: 400
    }

        ul.megamenu-menu > li > a:only-child {
            padding: 0 15px
        }

            ul.megamenu-menu > li:hover > a:only-child:after, ul.megamenu-menu > li > a:only-child:after {
                content: ''
            }

        ul.megamenu-menu > li > a .fa {
            position: relative;
            width: 24px
        }

        ul.megamenu-menu > li > a > img {
            max-width: 16px;
            display: block
        }

    ul.megamenu-menu > li.megamenu-menu-social > a {
        width: 30px;
        padding: 0 8px;
        font-size: 18px
    }

        ul.megamenu-menu > li.megamenu-menu-social > a > span {
            display: none
        }

    ul.megamenu-menu.megamenu-menu-dividers > li.megamenu-menu-social.megamenu-menu-search > a, ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search > a {
        max-height: 50px;
        width: 30px;
        transition: all .5s ease;
        transition-delay: .3s
    }

        ul.megamenu-menu.megamenu-menu-dividers > li.megamenu-menu-social.megamenu-menu-search > a:hover, ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search > a:hover {
            width: 120px
        }

            ul.megamenu-menu.megamenu-menu-dividers > li.megamenu-menu-social.megamenu-menu-search > a:hover > span input, ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search > a:hover > span input {
                transform: scaleY(1);
                max-width: 80px
            }

        ul.megamenu-menu.megamenu-menu-dividers > li.megamenu-menu-social.megamenu-menu-search > a span, ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search > a span {
            display: inline
        }

        ul.megamenu-menu.megamenu-menu-dividers > li.megamenu-menu-social.megamenu-menu-search > a > span input, ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search > a > span input {
            position: absolute;
            width: 80px;
            height: 50px;
            line-height: 50px;
            margin: 0;
            background: 0 0;
            color: #efefef;
            border: none;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            max-width: 0;
            transform: scaleY(0);
            transition: all .5s ease;
            transition-delay: .3s
        }

            ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search > a > span input:focus {
                outline: 0;
                color: #efefef
            }

            ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search > a > span input::-webkit-input-placeholder {
                color: #efefef
            }

ul.megamenu-menu.megamenu-menu-dividers > li.megamenu-menu-social > a, ul.megamenu-menu.megamenu-menu-dividers > li > a {
    border-left: 1px solid #111;
    border-right: 1px solid #666
}

ul.megamenu-menu.megamenu-menu-dividers > li.megamenu-menu-social:last-child > a, ul.megamenu-menu.megamenu-menu-dividers > li:first-child > a {
    border-left: none
}

ul.megamenu-menu.megamenu-menu-dividers > li:hover > a, ul.megamenu-menu.megamenu-menu-dividers > li > a:hover {
    border-right: 1px solid #333
}

ul.megamenu-menu.megamenu-menu-dividers > li.megamenu-active-menu-item > a {
    border-right: 1px solid #17a47d
}

ul.megamenu-menu > li > ul, ul.megamenu-menu > li > ul > li > ul, ul.megamenu-menu > li > ul > li > ul > li > ul {
    position: absolute;
    -webkit-box-shadow: 0 8px 24px -5px #ccc;
    -moz-box-shadow: 0 8px 24px -5px #ccc;
    box-shadow: 0 8px 24px -5px #ccc;
    border-top: 4px solid #19ad86
}

    ul.megamenu-menu > li > ul > li, ul.megamenu-menu > li > ul > li > ul > li {
        position: relative
    }

        ul.megamenu-menu > li > ul > li > a, ul.megamenu-menu > li > ul > li > ul > li > a, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a {
            display: block;
            width: 170px;
            line-height: 40px;
            padding: 0 35px 0 25px;
            background: #fff;
            color: #666;
            text-decoration: none;
            font-size: 14px
        }

            ul.megamenu-menu > li > ul > li:hover > a, ul.megamenu-menu > li > ul > li > a:hover, ul.megamenu-menu > li > ul > li > ul > li:hover > a, ul.megamenu-menu > li > ul > li > ul > li > a:hover, ul.megamenu-menu > li > ul > li > ul > li > ul > li:hover > a, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a:hover {
                background: #efefef
            }

            ul.megamenu-menu > li > ul > li > a:only-child:after, ul.megamenu-menu > li > ul > li > ul > li > a:only-child:after, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a:only-child:after {
                content: ""
            }

            ul.megamenu-menu > li > ul > li > a .fa, ul.megamenu-menu > li > ul > li > ul > li > a .fa, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a .fa {
                position: relative;
                width: 24px
            }

ul.megamenu-menu > li.megamenu-menu-right > ul {
    right: 0
}

ul.megamenu-menu > li > ul > li > ul, ul.megamenu-menu > li > ul > li > ul > li > ul {
    left: 170px;
    top: -4px;
    z-index: 100
}

    ul.megamenu-menu > li > ul > li.megamenu-open-to-left > ul, ul.megamenu-menu > li > ul > li > ul > li.megamenu-open-to-left > ul {
        left: auto;
        right: 170px
    }

ul.megamenu-menu > li.megamenu-menu-mega-blog > div, ul.megamenu-menu > li.megamenu-menu-mega-shop > div, ul.megamenu-menu > li.megamenu-menu-mega > div {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50px;
    right: 0;
    background: #fff;
    border-top: 4px solid #005DAA;
    overflow: hidden;
    -webkit-box-shadow: 0 8px 24px -5px #ccc;
    -moz-box-shadow: 0 8px 24px -5px #ccc;
    box-shadow: 0 8px 24px -5px #ccc;
    z-index: 10000;
}

    ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav {
        position: relative;
        width: 200px;
        height: 100%;
        left: 0;
        top: 0;
        background: #efefef
    }

        ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li {
            font-size: 14px
        }

            ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > a {
                display: block;
                line-height: 40px;
                padding: 0 15px;
                background: #efefef;
                color: #666;
                text-decoration: none
            }

            ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li.megamenu-active-menu-item > a {
                background: #e6e6e6
            }

            ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > div {
                position: absolute;
                width: 780px;
                height: auto;
                min-height: 100%;
                left: 200px;
                top: 0;
                background: #fff
            }

            ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li:hover > a {
                background: #ddd
            }

ul.megamenu-menu > li.megamenu-menu-mega-shop > div {
    text-align: center;
    z-index: 999999
}

    ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul {
        width: 100%;
        background: #efefef;
        margin: 0 auto;
        padding: 0;
        border-bottom: 1px solid #ddd;
        font-size: 0;
        z-index: 100
    }

        ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li {
            display: inline-block;
            margin: 0
        }

            ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a {
                padding: 20px 15px;
                text-transform: uppercase;
                font-weight: 700;
                font-size: 14px;
                font-stretch: expanded;
                color: #666;
                position: relative;
                text-decoration: none;
                display: inline-block
            }

                ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li.megamenu-active-menu-item > a, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li:hover > a, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:hover {
                    text-decoration: none
                }

            ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div {
                position: absolute;
                width: 100%;
                left: 0;
                top: auto;
                margin-top: 1px;
                text-align: left;
                background: #fff;
                z-index: -1
            }

div.megamenu-grid, div.megamenu-grid-lined {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0 megamenu-grid-lined
}

@media (min-width:768px) {
    div.megamenu-grid > div.megamenu-row {
        position: relative;
        width: 100%;
        height: auto
    }
}

div.megamenu-grid > div.megamenu-row div.megamenu-row [class^=megamenu-col] {
    margin-top: 16px
}

div.megamenu-grid > div.megamenu-row div.megamenu-row:first-of-type [class^=megamenu-col] {
    margin-top: 0
}

div.megamenu-grid.megamenu-grid-lined > div.megamenu-row:after {
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: -webkit-linear-gradient(left, rgba(204,204,204,0) 0, rgba(204,204,204,.48) 24%, rgba(204,204,204,1) 50%, rgba(204,204,204,.42) 79%, rgba(204,204,204,0) 100%)
}

div.megamenu-grid.megamenu-grid-lined > div.megamenu-row:last-child:after {
    height: 0
}

div.megamenu-grid > div.megamenu-row::after {
    content: "";
    display: table;
    clear: both
}

div.megamenu-grid > div.megamenu-row [class^=megamenu-col] {
    position: relative;
    float: left;
    height: auto
}

div.megamenu-grid > div.megamenu-row > [class^=megamenu-col] {
    padding: 16px
}

    div.megamenu-grid > div.megamenu-row > [class^=megamenu-col] [class^=megamenu-col] {
        padding-left: 16px
    }

        div.megamenu-grid > div.megamenu-row > [class^=megamenu-col] [class^=megamenu-col]:first-of-type {
            padding-left: 0
        }

div.megamenu-grid > div.megamenu-row div.megamenu-col-1 {
    width: 8.33%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-2 {
    width: 16.66%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-3 {
    width: 25%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-4 {
    width: 33.33%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-5 {
    width: 41.66%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-6 {
    width: 50%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-7 {
    width: 58.33%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-8 {
    width: 66.66%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-9 {
    width: 75%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-10 {
    width: 83.33%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-11 {
    width: 91.66%
}

div.megamenu-grid > div.megamenu-row div.megamenu-col-12 {
    width: 100%
}

div.megamenu-grid.megamenu-grid-lined > div.megamenu-row > div[class^=megamenu-col]:after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    right: 0;
    background: -webkit-linear-gradient(top, rgba(204,204,204,0) 0, rgba(204,204,204,.48) 24%, rgba(204,204,204,1) 50%, rgba(204,204,204,.42) 79%, rgba(204,204,204,0) 100%)
}

div.megamenu-grid.megamenu-grid-lined > div.megamenu-row > div[class^=megamenu-col]:last-child:after {
    width: 0
}

div.megamenu-grid img {
    position: relative;
    max-width: 100%;
    height: auto;
    display: block
}

h3.megamenu-list-heading {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    margin: 0
}

ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div ul, ul.megamenu-menu > li.megamenu-menu-mega > div ul {
    margin: 10px 0 0
}

    ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div ul > li, ul.megamenu-menu > li.megamenu-menu-mega > div ul li {
        position: relative;
        font-size: 14px;
        line-height: 28px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #ccc
    }

        ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div ul > li > a, ul.megamenu-menu > li.megamenu-menu-mega > div ul li > a {
            text-decoration: none;
            color: #555;
            display: inline-block
        }

            ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div ul > li > a:hover, ul.megamenu-menu > li.megamenu-menu-mega > div ul li > a:hover {
                color: #222;
                text-decoration: underline
            }

        ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div ul > li .fa, ul.megamenu-menu > li.megamenu-menu-mega > div ul li .fa {
            position: relative;
            width: 24px
        }

    ul.megamenu-menu > li.megamenu-menu-mega > div ul.megamenu-list-with-images li {
        height: 50px
    }

        ul.megamenu-menu > li.megamenu-menu-mega > div ul.megamenu-list-with-images li span.megamenu-list-desc {
            font-size: 11px;
            display: block;
            position: absolute;
            top: 16px;
            left: 72px;
            color: #999
        }

div.megamenu-c-inline, span.megamenu-c-category, span.megamenu-c-date, span.megamenu-c-title {
    display: block;
    position: relative
}

ul.megamenu-menu > li.megamenu-menu-mega > div ul li > a > img {
    float: left;
    width: 60px;
    margin-right: 12px
}

span.megamenu-c-category a, span.megamenu-c-date a, span.megamenu-c-title a {
    text-decoration: none
}

span.megamenu-c-title, span.megamenu-c-title a {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 20px;
    margin-top: -5px;
    color: #222
}

    span.megamenu-c-title a:hover {
        color: #444;
        text-decoration: underline
    }

span.megamenu-c-category, span.megamenu-c-category a {
    font-size: 11px;
    margin: 9px 0;
    color: #444
}

span.megamenu-c-date, span.megamenu-c-date a {
    font-size: 11px;
    color: #444
}

    span.megamenu-c-category a:hover, span.megamenu-c-date a:hover {
        color: #19ad86
    }

div.megamenu-c-inline {
    height: 14px;
    margin: 7px 0
}

    div.megamenu-c-inline span.megamenu-c-category, div.megamenu-c-inline span.megamenu-c-date {
        position: absolute;
        display: inline-block
    }

    div.megamenu-c-inline span.megamenu-c-date {
        right: 0
    }

    div.megamenu-c-inline span.megamenu-c-category, div.megamenu-c-inline span.megamenu-c-category a {
        margin: 0
    }

span.megamenu-c-content {
    display: block;
    position: relative;
    top: 7px;
    font-size: 12px;
    line-height: 18px;
    text-align: justify
}

.megamenu-wrapper .visible-xs {
    visibility: hidden;
    position: absolute
}

@media(min-width:768px) {
    div.megamenu-wrapper.megamenu-menu-transparent, div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu > li.megamenu-active-menu-item > a, div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search:hover > a, div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu > li.megamenu-menu-social.megamenu-menu-search > a:hover {
        background: 0 0
    }

        div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu.megamenu-menu-dividers > li > a, div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu > li.megamenu-menu-social > a {
            border: none
        }

            div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu.megamenu-menu-dividers > li:hover > a, div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu.megamenu-menu-dividers > li > a:hover, div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu > li:hover > a, div.megamenu-wrapper.megamenu-menu-transparent > ul.megamenu-menu > li > a:hover {
                background: 0 0;
                color: #e2e2e2
            }

    div.megamenu-wrapper.megamenu-menu-full-width {
        width: 100%
    }

        div.megamenu-wrapper.megamenu-menu-full-width > ul.megamenu-menu {
            width: 980px;
            margin: 0 auto
        }

    ul.megamenu-menu > li > ul, ul.megamenu-menu > li > ul > li > ul, ul.megamenu-menu > li > ul > li > ul > li > ul {
        visibility: hidden;
        opacity: 0
    }

        ul.megamenu-menu > li:hover > ul, ul.megamenu-menu > li > ul > li:hover > ul, ul.megamenu-menu > li > ul > li > ul > li:hover > ul {
            visibility: visible;
            opacity: 1
        }

    ul.megamenu-menu > li.megamenu-menu-mega-blog > div, ul.megamenu-menu > li.megamenu-menu-mega-shop > div, ul.megamenu-menu > li.megamenu-menu-mega > div {
        visibility: hidden;
        opacity: 0
    }

    ul.megamenu-menu > li.megamenu-menu-mega-blog:hover > div, ul.megamenu-menu > li.megamenu-menu-mega-shop:hover > div, ul.megamenu-menu > li.megamenu-menu-mega:hover > div {
        visibility: visible;
        opacity: 1
    }

    ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > div {
        visibility: hidden;
        opacity: 0
    }

    ul.megamenu-menu > li.megamenu-menu-mega-blog:hover > div > ul.megamenu-menu-mega-blog-nav > li.megamenu-active-menu-item > div {
        visibility: visible;
        opacity: 1
    }

    ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li:hover > div {
        visibility: visible;
        opacity: 1;
        z-index: 101
    }

    ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div {
        visibility: hidden;
        opacity: 0
    }

    ul.megamenu-menu > li.megamenu-menu-mega-shop:hover > div > ul > li.megamenu-active-menu-item > div, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li:hover > div {
        visibility: visible;
        opacity: 1
    }

    ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:after, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:before {
        height: 1px;
        position: absolute;
        content: '';
        background-color: #19ad86;
        width: 0
    }

    ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:before {
        top: 10px;
        left: 5%
    }

    ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:after {
        bottom: 10px;
        right: 5%
    }

    .snip1217 .current a, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:hover {
        color: #333
    }

        ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li.megamenu-active-menu-item > a:after, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li.megamenu-active-menu-item > a:before, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li:hover > a:after, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li:hover > a:before, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:hover:after, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:hover:before {
            width: 90%
        }

    ul.megamenu-menu > li > a:after {
        /*font-family:FontAwesome;
content:'\f107';*/
        text-decoration: none;
        position: absolute;
        margin-left: 7px;
        top: 22px;
        content: "";
        width: 7px;
        height: 7px;
        border-right: 1px solid #333;
        border-bottom: 1px solid #333;
        display: inline-block;
        transform: rotate(45deg);
    }

    ul.megamenu-menu > li:hover > a:after {
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg)
    }

    ul.megamenu-menu > li > ul > li > a:after, ul.megamenu-menu > li > ul > li > ul > li > a:after, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a:after {
        font-family: FontAwesome;
        text-decoration: none;
        font-size: 16px;
        padding: 0;
        content: '\f105';
        position: absolute;
        right: 15px
    }

    ul.megamenu-menu > li > ul > li:hover > a:after, ul.megamenu-menu > li > ul > li > ul > li:hover > a:after, ul.megamenu-menu > li > ul > li > ul > li > ul > li:hover > a:after {
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }

    ul.megamenu-menu > li > ul > li.megamenu-open-to-left > a:after, ul.megamenu-menu > li > ul > li > ul > li.megamenu-open-to-left > a:after, ul.megamenu-menu > li > ul > li > ul > li > ul > li.megamenu-open-to-left > a:after {
        content: '\f104';
        right: auto;
        left: 10px
    }

    ul.megamenu-menu > li > ul > li.megamenu-open-to-left:hover > a:after, ul.megamenu-menu > li > ul > li > ul > li.megamenu-open-to-left:hover > a:after, ul.megamenu-menu > li > ul > li > ul > li > ul > li.megamenu-open-to-left:hover > a:after {
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }

    ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li.megamenu-active-menu-item > a:after, ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li:hover > a:after {
        content: "";
        position: absolute;
        right: 0;
        margin-top: 13px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 8px 6px 0;
        border-color: transparent #fff transparent transparent
    }
}

span.megamenu-dropdown-toggle, span.megamenu-dropdown-toggle:after {
    transition: transform .3s ease
}

ul.megamenu-menu > li > a:after, ul.megamenu-menu > li > ul > li > a:after, ul.megamenu-menu > li > ul > li > ul > li > a:after, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a:after {
    transition: all .3s ease
}

ul.megamenu-menu > li > div, ul.megamenu-menu > li > ul {
    transform: translateY(25px);
    transition: all .3s ease
}

ul.megamenu-menu > li:hover > div, ul.megamenu-menu > li:hover > ul {
    transform: translateY(0)
}

ul.megamenu-menu > li > ul > li > ul, ul.megamenu-menu > li > ul > li > ul > li > ul, ul.megamenu-menu > li > ul > li > ul > li > ul > li > ul {
    transform: translateX(25px);
    transition: all .3s ease
}

    ul.megamenu-menu > li > ul > li:hover > ul, ul.megamenu-menu > li > ul > li > ul > li:hover > ul, ul.megamenu-menu > li > ul > li > ul > li > ul > li:hover > ul {
        transform: translateX(0)
    }

    ul.megamenu-menu > li > ul > li.megamenu-open-to-left > ul, ul.megamenu-menu > li > ul > li > ul > li.megamenu-open-to-left > ul, ul.megamenu-menu > li > ul > li > ul > li > ul > li.megamenu-open-to-left > ul {
        transform: translateX(-25px);
        transition: all .3s ease
    }

    ul.megamenu-menu > li > ul > li.megamenu-open-to-left:hover > ul, ul.megamenu-menu > li > ul > li > ul > li.megamenu-open-to-left:hover > ul, ul.megamenu-menu > li > ul > li > ul > li > ul > li.megamenu-open-to-left:hover > ul {
        transform: translateX(0)
    }

ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > div {
    transform: translateY(-50px);
    transition: all .5s ease
}

ul.megamenu-menu > li.megamenu-menu-mega-blog:hover > div > ul.megamenu-menu-mega-blog-nav > li.megamenu-active-menu-item > div, ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li:hover > div {
    transform: translateY(0)
}

ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div {
    transform: translateY(-50px);
    transition: all .5s ease
}

ul.megamenu-menu > li.megamenu-menu-mega-shop:hover > div > ul > li.megamenu-active-menu-item > div, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li:hover > div {
    transform: translateY(0)
}

ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:after, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:before {
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

@media(max-width:767px) {
    div.megamenu-wrapper .hidden-xs {
        visibility: hidden;
        display: none
    }

    @media (max-width:767px) {
        div.megamenu-grid > div.megamenu-row {
            position: relative;
            width: 100%;
            height: auto
        }

        div.megamenu-wrapper {
            position: relative;
            width: 106%;
            left: -3%;
            min-height: 300px;
            z-index: 999999;
            top: 0px;
            padding: 0;
            margin-left: 0;
            overflo: hidden
        }

        .megamenu-wrapper .visible-xs {
            visibility: visible;
            position: absolute;
            right: 0;
            top: 5px
        }

        div.megamenu-wrapper > ul {
            position: absolute;
            top: 50px;
            width: 100%;
            left: 0;
            background-color: #fff;
            z-index: 99999999999999999999999
        }

        ul.megamenu-menu > li, ul.megamenu-menu > li.megamenu-menu-right {
            float: none
        }

            ul.megamenu-menu > li > a {
                padding: 0 65px;
                background: #0032a0;
                color: #FFF
            }

                ul.megamenu-menu > li > a:hover, ul.megamenu-menu > li > a:only-child {
                    padding: 0 65px
                }

                ul.megamenu-menu > li.megamenu-active-menu-item > a:hover, ul.megamenu-menu > li:hover > a, ul.megamenu-menu > li > a:hover {
                    background: #0032a0
                }

            ul.megamenu-menu > li.megamenu-active-menu-item > a {
                background: #fff
            }

            ul.megamenu-menu > li.megamenu-menu-social > a > span {
                display: block
            }

            ul.megamenu-menu > li > ul, ul.megamenu-menu > li > ul > li > ul, ul.megamenu-menu > li > ul > li > ul > li > ul {
                position: relative;
                width: 100%;
                -webkit-box-shadow: none;
                -moz-box-shadow: none;
                box-shadow: none;
                border-top: none
            }

                ul.megamenu-menu > li, ul.megamenu-menu > li > ul > li, ul.megamenu-menu > li > ul > li > ul > li, ul.megamenu-menu > li > ul > li > ul > li > ul > li {
                    position: relative
                }

                    ul.megamenu-menu > li > ul > li > a, ul.megamenu-menu > li > ul > li > ul > li > a, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a {
                        width: 100%;
                        line-height: 50px;
                        padding: 0 80px;
                        background: #d1d1d1
                    }

                        ul.megamenu-menu > li > ul > li:hover > a, ul.megamenu-menu > li > ul > li > a:hover, ul.megamenu-menu > li > ul > li > ul > li:hover > a, ul.megamenu-menu > li > ul > li > ul > li > a:hover, ul.megamenu-menu > li > ul > li > ul > li > ul > li:hover > a, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a:hover {
                            background: #d9d9d9;
                            color: #111
                        }

                    ul.megamenu-menu > li > ul > li > ul, ul.megamenu-menu > li > ul > li > ul > li > ul {
                        left: auto;
                        top: auto;
                        z-index: auto
                    }

                        ul.megamenu-menu > li > ul > li.megamenu-open-to-left > ul, ul.megamenu-menu > li > ul > li > ul > li.megamenu-open-to-left > ul {
                            left: auto;
                            right: auto
                        }

                        ul.megamenu-menu > li > ul > li > ul > li > a {
                            background: #e5e5e5;
                            padding: 0 95px
                        }

                            ul.megamenu-menu > li > ul > li > ul > li:hover > a, ul.megamenu-menu > li > ul > li > ul > li > a:hover {
                                background: #e1e1e1
                            }

                        ul.megamenu-menu > li > ul > li > ul > li > ul > li > a {
                            background: #efefef;
                            padding: 0 110px
                        }

                            ul.megamenu-menu > li > ul > li > ul > li > ul > li:hover > a, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a:hover {
                                background: #fff
                            }

                    ul.megamenu-menu > li.megamenu-menu-social > a {
                        border: none;
                        width: 100%
                    }

                    ul.megamenu-menu > li.megamenu-menu-mega, ul.megamenu-menu > li.megamenu-menu-mega-blog, ul.megamenu-menu > li.megamenu-menu-mega-shop {
                        position: relative
                    }

                        ul.megamenu-menu > li.megamenu-menu-mega-blog > div, ul.megamenu-menu > li.megamenu-menu-mega-shop > div, ul.megamenu-menu > li.megamenu-menu-mega > div {
                            position: relative;
                            top: auto;
                            left: auto;
                            border-top: none;
                            -webkit-box-shadow: none;
                            -moz-box-shadow: none;
                            box-shadow: none;
                        }

                            ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav {
                                width: 100%;
                                height: auto;
                                left: auto;
                                top: auto
                            }

                                ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li {
                                    position: relative
                                }

                                    ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > a {
                                        line-height: 50px;
                                        padding: 0 75px;
                                        background: #d1d1d1;
                                        color: #222
                                    }

                                    ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li.megamenu-active-menu-item > a {
                                        background: #bcbcbc
                                    }

                                    ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > div {
                                        position: relative;
                                        width: 100%;
                                        min-height: auto;
                                        left: auto;
                                        top: auto;
                                        z-index: auto
                                    }

                                    ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li:hover > a {
                                        background: #d9d9d9
                                    }

                        ul.megamenu-menu > li.megamenu-menu-mega-shop > div {
                            position: relative;
                            text-align: left
                        }

                            ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul {
                                position: relative;
                                border: none;
                                font-size: 14px;
                                margin-bottom: -1px
                            }

                                ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li {
                                    position: relative;
                                    display: block;
                                    margin-top: -1px
                                }

                                    ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a {
                                        padding: 0 80px;
                                        line-height: 50px;
                                        max-height: 50px;
                                        text-transform: none;
                                        font-weight: 400;
                                        background: #d1d1d1;
                                        color: #222;
                                        border: none;
                                        display: block
                                    }

                                        ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li.megamenu-active-menu-item > a, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li:hover > a, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:hover {
                                            background: #d9d9d9
                                        }

                                    ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div {
                                        position: relative;
                                        top: 0;
                                        z-index: 9999;
                                        margin: 0
                                    }

                    ul.megamenu-menu > li.megamenu-menu-social img {
                        display: inline-table;
                        position: absolute;
                        top: 15px
                    }

                    ul.megamenu-menu > li.megamenu-menu-social .fa {
                        position: absolute;
                        top: 17px
                    }

                    ul.megamenu-menu > li.megamenu-menu-social span {
                        line-height: 50px;
                        padding: 0 25px
                    }

        span.megamenu-dropdown-toggle {
            position: absolute;
            width: 50px;
            height: 50px;
            max-width: 50px;
            max-height: 50px;
            left: 0;
            top: 0;
            padding: 10px 17px;
            z-index: 1000000;
            cursor: pointer
        }

            span.megamenu-dropdown-toggle:after {
                font-family: FontAwesome;
                text-decoration: none;
                content: '\f107';
                color: #fff;
                font-size: 25px;
                right: 0
            }

            span.megamenu-dropdown-toggle.megamenu-dropdown-toggle-rotate {
                -webkit-transform: rotate(180deg);
                -moz-transform: rotate(180deg);
                -o-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                transform: rotate(180deg)
            }

        ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > a:before, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:before, ul.megamenu-menu > li > a:before, ul.megamenu-menu > li > ul > li > a:before, ul.megamenu-menu > li > ul > li > ul > li > a:before, ul.megamenu-menu > li > ul > li > ul > li > ul > li > a:before {
            color: #fff;
            width: 50px;
            height: 50px;
            position: absolute;
            left: 24px;
            top: 3px
        }

        h3.megamenu-list-heading {
            font-size: 19px
        }

        ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > a:before, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > a:before, ul.megamenu-menu > li > ul > li > a:before {
            background: #555
        }

        ul.megamenu-menu > li > ul > li > ul > li > a:before {
            background: #777
        }

        ul.megamenu-menu > li > ul > li > ul > li > ul > li > a:before {
            background: #999
        }

        ul.megamenu-menu, ul.megamenu-menu > li.megamenu-menu-mega-blog > div, ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > div, ul.megamenu-menu > li.megamenu-menu-mega-shop > div, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div, ul.megamenu-menu > li.megamenu-menu-mega > div, ul.megamenu-menu > li > ul, ul.megamenu-menu > li > ul > li > ul, ul.megamenu-menu > li > ul > li > ul > li > ul {
            max-height: 0;
            transform: scaleY(0);
            overflow: hidden
        }

            ul.megamenu-menu.megamenu-mobile-sublevel-show, ul.megamenu-menu > li.megamenu-menu-mega-blog > div.megamenu-mobile-sublevel-show, ul.megamenu-menu > li.megamenu-menu-mega-blog > div > ul.megamenu-menu-mega-blog-nav > li > div.megamenu-mobile-sublevel-show, ul.megamenu-menu > li.megamenu-menu-mega-shop > div.megamenu-mobile-sublevel-show, ul.megamenu-menu > li.megamenu-menu-mega-shop > div > ul > li > div.megamenu-mobile-sublevel-show, ul.megamenu-menu > li.megamenu-menu-mega > div.megamenu-mobile-sublevel-show, ul.megamenu-menu > li > ul.megamenu-mobile-sublevel-show, ul.megamenu-menu > li > ul > li > ul.megamenu-mobile-sublevel-show, ul.megamenu-menu > li > ul > li > ul > li > ul.megamenu-mobile-sublevel-show {
                max-height: 20000px;
                transform: scaleY(1)
            }

        div.megamenu-grid > div.megamenu-row div.megamenu-row [class^=megamenu-col], div.megamenu-grid > div.megamenu-row div.megamenu-row:first-of-type [class^=megamenu-col] {
            margin-top: 0
        }

        div.megamenu-grid.megamenu-grid-lined > div.megamenu-row:after {
            height: 0
        }

        div.megamenu-grid > div.megamenu-row > [class^=megamenu-col] {
            padding: 0
        }

            div.megamenu-grid > div.megamenu-row > [class^=megamenu-col] [class^=megamenu-col], div.megamenu-grid > div.megamenu-row > [class^=megamenu-col] [class^=megamenu-col]:first-of-type {
                padding-left: 0
            }

        div.megamenu-grid > div.megamenu-row div.megamenu-col-1, div.megamenu-grid > div.megamenu-row div.megamenu-col-10, div.megamenu-grid > div.megamenu-row div.megamenu-col-11, div.megamenu-grid > div.megamenu-row div.megamenu-col-12, div.megamenu-grid > div.megamenu-row div.megamenu-col-2, div.megamenu-grid > div.megamenu-row div.megamenu-col-3, div.megamenu-grid > div.megamenu-row div.megamenu-col-4, div.megamenu-grid > div.megamenu-row div.megamenu-col-5, div.megamenu-grid > div.megamenu-row div.megamenu-col-6, div.megamenu-grid > div.megamenu-row div.megamenu-col-7, div.megamenu-grid > div.megamenu-row div.megamenu-col-8, div.megamenu-grid > div.megamenu-row div.megamenu-col-9 {
            width: 90%;
            padding: 7px 19px
        }

        div.megamenu-grid.megamenu-grid-lined > div.megamenu-row > div[class^=megamenu-col]:after {
            width: 0
        }

        /* END Mega Menu */
