/* ## 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;
}

section.brand-list {
    padding: 25px 0;
}

    section.brand-list h2 {
        text-align: left;
        margin: 10px 0;
    }

.brand-list .jumpList-anchors {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap
}

    .brand-list .jumpList-anchors a {
        color: #fff;
        background: #c90922;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50%;
        font-size: 1.5em;
        width: 40px;
        height: 40px;
        position: relative;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all ease .5s;
        box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.5);
        margin: 5px;
    }

        .brand-list .jumpList-anchors a:hover,
        .brand-list .jumpList-anchors a:active {
            border: 2px solid #c90922;
            transition: all ease .5s;
            background: #fff;
            color: #c90922;
            box-shadow: none;
        }

        .brand-list .jumpList-anchors a > span {
            position: absolute;
            left: 0;
            right: 0;
            text-align: center;
            display: block;
            top: 5px;
        }

.brand-list .jumpList {
    margin: 25px 0;
}

.brand-list a.jumpList-heading {
    font-size: 1.5em;
    padding: 10px 20px;
    background: #c90922;
    color: #fff;
    display: block;
    text-align: left;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.6);
    cursor: pointer
}

.brand-list .jumpList-list {
    list-style: none;
    margin: 5px 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.brand-list .jumpList-listItem {
    width: 48%;
    margin-right: 10px;
}

.brand-list .jumpList-list a {
    text-decoration: none;
    font-size: 1.25em;
}

.brand-list .jumpList-item .jumpList-collapse {
    display: block;
}

.brand-list .goback {
    color: #c90922;
    margin: 10px 0;
    display: block;
    text-align: right;
    font-size: 1.15em;
}


/*! 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 */
    overflow-x: hidden;
}

/*
 * Removes default margin.
 */

body {
    margin: 0;
    overflow-x: hidden;
}

/* ==========================================================================
   Links
   ========================================================================== */

/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}


/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/*
 * Removes border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/*
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

    /*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */

    button,
    html input[type="button"], /* 1 */
    input[type="reset"],
    input[type="submit"] {
        -webkit-appearance: button; /* 2 */
        cursor: pointer; /* 3 */
    }

        /*
 * Re-set default cursor for disabled elements.
 */

        button[disabled],
        input[disabled] {
            cursor: default;
        }

    /*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */

    input[type="checkbox"],
    input[type="radio"] {
        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  =============== */

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #0A0A0A;
    margin: 0;
    padding: 0;
}

span[style],
p[style] {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #0A0A0A;
}

::-moz-selection {
    background: #3197fc;
    text-shadow: none;
}

::selection {
    background: #3197fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img {
    max-width: 100% !important;
    height: auto !important;
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

/** FIX Google Maps Info window styes problem **/
img[src*="gstatic.com/"],
img[src*="googleapis.com/"] {
    max-width: none !important;
}

table, td {
}

th {
    text-align: left;
    background-color: #eee;
}

p {
    margin: 0 0 1em 0;
}

h1, .h1 {
    font-size: 36px;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    line-height: 1;
    font-weight: bold;
}

h2, .h2 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    line-height: 1;
}

h3, .h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

h4 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

h5 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

h6 {
    font-size: .9rem;
    margin: 0 0 0.5rem 0;
}

@media only screen and (min-width:48em) {
    h1, .h1 {
        font-size: 60px;
    }

    h2, .h2 {
        font-size: 2.5rem;
    }

    h3, .h3 {
        font-size: 1.5rem;
    }
}

input, select, textarea {
    padding: 2px;
    border: 1px solid #76afdb;
}

form {
    display: block;
}

label {
    vertical-align: middle;
}

input[type='radio'], input[type='checkbox'] {
    vertical-align: top;
    margin: 3px;
}

input[type='image'] {
    border-style: none;
    padding: 0 !important;
}

.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 {
    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 {
        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;
}

.black {
    font-weight: 900;
}

.italic {
    font-style: italic !important;
}

.strike {
    text-decoration: line-through !important;
}

.red, .red:visited {
    color: #f00 !important;
}

.green, .green:visited {
    color: #390 !important;
}

.lgreen, .lgreen:visited {
    color: #97937d !important;
}

.yellow {
    color: #F5CB07;
}

.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;
}

.uppercase {
    text-transform: uppercase;
}

.clear {
    overflow: hidden;
    clear: both;
    height: 0;
    margin: 0;
    font-size: 1px;
    line-height: 0;
}

.skip {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.important {
    color: red;
    font-weight: bold;
    text-transform: uppercase;
}


/* ## Base List styles ## */
ul, ol {
    margin: 0 0 1em;
}

.noBullet {
    padding: 0 0 0 1em;
    list-style-type: none;
}

.noIndent {
    padding: 0;
    list-style-type: none;
}

.bulletSquare {
    list-style-type: square;
}

/* ## Note/hint text or link ## */
.note {
    margin: 0 7px;
    font-size: .8em;
    color: #4e4e4e;
}

    .note a, .note a:link, .note a:visited {
        text-decoration: underline;
    }


a, a:link, a:visited {
    color: #003d7d;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

    a:hover,
    a:focus {
        color: #2b79b3;
        text-decoration: underline;
    }

    a:active {
        color: #2b79b3;
        text-decoration: underline;
    }

    a:active, a:focus {
        outline: 0;
    }

.bdr {
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 5px 0;
}

/* Start Up Layout */

.mainbody {
    text-align: center;
    margin: 0;
    padding: 0;
}

.bdywrpr {
    text-align: left;
    margin: 0 auto;
    z-index: 1;
}

.hdrwrpr {
    position: relative;
}

.corwrpr {
}

.corwrpr-3clm {
}

.corwrpr-2clm-lr {
}

.corwrpr-2clm-rr {
}

.corwrpr-1clm {
}

.ftrwrpr {
}

.corlnav {
}

.cormain {
}

.cormain-3clm {
}

.cormain-2clm-lr {
}

.cormain-2clm-rr {
}

.cormain-1clm {
}

.corrrail {
}

/* Left Nav */

.lnavwrpr {
    font-size: 0.813em;
    margin: 0 10px 30px 10px;
    line-height: 1.2em;
}

.lnvgrphdg {
    font-size: 0.875em;
    font-weight: bold;
    margin: 15px 0 8px 0;
}

ul.lnav {
    color: #2b79b3;
    padding: 10px 10px 10px 15px;
    list-style-type: none;
}

    ul.lnav a, ul.lnav a:link, ul.lnav a:visited {
        color: #2b79b3;
        text-decoration: none;
        display: block;
        padding: 4px 6px;
        color: #686868;
    }

        ul.lnav a:hover, ul.lnav a.on {
        }

        ul.lnav a:active {
            color: #2b79b3;
            text-decoration: none;
        }

    ul.lnav li {
        padding: 3px 0px;
        border-bottom: 1px solid #f3f1ec;
    }

        ul.lnav li:last-child {
            border: none;
        }

    ul.lnav ul {
        margin: 4px 0 0px 10px;
        padding: 0;
        list-style-type: none;
    }

        ul.lnav ul a, ul.lnav ul a:link, ul.lnav ul a:visited {
            color: #9a2120;
            padding-left: 6px;
            display: block;
        }

            ul.lnav ul a:hover, ul.lnav ul a.on {
                color: #9a2120;
                text-decoration: underline;
                padding-left: 6px;
                background-image: none;
                background-color: transparent;
            }

            ul.lnav ul a:active {
                color: #9a2120;
            }

        ul.lnav ul li {
            padding-bottom: 3px;
            border-bottom: none;
        }

        ul.lnav ul ul {
            margin: 4px 0 0px 10px;
            padding: 0;
            list-style-type: none;
        }

            ul.lnav ul ul a, ul.lnav ul ul a:link, ul.lnav ul ul a:visited {
                color: #3e3e6f;
                font-weight: normal;
                font-size: 0.688em;
                font-family: Arial;
            }

                ul.lnav ul ul a:hover {
                    color: #3e3e6f;
                    text-decoration: underline;
                }

                ul.lnav ul ul a:active {
                    color: #3e3e6f;
                }

            ul.lnav ul ul li {
                padding: 3px 0;
                border-bottom: none;
            }


/* Mods Default */

.hdng {
    border-bottom: 1px solid #e7e8e6;
    padding: 0 0 5px 0;
    color: #5d5d59;
}

.hdngbox {
    font-size: 1.000em;
    font-weight: bold;
    color: #fff;
    background-color: #999;
    padding: 3px 10px;
    margin: 0;
}

.btn, a.btn {
    font-size: 16px;
    background: #D82013;
    display: inline-block;
    margin: 0;
    padding: 18px 40px;
    font-weight: 900 !important;
    color: #fff;
    text-transform: uppercase;
    border-style: none;
    border-radius: 30px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    overflow: visible;
}

    .btn.transp-bg {
        background: transparent;
        border: 2px solid #003d7d;
        color: #003d7d;
        min-widtH: 300px;
    }

    .btn:hover,
    .btn:focus {
        background: #003d7d;
        color: #fff;
    }

.btncheckout {
    font-size: 0.875em;
    font-weight: bold;
    color: #c00;
    background-color: #fff;
    border: 1px solid #c00;
    text-decoration: none;
    cursor: pointer;
}

    .btncheckout:hover {
        color: #000;
        border: 1px solid #000;
    }

.alternate {
    background-color: #ffffff;
}

.row {
    background-color: #ffffff;
}


/* Error Markers */

.fieldlbl {
    padding: 4px 2px 0 0;
    text-align: right;
}

.fieldpad {
    padding-bottom: 2px;
}

.fieldtext {
    color: #000000;
}

.fielderror {
    color: #cc0000;
}

.fieldnorm {
    width: 16px;
    height: 20px;
}

.fieldreq {
    width: 20px;
    height: 100%;
    background: transparent url(/cms/images/global/field-req.gif) no-repeat 50% 43%;
}

.fieldopt {
    width: 20px;
    height: 100%;
}

.fieldred {
    width: 20px;
    height: 100%;
    background: transparent url(/cms/images/global/field-error.gif) no-repeat 50% 43%;
}

/* Store */

div.paginate {
    font-size: 0.625em;
}

div.thumbwrpr {
    width: 770px;
    margin: 10px auto;
}

    div.thumbwrpr a {
        width: 140px;
        height: 190px;
        float: left;
        font-size: 0.625em;
        text-align: center;
        border: 1px solid #ccc;
        padding: 10px;
        margin: 5px 15px;
    }

        div.thumbwrpr a:link, div.thumbwrpr a:visited {
            color: #01b;
            text-decoration: none;
        }

        div.thumbwrpr a:hover {
            color: #666;
            background-color: #eee;
            text-decoration: none;
        }

        div.thumbwrpr a:active {
            color: #01b;
            text-decoration: none;
        }

    div.thumbwrpr img {
        border-style: none;
        margin-bottom: 6px;
    }

div.thumblgwrpr {
    width: 770px;
    margin: 10px auto;
}

    div.thumblgwrpr a {
        width: 160px;
        height: 190px;
        float: left;
        font-size: 0.625em;
        text-align: center;
        border: 1px solid #ccc;
        padding: 10px;
        margin: 5px 15px;
    }

        div.thumblgwrpr a:link, div.thumblgwrpr a:visited {
            color: #01b;
            text-decoration: none;
        }

        div.thumblgwrpr a:hover {
            color: #666;
            background-color: #eee;
            text-decoration: none;
        }

        div.thumblgwrpr a:active {
            color: #01b;
            text-decoration: none;
        }

    div.thumblgwrpr img {
        border-style: none;
        margin-bottom: 8px;
    }

div.rcntvwwrpr {
    width: 100%;
    margin: 10px;
}

    div.rcntvwwrpr a {
        width: 130px;
        height: 150px;
        float: left;
        font-size: 0.625em;
        text-align: center;
        border: 1px solid #ccc;
        padding: 10px;
        margin: 8px
    }

        div.rcntvwwrpr a:link, div.rcntvwwrpr a:visited {
            color: #01b;
            text-decoration: none;
        }

        div.rcntvwwrpr a:hover {
            color: #601;
            background-color: #eee;
            text-decoration: none;
        }

        div.rcntvwwrpr a:active {
            color: #01b;
            text-decoration: none;
        }

    div.rcntvwwrpr img {
        width: 100px;
        height: 100px;
        border-style: none;
        margin-bottom: 6px;
    }

div.reltdwrpr {
    width: 100%;
    margin: 10px 0;
}

    div.reltdwrpr a {
        width: 130px;
        height: 150px;
        float: left;
        font-size: 0.625em;
        text-align: center;
        border: 1px solid #ccc;
        padding: 10px;
        margin: 8px;
    }

        div.reltdwrpr a:link, div.reltdwrpr a:visited {
            color: #01b;
            text-decoration: none;
        }

        div.reltdwrpr a:hover {
            color: #601;
            background-color: #eee;
            text-decoration: none;
        }

        div.reltdwrpr a:active {
            color: #01b;
            text-decoration: none;
        }

    div.reltdwrpr img {
        width: 100px;
        height: 100px;
        border-style: none;
        margin-bottom: 6px;
    }

table.carttbl {
    width: 100%;
}

    table.carttbl td {
        padding: 4px;
        vertical-align: top;
    }

    table.carttbl th {
        padding: 4px;
    }

div.stepswrpr {
    padding: 10px;
}

    div.stepswrpr table {
        margin-left: auto;
    }

input.qtybox {
    width: 25px;
    font-weight: bold;
    font-size: 0.813em;
    text-align: center;
}

.promo {
    font-size: 0.750em;
    color: #ff0000;
    font-weight: bold;
    border-top: 5px solid #eeeeee;
}

.gift1 {
    background-color: #dc0707;
}

.gift2 {
    background-color: #fdfbbe;
}

.txtlimitbx {
    background-color: #dc0707;
}

.txtlimitbx2 {
    background-color: #fdfbbe;
}

.alternate {
    background-color: #ffffff;
}

.row {
    background-color: #ffffff;
}

/* Admin Edit */

.content {
    border: 1px dashed #2b4487;
    padding: 1px;
    margin: 1px 1px 1px 1px;
}

.contentregion {
    background: #b8cde7;
    color: #2b4487;
    border: 1px solid #2b4487;
    padding: 2px;
    margin: 1px 0 1px 0;
}

.contentheader {
    background: #dddddd;
    color: #000000;
    border: 1px solid #2b4487;
    padding: 2px;
    margin: 1px 0 1px 0px;
    text-align: right;
}

.contentedit {
    background: #f2faff;
    color: #000000;
    border: 1px solid #2b4487;
    padding: 2px;
}

.adminbtn {
    font-weight: bold;
    font-size: 0.750em;
    font-family: Arial;
    color: #fff;
    background: #02699c url(/cms/images/btn.gif) repeat-x top left;
    border: 1px solid #65b2d9;
    padding: 2px;
    text-decoration: none;
    cursor: pointer;
    padding: 3px 7px;
}

    .adminbtn:hover {
        background: #62b0d8 url(/cms/images/btnOn.gif) repeat-x top left;
    }

.contentbottom {
    background: #dddddd;
    color: #000000;
    border: 1px solid #2b4487;
    padding: 2px;
    margin: 1px 0 1px 0;
}

.contentsettings {
    background: #ffffff;
    color: #000000;
    border: 1px solid #2b4487;
    padding: 2px;
}

/* AdminPublishing */
.notificationIcon {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 16px;
    height: 16px;
    z-index: 999999999;
    display: block;
}

.rss {
    background: transparent url(/cms/images/icon-rss.gif) no-repeat 0% 50%;
    padding-left: 15px;
}

.acrobat {
    background: transparent url(/cms/images/icon-acrobat.gif) no-repeat 0% 50%;
    padding-left: 15px;
}

.print {
    background: transparent url(/cms/images/icon-print.gif) no-repeat 0% 50%;
    padding-left: 15px;
}

.email {
    background: transparent url(/cms/images/icon-email.gif) no-repeat 0% 50%;
    padding-left: 15px;
}

.pdf {
    background: transparent url(/cms/images/icon-pdf.gif) no-repeat 0% 0%;
    padding-left: 15px;
    display: block;
}

.pdf1 {
    background: transparent url(/cms/images/icon-pdf.gif) no-repeat 0% 0%;
    padding-left: 15px;
}

.vd {
    padding: 0 8px;
}

/* jCarousel Home Page */

.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

    .jcarousel-list li, .jcarousel-item {
        float: left;
        list-style: none;
    }

.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

.jcarousel-skin-home {
    list-style-type: none;
}

    .jcarousel-skin-home .jcarousel-container {
        background: #fff;
    }

    .jcarousel-skin-home .jcarousel-container-horizontal {
        width: 620px;
        padding: 0;
    }

    .jcarousel-skin-home .jcarousel-clip-horizontal {
        width: 620px;
    }

    .jcarousel-skin-home .jcarousel-item {
        width: 620px;
    }

    .jcarousel-skin-home .jcarousel-item-horizontal {
        margin-right: 0;
    }

    .jcarousel-skin-home .jcarousel-item-placeholder {
        background: #fff;
        color: #000;
    }

    .jcarousel-skin-home .jcarousel-next-horizontal {
        position: absolute;
        top: 270px;
        left: 590px;
        width: 14px;
        height: 14px;
        cursor: pointer;
        background: transparent url(/cms/images/next.gif) no-repeat 0 0;
    }

        .jcarousel-skin-home .jcarousel-next-horizontal:hover {
            background-position: -14px 0;
        }

        .jcarousel-skin-home .jcarousel-next-horizontal:active {
            background-position: -14px 0;
        }

    .jcarousel-skin-home .jcarousel-next-disabled-horizontal, .jcarousel-skin-home .jcarousel-next-disabled-horizontal:hover, .jcarousel-skin-home .jcarousel-next-disabled-horizontal:active {
        cursor: default;
        background-position: -14px 0;
    }

    .jcarousel-skin-home .jcarousel-prev-horizontal {
        position: absolute;
        top: 270px;
        left: 570px;
        width: 14px;
        height: 14px;
        cursor: pointer;
        background: transparent url(/cms/images/prev.gif) no-repeat 0 0;
    }

        .jcarousel-skin-home .jcarousel-prev-horizontal:hover {
            background-position: -14px 0;
        }

        .jcarousel-skin-home .jcarousel-prev-horizontal:active {
            background-position: -14px 0;
        }

    .jcarousel-skin-home .jcarousel-prev-disabled-horizontal, .jcarousel-skin-home .jcarousel-prev-disabled-horizontal:hover, .jcarousel-skin-home .jcarousel-prev-disabled-horizontal:active {
        cursor: default;
        background-position: -14px 0;
    }


.jcarousel-skin-int {
    list-style-type: none;
}

    .jcarousel-skin-int .jcarousel-container {
        background: #fff;
    }

    .jcarousel-skin-int .jcarousel-container-horizontal {
        width: 440px;
        padding: 0;
    }

    .jcarousel-skin-int .jcarousel-clip-horizontal {
        width: 440px;
        height: 200px;
    }

    .jcarousel-skin-int .jcarousel-item {
        width: 440px;
        height: 200px;
    }

    .jcarousel-skin-int .jcarousel-item-horizontal {
        margin-right: 0;
    }

    .jcarousel-skin-int .jcarousel-item-placeholder {
        background: #fff;
        color: #000;
    }

    .jcarousel-skin-int .jcarousel-next-horizontal {
        position: absolute;
        top: 170px;
        left: 400px;
        width: 14px;
        height: 14px;
        cursor: pointer;
        background: transparent url(/cms/images/next.gif) no-repeat 0 0;
    }

        .jcarousel-skin-int .jcarousel-next-horizontal:hover {
            background-position: -14px 0;
        }

        .jcarousel-skin-int .jcarousel-next-horizontal:active {
            background-position: -14px 0;
        }

    .jcarousel-skin-int .jcarousel-next-disabled-horizontal, .jcarousel-skin-int .jcarousel-next-disabled-horizontal:hover, .jcarousel-skin-int .jcarousel-next-disabled-horizontal:active {
        cursor: default;
        background-position: -14px 0;
    }

    .jcarousel-skin-int .jcarousel-prev-horizontal {
        position: absolute;
        top: 170px;
        left: 380px;
        width: 14px;
        height: 14px;
        cursor: pointer;
        background: transparent url(/cms/images/prev.gif) no-repeat 0 0;
    }

        .jcarousel-skin-int .jcarousel-prev-horizontal:hover {
            background-position: -14px 0;
        }

        .jcarousel-skin-int .jcarousel-prev-horizontal:active {
            background-position: -14px 0;
        }

    .jcarousel-skin-int .jcarousel-prev-disabled-horizontal, .jcarousel-skin-int .jcarousel-prev-disabled-horizontal:hover, .jcarousel-skin-int .jcarousel-prev-disabled-horizontal:active {
        cursor: default;
        background-position: -14px 0;
    }

.filter {
    padding: 10px;
    margin-bottom: 20px;
    background: #23447E;
    color: #fff;
    border-radius: 5px;
}

    .filter label {
        font-size: 0.750em;
    }

    .filter a {
        color: #fff;
    }

table.datatbl {
    width: 100%;
    margin-bottom: 15px;
}

    table.datatbl th {
        border-bottom: 1px dotted #c4bca8;
        background: transparent url(/cms/images/filter-bg.gif) repeat-x;
        text-align: left;
        padding: 6px 15px;
        font-weight: bold;
        font-size: 0.813em;
        font-family: Georgia, Times New Roman;
    }

    table.datatbl td {
        vertical-align: top;
        padding: 6px 15px;
    }

    table.datatbl a, table.datatbl a:link, table.datatbl a:visited {
        font-weight: bold;
    }

#dhtmltooltip {
    background-color: #000;
    text-align: left;
    padding: 8px;
    position: fixed;
    width: 150px;
    border: 3px solid #76afdb;
    visibility: hidden;
    z-index: 100;
    filter: progid:DXImageTransform.events-list crosoft.Shadow(color=#999999,strength:5,direction=135);
}

/* calendar summary */
.calendarDate {
    text-align: center;
}

.today, .today td {
    background-color: #76afdb;
    text-align: center;
}

    .today, .today td {
        background-color: #76afdb;
        text-align: center;
    }

        .today a, .today td a {
            color: #fff;
        }

.currday, .currday td {
    background-color: #b73333;
}

table.cal-sm {
    background-color: #ffffff;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

    table.cal-sm td {
        padding: 4px 2px;
        border: 1px solid #76afdb;
        color: #000;
    }

    table.cal-sm th {
        text-align: center;
        padding: 4px;
        font-weight: bold;
        border: 1px solid #76afdb;
        background-color: #539bd2;
        color: #fff;
    }

        table.cal-sm th a {
            color: #fff !important;
        }

    table.cal-sm td.day {
        font-weight: bold;
    }

    table.cal-sm a, table.cal-sm a:link, table.cal-sm a:visited {
        color: #000;
        text-decoration: underline;
    }

        table.cal-sm a:hover {
            color: #000;
            text-decoration: none;
        }

        table.cal-sm a:active {
            color: #000;
            text-decoration: underline;
        }

    table.cal-sm .currday {
        text-align: center;
    }

/* calendar list */

table.cal-list {
    border-collapse: collapse;
    width: 100%;
}

    table.cal-list td {
        border: 1px solid #76afdb;
        padding: 12px;
    }

    table.cal-list .alternate {
        padding: 12px;
    }

/* calendar month */

table.calendar_month {
    width: 100%;
    border: 1px solid #76afdb;
    border-collapse: collapse;
}

    table.calendar_month tr {
        vertical-align: top;
    }

    table.calendar_month th {
        font-size: 0.875em;
        text-align: center;
        padding: 6px;
        background-color: #539bd2;
        color: #fff;
        font-weight: normal;
    }

    table.calendar_month td.day {
        font-size: 0.750em;
        font-weight: bold;
        border: 1px solid #76afdb;
    }

    table.calendar_month th.cal-week {
        background: #539bd2 url(/cms/images/cal-week.gif) no-repeat center;
        vertical-align: middle;
    }

    table.calendar_month td.today {
        text-align: left;
    }

.calendar_numeral {
    color: #999;
    font-size: 0.875em;
    font-weight: bold;
}

.calendar_day_empty {
    border: 1px solid #76afdb;
}

.calendar_day_empty, .calendar_day_event {
    width: 14%;
    height: 50px;
}

.calendar_day_event {
    border: 1px solid #76afdb;
}

table.cal-sm a.grey, table.cal-sm a.grey:link, table.cal-sm a.grey:visited {
    color: #666666;
    text-decoration: none;
}

    table.cal-sm a.grey:hover {
        color: #666666;
        text-decoration: underline;
    }

    table.cal-sm a.grey:active {
        color: #666666;
        text-decoration: none;
    }

table.thumbitemtbl {
    width: 100%;
    margin-bottom: 10px;
}

    table.thumbitemtbl td {
        vertical-align: top;
        padding: 10px 15px;
    }

.eventUl {
    padding: 0 0 0 7px;
    margin: 0 0 0 7px;
}

    .eventUl img {
        margin-top: 3px;
    }

.viewType {
    margin-bottom: 5px;
}

/* Photo Gallery */

table.pgtbllayout {
    width: 733px;
    table-layout: fixed;
}

    table.pgtbllayout td {
        vertical-align: top;
    }

table.pgthmbtbl {
    width: 324px;
}

    table.pgthmbtbl td {
        width: 102px;
        text-align: center;
        vertical-align: middle;
        background-color: #ffffff;
    }

table.floatimghldr td {
    width: 384px;
    height: 288px;
    text-align: center;
    vertical-align: middle;
    background-color: #ffffff;
}

.pglfttd {
    width: 390px;
    height: 380px;
}

.pgrttd {
    height: 380px;
}

.pgimgwrpr {
    width: 384px;
    height: 374px;
    position: relative;
}

.pgimg {
    top: 3px;
    left: 0;
    position: absolute;
}

.pgenlrgbtn {
    position: absolute;
    top: 262px;
    left: 346px;
}

.pgcptn {
    height: 40px;
    background-color: #F2F8E6;
}

.pgprvbtn {
    top: 348px;
    left: 6px;
    position: absolute;
}

.pgnxtbtn {
    top: 348px;
    right: 6px;
    position: absolute;
}

.pgcount {
    width: 190px;
    top: 352px;
    left: 98px;
    position: absolute;
    text-align: center;
}

.pgthmbscrl {
    width: 343px;
    height: 370px;
    overflow: auto;
}

.wrp {
    position: relative;
    width: 620px;
}

.pagerwrpr a, .pagerwrpr a:link, .pagerwrpr a:visited {
    color: #423f30;
    text-decoration: none;
    margin: 0 2px;
}

    .pagerwrpr a:hover {
        color: #423f30;
        text-decoration: underline;
    }

    .pagerwrpr a:active {
        color: #423f30;
        text-decoration: none;
    }

.pager {
    padding: 7px 0;
}

.photo_goback,
.photo_email {
    display: block;
}

/* video */

.player {
    width: 512px;
    float: left;
    display: inline;
}

.videodescr {
    width: 200px;
    float: left;
    display: inline;
    margin-left: 20px;
}

.cont {
    padding: 0 10px;
}

div.th {
    width: 128px;
    border: 1px solid #76afdb;
    padding: 10px;
    margin-right: 30px;
    margin-bottom: 16px;
    float: left;
}

    div.th img, div.th-feat img {
        margin-bottom: 5px;
    }

    div.th a.ttl, div.th a.ttl:link, div.th a.ttl:visited {
        font-weight: normal;
        font-size: 0.813em;
        font-family: Arial;
        height: 18px;
        overflow: hidden;
        display: block;
        color: #660000;
        text-decoration: none;
    }

        div.th a.ttl:hover {
            text-decoration: underline;
        }

        div.th a.ttl:active {
            text-decoration: none;
        }

/* Shade Tabs */

.shadetabs {
    padding: 3px 0;
    margin-left: 0;
    margin-top: 1px;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 0.750em;
    font-family: Arial;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the menu as desired*/
}

    .shadetabs li {
        display: inline;
        margin: 0;
        vertical-align: bottom;
    }

        .shadetabs li a {
            text-decoration: none;
            position: relative;
            z-index: 1;
            padding: 3px 7px;
            margin-right: 0px;
            border: 1px solid #e2ddc7;
            color: #fff;
            background: #d2cbac url(/cms/images/shad-bg.gif) top left repeat-x;
        }

            .shadetabs li a:visited {
                color: #2d2b2b;
            }

            .shadetabs li a:hover {
                text-decoration: none;
                color: #660000;
            }

            .shadetabs li a.selected {
                position: relative;
                bottom: -1px;
            }

            .shadetabs li a.selected {
                color: #660000;
                background-image: none;
                background-color: #fff;
                font-size: 0.875em;
                padding-top: 8px;
                border-bottom: 2px solid #fff;
            }

                .shadetabs li a.selected:hover {
                    text-decoration: none;
                }

.tabcontent {
    display: none;
}

@media print {
    .tabcontent {
        display: block !important;
    }
}
/* Shade Tabs End */

.mod .date-cal {
    background: transparent url(/cms/images/cal-bg.gif) no-repeat scroll 0 0;
    display: inline;
    float: left;
    height: 37px;
    overflow: hidden;
    width: 34px;
}

.mod .month {
    -x-system-font: none;
    color: #FFFFFF;
    font-family: Arial;
    font-size: 0.500em;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    height: 12px;
    line-height: normal;
    margin: 0 0 0 2px;
    overflow: hidden;
}

.mod .day {
    -x-system-font: none;
    color: #625E53;
    font-family: Arial;
    font-size: 1.125em;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    line-height: normal;
    margin: 0 2px 0 0;
    text-align: center;
}


/* Poup styles */
.PopupTitleBorder {
    border-bottom: #d5d59d 1px solid;
}

.PopupTitle {
    font-weight: bold;
    font-size: 0.875em;
    color: #737357;
    background-color: #e3e3c7;
    padding: 3px 10px 3px 10px;
    cursor: move;
}

    .PopupTitle .closeButton {
        position: absolute;
        right: 0px;
        top: 0px;
        margin-top: 5px;
        margin-right: 10px;
        width: 20px;
        height: 20px;
        cursor: pointer;
        background-image: url(/cms/images/fck/sprites.png);
        background-repeat: no-repeat;
        background-position: -16px -651px;
    }

    .PopupTitle .closeButton {
        cursor: hand;
        background-image: url(/cms/images/fck/sprites.gif);
    }

        .PopupTitle .closeButton:hover {
            background-position: -16px -687px;
        }

.popupcontents {
    /*
	position: absolute;
	top: 2px;
	left: 16px;
	right: 16px;
	bottom: 0px;
	*/
    background-color: #f1f1e3;
    overflow: visible;
    z-index: 1;
}

.tl, .tr, .tc, .bl, .br, .bc {
    position: absolute;
    background-image: url(/cms/images/fck/sprites.png);
    background-repeat: no-repeat;
    z-index: -1;
}

* html .tl, * html .tr, * html .tc, * html .bl, * html .br, * html .bc {
    background-image: url(/cms/images/fck/sprites.gif);
}

.ml, .mr {
    position: absolute;
    background-image: url(/cms/images/fck/dialog.sides.png);
    background-repeat: repeat-y;
}

* html .ml, * html .mr {
    background-image: url(/cms/images/fck/dialog.sides.gif);
}

.rtl .ml, .rtl .mr {
    position: absolute;
    background-image: url(/cms/images/fck/dialog.sides.rtl.png);
    background-repeat: repeat-y;
}

* html .rtl .ml, * html .rtl .mr {
    background-image: url(/cms/images/fck/dialog.sides.gif);
}

.tl {
    top: -2px;
    left: -16px;
    width: 16px;
    height: 16px;
    background-position: -16px -16px;
}

.rtl .tl {
    background-position: -16px -397px;
}

.tr {
    top: -2px;
    right: -16px;
    width: 16px;
    height: 16px;
    background-position: -16px -76px;
}

.rtl .tr {
    background-position: -16px -457px;
}

.tc {
    top: -2px;
    right: 0px;
    left: 0px;
    height: 16px;
    background-position: 0px -136px;
    background-repeat: repeat-x;
}

.ml {
    top: 14px;
    left: -16px;
    width: 16px;
    bottom: 31px;
    background-position: 0px 0px;
}

.mr {
    top: 14px;
    right: -16px;
    width: 16px;
    bottom: 31px;
    background-position: -16px 0px;
}

.bl {
    bottom: -20px;
    left: -16px;
    width: 30px;
    height: 51px;
    background-position: -16px -196px;
}

.rtl .bl {
    background-position: -16px -517px;
}

.br {
    bottom: -20px;
    right: -16px;
    width: 30px;
    height: 51px;
    background-position: -16px -263px;
}

.rtl .br {
    background-position: -16px -584px;
}

.bc {
    bottom: -20px;
    right: 14px;
    left: 14px;
    height: 51px;
    background-position: 0px -330px;
    background-repeat: repeat-x;
}


.job_th {
    -x-system-font: none;
    background: transparent url(/cms/images/filter-bg.gif) repeat-x scroll 0 0;
    border-bottom: 1px dotted #C4BCA8;
    font-family: Georgia,Times New Roman;
    font-size: 0.813em;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    line-height: normal;
    padding: 6px 15px;
    text-align: left;
}


/* cms */
.contentregion {
    background: #B8CDE7;
    color: #2B4487;
    border: 1px solid #2B4487;
    padding: 2px;
    margin: 1 0 1 0;
}

.contentbottom {
    background: #DDDDDD;
    color: #000000;
    border: 1px solid #2B4487;
    padding: 2px;
    margin: 1 0 1 0;
}

.adminredbtn {
    font-size: 0.750em;
    font-weight: bold;
    color: #FF0000;
    background: #112848 url(/cms/images/btn.gif) repeat-x top left;
    border: 1px solid #a5b9c8;
    padding: 2px;
    text-decoration: none;
    cursor: hand;
}

div.cmsregion {
    border-color: #f00;
}

div.cmsselector tr.hdr td, div.cmsselectorhover tr.hdr td {
    background-color: #e792e4;
    border-color: #00f;
}

div.cmsselector table, div.cmsselectorhover table {
    background-color: #fc6;
    border-color: #00f;
}

/* set colors for sub region outline and control box */

div.cmssubregion {
    border-color: #00f;
}

div.cmssubselector tr.hdr td, div.cmssubselectorhover tr.hdr td {
    background-color: #fc6;
    border-color: #f00;
}

div.cmssubselector table, div.cmssubselectorhover table {
    background-color: #fc6;
    border-color: #f00;
}

/* cms preview default styles  --------------------------------------   */
div.cmsmarker {
    position: relative;
    z-index: 2000;
}

div.cmsregion {
    top: 0px;
    left: 0px;
    position: absolute;
    border-width: 1px;
    border-style: dashed;
}

div.cmsselector, div.cmsselectorhover {
    width: 180px;
    top: 1px;
    left: 1px;
    position: absolute;
    overflow: visible;
}

    div.cmsselector table, div.cmsselectorhover table {
        width: 100%;
        border-width: 1px;
        border-style: solid;
        border-collapse: collapse;
        opacity: 0.9;
        -moz-opacity: 0.9;
        filter: alpha(opacity=90);
    }

    div.cmsselector td, div.cmsselectorhover td {
        vertical-align: top;
        font-size: 0.688em;
        color: #000;
        padding: 2px 4px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

div.cmsselector {
    visibility: hidden;
    z-index: 3000;
}

div.cmsselectorhover {
    visibility: visible;
}

div.cmssubmarker {
    position: relative;
    min-height: 30px;
}

div.cmssubregion {
    top: 1px;
    left: 1px;
    position: absolute;
    border-width: 1px;
    border-style: dashed;
    margin: 1px;
}

div.cmssubselector, div.cmssubselectorhover {
    width: 176px;
    top: 4px;
    left: 5px;
    position: absolute;
    overflow: visible;
}

    div.cmssubselector table, div.cmssubselectorhover table {
        width: 100%;
        border-width: 1px;
        border-style: solid;
        border-collapse: collapse;
        opacity: 0.9;
        -moz-opacity: 0.9;
        filter: alpha(opacity=90);
    }

    div.cmssubselector td, div.cmssubselectorhover td {
        vertical-align: top;
        font-size: 0.688em;
        color: #000;
        padding: 2px 4px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

div.cmssubselector {
    visibility: hidden;
    z-index: 4000;
}

div.cmssubselectorhover {
    visibility: visible;
}


/* tab setup */
.tabModule {
    margin: 0;
    padding-top: 0px;
}

    .tabModule .tabdiv {
        padding: 0;
        border: 2px solid #00659C;
        border-top-width: 6px;
        min-height: 1px;
    }

    .tabModule .tabsRow {
    }

.tabnav {
    margin: 0;
    padding: 0;
}

    .tabnav li {
        float: left;
        display: inline;
        margin-right: 1px;
        list-style-type: none;
    }

        .tabnav li a,
        .tabnav li a:link,
        .tabnav li a:visited {
            float: left;
            display: inline;
            padding: 5px 7px;
            text-align: center;
            text-decoration: none;
            font-size: 0.625em;
            color: #666;
            background: url(/cms/images/admin/tab_off.gif);
            border: 1px solid #808080;
            border-bottom-width: 0;
        }

            .tabnav li a:hover {
                color: #333;
                background: url(/cms/images/admin/tab_on.gif);
                border-color: #505050;
            }

        .tabnav li.ui-tabs-selected a,
        .tabnav li.ui-tabs-selected a:link,
        .tabnav li.ui-tabs-selected a:visited {
            color: #fff;
            margin-top: 0;
            background: #01679A url(/cms/images/admin/table_header.gif) repeat-x;
            border-bottom-width: 0;
            border-color: #00659C;
        }

.ui-tabs-hide {
    display: none;
}

/* cms tab setup */
.CMSTabs {
    margin: 0;
    padding-top: 0px;
    background: none;
}

    .CMSTabs .tabdiv {
        margin-bottom: 10px;
        padding: 0;
        background: #fff;
        border: 2px solid #00659C;
        border-top-width: 6px;
        min-height: 1px;
    }

.tabdivwithoutborder {
    margin-bottom: 10px;
    padding: 0;
    border-top: 2px solid #00659C;
    border-top-width: 6px;
    min-height: 1px;
}

.CMSTabs .tabsRow {
    white-space: nowrap;
}

.CMSTabs .tabnav {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .CMSTabs .tabnav li {
        float: left;
        display: inline;
        margin-right: 1px;
        list-style-type: none;
    }

        .CMSTabs .tabnav li a,
        .CMSTabs .tabnav li a:link,
        .CMSTabs .tabnav li a:visited {
            float: left;
            display: inline;
            height: auto;
            padding: 5px 7px 6px 7px;
            text-align: center;
            text-decoration: none;
            font-size: 0.688em;
            font-family: Arial,Verdana,Geneva,sans-serif;
            color: #333;
            background: #d5d5d5 url(/cms/images/admin/tab-sprite.gif) repeat-x right 0;
            border: 1px solid #808080;
            border-bottom-width: 0;
        }

            .CMSTabs .tabnav li a:hover {
                color: #fff;
                background-position: right -30px;
                border-color: #505050;
            }

        .CMSTabs .tabnav li.ui-tabs-disabled a,
        .CMSTabs .tabnav li.ui-tabs-disabled a:link,
        .CMSTabs .tabnav li.ui-tabs-disabled a:hover {
            color: #666;
            background-position: right 0;
            cursor: default;
            border: 1px solid #808080;
            border-bottom-width: 0;
        }

        .CMSTabs .tabnav li.ui-tabs-selected a,
        .CMSTabs .tabnav li.ui-tabs-selected a:link,
        .CMSTabs .tabnav li.ui-tabs-selected a:visited {
            color: #fff;
            margin-top: 0;
            background-position: right -30px;
            border-bottom-width: 0;
            border-color: #00659C;
        }

        .CMSTabs .tabnav li.ui-tabs-complete a,
        .CMSTabs .tabnav li.ui-tabs-complete a:link,
        .CMSTabs .tabnav li.ui-tabs-complete a:visited {
            color: #666;
            margin-top: 0;
            padding-right: 25px;
            background-position: right -60px;
            border-bottom-width: 0;
            border-color: #aaa;
        }

        .CMSTabs .tabnav li.ui-tabs-complete-on a,
        .CMSTabs .tabnav li.ui-tabs-complete-on a:link,
        .CMSTabs .tabnav li.ui-tabs-complete-on a:visited {
            color: #fff;
            margin-top: 0;
            padding-right: 25px;
            background-position: right -90px;
            border-bottom-width: 0;
            border-color: #00659C;
        }

.spacer {
    display: block;
    clear: both;
    line-height: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: .01em;
}

.AETabHeader {
    padding: 8px;
    background: url(/cms/images/admin/info_bg.gif) #FFE7A2 repeat-x;
    border-bottom: solid 2px #FFBE6B;
    line-height: 1.4em;
    font-size: 0.688em;
}

/* Photo Gallery */

.mod_featured_galleries {
    margin: 10px 0;
    padding: 13px 0 0 60px;
    width: 530px;
    height: 217px;
    background: url(/cms/images/backgrounds/bg_featured_galleries.png) no-repeat;
}

    .mod_featured_galleries ul {
        margin: 5px 20px 15px 0;
        padding: 0;
        list-style-type: none;
        float: left;
        border-top: 1px solid #bdbdbf;
        display: inline;
    }

        .mod_featured_galleries ul li {
            margin: 0;
            padding: 0;
            width: 230px;
            list-style-type: none;
            border-bottom: 1px solid #bdbdbf;
            background: url(/cms/images/bullet.gif) 10px 12px no-repeat;
            overflow: hidden;
        }

            .mod_featured_galleries ul li a {
                padding: 8px 0 8px 20px;
                color: #1b48a2;
                font-weight: bold;
                display: block;
            }

.mod_photo_select .photo_pag {
    margin-bottom: 1px;
    padding: 0 10px;
    height: 23px;
    line-height: 23px;
    border-bottom: 1px solid #e9e5cf;
    background: #fff;
    text-align: center;
}

    .mod_photo_select .photo_pag .left_but {
        float: left;
        width: 36px;
    }

    .mod_photo_select .photo_pag .circles {
        float: left;
        text-align: center;
    }

    .mod_photo_select .photo_pag .right_but {
        float: right;
        width: 36px;
    }

    .mod_photo_select .photo_pag * {
        vertical-align: middle;
    }

.mod_photo_select ul.gallery_photosHoriz {
    padding: 0;
    list-style-type: none;
    margin: 20px 0px 0px 30px;
}

    .mod_photo_select ul.gallery_photosHoriz li {
        margin: 0 0 15px;
        padding-left: 0;
        list-style-type: none;
        width: 133px;
        float: left;
        display: inline;
        text-align: center;
        overflow: hidden;
    }

        .mod_photo_select ul.gallery_photosHoriz li.padme {
            padding-left: 20px;
        }

        .mod_photo_select ul.gallery_photosHoriz li img {
            padding: 3px;
            border: 1px solid #e9e5cf;
        }

            .mod_photo_select ul.gallery_photosHoriz li img.active {
                padding: 2px;
                border: 2px solid #ab0534;
            }

.mod_photo_select ul.gallery_photos {
    margin: 13px auto;
    padding: 0;
    width: 286px;
    list-style-type: none;
}

    .mod_photo_select ul.gallery_photos li {
        margin: 0 0 15px;
        padding-left: 0;
        list-style-type: none;
        width: 133px;
        height: 102px;
        float: left;
        display: inline;
        text-align: center;
        overflow: hidden;
    }

        .mod_photo_select ul.gallery_photos li.padme {
            padding-left: 20px;
        }

        .mod_photo_select ul.gallery_photos li img {
            padding: 3px;
            border: 1px solid #e9e5cf;
        }

            .mod_photo_select ul.gallery_photos li img.active {
                padding: 2px;
                border: 2px solid #ab0534;
            }

#mod_photo_viewer {
}

    #mod_photo_viewer .photo_num {
        padding: 10px 10px 0 0;
        float: right;
    }

    #mod_photo_viewer .photo_area_border {
        padding: 2px;
        border: 1px solid #e0e0e2;
    }

        #mod_photo_viewer .photo_area_border .photo_area {
            padding: 5px 0;
            background: #e0e0e2 url(/cms/images/icons/loading.gif) 50% 40% no-repeat;
        }

            #mod_photo_viewer .photo_area_border .photo_area .img_area {
                margin: 0 auto;
                border: 1px solid #e9e5cf;
                background: #fff;
                position: relative;
            }

            #mod_photo_viewer .photo_area_border .photo_area #photo_left {
                position: absolute;
                top: 45%;
                left: -1px;
                z-index: 20;
                cursor: pointer;
            }

            #mod_photo_viewer .photo_area_border .photo_area #photo_right {
                position: absolute;
                top: 45%;
                right: -1px;
                z-index: 20;
                cursor: pointer;
            }

            #mod_photo_viewer .photo_area_border .photo_area .main_img {
                position: relative;
                z-index: 10;
            }

            #mod_photo_viewer .photo_area_border .photo_area .photo_caption {
                margin: 3px auto;
                font-size: 0.625em;
                color: #666;
            }

            #mod_photo_viewer .photo_area_border .photo_area .photo_desc {
                width: 570px;
                margin: 3px auto;
            }

.invisibile {
    visibility: hidden;
}

/* Smart Bug */

.smartbug ul {
    list-style-type: none;
    background-color: #ccc;
    font-size: 0.625em;
    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;
    }

/* Video Gallery */

.mod_video_player {
}

    .mod_video_player .video_leftcol {
        width: 480px;
        float: left;
        display: inline;
    }

    .mod_video_player .video_rightcol {
        width: 194px;
        float: right;
        display: inline;
        font-size: 0.688em;
    }

        .mod_video_player .video_rightcol .views_stars {
            padding: 10px 0;
        }

.alert {
    margin: 0px 0px 20px 0;
    background: #861313 url(/cms/images/gradRed.gif) repeat-x;
    border: 1px solid #861313;
    color: #fff;
    padding: 10px;
}

    .alert a, .alert .date {
        color: #fff;
    }

.alertItem {
    margin: 0 0 10px 0;
}

/* Email a Friend Styles */

.eaf_wrpr {
    width: 488px;
    padding: 10px;
    margin: 0 auto;
}

    .eaf_wrpr .red {
        padding-right: 12px;
        background: transparent url(/cms/images/global/field-error.gif) no-repeat 100% 2px;
    }

.accountBlocks {
    position: relative;
    min-height: 1px;
    margin: 55px 0 45px 0;
    -moz-box-shadow: 0px 0px 3px 1px #ccc;
    -webkit-box-shadow: 0px 0px 3px 1px #ccc;
    box-shadow: 0px 0px 3px 1px #ccc;
}

    .accountBlocks .inner {
        padding: 40px 25px 40px 25px;
    }

    .accountBlocks .blockhdng {
        position: absolute;
        top: -20px;
        left: 15px;
        padding: 3px 10px;
        margin: 0;
        background-color: #fff;
        background-position: 50% 50%;
        font-size: 22px;
        text-transform: none;
        line-height: 35.2px;
    }


.accountLogin .accountBlocks .blockhdng {
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    width: max-content;
}


.create-an-account-table {
    padding: 25px;
}

    .create-an-account-table .clearfix:last-child {
        margin-top: 1em;
    }

.floatLeft {
    float: left;
    display: inline;
}

.floatRight {
    float: right;
    display: inline;
}

.multiColumn {
}

    .multiColumn .halfColumn {
        float: left;
        display: inline;
        width: 49%;
    }

    .multiColumn .rightColumn {
        float: right;
    }

/* .accountLogin {background:url(/cms/images/global/lbl-or.gif) no-repeat center 45%;} */
.accountLogin .halfColumn {
    width: 46%;
}

.accountBlocks .cartwrpr {
    margin: 0;
    padding: 0;
}

.accountBlocks .multipleShips {
    border-bottom: 0;
    padding: 0;
    margin: 0;
}

.formRow {
    margin: 0 0 1.5em 0;
}

label {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 7px;
    display: inline-block;
}

.main-content input[type="text"],
.main-content input[type="file"],
.main-content input[type="password"],
.main-content input[type="search"],
.main-content input[type="email"],
.main-content input[type="url"],
.main-content input[type="tel"],
.main-content input[type="number"],
.main-content textarea,
.main-content select {
    padding: 18px 30px;
    border-radius: 30px;
    border: 1px solid #C1C2C3;
    width: 100%;
    -webkit-appearance: none;
}

    .main-content input[type="text"]:focus,
    .main-content input[type="file"]:focus,
    .main-content input[type="password"]:focus,
    .main-content input[type="search"]:focus,
    .main-content input[type="email"]:focus,
    .main-content input[type="url"]:focus,
    .main-content input[type="tel"]:focus,
    .main-content input[type="number"]:focus,
    .main-content textarea:focus,
    .main-content select:focus {
        border: 1px solid #003d7d;
        outline: 0;
    }

.formRow input.full {
    width: 93%;
}

.formRow .req,
.formRow .fieldreq {
    padding: 0 0 0 12px;
    background-position: 0 6px;
}

.formRow .red {
    padding: 0 0 0 12px;
    background-position: 0 2px;
}

.formRow .error, .formRow .fieldred {
    padding: 0 0 0 12px;
    background-position: 0 6px;
}

.formRow.lower-form {
    text-align: center;
}

    .formRow.lower-form .btn {
    }

.opt {
    font-weight: bold;
}

.forms fieldset {
    margin: 0;
    border: 0;
    padding: 0;
}

.formRow .formLabel {
    display: block;
    font-weight: normal;
}

.formsColumn .formRow .formLabel {
    float: left;
    display: inline;
    width: 110px;
    margin-right: 10px;
}

.multiCol .colWrap {
    float: left;
    display: inline;
}

.multiCol2 .colWrap {
    width: 48%;
}

.multiCol .ratio35 {
    width: 34%;
}

.multiCol .ratio40 {
    width: 39%;
}

.multiCol .ratio60 {
    width: 59%;
}

.multiCol .ratio65 {
    width: 64%;
}

.req {
    padding-right: 12px;
    background: url(/cms/images/layout/icon_required.gif) no-repeat 97% 4px;
}

.eaf_req {
    padding-right: 12px;
    font-weight: bold;
    background: url(/cms/images/layout/icon_required.gif) no-repeat 97% 4px;
}

.eaf_red {
    padding-right: 12px;
    font-weight: bold;
    color: #f00;
    background: url(/cms/images/layout/icon_error.gif) no-repeat 97% 4px;
}

.eaf_help {
    font-size: 0.625em;
    color: #999;
}

/*Photo Gallery Styles */

.mod_landing_gal {
}

    .mod_landing_gal ul li {
        margin-top: 5px;
        float: left;
        display: inline;
        overflow: hidden;
        margin-left: 27px;
        text-align: center;
        margin-bottom: 10px;
    }

        .mod_landing_gal ul li img {
            padding: 3px;
            border: 1px solid #e9e5cf;
        }


#demotip {
    display: none;
    background: transparent url(/tools/img/tooltip/black_arrow.png);
    font-size: 0.750em;
    height: 70px;
    width: 160px;
    padding: 25px;
    color: #fff;
}


/* 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: 0.688em;
    color: #999999;
    font-weight: bold;
}

.toolTipName {
    font-size: 0.875em;
    color: #666666;
    font-weight: bold;
    margin-bottom: 14px;
}

/* Event Tooltip Classes */
.eventToolTipWrpr {
    display: none;
    width: 340px;
    z-index: 99;
}

.eventToolTipShadow {
    background: url(/cms/images/core/tooltipbacktop.png) no-repeat top left;
    padding: 10px 13px 1px 13px;
    color: #666666;
}

.eventToolTopShadowBottom {
    background: url(/cms/images/core/tooltipbackbottom.png) no-repeat top left;
    width: 340px;
    height: 16px;
}

.eventToolTipDate {
    font-size: 0.688em;
    color: #999999;
    font-weight: bold;
}

.eventToolTipName {
    font-size: 0.875em;
    color: #666666;
    font-weight: bold;
    margin-bottom: 14px;
}

.eventToolTipDates {
    margin-bottom: 5px;
}

.eventToolTipImage {
    margin-bottom: 5px;
}

.eventToolTipDuration {
    margin-bottom: 5px;
}

.eventToolTipLocation {
    margin-bottom: 5px;
}

.eventToolTipDescription {
}

.filterViewWrpr {
    float: left;
    display: inline;
}

.filterSortFieldsWrpr {
    float: right;
    display: inline;
}

.monthYear {
    float: right;
}

.filterBy {
    float: right;
    margin-right: 10px;
}

/* Event Classes */
.eventsHeadWrpr {
}

.eventsCalendarsMonthSummaryWrpr {
    display: none;
}

.eventsCalendarListHead {
    font-weight: normal;
    font-size: 1.250em;
    color: #2b79b3;
    margin: 0 0 10px 0;
}

.eventsCalendarItemsMargin {
    padding-bottom: 20px;
}

.eventsCalendarItem {
    margin-bottom: 10px;
}

.eventTime {
    color: #587D58;
    margin-right: 10px;
}

a.eventLink, a.eventLink:link, a.eventLink:visited {
    text-decoration: none;
    font-weight: bold;
    text-decoration: underline;
}

    a.eventLink:hover {
        text-decoration: none;
    }

/* Event Homepage Widget Classes */

.eventsHomeWidgetItem {
    margin: 0 0 5px 0;
}

.eventsDayWrpr {
    margin: 0 0 20px 0;
}

/* Contact us Non Wyswiwyg styles */

dl.forms {
    float: left;
    display: inline;
    width: 100%;
    margin: 0 0 10px 0;
}

    dl.forms dt {
        float: left;
        clear: left;
        width: 115px;
        margin: 0;
        padding: 0 12px 7px 0;
        text-align: left;
    }

        dl.forms dt.full {
            width: 90%;
            clear: both;
        }

    dl.forms dd {
        float: left;
        width: 60%;
        margin: 0;
        padding: 0 0 7px 0;
    }

        dl.forms dd.clear {
            padding: 0;
            margin: 0;
        }

        dl.forms dd.full {
            width: 90%;
            clear: both;
        }

        dl.forms dd.clear {
            width: 90%;
            clear: both;
            float: none;
        }

        dl.forms dd.help {
            padding-top: 2px;
        }

    dl.forms dl {
        float: none;
        display: block;
        margin: 0;
    }

    dl.forms .req {
        font-weight: bold;
    }

    dl.forms .error {
        font-weight: bold;
        color: #f00;
    }

    dl.forms input.text {
        width: 160px;
    }



/* Photo gallery */

.galleryListing {
}

    .galleryListing h2 {
        margin: 0 0 15px;
    }

    .galleryListing .galleryItem {
        position: relative;
        margin: 0 0 20px;
        background-size: cover;
        background-position: 50% 50%;
        -webkit-box-shadow: 1px 1px 3px 0 #555555;
        box-shadow: 1px 1px 3px 0 #555555;
    }

        .galleryListing .galleryItem .title {
            background: rgba(0, 61, 125, 1);
            font-weight: 900;
            font-size: 14px;
            text-transform: uppercase;
            color: #ffffff;
            position: absolute;
            bottom: 0px;
            left: 0px;
            width: 100%;
            padding: 10px 20px;
            margin: 0px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            text-align: center;
            border-bottom: 5px solid #d82013;
        }

        .galleryListing .galleryItem a:hover .title,
        .galleryListing .galleryItem a:focus .title {
            background: rgba(0, 61, 125, .6);
        }

.photo_email {
    display: none;
}


.photo_goback,
.back-link {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
}

    .photo_goback:before,
    .back-link:before {
        content: "";
        background: transparent url(/cms/images/svg/arrow-right.svg) no-repeat 100% 50%;
        transform: rotate(180deg);
        display: inline-block;
        width: 40px;
        height: 10px;
    }

.photoGalleryWrpr {
    position: relative;
    margin-bottom: 15px;
}

    .photoGalleryWrpr h2 {
        color: #585858;
        font-size: 1.125em;
        font-weight: normal;
        margin: 0 0 10px;
        display: inline-block;
    }

    .photoGalleryWrpr .photo_toolbar {
        height: 20px;
    }

        .photoGalleryWrpr .photo_toolbar a.photo_goback, #mod_photo_viewer .photo_toolbar a.photo_goback:link, #mod_photo_viewer .photo_toolbar a.photo_goback:visited {
            background: url("/cms/images/gallery/icon_go_back.gif") no-repeat scroll 0 0 transparent;
            color: #585858;
            display: inline-block;
            float: left;
            padding-left: 17px;
            text-decoration: none;
        }

        .photoGalleryWrpr .photo_toolbar a.photo_email, #mod_photo_viewer .photo_toolbar a.photo_email:link, #mod_photo_viewer .photo_toolbar a.photo_email:visited {
            background: url("/cms/images/gallery/icon_email_to.gif") no-repeat scroll 0 0 transparent;
            color: #585858;
            display: inline-block;
            float: right;
            padding-left: 19px;
            text-decoration: none;
        }

.photoGalleryCycleWrpr {
    background: url("/cms/images/gallery/loading.gif") no-repeat scroll 50% 40% transparent;
    border: 0px solid #A7A7A7;
    padding: 0;
    position: relative;
    width: 100% !important;
    z-index: 10;
}

.photoGalleryPhotoCountWrpr {
    display: inline-block;
    float: right;
}

.photoGalleryPhotoCount {
    color: #6E6E6E;
}

.photoGalleryBorder {
    border: 1px solid #E0E0E2;
    padding: 2px;
    position: relative;
}

.photoGalleryCycleItem {
    width: 100%;
}

.photoGalleryCyclePhotoWrpr {
    margin: 30px auto 10px;
    padding: 0;
    position: relative;
    text-align: center;
}

.photoGalleryNavLeft {
    display: none;
    cursor: pointer;
    left: 0;
    position: absolute;
    top: 45%;
    z-index: 20;
}

.photoGalleryNavRight {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 45%;
    z-index: 20;
}

.photoGalleryPhoto {
}

.photoGalleryCaption {
    color: #666666;
    font-size: 0.625em;
    margin: 3px auto;
}

.photoGalleryDesc {
}

.photoGalleryThumb {
    border-style: none;
    height: 60px;
    width: 80px;
}

.photoGalleryPhotoNavHoriz {
    height: 1%;
    margin: 15px 0 15px 1px;
    overflow: hidden;
    position: relative;
    width: 564px;
}

    .photoGalleryPhotoNavHoriz li {
        float: left;
        list-style: none outside none;
        margin: 0 6px 0 0;
        padding: 0;
        height: 60px;
    }

    .photoGalleryPhotoNavHoriz a.prevPage {
        display: none;
        background: url("/cms/images/gallery/thumbs_arrow_back.gif") no-repeat scroll 0 0 transparent;
        cursor: pointer;
        float: left;
        height: 62px;
        text-decoration: none;
        width: 15px;
    }

    .photoGalleryPhotoNavHoriz a.nextPage {
        display: none;
        background: url("/cms/images/gallery/thumbs_arrow_next.gif") no-repeat scroll 0 0 transparent;
        cursor: pointer;
        float: right;
        height: 62px;
        text-decoration: none;
        width: 15px;
    }

    .photoGalleryPhotoNavHoriz a.disabled {
        background-position: 0 -62px;
    }

    .photoGalleryPhotoNavHoriz li a {
        border: 1px solid #fff;
        display: block;
        text-align: center;
        width: 80px;
        height: 60px;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .photoGalleryPhotoNavHoriz li.activeSlide a {
        border: 1px solid #990000;
    }

    .photoGalleryPhotoNavHoriz a.activeSlide {
        border: 1px solid #999999;
    }

        .photoGalleryPhotoNavHoriz a.activeSlide img {
            cursor: default;
            opacity: 0.4;
        }

    .photoGalleryPhotoNavHoriz a:focus {
        outline: medium none;
    }

    .photoGalleryPhotoNavHoriz img {
    }

    .photoGalleryPhotoNavHoriz .scrollable ul {
        margin: 0;
        padding: 0;
    }

    .photoGalleryPhotoNavHoriz .scrollable .items {
        cursor: pointer;
        float: left;
        height: 62px;
        margin: 0;
        padding: 0;
        vertical-align: middle;
        width: 82px;
    }

.photoGalleryCycleCredits {
    font-size: 0.688em;
    font-style: italic;
    margin: 0 0 8px 30px;
    width: 500px;
}

.photoGalleryCycleDesc {
    margin: 0 0 0 30px;
    width: 500px;
}

.photoGalleryPhotoNavHoriz .scrollable {
    float: left;
    height: 62px;
    margin: 0 0 10px 6px;
    overflow: hidden;
    position: relative;
    width: 528px;
}

    .photoGalleryPhotoNavHoriz .scrollable .items {
        position: absolute;
        width: 20000em;
    }

        .photoGalleryPhotoNavHoriz .scrollable .items div {
            float: left;
        }

.photoGalleryPhotoNavHoriz .navi {
    height: 20px;
    margin-left: 268px;
    width: 280px;
}

    .photoGalleryPhotoNavHoriz .navi a {
        background: url("/cms/images/gallery/navigator.gif") no-repeat scroll 0 0 transparent;
        cursor: pointer;
        display: block;
        float: left;
        font-size: 0.063em;
        height: 8px;
        margin: 3px;
        width: 8px;
    }

        .photoGalleryPhotoNavHoriz .navi a:hover {
            background-position: 0 -8px;
        }

        .photoGalleryPhotoNavHoriz .navi a.active {
            background-position: 0 -16px;
            cursor: default;
        }


/* Banner Module */
.bannerWidget {
    position: relative;
    margin-bottom: 5px;
    overflow: hidden;
    border: 1px solid #e0dfdf;
}

    .bannerWidget .bwContent {
        z-index: 0;
    }

    .bannerWidget .nav {
        position: absolute;
        bottom: 13px;
        left: 16px;
        z-index: 1;
    }

        .bannerWidget .nav a,
        .bannerWidget .nav a:link,
        .bannerWidget .nav a:visited {
            float: left;
            display: inline;
            margin: 0 8px 0 0;
            padding: 1px;
            background: #fff;
            border: 1px solid #1C4E87;
            text-decoration: none;
        }

            .bannerWidget .nav a span,
            .bannerWidget .nav a:link span,
            .bannerWidget .nav a:visited span {
                display: block;
                padding: 2px 4px;
            }

            .bannerWidget .nav a.imgThumb img,
            .bannerWidget .nav a.imgThumb:link img,
            .bannerWidget .nav a.imgThumb:visited img {
                width: 75px;
            }

            .bannerWidget .nav a.indicator span,
            .bannerWidget .nav a.indicator:link span,
            .bannerWidget .nav a.indicator:visited span {
                display: block;
                width: 8px;
                height: 8px;
                padding: 0;
                background: #fff;
                text-indent: -9999em;
                overflow: hidden;
            }

            .bannerWidget .nav a.activeSlide span,
            .bannerWidget .nav a.activeSlide:link span,
            .bannerWidget .nav a.activeSlide:visited span {
                color: #fff;
                background: #1C4E87;
            }

            .bannerWidget .nav a:focus {
                outline: none;
            }


/* Begin Commenting styles */
.cmt_nav {
    position: relative;
    width: 650px;
    min-height: 1px;
    text-align: center;
    background: #fff;
    z-index: 100;
    padding: 0;
}

    .cmt_nav ul {
        margin: 0;
        padding: 0;
    }

    .cmt_nav li {
        float: left;
        list-style-type: none;
        width: 150px;
        padding: 0px;
        margin: 0px -1px -1px 0px;
        border: solid 1px #c0dcf1;
        border-bottom: none;
    }

    .cmt_nav a, .cmt_nav a:link, .cmt_nav a:visited {
        padding: 0px 0 0px 7px;
        font-size: 0.813em;
        display: block;
        font-family: Georgia, Sans-Serif;
        color: #2777d1;
        height: 38px;
        text-transform: uppercase;
    }

    .cmt_nav span {
        padding: 15px 9px 15px 3px;
        font-size: 0.813em;
        display: block;
        font-family: Georgia, Sans-Serif;
        color: #2777d1;
        text-transform: uppercase;
    }

        .cmt_nav span:hover {
            background-color: #ebf2f8;
            cursor: pointer;
        }

/* Commenting Box */
.cmt_box {
    min-height: 340px;
    width: 648px;
    position: relative;
    border: solid 1px #c0dcf1;
    clear: both;
    background: #ebf2f8;
    padding-bottom: 12px;
    overflow: hidden;
}

    .cmt_box h2 {
        margin-left: 10px;
    }

    .cmt_box h4 {
        font-family: Georgia, Serif;
        font-size: 0.938em;
        font-weight: normal;
        color: #acc3da;
        padding: 0;
        margin: 0;
    }

    .cmt_box strong {
        color: #000;
    }

.cmt_read {
    position: absolute;
    z-index: 999999;
    top: 999px;
}

.cmt_read_inner {
    min-height: 300px;
}

.cmt_leave {
    position: absolute;
    z-index: 99999;
    top: 0;
}

.cmt_field {
    margin-top: 10px;
    margin-left: 8px;
    float: left;
}

.cmt_name {
    width: 140px;
    float: left;
}

    .cmt_name p {
        float: left;
        margin-left: 15px;
    }

.cmt_textwrp {
    width: 630px;
}

.cmt_text {
    border: 1px solid #b0d8f2;
    background: #fff;
    width: 415px;
    margin: 5px 0 0 163px;
    padding: 10px 20px 10px 20px;
    height: 42px;
    overflow: auto;
    overflow-x: hidden;
}

/* End Commenting styles */

/* jQuery.Rating Plugin CSS - http://www.fyneworks.com/jquery/star-rating/ */
div.rating-cancel, div.star-rating {
    float: left;
    width: 17px;
    height: 15px;
    text-indent: -999em;
    cursor: pointer;
    display: block;
    background: transparent;
    overflow: hidden
}

    div.rating-cancel, div.rating-cancel a {
        background: url(/cms/images/delete.gif) no-repeat 0 -16px
    }

    div.star-rating, div.star-rating a {
        background: url(/cms/images/star.gif) no-repeat 0 0px
    }

        div.rating-cancel a, div.star-rating a {
            display: block;
            width: 16px;
            height: 100%;
            background-position: 0 0px;
            border: 0
        }

div.star-rating-on a {
    background-position: 0 -16px !important
}

div.star-rating-hover a {
    background-position: 0 -32px
}
/* Read Only CSS */
div.star-rating-readonly a {
    cursor: default !important
}
/* Partial Star CSS */
div.star-rating {
    background: transparent !important;
    overflow: hidden !important
}
/* END jQuery.Rating Plugin CSS */

/* Generic Pager */
.sortStatus {
    float: left;
    font-size: 0.875em;
}

.genericPager {
    float: right;
}

    .genericPager ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .genericPager li {
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        margin: 0 5px 5px 0;
    }

        .genericPager li a {
            color: #23447e;
            padding: 5px 10px;
            text-decoration: none;
            background: #eeeeee;
            border-radius: 16px;
        }

            .genericPager li a:hover,
            .genericPager li a:focus {
                color: #fff;
                background: #23447e;
                text-decoration: none;
            }

        .genericPager li.nolink {
            color: #ccc;
            border: 1px solid #ddd;
            padding: 1px 8px;
        }

        .genericPager li.active span {
            color: #fff;
            padding: 5px 10px;
            background-color: #23447e;
            border-radius: 16px;
            display: inline-block;
        }

/* jQuery UI */
.ui-helper-hidden {
    display: none;
}

.ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}

.ui-helper-clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.ui-helper-clearfix {
    display: inline-block;
}
/* required comment for clearfix to work in Opera \*/

* html .ui-helper-clearfix {
    height: 1%;
}

.ui-helper-clearfix {
    display: block;
}
/* end clearfix */

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
}

.ui-state-disabled {
    cursor: default !important;
}

.ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

.ui-widget-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#ui-datepicker-div .ui-widget {
    font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
    font-size: 1.1em;
}

#ui-datepicker-div.ui-widget {
    font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
    font-size: 1.1em;
}

    #ui-datepicker-div.ui-widget .ui-widget {
        font-size: 1em;
    }

    #ui-datepicker-div .ui-widget .ui-widget {
        font-size: 1em;
    }

    #ui-datepicker-div.ui-widget input, #ui-datepicker-div.ui-widget select, #ui-datepicker-div.ui-widget textarea, #ui-datepicker-div.ui-widget button {
        font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
        font-size: 1em;
    }

    #ui-datepicker-div.ui-widget input, #ui-datepicker-div.ui-widget select, #ui-datepicker-div.ui-widget textarea, #ui-datepicker-div.ui-widget button {
        font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
        font-size: 1em;
    }

    #ui-datepicker-div .ui-widget input, #ui-datepicker-div .ui-widget select, #ui-datepicker-div .ui-widget textarea, #ui-datepicker-div .ui-widget button {
        font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
        font-size: 1em;
    }

    #ui-datepicker-div .ui-widget input, #ui-datepicker-div .ui-widget select, #ui-datepicker-div .ui-widget textarea, #ui-datepicker-div .ui-widget button {
        font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
        font-size: 1em;
    }

#ui-datepicker-div.ui-widget-content {
    border: 1px solid #a6c9e2;
    background: #fcfdfd url(/cms/images/jquery-ui/ui-bg_inset-hard_100_fcfdfd_1x100.png) 50% bottom repeat-x;
    color: #222;
}

#ui-datepicker-div .ui-widget-content {
    border: 1px solid #a6c9e2;
    background: #fcfdfd url(/cms/images/jquery-ui/ui-bg_inset-hard_100_fcfdfd_1x100.png) 50% bottom repeat-x;
    color: #222;
}

    #ui-datepicker-div.ui-widget-content a {
        color: #222;
    }

    #ui-datepicker-div .ui-widget-content a {
        color: #222;
    }

#ui-datepicker-div.ui-widget-header {
    border: 1px solid #4297d7;
    background: #5c9ccc url(/cms/images/jquery-ui/ui-bg_gloss-wave_55_5c9ccc_500x100.png) 50% 50% repeat-x;
    color: #fff;
    font-weight: bold;
}

#ui-datepicker-div .ui-widget-header {
    border: 1px solid #4297d7;
    background: #5c9ccc url(/cms/images/jquery-ui/ui-bg_gloss-wave_55_5c9ccc_500x100.png) 50% 50% repeat-x;
    color: #fff;
    font-weight: bold;
}

    #ui-datepicker-div.ui-widget-header a {
        color: #fff;
    }

    #ui-datepicker-div .ui-widget-header a {
        color: #fff;
    }

    #ui-datepicker-div.ui-state-default, #ui-datepicker-div.ui-widget-content .ui-state-default, #ui-datepicker-div.ui-widget-header .ui-state-default {
        border: 1px solid #c5dbec;
        background: #dfeffc url(/cms/images/jquery-ui/ui-bg_glass_85_dfeffc_1x400.png) 50% 50% repeat-x;
        font-weight: bold;
        color: #2e6e9e;
    }

    #ui-datepicker-div .ui-state-default, #ui-datepicker-div .ui-widget-content .ui-state-default, #ui-datepicker-div .ui-widget-header .ui-state-default {
        border: 1px solid #c5dbec;
        background: #dfeffc url(/cms/images/jquery-ui/ui-bg_glass_85_dfeffc_1x400.png) 50% 50% repeat-x;
        font-weight: bold;
        color: #2e6e9e;
    }

        #ui-datepicker-div.ui-state-default a, #ui-datepicker-div.ui-state-default a:link, #ui-datepicker-div.ui-state-default a:visited {
            color: #2e6e9e;
            text-decoration: none;
        }

            #ui-datepicker-div .ui-state-default a, #ui-datepicker-div .ui-state-default a:link, #ui-datepicker-div .ui-state-default a:visited {
                color: #2e6e9e;
                text-decoration: none;
            }

    #ui-datepicker-div.ui-state-hover, #ui-datepicker-div.ui-widget-content .ui-state-hover, #ui-datepicker-div.ui-widget-header .ui-state-hover, #ui-datepicker-div.ui-state-focus, .ui-widget-content .ui-state-focus, #ui-datepicker-div.ui-widget-header .ui-state-focus {
        border: 1px solid #79b7e7;
        background: #d0e5f5 url(/cms/images/jquery-ui/ui-bg_glass_75_d0e5f5_1x400.png) 50% 50% repeat-x;
        font-weight: bold;
        color: #1d5987;
    }

    #ui-datepicker-div .ui-state-hover, #ui-datepicker-div .ui-widget-content .ui-state-hover, #ui-datepicker-div .ui-widget-header .ui-state-hover, #ui-datepicker-div .ui-state-focus, .ui-widget-content .ui-state-focus, #ui-datepicker-div .ui-widget-header .ui-state-focus {
        border: 1px solid #79b7e7;
        background: #d0e5f5 url(/cms/images/jquery-ui/ui-bg_glass_75_d0e5f5_1x400.png) 50% 50% repeat-x;
        font-weight: bold;
        color: #1d5987;
    }

        #ui-datepicker-div.ui-state-hover a, #ui-datepicker-div.ui-state-hover a:hover {
            color: #1d5987;
            text-decoration: none;
        }

            #ui-datepicker-div .ui-state-hover a, #ui-datepicker-div .ui-state-hover a:hover {
                color: #1d5987;
                text-decoration: none;
            }

    #ui-datepicker-div.ui-state-active, #ui-datepicker-div.ui-widget-content .ui-state-active, #ui-datepicker-div.ui-widget-header .ui-state-active {
        border: 1px solid #79b7e7;
        background: #f5f8f9 url(/cms/images/jquery-ui/ui-bg_inset-hard_100_f5f8f9_1x100.png) 50% 50% repeat-x;
        font-weight: bold;
        color: #e17009;
    }

    #ui-datepicker-div .ui-state-active, #ui-datepicker-div .ui-widget-content .ui-state-active, #ui-datepicker-div .ui-widget-header .ui-state-active {
        border: 1px solid #79b7e7;
        background: #f5f8f9 url(/cms/images/jquery-ui/ui-bg_inset-hard_100_f5f8f9_1x100.png) 50% 50% repeat-x;
        font-weight: bold;
        color: #e17009;
    }

        #ui-datepicker-div.ui-state-active a, #ui-datepicker-div.ui-state-active a:link, #ui-datepicker-div.ui-state-active a:visited {
            color: #e17009;
            text-decoration: none;
        }

#ui-datepicker-div.ui-widget :active {
    outline: none;
}

#ui-datepicker-div .ui-state-active a, #ui-datepicker-div .ui-state-active a:link, #ui-datepicker-div .ui-state-active a:visited {
    color: #e17009;
    text-decoration: none;
}

#ui-datepicker-div .ui-widget :active {
    outline: none;
}

#ui-datepicker-div.ui-state-highlight, #ui-datepicker-div.ui-widget-content .ui-state-highlight, #ui-datepicker-div.ui-widget-header .ui-state-highlight {
    border: 1px solid #fad42e;
    background: #fbec88 url(/cms/images/jquery-ui/ui-bg_flat_55_fbec88_40x100.png) 50% 50% repeat-x;
    color: #363636;
}

#ui-datepicker-div .ui-state-highlight, #ui-datepicker-div .ui-widget-content .ui-state-highlight, #ui-datepicker-div .ui-widget-header .ui-state-highlight {
    border: 1px solid #fad42e;
    background: #fbec88 url(/cms/images/jquery-ui/ui-bg_flat_55_fbec88_40x100.png) 50% 50% repeat-x;
    color: #363636;
}

    #ui-datepicker-div.ui-state-highlight a, #ui-datepicker-div.ui-widget-content .ui-state-highlight a, #ui-datepicker-div.ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

    #ui-datepicker-div .ui-state-highlight a, #ui-datepicker-div .ui-widget-content .ui-state-highlight a, #ui-datepicker-div .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

#ui-datepicker-div.ui-state-error, #ui-datepicker-div.ui-widget-content .ui-state-error, #ui-datepicker-div.ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #fef1ec url(/cms/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
    color: #cd0a0a;
}

#ui-datepicker-div .ui-state-error, #ui-datepicker-div .ui-widget-content .ui-state-error, #ui-datepicker-div .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #fef1ec url(/cms/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
    color: #cd0a0a;
}

    #ui-datepicker-div.ui-state-error a, #ui-datepicker-div.ui-widget-content .ui-state-error a, #ui-datepicker-div.ui-widget-header .ui-state-error a {
        color: #cd0a0a;
    }

    #ui-datepicker-div .ui-state-error a, #ui-datepicker-div .ui-widget-content .ui-state-error a, #ui-datepicker-div .ui-widget-header .ui-state-error a {
        color: #cd0a0a;
    }

#ui-datepicker-div.ui-state-error-text, #ui-datepicker-div.ui-widget-content .ui-state-error-text, #ui-datepicker-div.ui-widget-header .ui-state-error-text {
    color: #cd0a0a;
}

#ui-datepicker-div .ui-state-error-text, #ui-datepicker-div .ui-widget-content .ui-state-error-text, #ui-datepicker-div .ui-widget-header .ui-state-error-text {
    color: #cd0a0a;
}

#ui-datepicker-div.ui-priority-primary, #ui-datepicker-div.ui-widget-content .ui-priority-primary, #ui-datepicker-div.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

#ui-datepicker-div .ui-priority-primary, #ui-datepicker-div .ui-widget-content .ui-priority-primary, #ui-datepicker-div .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

#ui-datepicker-div.ui-priority-secondary, #ui-datepicker-div.ui-widget-content .ui-priority-secondary, #ui-datepicker-div.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

#ui-datepicker-div .ui-priority-secondary, #ui-datepicker-div .ui-widget-content .ui-priority-secondary, #ui-datepicker-div .ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

#ui-datepicker-div.ui-state-disabled, #ui-datepicker-div.ui-widget-content .ui-state-disabled, #ui-datepicker-div.ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

#ui-datepicker-div .ui-state-disabled, #ui-datepicker-div .ui-widget-content .ui-state-disabled, #ui-datepicker-div .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

#ui-datepicker-div.ui-icon {
    width: 16px;
    height: 16px;
    background-image: url(/cms/images/jquery-ui/ui-icons_469bdd_256x240.png);
}

#ui-datepicker-div .ui-icon {
    width: 16px;
    height: 16px;
    background-image: url(/cms/images/jquery-ui/ui-icons_469bdd_256x240.png);
}

#ui-datepicker-div.ui-widget-content .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_469bdd_256x240.png);
}

#ui-datepicker-div .ui-widget-content .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_469bdd_256x240.png);
}

#ui-datepicker-div.ui-widget-header .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_d8e7f3_256x240.png);
}

#ui-datepicker-div .ui-widget-header .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_d8e7f3_256x240.png);
}

#ui-datepicker-div.ui-state-default .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_6da8d5_256x240.png);
}

#ui-datepicker-div .ui-state-default .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_6da8d5_256x240.png);
}

#ui-datepicker-div.ui-state-hover .ui-icon, #ui-datepicker-div.ui-state-focus .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_217bc0_256x240.png);
}

#ui-datepicker-div .ui-state-hover .ui-icon, #ui-datepicker-div .ui-state-focus .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_217bc0_256x240.png);
}

#ui-datepicker-div.ui-state-active .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_f9bd01_256x240.png);
}

#ui-datepicker-div .ui-state-active .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_f9bd01_256x240.png);
}

#ui-datepicker-div.ui-state-highlight .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_2e83ff_256x240.png);
}

#ui-datepicker-div .ui-state-highlight .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_2e83ff_256x240.png);
}

#ui-datepicker-div.ui-state-error .ui-icon, #ui-datepicker-div.ui-state-error-text .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_cd0a0a_256x240.png);
}

#ui-datepicker-div .ui-state-error .ui-icon, #ui-datepicker-div .ui-state-error-text .ui-icon {
    background-image: url(/cms/images/jquery-ui/ui-icons_cd0a0a_256x240.png);
}

#ui-datepicker-div .ui-icon-carat-1-n {
    background-position: 0 0;
}

#ui-datepicker-div .ui-icon-carat-1-ne {
    background-position: -16px 0;
}

#ui-datepicker-div .ui-icon-carat-1-e {
    background-position: -32px 0;
}

#ui-datepicker-div .ui-icon-carat-1-se {
    background-position: -48px 0;
}

#ui-datepicker-div .ui-icon-carat-1-s {
    background-position: -64px 0;
}

#ui-datepicker-div .ui-icon-carat-1-sw {
    background-position: -80px 0;
}

#ui-datepicker-div .ui-icon-carat-1-w {
    background-position: -96px 0;
}

#ui-datepicker-div .ui-icon-carat-1-nw {
    background-position: -112px 0;
}

#ui-datepicker-div .ui-icon-carat-2-n-s {
    background-position: -128px 0;
}

#ui-datepicker-div .ui-icon-carat-2-e-w {
    background-position: -144px 0;
}

#ui-datepicker-div .ui-icon-triangle-1-n {
    background-position: 0 -16px;
}

#ui-datepicker-div .ui-icon-triangle-1-ne {
    background-position: -16px -16px;
}

#ui-datepicker-div .ui-icon-triangle-1-e {
    background-position: -32px -16px;
}

#ui-datepicker-div .ui-icon-triangle-1-se {
    background-position: -48px -16px;
}

#ui-datepicker-div .ui-icon-triangle-1-s {
    background-position: -64px -16px;
}

#ui-datepicker-div .ui-icon-triangle-1-sw {
    background-position: -80px -16px;
}

#ui-datepicker-div .ui-icon-triangle-1-w {
    background-position: -96px -16px;
}

#ui-datepicker-div .ui-icon-triangle-1-nw {
    background-position: -112px -16px;
}

#ui-datepicker-div .ui-icon-triangle-2-n-s {
    background-position: -128px -16px;
}

#ui-datepicker-div .ui-icon-triangle-2-e-w {
    background-position: -144px -16px;
}

#ui-datepicker-div .ui-icon-arrow-1-n {
    background-position: 0 -32px;
}

#ui-datepicker-div .ui-icon-arrow-1-ne {
    background-position: -16px -32px;
}

#ui-datepicker-div .ui-icon-arrow-1-e {
    background-position: -32px -32px;
}

#ui-datepicker-div .ui-icon-arrow-1-se {
    background-position: -48px -32px;
}

#ui-datepicker-div .ui-icon-arrow-1-s {
    background-position: -64px -32px;
}

#ui-datepicker-div .ui-icon-arrow-1-sw {
    background-position: -80px -32px;
}

#ui-datepicker-div .ui-icon-arrow-1-w {
    background-position: -96px -32px;
}

#ui-datepicker-div .ui-icon-arrow-1-nw {
    background-position: -112px -32px;
}

#ui-datepicker-div .ui-icon-arrow-2-n-s {
    background-position: -128px -32px;
}

#ui-datepicker-div .ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px;
}

#ui-datepicker-div .ui-icon-arrow-2-e-w {
    background-position: -160px -32px;
}

#ui-datepicker-div .ui-icon-arrow-2-se-nw {
    background-position: -176px -32px;
}

#ui-datepicker-div .ui-icon-arrowstop-1-n {
    background-position: -192px -32px;
}

#ui-datepicker-div .ui-icon-arrowstop-1-e {
    background-position: -208px -32px;
}

#ui-datepicker-div .ui-icon-arrowstop-1-s {
    background-position: -224px -32px;
}

#ui-datepicker-div .ui-icon-arrowstop-1-w {
    background-position: -240px -32px;
}

#ui-datepicker-div .ui-icon-arrowthick-1-n {
    background-position: 0 -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-1-ne {
    background-position: -16px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-1-e {
    background-position: -32px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-1-se {
    background-position: -48px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-1-s {
    background-position: -64px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-1-sw {
    background-position: -80px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-1-w {
    background-position: -96px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-1-nw {
    background-position: -112px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px;
}

#ui-datepicker-div .ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px;
}

#ui-datepicker-div .ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px;
}

#ui-datepicker-div .ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px;
}

#ui-datepicker-div .ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px;
}

#ui-datepicker-div .ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px;
}

#ui-datepicker-div .ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px;
}

#ui-datepicker-div .ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px;
}

#ui-datepicker-div .ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px;
}

#ui-datepicker-div .ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px;
}

#ui-datepicker-div .ui-icon-arrowreturn-1-w {
    background-position: -64px -64px;
}

#ui-datepicker-div .ui-icon-arrowreturn-1-n {
    background-position: -80px -64px;
}

#ui-datepicker-div .ui-icon-arrowreturn-1-e {
    background-position: -96px -64px;
}

#ui-datepicker-div .ui-icon-arrowreturn-1-s {
    background-position: -112px -64px;
}

#ui-datepicker-div .ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px;
}

#ui-datepicker-div .ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px;
}

#ui-datepicker-div .ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px;
}

#ui-datepicker-div .ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px;
}

#ui-datepicker-div .ui-icon-arrow-4 {
    background-position: 0 -80px;
}

#ui-datepicker-div .ui-icon-arrow-4-diag {
    background-position: -16px -80px;
}

#ui-datepicker-div .ui-icon-extlink {
    background-position: -32px -80px;
}

#ui-datepicker-div .ui-icon-newwin {
    background-position: -48px -80px;
}

#ui-datepicker-div .ui-icon-refresh {
    background-position: -64px -80px;
}

#ui-datepicker-div .ui-icon-shuffle {
    background-position: -80px -80px;
}

#ui-datepicker-div .ui-icon-transfer-e-w {
    background-position: -96px -80px;
}

#ui-datepicker-div .ui-icon-transferthick-e-w {
    background-position: -112px -80px;
}

#ui-datepicker-div .ui-icon-folder-collapsed {
    background-position: 0 -96px;
}

#ui-datepicker-div .ui-icon-folder-open {
    background-position: -16px -96px;
}

#ui-datepicker-div .ui-icon-document {
    background-position: -32px -96px;
}

#ui-datepicker-div .ui-icon-document-b {
    background-position: -48px -96px;
}

#ui-datepicker-div .ui-icon-note {
    background-position: -64px -96px;
}

#ui-datepicker-div .ui-icon-mail-closed {
    background-position: -80px -96px;
}

#ui-datepicker-div .ui-icon-mail-open {
    background-position: -96px -96px;
}

#ui-datepicker-div .ui-icon-suitcase {
    background-position: -112px -96px;
}

#ui-datepicker-div .ui-icon-comment {
    background-position: -128px -96px;
}

#ui-datepicker-div .ui-icon-person {
    background-position: -144px -96px;
}

#ui-datepicker-div .ui-icon-print {
    background-position: -160px -96px;
}

#ui-datepicker-div .ui-icon-trash {
    background-position: -176px -96px;
}

#ui-datepicker-div .ui-icon-locked {
    background-position: -192px -96px;
}

#ui-datepicker-div .ui-icon-unlocked {
    background-position: -208px -96px;
}

#ui-datepicker-div .ui-icon-bookmark {
    background-position: -224px -96px;
}

#ui-datepicker-div .ui-icon-tag {
    background-position: -240px -96px;
}

#ui-datepicker-div .ui-icon-home {
    background-position: 0 -112px;
}

#ui-datepicker-div .ui-icon-flag {
    background-position: -16px -112px;
}

#ui-datepicker-div .ui-icon-calendar {
    background-position: -32px -112px;
}

#ui-datepicker-div .ui-icon-cart {
    background-position: -48px -112px;
}

#ui-datepicker-div .ui-icon-pencil {
    background-position: -64px -112px;
}

#ui-datepicker-div .ui-icon-clock {
    background-position: -80px -112px;
}

#ui-datepicker-div .ui-icon-disk {
    background-position: -96px -112px;
}

#ui-datepicker-div .ui-icon-calculator {
    background-position: -112px -112px;
}

#ui-datepicker-div .ui-icon-zoomin {
    background-position: -128px -112px;
}

#ui-datepicker-div .ui-icon-zoomout {
    background-position: -144px -112px;
}

#ui-datepicker-div .ui-icon-search {
    background-position: -160px -112px;
}

#ui-datepicker-div .ui-icon-wrench {
    background-position: -176px -112px;
}

#ui-datepicker-div .ui-icon-gear {
    background-position: -192px -112px;
}

#ui-datepicker-div .ui-icon-heart {
    background-position: -208px -112px;
}

#ui-datepicker-div .ui-icon-star {
    background-position: -224px -112px;
}

#ui-datepicker-div .ui-icon-link {
    background-position: -240px -112px;
}

#ui-datepicker-div .ui-icon-cancel {
    background-position: 0 -128px;
}

#ui-datepicker-div .ui-icon-plus {
    background-position: -16px -128px;
}

#ui-datepicker-div .ui-icon-plusthick {
    background-position: -32px -128px;
}

#ui-datepicker-div .ui-icon-minus {
    background-position: -48px -128px;
}

#ui-datepicker-div .ui-icon-minusthick {
    background-position: -64px -128px;
}

#ui-datepicker-div .ui-icon-close {
    background-position: -80px -128px;
}

#ui-datepicker-div .ui-icon-closethick {
    background-position: -96px -128px;
}

#ui-datepicker-div .ui-icon-key {
    background-position: -112px -128px;
}

#ui-datepicker-div .ui-icon-lightbulb {
    background-position: -128px -128px;
}

#ui-datepicker-div .ui-icon-scissors {
    background-position: -144px -128px;
}

#ui-datepicker-div .ui-icon-clipboard {
    background-position: -160px -128px;
}

#ui-datepicker-div .ui-icon-copy {
    background-position: -176px -128px;
}

#ui-datepicker-div .ui-icon-contact {
    background-position: -192px -128px;
}

#ui-datepicker-div .ui-icon-image {
    background-position: -208px -128px;
}

#ui-datepicker-div .ui-icon-video {
    background-position: -224px -128px;
}

#ui-datepicker-div .ui-icon-script {
    background-position: -240px -128px;
}

#ui-datepicker-div .ui-icon-alert {
    background-position: 0 -144px;
}

#ui-datepicker-div .ui-icon-info {
    background-position: -16px -144px;
}

#ui-datepicker-div .ui-icon-notice {
    background-position: -32px -144px;
}

#ui-datepicker-div .ui-icon-help {
    background-position: -48px -144px;
}

#ui-datepicker-div .ui-icon-check {
    background-position: -64px -144px;
}

#ui-datepicker-div .ui-icon-bullet {
    background-position: -80px -144px;
}

#ui-datepicker-div .ui-icon-radio-off {
    background-position: -96px -144px;
}

#ui-datepicker-div .ui-icon-radio-on {
    background-position: -112px -144px;
}

#ui-datepicker-div .ui-icon-pin-w {
    background-position: -128px -144px;
}

#ui-datepicker-div .ui-icon-pin-s {
    background-position: -144px -144px;
}

#ui-datepicker-div .ui-icon-play {
    background-position: 0 -160px;
}

#ui-datepicker-div .ui-icon-pause {
    background-position: -16px -160px;
}

#ui-datepicker-div .ui-icon-seek-next {
    background-position: -32px -160px;
}

#ui-datepicker-div .ui-icon-seek-prev {
    background-position: -48px -160px;
}

#ui-datepicker-div .ui-icon-seek-end {
    background-position: -64px -160px;
}

#ui-datepicker-div .ui-icon-seek-start {
    background-position: -80px -160px;
}

#ui-datepicker-div #ui-datepicker-div .ui-icon-seek-first {
    background-position: -80px -160px;
}

#ui-datepicker-div .ui-icon-stop {
    background-position: -96px -160px;
}

#ui-datepicker-div .ui-icon-eject {
    background-position: -112px -160px;
}

#ui-datepicker-div .ui-icon-volume-off {
    background-position: -128px -160px;
}

#ui-datepicker-div .ui-icon-volume-on {
    background-position: -144px -160px;
}

#ui-datepicker-div .ui-icon-power {
    background-position: 0 -176px;
}

#ui-datepicker-div .ui-icon-signal-diag {
    background-position: -16px -176px;
}

#ui-datepicker-div .ui-icon-signal {
    background-position: -32px -176px;
}

#ui-datepicker-div .ui-icon-battery-0 {
    background-position: -48px -176px;
}

#ui-datepicker-div .ui-icon-battery-1 {
    background-position: -64px -176px;
}

#ui-datepicker-div .ui-icon-battery-2 {
    background-position: -80px -176px;
}

#ui-datepicker-div .ui-icon-battery-3 {
    background-position: -96px -176px;
}

#ui-datepicker-div .ui-icon-circle-plus {
    background-position: 0 -192px;
}

#ui-datepicker-div .ui-icon-circle-minus {
    background-position: -16px -192px;
}

#ui-datepicker-div .ui-icon-circle-close {
    background-position: -32px -192px;
}

#ui-datepicker-div .ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}

#ui-datepicker-div .ui-icon-circle-triangle-s {
    background-position: -64px -192px;
}

#ui-datepicker-div .ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}

#ui-datepicker-div .ui-icon-circle-triangle-n {
    background-position: -96px -192px;
}

#ui-datepicker-div .ui-icon-circle-arrow-e {
    background-position: -112px -192px;
}

#ui-datepicker-div .ui-icon-circle-arrow-s {
    background-position: -128px -192px;
}

#ui-datepicker-div .ui-icon-circle-arrow-w {
    background-position: -144px -192px;
}

#ui-datepicker-div .ui-icon-circle-arrow-n {
    background-position: -160px -192px;
}

#ui-datepicker-div .ui-icon-circle-zoomin {
    background-position: -176px -192px;
}

#ui-datepicker-div .ui-icon-circle-zoomout {
    background-position: -192px -192px;
}

#ui-datepicker-div .ui-icon-circle-check {
    background-position: -208px -192px;
}

#ui-datepicker-div .ui-icon-circlesmall-plus {
    background-position: 0 -208px;
}

#ui-datepicker-div .ui-icon-circlesmall-minus {
    background-position: -16px -208px;
}

#ui-datepicker-div .ui-icon-circlesmall-close {
    background-position: -32px -208px;
}

#ui-datepicker-div .ui-icon-squaresmall-plus {
    background-position: -48px -208px;
}

#ui-datepicker-div .ui-icon-squaresmall-minus {
    background-position: -64px -208px;
}

#ui-datepicker-div .ui-icon-squaresmall-close {
    background-position: -80px -208px;
}

#ui-datepicker-div .ui-icon-grip-dotted-vertical {
    background-position: 0 -224px;
}

#ui-datepicker-div .ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px;
}

#ui-datepicker-div .ui-icon-grip-solid-vertical {
    background-position: -32px -224px;
}

#ui-datepicker-div .ui-icon-grip-solid-horizontal {
    background-position: -48px -224px;
}

#ui-datepicker-div .ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}

#ui-datepicker-div .ui-icon-grip-diagonal-se {
    background-position: -80px -224px;
}

#ui-datepicker-div.ui-corner-tl {
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
}

#ui-datepicker-div.ui-corner-tr {
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

#ui-datepicker-div.ui-corner-bl {
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#ui-datepicker-div.ui-corner-br {
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ui-datepicker-div.ui-corner-top {
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

#ui-datepicker-div.ui-corner-bottom {
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ui-datepicker-div.ui-corner-right {
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ui-datepicker-div.ui-corner-left {
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#ui-datepicker-div.ui-corner-all {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#ui-datepicker-div .ui-corner-tl {
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
}

#ui-datepicker-div .ui-corner-tr {
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

#ui-datepicker-div .ui-corner-bl {
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#ui-datepicker-div .ui-corner-br {
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ui-datepicker-div .ui-corner-top {
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

#ui-datepicker-div .ui-corner-bottom {
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ui-datepicker-div .ui-corner-right {
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ui-datepicker-div .ui-corner-left {
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#ui-datepicker-div .ui-corner-all {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#ui-datepicker-div .ui-widget-overlay {
    background: #aaa url(/cms/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
    opacity: .30;
    filter: Alpha(Opacity=30);
}

#ui-datepicker-div .ui-widget-shadow {
    margin: -8px 0 0 -8px;
    padding: 8px;
    background: #aaa url(/cms/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
    opacity: .30;
    filter: Alpha(Opacity=30);
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

#ui-datepicker-div .ui-resizable {
    position: relative;
}

#ui-datepicker-div .ui-resizable-handle {
    position: absolute;
    font-size: .1px;
    z-index: 99999;
    display: block;
}

#ui-datepicker-div .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

#ui-datepicker-div .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

#ui-datepicker-div .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

#ui-datepicker-div .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

#ui-datepicker-div .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

#ui-datepicker-div .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

#ui-datepicker-div .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

#ui-datepicker-div .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

#ui-datepicker-div .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

#ui-datepicker-div .ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black;
}

#ui-datepicker-div .ui-accordion {
    width: 100%;
}

    #ui-datepicker-div .ui-accordion .ui-accordion-header {
        cursor: pointer;
        position: relative;
        margin-top: 1px;
        zoom: 1;
    }

    #ui-datepicker-div .ui-accordion .ui-accordion-li-fix {
        display: inline;
    }

    #ui-datepicker-div .ui-accordion .ui-accordion-header-active {
        border-bottom: 0 !important;
    }

    #ui-datepicker-div .ui-accordion .ui-accordion-header a {
        display: block;
        font-size: 1em;
        padding: .5em .5em .5em .7em;
    }

#ui-datepicker-div .ui-accordion-icons .ui-accordion-header a {
    padding-left: 2.2em;
}

#ui-datepicker-div .ui-accordion .ui-accordion-header .ui-icon {
    position: absolute;
    left: .5em;
    top: 50%;
    margin-top: -8px;
}

#ui-datepicker-div .ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    margin-top: -2px;
    position: relative;
    top: 1px;
    margin-bottom: 2px;
    overflow: auto;
    display: none;
    zoom: 1;
}

#ui-datepicker-div .ui-accordion .ui-accordion-content-active {
    display: block;
}

#ui-datepicker-div .ui-autocomplete {
    position: absolute;
    cursor: default;
}

* html #ui-datepicker-div .ui-autocomplete {
    width: 1px;
}

#ui-datepicker-div .ui-menu {
    list-style: none;
    padding: 2px;
    margin: 0;
    display: block;
    float: left;
}

    #ui-datepicker-div .ui-menu .ui-menu {
        margin-top: -3px;
    }

    #ui-datepicker-div .ui-menu .ui-menu-item {
        margin: 0;
        padding: 0;
        zoom: 1;
        float: left;
        clear: left;
        width: 100%;
    }

        #ui-datepicker-div .ui-menu .ui-menu-item a {
            text-decoration: none;
            display: block;
            padding: .2em .4em;
            line-height: 1.5;
            zoom: 1;
        }

            #ui-datepicker-div .ui-menu .ui-menu-item a.ui-state-hover, #ui-datepicker-div .ui-menu .ui-menu-item a.ui-state-active {
                font-weight: normal;
                margin: -1px;
            }

#ui-datepicker-div .ui-button {
    display: inline-block;
    position: relative;
    padding: 0;
    margin-right: .1em;
    text-decoration: none !important;
    cursor: pointer;
    text-align: center;
    zoom: 1;
    overflow: visible;
}

#ui-datepicker-div .ui-button-icon-only {
    width: 2.2em;
}

#ui-datepicker-div button.ui-button-icon-only {
    width: 2.4em;
}

#ui-datepicker-div .ui-button-icons-only {
    width: 3.4em;
}

#ui-datepicker-div button.ui-button-icons-only {
    width: 3.7em;
}

#ui-datepicker-div .ui-button .ui-button-text {
    display: block;
    line-height: 1.4;
}

#ui-datepicker-div .ui-button-text-only .ui-button-text {
    padding: .4em 1em;
}

#ui-datepicker-div .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
    padding: .4em;
    text-indent: -9999999px;
}

#ui-datepicker-div .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
    padding: .4em 1em .4em 2.1em;
}

#ui-datepicker-div .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
    padding: .4em 2.1em .4em 1em;
}

#ui-datepicker-div .ui-button-text-icons .ui-button-text {
    padding-left: 2.1em;
    padding-right: 2.1em;
}

#ui-datepicker-div input.ui-button {
    padding: .4em 1em;
}

#ui-datepicker-div .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon {
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

#ui-datepicker-div .ui-button-icon-only .ui-icon {
    left: 50%;
    margin-left: -8px;
}

#ui-datepicker-div .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
    left: .5em;
}

#ui-datepicker-div .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
    right: .5em;
}

#ui-datepicker-div .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
    right: .5em;
}

#ui-datepicker-div .ui-buttonset {
    margin-right: 7px;
}

    #ui-datepicker-div .ui-buttonset .ui-button {
        margin-left: 0;
        margin-right: -.3em;
    }

#ui-datepicker-div button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

#ui-datepicker-div .ui-dialog {
    position: absolute;
    padding: .2em;
    width: 300px;
    overflow: hidden;
}

    #ui-datepicker-div .ui-dialog .ui-dialog-titlebar {
        padding: .4em 1em;
        position: relative;
    }

    #ui-datepicker-div .ui-dialog .ui-dialog-title {
        float: left;
        margin: .1em 16px .1em 0;
    }

    #ui-datepicker-div .ui-dialog .ui-dialog-titlebar-close {
        position: absolute;
        right: .3em;
        top: 50%;
        width: 19px;
        margin: -10px 0 0 0;
        padding: 1px;
        height: 18px;
    }

        #ui-datepicker-div .ui-dialog .ui-dialog-titlebar-close span {
            display: block;
            margin: 1px;
        }

        #ui-datepicker-div .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
            padding: 0;
        }

    #ui-datepicker-div .ui-dialog .ui-dialog-content {
        position: relative;
        border: 0;
        padding: .5em 1em;
        background: none;
        overflow: auto;
        zoom: 1;
    }

    #ui-datepicker-div .ui-dialog .ui-dialog-buttonpane {
        text-align: left;
        border-width: 1px 0 0 0;
        background-image: none;
        margin: .5em 0 0 0;
        padding: .3em 1em .5em .4em;
    }

        #ui-datepicker-div .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
            float: right;
        }

        #ui-datepicker-div .ui-dialog .ui-dialog-buttonpane button {
            margin: .5em .4em .5em 0;
            cursor: pointer;
        }

    #ui-datepicker-div .ui-dialog .ui-resizable-se {
        width: 14px;
        height: 14px;
        right: 3px;
        bottom: 3px;
    }

#ui-datepicker-div .ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

#ui-datepicker-div .ui-slider {
    position: relative;
    text-align: left;
}

    #ui-datepicker-div .ui-slider .ui-slider-handle {
        position: absolute;
        z-index: 2;
        width: 1.2em;
        height: 1.2em;
        cursor: default;
    }

    #ui-datepicker-div .ui-slider .ui-slider-range {
        position: absolute;
        z-index: 1;
        font-size: .7em;
        display: block;
        border: 0;
        background-position: 0 0;
    }

#ui-datepicker-div .ui-slider-horizontal {
    height: .8em;
}

    #ui-datepicker-div .ui-slider-horizontal .ui-slider-handle {
        top: -.3em;
        margin-left: -.6em;
    }

    #ui-datepicker-div .ui-slider-horizontal .ui-slider-range {
        top: 0;
        height: 100%;
    }

    #ui-datepicker-div .ui-slider-horizontal .ui-slider-range-min {
        left: 0;
    }

    #ui-datepicker-div .ui-slider-horizontal .ui-slider-range-max {
        right: 0;
    }

#ui-datepicker-div .ui-slider-vertical {
    width: .8em;
    height: 100px;
}

    #ui-datepicker-div .ui-slider-vertical .ui-slider-handle {
        left: -.3em;
        margin-left: 0;
        margin-bottom: -.6em;
    }

    #ui-datepicker-div .ui-slider-vertical .ui-slider-range {
        left: 0;
        width: 100%;
    }

    #ui-datepicker-div .ui-slider-vertical .ui-slider-range-min {
        bottom: 0;
    }

    #ui-datepicker-div .ui-slider-vertical .ui-slider-range-max {
        top: 0;
    }

#ui-datepicker-div.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none;
}

    #ui-datepicker-div.ui-datepicker .ui-datepicker-header {
        position: relative;
        padding: .2em 0;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
        position: absolute;
        top: 2px;
        width: 1.8em;
        height: 1.8em;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
        top: 1px;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-prev {
        left: 2px;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-next {
        right: 2px;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-prev-hover {
        left: 1px;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-next-hover {
        right: 1px;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -8px;
        top: 50%;
        margin-top: -8px;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-title {
        margin: 0 2.3em;
        line-height: 1.8em;
        text-align: center;
    }

        #ui-datepicker-div.ui-datepicker .ui-datepicker-title select {
            font-size: .8em;
            margin: 1px 0;
        }

    #ui-datepicker-div.ui-datepicker select.ui-datepicker-month-year {
        width: 100%;
    }

    #ui-datepicker-div.ui-datepicker select.ui-datepicker-month, #ui-datepicker-div.ui-datepicker select.ui-datepicker-year {
        width: 49%;
    }

    #ui-datepicker-div.ui-datepicker table {
        width: 100%;
        font-size: .9em;
        border-collapse: collapse;
        margin: 0 0 .4em;
    }

    #ui-datepicker-div.ui-datepicker th {
        padding: .7em .3em;
        text-align: center;
        font-weight: bold;
        border: 0;
    }

    #ui-datepicker-div.ui-datepicker td {
        border: 0;
        padding: 1px;
    }

        #ui-datepicker-div.ui-datepicker td span, .ui-datepicker td a {
            display: block;
            padding: .2em;
            text-align: right;
            text-decoration: none;
        }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-buttonpane {
        background-image: none;
        margin: .7em 0 0 0;
        padding: 0 .2em;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

        #ui-datepicker-div.ui-datepicker .ui-datepicker-buttonpane button {
            float: right;
            margin: .5em .2em .4em;
            cursor: pointer;
            padding: .2em .6em .3em .6em;
            width: auto;
            overflow: visible;
        }

            #ui-datepicker-div.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
                float: left;
            }

#ui-datepicker-div .ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none;
}

    #ui-datepicker-div .ui-datepicker .ui-datepicker-header {
        position: relative;
        padding: .2em 0;
    }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
        position: absolute;
        top: 2px;
        width: 1.8em;
        height: 1.8em;
    }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
        top: 1px;
    }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-prev {
        left: 2px;
    }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-next {
        right: 2px;
    }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-prev-hover {
        left: 1px;
    }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-next-hover {
        right: 1px;
    }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -8px;
        top: 50%;
        margin-top: -8px;
    }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-title {
        margin: 0 2.3em;
        line-height: 1.8em;
        text-align: center;
    }

        #ui-datepicker-div .ui-datepicker .ui-datepicker-title select {
            font-size: .8em;
            margin: 1px 0;
        }

    #ui-datepicker-div .ui-datepicker select.ui-datepicker-month-year {
        width: 100%;
    }

    #ui-datepicker-div .ui-datepicker select.ui-datepicker-month, #ui-datepicker-div .ui-datepicker select.ui-datepicker-year {
        width: 49%;
    }

    #ui-datepicker-div .ui-datepicker table {
        width: 100%;
        font-size: .9em;
        border-collapse: collapse;
        margin: 0 0 .4em;
    }

    #ui-datepicker-div .ui-datepicker th {
        padding: .7em .3em;
        text-align: center;
        font-weight: bold;
        border: 0;
    }

    #ui-datepicker-div .ui-datepicker td {
        border: 0;
        padding: 1px;
    }

        #ui-datepicker-div .ui-datepicker td span, .ui-datepicker td a {
            display: block;
            padding: .2em;
            text-align: right;
            text-decoration: none;
        }

    #ui-datepicker-div .ui-datepicker .ui-datepicker-buttonpane {
        background-image: none;
        margin: .7em 0 0 0;
        padding: 0 .2em;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

        #ui-datepicker-div .ui-datepicker .ui-datepicker-buttonpane button {
            float: right;
            margin: .5em .2em .4em;
            cursor: pointer;
            padding: .2em .6em .3em .6em;
            width: auto;
            overflow: visible;
        }

            #ui-datepicker-div .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
                float: left;
            }

.ui-datepicker-trigger {
    vertical-align: middle;
    cursor: pointer;
}

#ui-datepicker-div.ui-datepicker.ui-datepicker-multi {
    width: auto;
}

#ui-datepicker-div .ui-datepicker.ui-datepicker-multi {
    width: auto;
}

#ui-datepicker-div .ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

    #ui-datepicker-div .ui-datepicker-multi .ui-datepicker-group table {
        width: 95%;
        margin: 0 auto .4em;
    }

#ui-datepicker-div .ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

#ui-datepicker-div .ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

#ui-datepicker-div .ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

#ui-datepicker-div .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
    border-left-width: 0;
}

#ui-datepicker-div .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

#ui-datepicker-div .ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

#ui-datepicker-div .ui-datepicker-row-break {
    clear: both;
    width: 100%;
}

#ui-datepicker-div .ui-datepicker-rtl {
    direction: rtl;
}

    #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-prev {
        right: 2px;
        left: auto;
    }

    #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-next {
        left: 2px;
        right: auto;
    }

    #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-prev:hover {
        right: 1px;
        left: auto;
    }

    #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-next:hover {
        left: 1px;
        right: auto;
    }

    #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-buttonpane {
        clear: right;
    }

        #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-buttonpane button {
            float: left;
        }

            #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
                float: right;
            }

    #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-group {
        float: right;
    }

    #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
        border-right-width: 0;
        border-left-width: 1px;
    }

    #ui-datepicker-div .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
        border-right-width: 0;
        border-left-width: 1px;
    }

#ui-datepicker-div .ui-datepicker-cover {
    display: none;
    display: block;
    position: absolute;
    z-index: -1;
    filter: mask();
    top: -4px;
    left: -4px;
    width: 200px;
    height: 200px;
}

#ui-datepicker-div .ui-progressbar {
    height: 2em;
    text-align: left;
}

    #ui-datepicker-div .ui-progressbar .ui-progressbar-value {
        margin: -1px;
        height: 100%;
    }


/* Asset Manager */

.assetPickerNoAsset p {
    margin: 10px 5px;
    font-size: 0.625em;
}

.assetUploadLog {
    padding: 0;
    margin: 0 0 10px 0;
    width: 300px;
    overflow: auto;
    max-height: 300px;
}

    .assetUploadLog .progressbar {
        border: 1px solid #333;
        height: 2px;
        background: #fff;
    }

    .assetUploadLog .progress {
        background: #999;
        width: 0%;
        height: 2px;
    }

    .assetUploadLog .progresstext {
        font-size: 0.750em;
    }

.assetflashUploadTable {
}

    .assetflashUploadTable td {
        color: #003333;
        margin: 0;
        padding: 0;
        font-family: Arial,Verdana,Geneva,sans-serif;
        font-size: 0.750em;
        vertical-align: top;
    }

.assetPicker a {
    cursor: pointer;
}

.assetPickerHide {
    position: absolute;
    top: -1000px;
    left: -1000px;
}

.assetDetailInvalid {
    color: #f00;
}


/* slideshow module */
.SlideshowWrpr {
    margin: 0 auto 20px;
}

.SlideshowWidget {
    max-width: 461px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .SlideshowWidget .SlideItem {
        width: 100% !important;
        height: auto !important;
        min-height: 145px;
    }

        .SlideshowWidget .SlideItem a img {
            display: block;
            margin: 0 auto;
        }

    .SlideshowWidget .sswControls {
        position: absolute;
        bottom: 10px;
        right: 10px;
        padding: 5px;
        z-index: 5;
        background: transparent !important;
    }

    .SlideshowWidget .SlideshowHome {
        overflow: hidden;
        z-index: 0;
        background: #000000;
        width: 100% !important;
    }

    .SlideshowWidget .Slideshow-Pause {
        width: 6px;
        height: 8px;
        float: left;
        background: url(/cms/images/slideshow/pause.gif) no-repeat;
        margin-left: 8px;
        cursor: pointer;
        font-size: .1em;
    }

    .SlideshowWidget .Slideshow-Prev {
        width: 4px;
        height: 8px;
        float: left;
        background: url(/cms/images/slideshow/leftarrow.gif) no-repeat;
        margin-left: 8px;
        display: inline;
        cursor: pointer;
    }

    .SlideshowWidget .Slideshow-Next {
        width: 4px;
        height: 8px;
        float: left;
        background: url(/cms/images/slideshow/rightarrow.gif) no-repeat;
        margin-left: 8px;
        display: inline;
        cursor: pointer;
    }

    .SlideshowWidget .SlideshowNav {
        float: left;
        margin-left: 5px;
        display: inline;
    }

        .SlideshowWidget .SlideshowNav a,
        .SlideshowWidget .SlideshowNav a:link,
        .SlideshowWidget .SlideshowNav a:visited {
            float: left;
            display: inline;
            width: 8px;
            height: 8px;
            margin: 0;
            margin-left: 3px;
            padding: 0px 0 0 0;
            font-size: 0.063em;
            text-align: center;
            background: transparent url(/cms/images/slideshow/dot.gif) no-repeat 0 0;
            color: #000;
            text-decoration: none;
            text-indent: -9999em;
        }

            .SlideshowWidget .SlideshowNav a.activeSlide,
            .SlideshowWidget .SlideshowNav a.activeSlide:link,
            .SlideshowWidget .SlideshowNav a.activeSlide:visited {
                background-position: 0 -8px;
            }

            .SlideshowWidget .SlideshowNav a:focus {
                outline: none;
            }

    .SlideshowWidget .sswControls .pauseActive {
        background-position: 0 -8px;
    }

    .SlideshowWidget .SlideShowBottomText {
        padding: 10px;
        color: #ffffff;
        font-size: 0.750em;
        position: absolute;
        bottom: 0px;
        left: 0px;
        z-index: 3;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .SlideshowWidget .SlideShowBottomText h3 {
            color: #ffffff;
            font-size: 1.125em;
            margin-bottom: 7px;
            padding: 0px;
        }

    .SlideshowWidget .SlideShowBottomUnderlay {
        background: #21689d;
        padding: 10px;
        width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0px;
        z-index: 2;
        opacity: 0.8;
        -moz-opacity: 0.8;
        filter: alpha(opacity=80);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.SlideshowDescr {
    margin-bottom: 20px;
}

/* News Module Styles */

.newsModuleWrpr {
    margin-bottom: 50px;
}

.newsItemsWrpr {
    padding: 20px 0px 20px 0px;
}

.newsItemWrpr {
    padding: 25px 0px 25px 0px;
}

    .newsItemWrpr .newsItemImg {
        margin-right: 10px;
        float: left;
    }

    .newsItemWrpr .newsItemdescr {
        margin-left: 125px;
    }

.newsSummaryWrpr {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e8e6;
}

.newsModuleWrpr .figure-right img {
    max-width: 290px !important;
}

.newsSummaryImage {
    float: left;
}

.newsSummaryViewAll {
    text-align: right;
}

.newsPhotoRight {
    margin: 0 0 20px 0;
}

@media only screen and (min-width:30em) {
    .newsPhotoRight {
        float: right;
        margin: 0 0 20px 20px;
        max-width: 50%;
    }
}

.spotItem {
    padding: 1rem 0;
    border-bottom: 10px solid #f4f4f4;
}

    .spotItem .date {
        display: none;
    }

    .spotItem h2 {
        text-decoration: none;
        font-size: 1.375em;
    }

.spotImg-image {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    margin-bottom: 1rem;
    overflow: hidden;
}

.spotImg {
    width: 100%;
}

@media only screen and (min-width:30em) {
    .spotImg-image {
        float: left;
        margin-right: 2rem;
        margin-bottom: 0.5rem;
    }
}

.spot-bio,
.news-summary,
.topic-summary {
    font-size: 15px;
}

.spot-summary,
.news-body,
.topic-body {
    font-size: 17px;
}

@media only screen and (min-width:60em) {
    .spot-bio,
    .news-summary,
    .topic-summary {
        font-size: 17px;
    }

    .spot-summary,
    .news-body,
    .topic-body {
        font-size: 19px;
    }
}

.ftrLine {
    line-height: 30px;
    border-bottom: 1px solid #e6e4dc;
    font-size: 0.625em;
}

.search-wrapper {
    float: right;
    padding: 10px 10px 0 0;
}

.srch {
    position: relative;
}

    .srch .ibox {
        border: 1px solid #4887b8;
        height: 27px;
        line-height: 23px;
        padding: 1px 3px;
        border-right: none;
        color: #929292;
        font-style: italic;
        vertical-align: top;
        float: left;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .srch #srch {
        position: absolute;
        right: 0;
        top: 0;
    }

.bar {
    background: #efeeea;
    padding: 5px 20px 7px 20px;
    font-size: 0.625em;
    margin: -9px 0 10px
}

    .bar a, .bar a:link, .bar a:visited {
        color: #5d5d59;
        text-decoration: none;
    }

        .bar a:hover {
            color: #5d5d59;
            text-decoration: underline;
        }

        .bar a:active {
            color: #5d5d59;
            text-decoration: none;
        }

.cormain-3clm .bar {
    margin: 1px -19px 20px -19px;
}

.cormain-1clm .bar {
    margin: 1px -16px 20px -16px;
}

.brcr {
    color: #9a2120;
}

.memberLetter {
    font-size: 1.250em;
    color: #2b79b3;
    border: 3px solid #dbdbdb;
    padding: 2px 7px;
    display: none;
}

.dvdr {
    border-bottom: 1px solid #e7e8e6;
    margin: 10px 0;
    height: 1px;
}

.memberBio { /* font-size: 0.750em */
}

    .memberBio h2 {
        color: #5d5d59;
        font-size: 1.5em
    }

    .memberBio p,
    .memberBio h5 { /* font-size: 1em; */
    }

    .memberBio a {
        -ms-word-break: break-all;
        word-break: break-all;
        word-break: break-word;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }

.memberInfo {
    margin-bottom: 5px;
}

    .memberInfo.category {
        margin-bottom: 46px;
    }

.loginTbl td {
    padding: 0 0 5px 5px;
    text-align: right;
}

.loginTbl .ibox {
    border: 1px solid #cacac0;
    color: #b1b1b1;
}

.loginTbl label {
    padding: 3px 0 0;
    display: inline-block;
}

.loginTbl input {
    font-size: 1em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .loginTbl input.btn {
        width: auto;
        font-size: 1.125em;
    }

    .loginTbl input[type="checkbox"] {
        width: auto;
        margin-right: 5px;
    }

.loginTbl .loginTbl-middle {
    padding: 5px 0;
}


.dirImg {
    border: 1px solid #dbdbdb;
}

.accountTbl {
    height: 70px;
}

    .accountTbl td {
        font-size: 0.750em;
    }

    .accountTbl tr {
        vertical-align: middle;
    }

.welcomeTxt {
    font-size: 0.750em;
}

    .welcomeTxt span {
        font-weight: bold;
        color: #9A2120;
    }

#navList {
    padding: 0;
    margin: 0;
}

    #navList li {
        margin: 0 0 0 20px;
        padding: 0 !important;
    }

.prem {
    float: right;
}

    .prem a {
        margin-left: 8px;
    }

.backTo {
    margin: 10px 0 0 0;
}

.mrg20b {
    margin: 0 0 20px 0;
}

.mrg10b {
    margin: 0 0 10px 0;
}

.mrg0b {
    margin: 0 0 0px 0;
}

.simpleBody {
    background-color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.simpleWrpr {
    width: 660px;
    text-align: left;
    margin: 0 auto;
}

.hd {
    padding: 10px;
    border-bottom: 3px solid #21689d;
    margin-bottom: 10px;
}

.ftr {
    padding: 10px;
    border-top: 3px solid #deded3;
    font-size: 0.688em;
    text-align: center;
    margin-top: 10px;
}
/*
.moreLink a, .moreLink a:link, .moreLink a:visited {color:#b00000; text-decoration: underline; font-size: 0.750em;}
.moreLink a:hover {color:#b00000; text-decoration: none;}
.moreLink a:active {color:#b00000; text-decoration: underline;}*/

.viewAll a, .viewAll a:link, .viewAll a:visited {
    color: #b00000;
    text-decoration: underline;
}

    .viewAll a:hover {
        color: #b00000;
        text-decoration: none;
    }

    .viewAll a:active {
        color: #b00000;
        text-decoration: underline;
    }

.date, .time, .eventToolTipDates, .dateStamp {
    font-style: italic;
    color: #707070;
    font-size: 16px;
}

ul.quicklinks {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul.quicklinks li {
        border-bottom: 1px solid #e7e8e6;
        margin: 0;
        padding: 5px 0;
    }

    ul.quicklinks a, ul.quicklinks a:link, ul.quicklinks a:visited {
        color: #2b79b3;
        text-decoration: none;
    }

        ul.quicklinks a:hover {
            color: #2b79b3;
            text-decoration: underline;
        }

        ul.quicklinks a:active {
            color: #2b79b3;
            text-decoration: none;
        }

a.donateLink, a.donateLink:link, a.donateLink:visited {
    color: #9a2120;
    text-decoration: none;
    background: transparent url(/cms/images/arrowBlue.gif) no-repeat 0px 3px;
    padding-left: 12px;
    font-size: 0.875em;
}

    a.donateLink:hover {
        color: #2b79b3;
        text-decoration: none;
    }

    a.donateLink:active {
        color: #2b79b3;
        text-decoration: none;
    }

.topOfPage {
    text-align: right;
}

    .topOfPage a {
        text-align: right;
        padding-lefT: 13px;
        background: transparent url(/cms/images/arrow.gif) no-repeat 0 5px;
    }

/* Documents Start */
.documentFilter {
    background: transparent url(/cms/images/filter-left.gif) no-repeat left bottom;
    margin-bottom: 10px;
}

.documentFilterRight {
    background: transparent url(/cms/images/filter-right.gif) no-repeat right bottom;
    padding: 15px 10px 5px 10px;
}

.documentItem {
    margin-bottom: 20px;
}

.documentDate {
    width: 160px;
    float: none;
    font-weight: normal;
    font-size: 0.688em;
    font-family: Arial;
    color: #525042;
    text-transform: uppercase;
}

.documentItem img {
    border-style: none;
    height: 14px;
    vertical-align: middle;
    padding-right: 2px;
}

.documentRailWrpr {
    width: 200px;
}

    .documentRailWrpr img {
        border-style: none;
        height: 14px;
        vertical-align: middle;
        padding-right: 2px;
    }

a.documentMore, a.documentMore:link, a.documentMore:visited {
    background: transparent url(/cms/images/arrows.gif) no-repeat 100% 50%;
    color: #9e9676;
    text-decoration: none;
    font-size: 0.688em;
    font-weight: bold;
    white-space: nowrap;
    padding-right: 10px;
}

    a.documentMore:hover {
        color: #9e9676;
        text-decoration: underline;
    }

    a.documentMore:active {
        color: #9e9676;
        text-decoration: none;
    }
/* Documents End */



.acctEdit {
    border: 1px solid #4e81ae;
}

    .acctEdit .inner {
        padding-top: 5px;
    }

    .acctEdit label {
        font-weight: bold;
    }

    .acctEdit input {
        border: 1px solid #94c6ed;
        height: 18px;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        border-radius: 1px;
    }

    .acctEdit select, .acctEdit textarea {
        border: 1px solid #94c6ed;
    }

    .acctEdit .formRow .req, .acctEdit .formRow .fieldreq {
        background: transparent url(/cms/images/global/field-req.gif) no-repeat left center;
    }

    .acctEdit .help {
        font-style: italic;
        font-size: 0.625em;
    }

.help { /* font-size: 0.75em; */
}





.nav-right-button {
    float: right;
    padding: 12px;
}

.mobOnly {
    display: none;
}

.facts-figures-table {
    width: 100%;
    max-width: 500px;
}

    .facts-figures-table td {
        text-align: center;
        vertical-align: top;
    }

    .facts-figures-table a {
        display: block;
        font-size: 0.750em;
        padding: 10px;
    }

.speeches-table {
    width: 100%;
    max-width: 600px;
}

.search-by-form-wrapper {
}

    .search-by-form-wrapper .formBox {
        margin-bottom: 20px;
    }

        .search-by-form-wrapper .formBox label {
            font-size: 0.750em;
        }

    .search-by-form-wrapper input,
    .search-by-form-wrapper select {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.popup-template {
    max-width: 500px;
    padding: 0 10px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .popup-template .block img {
        width: 100% !important;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.create-an-account-table label {
    margin-top: 20px;
}

.create-an-account-table input,
.create-an-account-table select {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 4px;
}

.sitemap-wrapper {
    font-size: 0.750em;
}


.pager-styler {
    width: 100%;
}

.memberTbl .pager-styler td {
    padding: 0;
    border: 0 none;
    font-size: 0.875em;
}

.memberTbl .pager-styler > td {
    padding: 10px;
}

.memberTbl td img {
    max-width: 65px !important;
}

/* ==========================================================================
 Graphic Refresh New CSS
 ========================================================================== */

/* Global CSS */

.blue-bg {
    background-color: #003d7d;
    transition: all 0.25s ease-in-out;
}

    .blue-bg:hover,
    .blue-bg:focus {
        background-color: #2B549B !important;
    }

.red-bg {
    background-color: #d82013;
    transition: all 0.25s ease-in-out;
}

    .red-bg:hover,
    .red-bg:focus {
        background-color: #E2565A;
    }

/* Header */

header {
    background-color: #fff;
}

.member-login-btn {
    padding: 19px 50px;
    border-radius: 5px;
}

a.member-login-btn {
    color: #fff;
    text-decoration: none;
    font-size: 1.125em;
    font-weight: bold;
    letter-spacing: 1px;
}

.member-button-wrapper {
    text-align: right;
}

.logo a {
    display: inline-block;
}

    .logo a img {
        max-height: 45px;
    }

@media only screen and (min-width:60em) {
    .logo a img {
        max-height: 62px;
    }
}

.logo-mobile {
    display: none;
}

.mobile-only {
    display: none;
}

.social-links-wrapper {
    padding: 20px;
    white-space: nowrap;
}

    .social-links-wrapper a {
        padding: 0px 5px !important;
        background: none !important;
        font-size: 1.3em !important;
    }

    .social-links-wrapper .icon-facebook {
        color: #3B5998;
    }

    .social-links-wrapper .icon-twitter {
        color: #55ACEE;
    }

    .social-links-wrapper .icon-linkedin {
        color: #356FA4;
    }

    .social-links-wrapper .icon-instagram {
        color: #d22155;
    }

    .social-links-wrapper .icon-play {
        color: #ff0000;
    }

.donate-button {
    padding: 10px 65px;
    border-radius: 5px;
    position: relative;
    top: 22px;
}

a.donate-button {
    color: #fff;
    text-decoration: none;
    font-size: 1.125em;
}

.nav-right {
    text-align: right;
}

/* Slider */

.slider-section-wrapper {
    width: 100%;
}

.slide-item {
    background-color: #E5E5E5;
}

.slider-image-wrapper {
    width: 66.666%;
    float: left;
}

.slider-info-wrapper {
    width: 33.333%;
    float: left;
    max-height: 350px;
}

.slider-info-sizer {
    width: 75%;
    margin: 0 auto;
}

.slider-info-title h3 {
    font-weight: bold;
    font-size: 1.125em;
    color: #000;
    margin: 35px 0 10px 0;
}

.slider-info-text {
    font-size: 1.125em;
    color: #555555;
    line-height: 1.35em;
    margin-bottom: 30px;
}

.slider-learn-more a {
    text-decoration: none;
    color: #41413f;
    font-size: 1.125em;
    font-weight: bold;
    padding-left: 25px;
    background: url("/cms/images/layout/red-button-right.png") no-repeat left center;
    transition: all 0.25s ease-in-out;
}

    .slider-learn-more a:hover,
    .slider-learn-more a:focus {
        color: #284F92;
    }

/* Home News */

.news-item-wrapper {
    margin-bottom: 35px;
}

.news-image {
    float: left;
    width: 25%;
    padding-right: 2%;
}

.news-info-wrapper {
    font-size: 1em;
    color: #595959;
    width: 73%;
    float: left;
}

    .news-info-wrapper h2 {
        font-size: 1.375em;
    }

        .news-info-wrapper h2 a {
            text-decoration: none;
            color: #405D8F;
            font-weight: bold;
            transition: all 0.25s ease-in-out;
        }

            .news-info-wrapper h2 a:hover,
            .news-info-wrapper h2 a:focus {
                color: #000;
                text-decoration: underline;
            }

    .news-info-wrapper p {
        line-height: 22px;
    }

a.home-news-read-more {
    text-decoration: none;
    color: #595959;
    font-size: 0.9375em;
    font-weight: bold;
    padding: 0 0 2px 23px;
    background: url("/cms/images/layout/red-button-right.png") no-repeat left center;
    transition: all 0.25s ease-in-out;
}

    a.home-news-read-more:hover,
    a.home-news-read-more:focus {
        color: #000;
    }

/* Home Twitter Section */

.home-twitter-wrapper {
    background-color: #E5E5E5;
}

.home-twitter-inside-wrapper {
    width: 92%;
    padding: 20px 0;
    margin: 0 auto;
    text-align: center;
}

.twitter-join-wrapper {
    padding-bottom: 10px;
}

.twitter-join-us-title {
    color: #000;
    font-size: 1.375em;
}

.twitter-join-link a {
    color: #23447e;
    text-decoration: none;
    font-size: 1.375em;
    transition: all 0.25s ease-in-out;
}

    .twitter-join-link a:hover,
    .twitter-join-link a:focus {
        color: #000;
        text-decoration: underline;
    }

.twitter-embed-wrapper {
    border: 1px solid #d4d4d1;
    background: #fff;
    /*max-height: 24.5em;*/
    overflow: hidden;
}

/* Footer */

footer {
    width: 100%;
}

    footer a,
    footer a:link,
    footer a:visited {
        color: #fff;
    }

.footer-wrapper {
    width: 100%;
    background: #0a0a0a;
    color: #fff;
    padding: 30px 30px 60px 30px;
    line-height: 1.4em;
}

.footer-site-title {
    font-weight: bold;
    font-size: 1.125em;
    padding-bottom: 20px;
}

.footer-right {
    text-align: right;
}

.footer-social-media a {
    color: #fff;
    text-decoration: none;
    font-size: 1.35em;
}

.footer-copyright {
    font-size: 14px;
}



/* Interior */

.interior-top-wrapper {
    padding-top: 7px !important;
    padding-bottom: 15px !important;
}

.breadcrumbs-wrapper {
    width: 50%;
    float: left;
}

.share-wrapper {
    width: 50%;
    float: right;
    text-align: right;
}

    .share-wrapper a {
        font-size: 1.2em;
        color: #23447E;
        padding-left: 10px;
        text-decoration: none !important;
        transition: all 0.25s ease-in-out;
    }


        .share-wrapper a:hover,
        .share-wrapper a:focus {
            color: #3970CE;
        }

.breadcrumbs {
    padding: 17px 30px;
    background: #F4F4F4;
    font-size: 12px;
    color: #AAABAA;
    font-weight: bold;
    text-transform: uppercase;
}

.vd {
    color: #0A0A0A;
}

.breadcrumbs a {
    color: #0A0A0A;
    text-decoration: none;
}

.lnav {
    background-color: #E5E5E5;
}

ul.lnav a:hover, ul.lnav a.on {
    color: #23447e;
}

li.ets {
    position: relative;
}

    li.ets ul {
        display: none;
    }

ul.lnav .ets span {
    text-decoration: none;
    display: block;
    padding: 4px 6px;
    color: #686868;
    cursor: pointer;
}

.ets span:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 1.3em;
}

/* Facts and Figures */

.facts-item {
    margin-bottom: 35px;
}

.facts-image {
    float: left;
    width: 20%;
}

.facts-info-wrapper {
    font-size: 1em;
    color: #595959;
    width: 75%;
    float: right;
}

    .facts-info-wrapper h2 {
        font-size: 1.375em;
    }

        .facts-info-wrapper h2 a {
            text-decoration: none;
            color: #405D8F;
            font-weight: bold;
            transition: all 0.25s ease-in-out;
        }

            .facts-info-wrapper h2 a:hover,
            .facts-info-wrapper h2 a:focus {
                color: #000;
                text-decoration: underline;
            }

    .facts-info-wrapper p {
        line-height: 22px;
    }

a.home-news-read-more {
    text-decoration: none;
    color: #595959;
    font-size: 0.9375em;
    font-weight: bold;
    padding: 0 0 2px 23px;
    background: url("/cms/images/layout/red-button-right.png") no-repeat left center;
    transition: all 0.25s ease-in-out;
}

    a.home-news-read-more:hover,
    a.home-news-read-more:focus {
        color: #000;
    }

/* Speeches */

.speech-item {
    border-bottom: 10px solid #f4f4f4;
    padding: 1rem 0;
}

.speech-image {
    float: left;
    margin-right: 2rem;
    width: 132px;
}

.speeches .speech-image {
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
}

.speech-image img {
    width: 100%;
}

@media only screen and (max-width:29.9em) {
    .speech-image {
        float: none;
        margin-bottom: 1rem;
    }
}

.speech-info-wrapper {
    overflow: hidden;
}

    .speech-info-wrapper h2 {
        font-size: 1.375em;
    }

        .speech-info-wrapper h2 a {
            transition: all 0.25s ease-in-out;
        }


    .speech-info-wrapper p {
        line-height: 22px;
    }

a.pdf-link {
    padding: 0 0 0 27px;
    background: url("/cms/images/layout/pdf-icon.png") no-repeat left center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
}

a.read-more {
    text-decoration: none;
    color: #595959;
    font-size: 0.9375em;
    font-weight: bold;
    padding: 0 0 2px 29px;
    background: url("/cms/images/layout/red-button-right.png") no-repeat left center;
    transition: all 0.25s ease-in-out;
}

a.pdf-link:hover,
a.pdf-link:focus {
    color: #000;
}

.speechContainer h4 {
    font-size: 1.1em;
    margin: 0 0 45px;
    color: black;
}

.speechContainer .speechImg {
    max-width: 280px;
    margin: 0 auto;
}

    .speechContainer .speechImg:empty {
        display: none;
    }

.speechContainer p {
    font-size: 18px;
    color: black;
}

.speechContainer li {
    color: black;
    font-size: 1.1em;
}

@media only screen and (min-width:30.000em) {
    .speechContainer .speechImg {
        float: left;
        margin: 0 15px 15px 0;
    }
}


/* Directory Search */

.directory-search-wrapper {
    background-color: #DDDDDD;
    margin-bottom: 40px;
}

.directory-search-inner {
    margin: 0 auto;
    width: 90%;
    padding: 15px 0;
}

.search-directory-main {
    position: relative;
    padding-bottom: 15px;
}

    .search-directory-main .icon-search {
        position: absolute;
        top: 30px;
        right: 0;
        color: #23447e;
        font-weight: bold;
        transition: all 0.25s ease-in-out;
    }

        .search-directory-main .icon-search:hover,
        .search-directory-main .icon-search:focus {
            color: #3C83B9;
        }

        .search-directory-main .icon-search input {
            width: 100%;
            position: absolute;
            left: 0px;
            background: none;
            border: none;
        }

.input-title,
.directory-input-title {
    font-size: 0.875em;
}

.directory-submit {
    width: 100%;
    background: #23447E;
    border: none;
    font-weight: bold;
    font-size: 1.125em;
    padding: 20px 0;
    color: #fff;
    border-radius: 10px;
    transition: all 0.25s ease-in-out;
}

    .directory-submit:hover,
    .directory-submit:focus {
        background: #2B539A;
    }

.directory-input-wrapper .icon-plus {
    display: none;
    color: #DBDBDB;
    text-decoration: none;
}

.search-narrow-results {
    display: none;
    background-color: #DBDBDB;
    padding: 10px 0;
    margin-bottom: 15px;
}

.narrow-results-text {
    color: #23447e;
    font-size: 1.125em;
    display: block;
    width: 90%;
    margin: 0 auto;
}

/* Directory Members Listing */

.item-wrapper {
    padding-bottom: 30px;
}

.member-image {
    width: 60px;
    float: left;
    margin-right: 15px;
}

    .member-image img {
        width: 100%;
    }

.member-link a {
    font-size: 1.125em;
    font-weight: bold;
    text-decoration: none;
}

.member-link {
    padding-bottom: 7px;
}

.building-wrapper .container {
    margin-bottom: 2em;
}


    .building-wrapper .container:nth-child(2) img {
        max-height: 285px;
    }

.galleria-info {
    display: none !important;
}

/* =================================================================
Media Queries
===================================================================*/

/*1150px */
@media only screen and (max-width:71.875em) {
    .slider-image-wrapper,
    .slider-image-wrapper img,
    .slider-info-wrapper {
        width: 100% !important;
        max-height: none;
    }

    .slider-info-sizer {
        padding-bottom: 20px;
        width: 90%;
    }

    .slider-section-wrapper {
        border: none;
        padding-top: 10px;
    }

    .facts-image, .facts-info-wrapper {
        width: 100%;
    }
}

@media only screen and (max-width:68.750em) {
    .footer-right {
        text-align: left;
        padding-bottom: 30px !important;
    }

    .footer-links a {
        display: block !important;
    }

        .footer-links a:after {
            display: none;
        }

    .footer-right,
    .footer-left {
        left: 0 !important;
        width: 100% !important;
    }
}

/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .member-button-wrapper {
        display: none;
    }

    .member-login-btn {
        padding: 19px 36px;
    }

    .donate-button {
        padding: 10px 70px;
    }

    .news-image {
        float: none;
        text-align: center;
        padding: 1.5em 0;
        width: 100%;
    }

    .news-info-wrapper {
        float: none;
        width: 100%;
    }

    .news-item-wrapper {
        margin: 0;
    }

        .news-item-wrapper:last-child {
            margin-bottom: 30px;
        }

    .footer-copyright {
        position: static;
    }

    .directory-search-inner {
        width: 100%;
    }

    .search-narrow-results {
        display: block
    }

    .search-directory-main .icon-search {
        position: relative;
        top: 3px;
        padding-left: 10px;
    }

        .search-directory-main .icon-search input {
            top: 0;
        }

    .directory-input-title {
        display: inline-block;
    }

    .directory-input.input-active input,
    .directory-input.input-active select {
        height: 27px;
        border: 1px solid #d0d0cb;
    }

    .directory-input-wrapper .icon-plus {
        float: right;
        display: block;
    }

    .desktopOnly,
    .bar {
        display: none;
    }

    .mobOnly {
        display: block;
    }

    p {
        line-height: 1.5em;
    }

    .mainbody {
        background: #f1f1e7;
    }

    .memberArea {
        margin: 0 -10px
    }

    .member-topper {
        background: #deded3;
        display: table;
        width: 100%;
        margin: 0;
        border-top: 3px solid #0e4f79;
        padding: 8px 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .member-topper a,
        .member-topper a:link,
        .member-topper a:visited {
            font-family: Tahoma,Verdana,Segoe,sans-serif;
            text-align: center;
            font-size: 0.750em;
            padding: 0 5px;
            display: table-cell;
            width: 50%;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

            .member-topper a:first-child {
                border-right: 1px solid #2b79b3
            }

    .loginTbl {
        background: #d4d4c9;
        padding: 20px 10px;
        position: relative;
        display: none;
    }

        .loginTbl .loginTbl-top label {
            display: none;
        }

        .loginTbl input {
            margin-bottom: 10px;
            width: 100%;
        }

            .loginTbl input[type="checkbox"] {
                margin: 1px 5px 0 0;
            }

            .loginTbl input.btn {
                font-size: 0.813em;
                margin: 0 -2px 0 0;
            }

        .loginTbl .btnWrpr {
            margin-top: 30px;
        }

        .loginTbl .right {
            text-align: left;
        }

    .loginTbl-bottom {
        display: none;
    }

    .loginTbl .loginTbl-middle {
        font-size: 0.650em;
        position: absolute;
        bottom: 48px;
        width: 100%;
    }

        .loginTbl .loginTbl-middle a {
            display: inline-block;
            margin-top: 4px
        }

    .core-wrapper .core-inner {
        padding: 10px;
        margin: 0;
        border: 1px solid #e8e8e8;
    }

    .corwrpr-2clm-rr .core-inner {
        padding: 0;
        margin: 0;
        border: 0 none;
    }

    .corwrpr-2clm-rr .cormain {
        padding: 10px;
        margin: 0 -10px 10px;
        border: 1px solid #e8e8e8;
    }

    .corwrpr-2clm-rr .corrrail {
        margin: 0 -10px;
    }

    .quicklinks-mod {
        position: relative;
        padding-bottom: 32px;
    }

        .quicklinks-mod .btnWrpr {
            position: absolute;
            bottom: 12px;
            left: 10px;
        }

    .mod {
        margin-bottom: 10px
    }

        .mod h2.hdng {
            font-size: 1.250em;
            font-weight: bold;
        }

    .find-us-mod h2.hdng {
        font-size: 1em;
    }

    .donation-mod p {
        line-height: 1.250em;
    }

    .newsletterArea {
        padding: 20px;
        margin: 10px 20px;
        background: transparent url(/cms/images/newsletterArea.gif) no-repeat;
    }

        .newsletterArea h2 {
            margin: 0 0 5px;
            font-size: 1.250em
        }

        .newsletterArea .ibox {
            border: 1px solid #90adc6;
            vertical-align: top;
            color: #929292;
            font-style: italic;
            width: 70%;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding: 0 2px;
        }

    .ftrLine {
        padding: 10px 20px;
        line-height: 1.75em;
    }

    .newsFilterLeftWrpr,
    .newsFilterCatWrpr,
    .newsFilterRightWrpr,
    .newsFilterSearchBtn {
        float: none;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .newsFilterCat {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .newsFilterLeftWrpr {
        margin-bottom: 10px;
    }

    .newsFilterSearchType {
        margin-top: -20px;
    }

        .newsFilterSearchType a {
            display: inline-block;
        }

    .sortStatus,
    .genericPager {
        float: none;
        padding: 15px 0
    }

    .newsItemsWrpr {
        padding: 0;
    }

    .facts-figures-table td {
        display: block;
    }

        .facts-figures-table td img {
            margin: 0 auto;
        }

    .speeches-table td {
        display: block;
    }

        .speeches-table td img {
        }

    .mob-smaller {
        font-size: 0.750em;
    }

    .mob-center {
        text-align: center;
        padding: 20px 0 0;
    }

        .mob-center a {
            display: block
        }

    .formRow.lower-form {
        text-align: left;
    }

        .formRow.lower-form .btnWrpr {
            margin: 10px 0;
        }

    .memberListing-header {
        margin-left: -10px;
    }

    .search-by-form-wrapper {
        border-bottom: 10px solid #ffffff;
        margin: 0 -30px 20px;
    }

        .search-by-form-wrapper .inner {
            position: relative;
            margin: 0 10px;
        }

            .search-by-form-wrapper .inner:after {
                content: '';
                height: 1px;
                margin: 0;
                width: 100%;
                background: #e8e8e8;
                position: absolute;
                bottom: -10px;
                right: 0;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

        .search-by-form-wrapper h3 {
            background: url(/cms/images/layout/h3-plus.png) no-repeat right center #d9d9d9;
            margin: -24px -10px 0;
            padding: 10px 20px;
            font-size: 1.250em;
            font-weight: normal;
        }

            .search-by-form-wrapper h3.active {
                background: url(/cms/images/layout/h3-minus.png) no-repeat right center #d9d9d9;
            }

        .search-by-form-wrapper .search-by-form {
            display: none;
            padding: 20px;
            margin: 0 -10px;
            background: #e8e8e8;
        }

    .memberLetter {
        display: none;
    }

    .memberListing {
        margin: 0 -20px 10px;
    }

    .memberTbl {
    }

        .memberTbl td {
            padding: 10px;
            border-bottom: 1px solid #e7e8e6;
            line-height: 20px;
        }

            .memberTbl td img {
                border: 1px solid #256da2;
                padding: 1px;
                background: #87bce5;
            }

            .memberTbl td.checkCol {
                display: none;
            }

        .memberTbl .memberListing-image {
            width: 35%;
        }

        .memberTbl .memberListing-info {
            font-size: 0.750em;
            line-height: 1.250em;
            width: 65%;
        }

    .accountTbl-wrapper {
        background: #deded3;
        margin: 0;
        padding: 5px 0;
    }

        .accountTbl-wrapper .accountTbl {
            height: auto;
        }

    .sitemap-wrapper table td {
        display: block;
    }

    .news-rail-wrapper {
    }

        .news-rail-wrapper h2 {
            background: url(/cms/images/layout/h3-plus.png) no-repeat right center #d9d9d9;
            margin: -24px -30px 10px;
            padding: 10px 20px;
            font-size: 1.250em;
            font-weight: normal;
        }

            .news-rail-wrapper h2.active {
                background: url(/cms/images/layout/h3-minus.png) no-repeat right center #d9d9d9;
            }

        .news-rail-wrapper .inner {
            display: none;
        }

    .newsModuleWrpr {
    }

        .newsModuleWrpr .filter label {
            display: block;
            margin-bottom: 5px;
        }

    .newsFilterLeftWrpr {
    }

    .newsFilterRightWrpr {
    }

    .newsFilterMonthWrpr {
    }

    .newsFilterYearWrpr {
    }

    .newsFilterCatWrpr {
    }

    .newsFilterMonth,
    .newsFilterYear,
    .newsFilterCat {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .newsFilterSearchBtn {
    }

    .newsFilterSearchType {
        text-align: right;
    }

    .memberImg {
        float: none;
    }
}

/* Specifically for the Photo Gallery */

@media only screen and (max-width:80em) {
    .photoGalleryCycleWrpr {
        height: 489px !important;
    }

    .photoGalleryCyclePhotoWrpr {
        height: 489px !important;
    }
}

@media only screen and (max-width:64em) {
    .photoGalleryCycleWrpr {
        height: 489px !important;
    }

    .photoGalleryCyclePhotoWrpr {
        height: 489px !important;
    }
}

@media only screen and (max-width:50em) {
    .photoGalleryCycleWrpr {
        height: 414px !important;
    }

    .photoGalleryCyclePhotoWrpr {
        height: 414px !important;
    }
}

@media only screen and (max-width:48em) {
    .photoGalleryCycleWrpr {
        height: 396px !important;
    }

    .photoGalleryCyclePhotoWrpr {
        height: 396px !important;
    }
}

@media only screen and (max-width:40em) {
    .photoGalleryCycleWrpr {
        height: 434px !important;
    }

    .photoGalleryCyclePhotoWrpr {
        height: 434px !important;
    }
}

@media only screen and (max-width:30em) {
    .photoGalleryCycleWrpr {
        height: 284px !important;
    }

    .photoGalleryCyclePhotoWrpr {
        height: 284px !important;
    }

    .photoGalleryWrpr .photo_toolbar {
        height: auto;
    }

        .photoGalleryWrpr .photo_toolbar a.photo_email, #mod_photo_viewer .photo_toolbar a.photo_email:link, #mod_photo_viewer .photo_toolbar a.photo_email:visited, .photoGalleryWrpr .photo_toolbar a.photo_goback, #mod_photo_viewer .photo_toolbar a.photo_goback:link, #mod_photo_viewer .photo_toolbar a.photo_goback:visited {
            float: left;
            clear: both;
            margin-bottom: 5px;
        }

    .photoGalleryWrpr h2 {
        display: block;
        margin-bottom: 5px;
    }

    .photoGalleryPhotoCountWrpr {
        display: block;
        float: left;
        margin-bottom: 5px;
    }

    .photoGalleryCyclePhotoWrpr {
        margin-top: 0;
    }

    .photoGalleryPhotoNavHoriz {
        width: auto;
    }
}

@media only screen and (max-width:22.5em) {
    .photoGalleryCycleWrpr {
        height: 195px !important;
    }

    .photoGalleryCyclePhotoWrpr {
        height: 195px !important;
    }
}





.youngLeader {
    border: solid 1px #000;
    vertical-align: top;
    display: table;
    padding: 5px;
}

    .youngLeader .imgWrpr {
        width: 48%;
        display: inline-block;
        float: left;
        margin: 0 1% 0 0;
    }

        .youngLeader .imgWrpr img {
            max-width: 100%;
        }

    .youngLeader .content {
        width: 48%;
        display: inline-block;
        float: left;
        margin: 0 0 0 1%;
        border: none;
    }

        .youngLeader .content a {
            font-weight: bold;
            display: block;
        }









/* Ticket #440625 - Adding a See All */

#accordion h3 {
    font-size: 1.2em;
    font-weight: bold;
    background: #23447e;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    width: 30%;
    text-align: center;
}

    #accordion h3 a {
        color: #fff;
    }

    #accordion h3:hover {
        cursor: pointer;
        background: #E2565A;
    }

    #accordion h3.ui-state-active {
        background: #E2565A;
    }

#accordion .accContent {
    padding: 10px;
}

.yearGrid {
    display: flex;
    flex-wrap: nowrap;
}

    .yearGrid .yearCol {
        width: 33%;
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        text-align: center;
    }

        .yearGrid .yearCol a {
            background: #E5E5E5;
            margin: 5px;
            padding: 5px;
            border-radius: 5px;
        }

            .yearGrid .yearCol a:hover {
                background: #23447e;
                color: #fff;
            }

/* #472107 - Changing logo for 75 year celebration */
.logo-75years {
    height: 115px !important;
}

x.logo-text {
    position: absolute;
}

.logo-text h4 {
    margin: -42px 0 0;
    font-weight: 900;
    color: #7e7e7e;
}

.logo-text h1 {
    margin: 38px 0 0;
    font-weight: 900;
}

.logo-text__desktop {
    display: none;
}

header {
    height: auto;
}

@media all and (min-width: 48em) {
    .logo-text__mobile {
        display: none;
    }

    .logo-text__desktop {
        display: inline-block;
    }
}


/* #474455 - Authorize.net */
.flag {
    text-align: center;
}

    .flag img {
        display: initial;
    }

.donateBtns {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

    .donateBtns .dbtn {
        width: 137px;
        text-align: center;
        margin: 0px 40px;
    }

        .donateBtns .dbtn img {
            display: initial;
        }

@media all and (max-width: 480px) {
    .donateBtns {
        flex-wrap: wrap;
    }

        .donateBtns .dbtn {
            margin: 10px 40px;
        }
}

/* R E S K I N */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

svg:not(:root) {
    overflow: hidden;
}

svg.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.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:focus, .visually-hidden:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

.skip {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

    .skip:focus, .skip:active {
        clip: auto;
        color: #fff;
        height: auto;
        margin: 0;
        overflow: visible;
        padding: 10px;
        text-align: center;
        background: #1f3b62;
        width: 100%;
        border: 1px dashed #fff;
        z-index: 1001;
    }

.a11y-instructions:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1f3b62;
    color: #fff;
    padding: 10px;
    border: 1px dashed #fff;
    text-align: Center;
    z-index: 1001;
}

.a11y-instructions p:last-child {
    margin: 0px;
}


.site-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 1440px;
    max-width: 100%;
    align-items: center; /* vertical */
    height: 60px;
    position: fixed;
    z-index: 100;
}

.home .site-header {
    border-bottom: 1px solid #ccc;
}

.main-content {
    margin-top: 60px;
}

.site-header .btn-nav {
    width: 30px;
}

.site-header .logo-area {
    padding: 0 10px;
    min-width: 200px;
}

.site-header .nav-area {
    margin-left: auto;
}

    .site-header .nav-area .cm-menu {
    }

.site-header .buttons-area {
    white-space: nowrap;
}

@media only screen and (min-width:60em) {
    .site-header {
        height: 90px;
    }

        .site-header .logo-area {
            padding: 0 0 0 20px;
            min-width: 230px;
        }

    .main-content {
        font-size: 18px;
        margin-top: 90px;
    }
}

a.member-btn {
    font-size: 10px;
    border-radius: 0;
    padding: 23px 10px;
}

    a.member-btn.blue-bg {
        background-color: #003d7d;
    }

@media only screen and (min-width:60em) {
    a.member-btn {
        height: 100%;
        padding: 34px 30px;
        font-sizE: 16px;
    }
}

.footer-links a {
    text-transform: uppercase;
    font-weight: 900;
    display: inline-block;
    padding: 0 20px 0 0;
    position: relative;
    font-size: 14px;
}

    .footer-links a:after {
        content: "|";
        margin-left: 20px;
    }

    .footer-links a:last-child:after {
        display: none;
    }


@media only screen and (min-width:60em) {
    .nav-area {
        padding: 0 40px;
    }
}

a.more, .more {
    text-transform: uppercase;
    font-weight: 900;
    background: transparent url(/cms/images/svg/arrow-right.svg) no-repeat 100% 50%;
    padding-right: 40px;
    font-size: 16px;
}

.section-newsletter {
    background: #003d7d;
    color: #fff;
    padding: 3rem 2rem;
}

    .section-newsletter > .newsletter-text {
        padding-bottom: 2rem;
        font-size: 18px;
    }

    .section-newsletter h2,
    .section-newsletter .h1 {
        color: #fff;
    }

    .section-newsletter > .newsletter-field .inner {
        position: relative;
    }

        .section-newsletter > .newsletter-field .inner input[type="text"] {
            width: 100%;
            border-style: none;
            padding: 23px;
            border-radius: 40px;
        }

        .section-newsletter > .newsletter-field .inner input[type="button"] {
            position: absolute;
            right: 6px;
            top: 6px;
        }

@media only screen and (min-width:48em) {
    .section-newsletter {
        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: center; /* horizontal */
        align-items: center; /* vertical */
    }

        .section-newsletter > .newsletter-text {
            padding-bottom: 0rem;
            width: 330px;
            margin: 0 5%;
        }

        .section-newsletter > .newsletter-field {
            width: 510px;
            margin: 0 5%;
        }
}

.section-sponsors {
    background: #f4f4f4;
    padding: 2rem;
    text-align: center;
    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: center;
    align-items: center;
}

    .section-sponsors .large-logo {
        text-align: center;
        width: 100%;
    }

        .section-sponsors .large-logo img {
            width: 340px;
        }

    .section-sponsors img {
        margin: 10px 20px;
    }

@media only screen and (min-width:80em) {

    .section-sponsors .large-logo {
        flex: 0 0 350px;
        padding-right: 10px;
    }

    .section-sponsors > div:last-child {
        width: calc(100% - 350px);
    }
}

.section-topics {
    background: #f4f4f4;
    padding: 2rem;
}

    .section-topics .title {
        color: #0A0A0A;
        font-size: 21px;
        font-weight: 900;
        text-transform: uppercase;
    }

.carousel-topics .slick-track {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between; /* horizontal */
}

.carousel-topics .slick-slide {
    background: #fff;
    border-radius: 20px;
    max-width: 310px;
    -moz-box-shadow: 0px 0px 3px 1px #ccc;
    -webkit-box-shadow: 0px 0px 3px 1px #ccc;
    box-shadow: 0px 0px 3px 1px #ccc;
    height: auto;
    float: none;
    margin: 20px 15px 20px 5px;
    position: relative;
    text-decoration: none !important;
    overflow: hidden;
}

    .carousel-topics .slick-slide img {
        display: block;
    }

    .carousel-topics .slick-slide .text {
        padding: 20px 20px 60px 20px;
        display: block;
    }

    .carousel-topics .slick-slide h2,
    .carousel-topics .slick-slide .h2 {
        color: #0A0A0A;
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        display: block;
    }

    .carousel-topics .slick-slide .text .more {
        position: absolute;
        bottom: 20px;
        left: 20px;
        font-size: 14px;
        display: block;
    }

    .carousel-topics .slick-slide:hover,
    .carousel-topics .slick-slide:focus {
        background: #003d7d;
        color: #fff;
    }

        .carousel-topics .slick-slide:hover h2,
        .carousel-topics .slick-slide:focus h2,
        .carousel-topics .slick-slide:hover .h2,
        .carousel-topics .slick-slide:focus .h2 {
            color: #fff;
        }

.carousel-controls {
    text-align: center;
    margin: 0 0 2rem 0;
}

    .carousel-controls a {
        background: #003d7d;
        display: inline-block;
        padding: 0px 22px;
        border-radius: 15px;
        height: 30px;
        cursor: pointer;
    }

        .carousel-controls a.slick-disabled {
            background: #ccc;
        }

        .carousel-controls a svg {
            width: 30px;
            height: 30px;
            fill: #fff;
        }

.section-members {
    padding: 2rem 0;
    text-align: center;
}

    .section-members img {
        margin: 0 0 1rem 0;
    }

    .section-members .text {
        max-widtH: 1050px;
        font-size: 1.1rem;
        margin: 2rem auto 2rem auto;
        padding: 0px 20px;
    }

    .section-members .btn {
        min-width: 300px;
    }

.list-benefits {
    border-radius: 30px;
    background-color: #F4F4F4;
    padding: 10px 40px;
    max-widtH: 1220px;
    margin: 0 auto 2rem auto;
}

    .list-benefits > div {
        margin: 20px;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        width: 230px;
        text-align: left;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center; /* vertical */
    }

    .list-benefits svg {
        margin-right: 20px;
        width: 50px;
        height: 50px;
        vertical-align: middle;
    }

@media only screen and (min-width:48em) {
    .section-members .text {
        font-size: 18px;
        margin: 4rem auto;
    }

    .list-benefits {
        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: center; /* horizontal */
    }
}

.section-conference {
    background: #003d7d;
    color: #fff;
    padding: 2rem;
}

    .section-conference svg {
        width: 120px;
        height: 120px;
    }

    .section-conference > div.image {
        padding-bottom: 1rem;
        text-align: center;
    }

    .section-conference > div.text {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top: 1px solid #fff;
    }

    .section-conference h2,
    .section-conference a {
        color: #fff;
    }

    .section-conference p {
        margin-bottom: 2rem;
    }

    .section-conference .buttons {
        margin: 0;
    }

    .section-conference .btn {
        color: #fff;
        border: 2px solid #fff;
        background: transparent;
        padding: 18px 30px;
    }

        .section-conference .btn:hover,
        .section-conference .btn:focus {
            background: #fff;
            color: #003d7d;
        }

    .section-conference img,
    .section-conference a {
        margin: 20px auto;
        text-align: center;
        display: block;
    }

    .section-conference .buttons {
        text-align: center;
    }

    .section-conference .more {
        background-image: url(/cms/images/svg/arrow-right-white.svg);
        display: inline-block;
        white-space: nowrap;
    }

        .section-conference .more:hover,
        .section-conference .more:focus {
            background-image: url(/cms/images/svg/arrow-right.svg);
            color: #fff;
        }

@media only screen and (min-width:48em) {
    .section-conference {
        padding: 4rem;
        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: center; /* horizontal */
        align-items: center; /* vertical */
    }

        .section-conference > div.image {
            width: 160px;
            padding-bottom: 0;
            padding-right: 2rem;
        }

        .section-conference > div.text {
            border-left: 1px solid #fff;
            border-top: none;
            padding-left: 2rem;
            max-width: 800px;
        }

        .section-conference img,
        .section-conference a {
            margin: 0 20px 0 0;
            display: inline-block;
            text-align: left;
        }

        .section-conference .buttons {
            text-align: left;
        }
}

.section-listen {
    padding: 2rem;
}

    .section-listen .text {
        text-align: center;
        max-width: 1050px;
        margin: 0 auto 2rem auto;
        padding: 0 20px;
    }

.carousel-listen .meta {
    margin: 0 0 1rem 0;
    font-size: 16px;
    font-weight: bold;
}

    .carousel-listen .meta .category {
        color: #F5CB07;
    }

    .carousel-listen .meta span {
        padding: 0 0 0 0px;
    }

        .carousel-listen .meta span + span:before {
            content: "|";
            margin: 0 10px;
        }

        .carousel-listen .meta span.date {
            font-style: normal;
            color: #fff;
        }

.carousel-listen .slick-track {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.carousel-listen .slick-slide {
    height: auto;
    float: none;
    position: relative;
    background: linear-gradient(179.3deg, #003D7D 0%, #011D2E 100%);
    padding: 40px 40px 100px 40px;
    border-radius: 20px;
    color: #fff;
}

    .carousel-listen .slick-slide h2 {
        font-size: 26px;
    }

    .carousel-listen .slick-slide .btn {
        position: absolute;
        bottom: 40px;
        width: calc(100% - 80px);
        left: 40px;
        display: block;
        /*background:transparent url(/cms/images/svg/soundcloud-white.svg) no-repeat 90% 50%;*/
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
    }

        .carousel-listen .slick-slide .btn:hover,
        .carousel-listen .slick-slide .btn:focus {
            background: #d82013;
        }

@media only screen and (min-width:48em) {

    .section-listen .text {
        margin: 3rem auto;
    }

    .carousel-listen {
        width: 94%;
        margin: 0 auto;
    }

        .carousel-listen .slick-slide {
            margin-right: 20px;
        }
}

.carousel-testimonials a {
    color: #fff;
    display: block;
    text-decoration: none;
}

    .carousel-testimonials a:hover,
    .carousel-testimonials a:focus {
        text-decoration: underline;
    }

.carousel-testimonials .slick-slide {
    padding: 40px 40px 60px 40px;
}

    .carousel-testimonials .slick-slide .meta {
        margin-bottom: 0;
    }

    .carousel-testimonials .slick-slide .meta {
        position: absolute;
        bottom: 40px;
        left: 40px;
    }

.interior .section-listen {
    padding: 2rem 0;
}

.interior .carousel-listen {
    width: 100%;
}

.section-hero {
    text-align: center;
}

    .section-hero .image img {
        min-width: 1000px;
    }

    .section-hero .image {
        position: relative;
        display: flex;
        justify-content: center;
    }

        .section-hero .image .tagline {
            position: absolute;
            top: 42%;
            margin-left: auto;
            margin-right: auto;
            left: 0;
            right: 0;
        }

        .section-hero .image .inner {
            background: rgba(0,0,0,0.5);
            color: #fff;
            padding: 10px 20px;
            text-transform: uppercase;
            display: inline-block;
            font-size: 22px;
            letter-spacing: 10px;
        }

    .section-hero .text {
        padding: 2rem;
        font-size: 1.1rem;
    }

        .section-hero .text p {
            margin: 0;
        }

@media only screen and (min-width:48em) {
    .section-hero .image .inner {
        padding: 10px 20px;
        font-size: 30px;
        letter-spacing: 10px;
    }

    .section-hero .text {
        font-size: 24px;
        padding: 4.2rem 2rem 4rem 2rem;
    }
}

.scrollBug {
    display: none;
    position: fixed;
    bottom: 3em;
    right: 2%;
    opacity: 0.7;
    -moz-opacity: 0.7;
    text-decoration: none;
}

    .scrollBug a {
        display: inline-block;
        border-radius: 50%;
    }

    .scrollBug svg {
        width: 54px;
        height: 54px;
    }

.page-top {
    background: #003d7d;
    color: #fff;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

    .page-top h1,
    .page-top .h1 {
        color: #fff;
        margin: 0;
    }

    .page-top p {
        margin: 1rem auto 0 auto;
        max-width: 1150px;
    }

.page-content {
    padding: 0 20px 2rem 20px;
    line-height: 1.6;
}

.member-navigation {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #003d7d;
    color: #fff;
    padding: 20px;
    min-widtH: 200px;
}

    .member-navigation ul {
        padding: 0 0 0 1rem;
        margin: 0;
    }

    .member-navigation a {
        color: #fff;
        font-weight: 900;
        display: block;
        padding: 4px;
    }

a.member-info {
    color: #fff;
    background: #003d7d;
    padding: 7px 20px 7px 10px;
    position: relative;
    font-size: 12px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    align-items: center; /* vertical */
}

    a.member-info > span {
        width: 100%;
        display: block;
        margin: 0;
    }

    a.member-info:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #fff;
    }

#CT_Header_pnlMembers {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
}

@media only screen and (min-width:60em) {
    .site-header .buttons-area {
        max-width: 30%;
    }

    a.member-info {
        padding: 15px 50px 15px 20px;
        font-size: 16px;
        height: 90px;
        max-width: 250px;
    }

        a.member-info:after {
            right: 15px;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #fff;
        }

    .member-navigation {
        top: 90px;
    }
}

a.member-info .name {
    font-weight: 900;
    text-transform: uppercase;
    display: block;
    white-space: normal;
}

a.member-info .year {
    white-space: nowrap;
}

ul.class-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: center; /* horizontal */
}

    ul.class-list li {
        width: 100%;
        max-width: 320px;
        margin-bottom: 1rem;
    }

        ul.class-list li a {
            display: block;
            background: #f4f4f4;
            padding: 20px;
        }

            ul.class-list li a:hover,
            ul.class-list li a:focus {
                background: #003d7d;
                color: #fff;
                text-decoration: none;
            }

            ul.class-list li a img {
                margin-bottom: 10px;
                display: block;
            }

            ul.class-list li a .year {
                font-weight: 900;
            }

            ul.class-list li a .more-link {
                font-size: 16px;
                float: right;
                position: relative;
            }

                ul.class-list li a .more-link:after {
                    content: "";
                    width: 0;
                    height: 0;
                    border-top: 5px solid transparent;
                    border-bottom: 5px solid transparent;
                    border-left: 5px solid #D82013;
                    display: inline-block;
                    margin-left: 5px;
                }

@media only screen and (min-width:40em) {
    ul.class-list {
        justify-content: flex-start; /* horizontal */
    }

        ul.class-list li {
            width: 48%;
            margin: 0 1% 1rem;
        }

            ul.class-list li a img {
                height: 160px !important;
                object-fit: cover;
                min-width: 100%;
            }
}

@media only screen and (min-width:48em) {
    ul.class-list li {
        width: 31%;
        margin: 0 1% 1rem;
    }
}

@media only screen and (min-width:70em) {
    ul.class-list li {
        width: 18%;
        margin: 0 1% 1rem;
    }
}

.topic {
    border-bottom: 10px solid #f4f4f4;
    max-width: 1150px;
    margin: 0 auto 0 auto;
    padding: 1rem 0;
}

    .topic .meta {
        margin: 0 0 1rem 0;
        display: none;
    }

@media only screen and (min-width:60em) {
    .topic {
        padding: 2rem 0;
    }

        .topic .meta {
            display: block;
        }
}

.topic .meta .category,
.anchor .category {
    color: #D82013;
    font-size: 21px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.topic .toggle-topic,
.toggle-staff {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
}

    .topic .toggle-topic:before,
    .toggle-staff:before {
        /*content:"\01F823";*/
        content: "";
        background: transparent url(/cms/images/svg/arrow-right.svg) no-repeat 100% 50%;
        transform: rotate(90deg);
        color: #D82013;
        font-weight: normal;
        display: inline-block;
        width: 20px;
        height: 16px;
        font-size: 20px;
        position: relative;
        top: 2px;
    }

    .topic .toggle-topic.active:before,
    .toggle-staff.active:before {
        content: "x";
        top: 4px;
        background-image: none;
        font-weight: 600;
        transform: scale(1,0.7);
    }

    .topic .toggle-topic.active + .topic-cols {
        margin-top: 1rem;
    }

.topic .meta .date {
    font-size: 21px;
    font-style: normal;
    color: #0A0A0A;
}

.topic .meta span + span:before {
    content: "|";
    margin: 0 10px;
}

.topic-cols,
body:not(.cke_show_borders) .staff-wrapper,
body:not(.cke_show_borders) .staff-category {
    display: none;
}

.staff-wrapper.spotlight-wrapper {
    display: block !important;
}

@media only screen and (min-width:60em) {
    .topic .toggle-topic,
    .toggle-staff {
        display: none;
    }
}

.topic-cols > div {
    width: 100%;
}

.topic-title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
}

    .topic-title > div {
        width: 100%;
    }
/*
.topic-title .h1 span {
	font-weight:normal;
	font-size:0.6em;
	display:block;
	margin-top:1rem;
	line-height:1;
}
*/

.topic-cols > div.topic-main {
    margin-bottom: 1rem;
}

.topic-title .image img {
    padding-bottom: 20px;
}

.topic-title .image:empty {
    display: none;
}

@media only screen and (min-width:30em) {

    .topic-title .image {
        width: 200px;
        padding-right: 30px;
    }

        .topic-title .image img {
            padding-right: 0px;
            padding-bottom: 0;
            max-width: 1000px !important;
            height: 170px !important;
            width: 170px;
            object-fit: cover;
        }

    .topic-title .text {
        width: calc(100% - 200px);
    }
}

@media only screen and (min-width:48em) {
    .topic-title .text h2 {
        font-size: 2.25rem;
    }
}

@media only screen and (min-width:60em) {

    .staff-list,
    .staff-wrapper,
    .staff-category {
        display: block !important;
    }

    .topic-cols {
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        width: 100%;
    }

        .topic-cols > div.topic-main {
            width: 70%;
            border-right: 1px solid #a5a5a5;
            padding-right: 3%;
            margin-bottom: 0rem;
        }

        .topic-cols > div.topic-side {
            width: 30%;
            padding-left: 3%;
        }
}


.list-title {
    font-weight: 900;
    font-size: 21px;
}

.item-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

    .item-list li {
        padding: 1rem 0;
    }

        .item-list li h3 {
            text-transform: none;
            font-weight: 900;
            font-size: 18px;
            margin: 0;
        }


.carousel-items .slick-track {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.carousel-items .slick-slide {
    border: 10px solid #f4f4f4;
    padding: 20px 20px 50px 20px;
    height: auto;
    float: none;
    position: relative;
    margin: 0 10px 0 0;
}

    .carousel-items .slick-slide .more {
        position: absolute;
        bottom: 0px;
        left: 0px;
        background-color: #f4f4f4;
        padding: 20px 30px 15px 30px;
        width: 100%;
        text-align: right;
    }

    .carousel-items .slick-slide .meta {
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .carousel-items .slick-slide .date {
        color: #D82013;
        font-style: normal;
        font-weight: bold;
        text-transform: uppercase;
    }

    .carousel-items .slick-slide .category {
        font-style: normal;
        font-weight: bold;
        text-transform: uppercase;
    }

.carousel-items .meta span + span:before {
    content: "|";
    margin: 0 10px;
    color: #000;
}

.carousel-items .slick-slide h3 {
    font-weight: normal;
    text-transform: none;
}

.directory-wrapper {
    background: #F4F4F4;
    padding: 2rem;
    margin: 0 0 1rem 0;
    position: relative;
}

.directory-list {
    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: 1150px;
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style-type: none;
    justify-content: center; /* horizontal */
    border-bottom: 1px solid #003d7d;
}

    .directory-list li {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 1px 20px 0 rgba(0,0,0,0.15);
        text-align: center;
        overflow: hidden;
        max-width: 340px;
        width: 90%;
        margin: 0 10px 1rem 10px;
    }

        .directory-list li a {
            display: block;
            height: 100%;
            padding: 2rem;
            text-decoration: none !important;
            line-height: 1.3rem;
        }

            .directory-list li a:hover,
            .directory-list li a:focus {
                background: #003d7d;
                color: #fff;
            }

                .directory-list li a:hover .name,
                .directory-list li a:focus .name,
                .directory-list li a:hover .ylclass,
                .directory-list li a:focus .ylclass,
                .directory-list li a:hover .company,
                .directory-list li a:focus .company {
                    color: #fff;
                }

        .directory-list li .image {
            border-radius: 50%;
            width: 92px;
            height: 92px;
            margin: 0 auto 20px auto;
            overflow: hidden;
            display: block;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .directory-list li img {
            display: none;
        }

        .directory-list li .name {
            color: #0A0A0A;
            font-weight: bold;
            text-transform: uppercase;
            display: block;
        }

        .directory-list li .ylclass {
            font-size: 20px;
            color: #0A0A0A;
            display: block;
        }

        .directory-list li .company {
            color: #0A0A0A;
            font-size: 14px;
            display: block;
        }

.followWrap {
    margin-left: -20px;
}

.directory-list-title {
    padding: 10px 0px;
    font-size: 26px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width:80em) {
    .followWrap {
        margin-left: 20px;
    }

    .directory-list-title {
        font-size: 30px;
    }
}

.directory-list-title.fixed {
    position: fixed;
    top: 80px;
    box-sizing: border-box;
    z-index: 0;
}

    .directory-list-title.fixed.absolute {
        display: none;
    }

@media only screen and (min-width:48em) {
    .directory-list li {
        width: 48%;
        margin: 0 1% 1rem 1%;
    }
}

@media only screen and (min-width:80em) {
    .directory-list {
        justify-content: flex-start;
    }

        .directory-list li {
            width: 23%;
            margin: 0 1% 1rem 1%;
        }
}

.directory-letters {
    text-align: center;
    margin: 0 auto 1rem auto;
    text-transform: uppercase;
    line-height: 1;
}

    .directory-letters a {
        display: inline-block;
        font-weight: 900;
        font-size: 16px;
        background: #f4f4f4;
        padding: 3px;
        width: 24px;
        margin: 0 3px;
        border-radius: 50%;
    }

        .directory-letters a:hover,
        .directory-letters a:focus,
        .directory-letters span.active {
            display: inline-block;
            font-weight: 900;
            font-size: 16px;
            background: #003d7d;
            color: #fff;
            padding: 3px;
            width: 24px;
            margin: 0 3px;
            border-radius: 50%;
            text-decoration: none;
        }

.directory-filter {
    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: 1150px;
    margin: 0 auto 2rem;
    justify-content: flex-start;
    display: none;
}

.directory-filter-toggle {
    margin: 1rem 0 0 0;
    width: 100%;
}

    .directory-filter-toggle .btn {
        width: 100%;
        text-align: left;
        position: relative;
    }

        .directory-filter-toggle .btn:after {
            content: "+";
            position: absolute;
            top: 7px;
            right: 36px;
            font-size: 30px;
        }

        .directory-filter-toggle .btn.active:after {
            content: "-";
        }

.directory-filter .search-narrow-results,
.directory-filter .icon-plus {
    display: none;
}

.page-top .directory-filter {
    margin-bottom: 0;
}

.directory-filter select,
.directory-filter input[type="text"] {
    padding: 18px 30px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #C1C2C3;
    margin-bottom: 1rem;
    width: 100%;
}

.directory-filter > div {
    width: 100%;
}

.directory-filter .search-inner {
    position: relative;
}

    .directory-filter .search-inner input[type="text"] {
        width: 100%;
    }

    .directory-filter .search-inner input[type="button"],
    .directory-filter .search-inner input[type="submit"] {
        position: absolute;
        top: 3px;
        right: 10px;
        background: transparent url(/cms/images/icon-search.jpg) no-repeat 50% 50%;
        border-style: none;
        padding: 0;
        text-indent: -999rem;
        width: 50px;
        height: 50px;
    }

.break {
    flex-basis: 100%;
    height: 0;
}

@media only screen and (min-width:64em) {
    .break {
        display: none;
    }
}

@media only screen and (min-width:600px) {

    .directory-filter-toggle {
        display: none;
    }

    .directory-filter {
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
    }

        .directory-filter .search-inner {
            width: 340px;
        }

    .directory-filter {
        justify-content: center;
    }

        .directory-filter > div {
            width: auto;
            margin-right: 20px;
        }
}

.directory-filter-top {
    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: center; /* horizontal */
    align-items: center; /* vertical */
    margin: 0 auto 2rem auto;
}

    .directory-filter-top > div {
        padding: 0 1rem 0 0;
    }

    .directory-filter-top .count-map {
        padding: 0 1rem;
        border-left: 1px solid #ccc;
        white-space: nowrap;
    }

.map-link svg {
    width: 24px;
    height: 24px;
    vertical-align: top;
}

.members-count {
    text-transform: uppercase;
    font-size: 21px;
    font-weight: bold;
}

.container-narrow {
    max-width: 1150px;
    margin: 0 auto;
}

.profile-actions {
    background: #022f5f;
    color: #fff;
    padding: 1rem 0 3rem;
    margin: -2rem -20px 2rem -20px;
}

.profile-actions-inner {
    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: center;
    max-width: 1300px;
    margin: 0 auto;
}

    .profile-actions-inner > div {
        padding: 2rem 1rem;
        max-width: 320px;
        text-align: center;
        position: relative;
    }

        .profile-actions-inner > div:after {
            content: "";
            position: absolute;
            left: 10%;
            bottom: 0;
            width: 80%;
            height: 1px;
            background: #2d527a;
        }

        .profile-actions-inner > div:last-child:after {
            display: none;
        }

.profile-actions svg,
.profile-actions img {
    width: 80px;
    height: 80px;
    vertical-align: top;
    margin: 0 auto 1rem;
    display: block;
}

.profile-actions-inner > div .btn {
    padding: 18px 20px;
}


@media only screen and (min-width:600px) {

    .directory-filter-top {
        flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
    }

    .profile-actions-inner > div {
        width: 50%;
        padding-bottom: 80px;
    }

        .profile-actions-inner > div:after {
            content: "";
            position: absolute;
            left: auto;
            right: 0;
            top: 15%;
            width: 1px;
            height: 70%;
        }

        .profile-actions-inner > div .btn {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
        }
}

@media only screen and (min-width:80em) {
    .profile-actions-inner > div {
        width: 20%;
    }
}

.page-top .page-top {
    padding: 0;
    margin: 0;
}

.profile-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
    text-align: left;
    align-items: center;
}

    .profile-top > div {
        width: 100%;
        padding-bottom: 1rem;
    }


        .profile-top > div.image {
            width: 102px;
            height: 102px;
            border-radius: 50%;
            margin: 0 auto 20px auto;
            overflow: hidden;
        }

        .profile-top > div img {
            min-width: 100%;
        }

        .profile-top > div .name {
            font-size: 36px;
        }

    .profile-top p {
        margin: 0;
    }

    .profile-top > div a {
        color: #fff;
    }

    .profile-top > div.button svg {
        margin-right: 5px;
    }


@media only screen and (min-width:30em) {
    .profile-top > div {
        width: auto;
        padding: 0 2rem 0 0;
    }

        .profile-top > div:last-child {
            padding: 0;
        }

        .profile-top > div.image {
            width: 102px;
            margin: 0 2rem 0 0;
            padding: 0;
        }

        .profile-top > div.text {
            width: calc(100% - 140px);
        }

        .profile-top > div.button {
            margin-left: auto;
        }
}

@media only screen and (min-width:64em) {
    .profile-top > div.text {
        width: calc(100% - 340px);
    }
}

.page-top .count-map {
    display: none;
}

.profile-section {
    border-bottom: 10px solid #f4f4f4;
    padding: 2rem 0;
}

.profile-detail {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
}

    .profile-detail .image {
        width: 70px;
        height: 70px;
        overflow: hidden;
        border-radius: 50%;
        margin-bottom: 1rem;
        margin-right: 1rem;
    }

    .profile-detail img {
        border-style: none !important;
        width: 100%;
    }

    .profile-detail .text {
        margin-bottom: 1rem;
        width: calc(100% - 90px);
    }

    .profile-detail .social {
        width: 100%;
    }

    .profile-detail > div.social a {
        display: inline-block;
        margin: 0 30px 0 0;
    }

    .profile-detail > div.social svg {
        width: 30px;
        height: 30px;
    }

        .profile-detail > div.social svg.icon-email {
            fill: #003D7D;
        }

        .profile-detail > div.social svg.icon-twitter {
            fill: #00A2F0;
        }

        .profile-detail > div.social svg.icon-linkedin {
            fill: #0077b5;
        }

        .profile-detail > div.social svg.icon-youtube {
            fill: #D82013;
        }

        .profile-detail > div.social svg.icon-classportrait {
            width: 43px;
            margin-left: -6px;
        }

@media only screen and (min-width:48em) {
    .profile-detail .image,
    .profile-detail .text {
        margin-right: 2rem;
        margin-bottom: 1rem;
    }

    .profile-detail .image {
        width: 115px;
        height: 115px;
    }

    .profile-detail > div.text {
        width: calc(100% - 370px);
    }

    .profile-detail > div.social {
        margin-left: auto;
        width: auto;
    }

        .profile-detail > div.social a {
            margin: 0 0 0 10px;
        }
}

.banner-blue {
    background: #003a87;
    color: #fff;
    border-radius: 30px;
    padding: 2rem;
    margin: 0 auto 2rem auto;
    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: 1150px;
    justify-content: center; /* horizontal */
    align-items: center; /* vertical */
}

    .banner-blue > div {
        padding: 0 1rem 1rem 1rem;
    }

    .banner-blue img {
        max-width: 160px !important;
    }

    .banner-blue svg {
        width: 100px;
        height: 100px;
    }

@media only screen and (min-width:48em) {
    .banner-blue > div {
        padding: 0 2rem 1rem 2rem;
    }

        .banner-blue > div:nth-child(2) {
            border-left: 1px solid #fff;
        }

        .banner-blue > div:last-child {
            margin-left: auto;
        }
}

@media only screen and (min-width:80em) {
    .banner-blue svg {
        width: 200px;
        height: 200px;
    }

    .banner-blue > div {
        padding: 0 2rem;
    }
}

.page-navigation {
    text-align: center;
    display: none;
}

    .page-navigation ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
        margin-top: -2rem;
    }

    .page-navigation li {
        padding: 0;
        margin: 0;
        list-style-type: none;
        display: inline-block;
    }

    .page-navigation a {
        position: relative;
        font-sizE: 14px;
        font-weight: 900;
        display: inline-block;
        padding: 20px 30px;
        text-decoration: none;
        text-transform: uppercase;
        color: #0A0A0A;
    }

        .page-navigation a:hover,
        .page-navigation a:focus {
            color: #003d7d;
        }

            .page-navigation a:hover:before,
            .page-navigation a:focus:before {
                content: "";
                position: absolute;
                top: 0;
                lefT: 50%;
                margin-left: -5px;
                width: 0;
                height: 0;
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-top: 10px solid #003d7d;
            }

.anchor {
    scroll-margin-top: 110px;
}

@media only screen and (min-width:60em) {
    .page-navigation {
        display: block;
    }
}

.expand-text {
    display: none;
}

.members-map {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.page-top + .members-map {
    margin-top: -2rem;
}

.members-total {
    color: #636363;
    font-size: 14px;
}

.members-list {
    padding: 0;
    margin: 0 0 2rem 0;
    list-style-type: none;
    border-top: 1px solid #a1a1a1;
}

    .members-list a {
        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: flex-start; /* horizontal */
        align-items: center; /* vertical */
        border-bottom: 1px solid #a1a1a1;
        padding: 10px 1rem;
    }

        .members-list a:hover,
        .members-list a:focus {
            background: #f4f4f4;
            text-decoration: none;
        }

        .members-list a span {
            width: 100%;
            margin: 5px 0;
            display: block;
        }

            .members-list a span.more {
                display: inline-block;
                width: auto;
            }

    .members-list li .image {
        border-radius: 50%;
        width: 70px;
        height: 70px;
        overflow: hidden;
        display: inline-block;
    }

        .members-list li .image img {
            width: 70px !important;
        }

    .members-list li .info .name {
        color: #003d7d;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: bold;
    }

    .members-list li .info .location,
    .members-list li .distance {
        color: #0A0A0A;
        font-size: 14px;
    }

@media only screen and (min-width:48em) {
    .members-list li .info {
        width: 50%;
        margin: 0 20px;
        display: flex;
        align-items: center;
    }

        .members-list li .info span {
            width: 45%;
            display: inline-block;
        }

            .members-list li .info span + span {
                margin-left: 20px;
            }

    .members-list li .distance {
        width: 10%;
        margin: 0 20px 0;
    }

    .members-list li .link {
        margin-left: auto;
        width: auto;
        white-space: nowrap;
    }
}

.responsive-form-table,
.responsive-form-table table {
    width: 100%;
}

    .responsive-form-table > tbody > tr > td:first-child {
        padding-right: 20px;
    }

@media only screen and (max-width:59.9em) {
    .responsive-form-table td {
        display: block;
    }
}


.staff-list {
    border-bottom: 10px solid #f4f4f4;
    padding: 1rem 0;
}

.staff-detail {
    border-bottom: 1px solid #b3b3b3;
    padding: 2.3rem 0 1.3rem 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    align-items: center; /* vertical */
    width: 100%;
}

    .staff-detail:last-child {
        border-style: none;
    }

    .staff-detail > div {
        margin-bottom: 1rem;
    }

    .staff-detail .image {
        width: 132px;
        height: 132px;
        overflow: hidden;
        border-radius: 50%;
        margin-right: 2rem;
    }

        .staff-detail .image img {
            width: 100%;
        }

    .staff-detail .text h2,
    .articleTitle,
    .speechContainer h1.title {
        color: #000000;
        font-size: 24px;
        font-weight: normal;
    }

        .staff-detail .text h2 .YL {
            font-size: 28px;
            display: block;
            font-weight: 200;
            line-height: 28px;
            vertical-align: middle;
        }

@media only screen and (min-width:48em) {
    .staff-detail .text h2,
    .articleTitle,
    .speechContainer h1.title {
        font-size: 36px;
    }
}

@media only screen and (min-width:60em) {
    .staff-detail .text h2 .YL {
        display: inline-block;
        margin-left: 1rem;
        padding: 0 0 0 1rem;
        border-left: 1px solid #ccc;
    }
}

.staff-detail .text .position {
    color: #000000;
    font-size: 24px;
    font-style: italic;
    font-weight: 200;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.staff-detail .bio {
    width: 100%;
}

@media only screen and (min-width:30em) {
    .staff-detail div.image + div.text {
        max-width: calc(100% - 180px);
    }
}

.class-detail-wrapper {
    background: #f4f4f4;
    padding: 3rem 2rem;
}

.class-detail {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
}

    .class-detail > div {
        margin-bottom: 2rem;
    }

    .class-detail .text + .social {
        display: none;
    }

    .class-detail .image {
        width: 100%;
        margin: 0 auto;
        max-width: 1150px;
    }

    .class-detail .social {
        text-transform: uppercase;
        font-weight: 900;
        font-size: 16px;
        text-align: left;
    }

    .class-detail .mobile-social {
        margin-top: 2rem;
    }

    .class-detail .social p {
        margin: 1rem 0 1.7rem 0;
    }

        .class-detail .social p:last-child {
            margin-bottom: 0;
        }

    .class-detail .social a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        width: 100%;
        justify-content: flex-start;
        align-items: center; /* vertical */
        line-height: 1.1;
    }

    .class-detail .social svg {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        vertical-align: middle;
        font-size: 15px;
    }

        .class-detail .social svg.icon-linkedin {
            fill: #fff;
            background: #0077b5;
            padding: 7px;
        }

        .class-detail .social svg.icon-twitter {
            fill: #00A2F0;
        }

    .class-detail .social .svg-text {
        width: calc(100% - 50px);
    }

        .class-detail .social .svg-text span {
            font-weight: 300;
            white-space: nowrap;
            display: block;
        }


@media only screen and (min-width:60em) {
    .class-detail .text {
        padding-right: 1rem;
        border-right: 1px solid #b7b7b7;
        width: 75%;
    }

    .class-detail .social {
        padding-left: 1rem;
        width: 25%;
    }

    .class-detail .text + .social {
        display: block;
    }

    .class-detail .mobile-social {
        display: none;
    }
}


@media only screen and (min-width:80em) {
    .class-detail .text {
        padding-right: 3rem;
    }

    .class-detail .social {
        padding-left: 3rem;
    }
}

.accountBlocks .help.mob-smaller {
    margin-top: 1rem;
    display: inline-block;
}

.accountLogin input[type="image"] {
    max-width: 100%;
}

@media only screen and (max-width:47.9em) {
    .accountLogin .grid_6 {
        width: 100%;
    }
}

.social-links {
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
}

    .social-links li {
        display: inline-block;
        float: left;
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

        .social-links li a {
            display: inline-block;
            float: left;
            width: 48px;
            height: 48px;
        }

            .social-links li a svg {
                padding: 10px;
                width: 48px;
                height: 48px;
                fill: #fff;
            }

@media only screen and (min-width:48em) {
    .social-links {
        top: 34.5%;
        bottom: auto;
    }

        .social-links li {
            display: block;
            float: none;
        }
}

.social-links li a .icon-linkedin {
    background: #0077b5;
}

.social-links li a .icon-twitter {
    background: #000;
}

.social-links li a .icon-instagram {
    background: #ef0075;
}

.social-links li a .icon-youtube {
    background: #D82013;
}

.social-links li a .icon-soundcloud {
    background: #FF5501;
}

.social-links li a:hover svg,
.social-links li a:focus svg {
    background: #0A0A0A;
}

/* =================================================================
                       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;
}


.paging {
    text-align: center;
}

@media only screen and (min-width:48em) {
}



/* video player */

.multiMod {
    width: 718px;
    height: 350px;
    margin: 10px 0 0 0px;
    overflow: hidden;
}

    .multiMod .mMStage {
        width: 718px;
        height: 253px;
        margin-bottom: 6px;
    }

        .multiMod .mMStage .mMPlayer {
            float: left;
            width: 400px;
        }

        .multiMod .mMStage .mMPlaying {
            float: left;
            width: 200px;
            color: #003871;
        }

            .multiMod .mMStage .mMPlaying h2 {
                font-size: 19px;
                font-weight: normal;
                color: #003871;
                margin: 0;
                padding: 0;
            }

            .multiMod .mMStage .mMPlaying p.mMDateline {
                font-size: 11px;
                margin: 0;
                padding-top: 6px;
            }

            .multiMod .mMStage .mMPlaying p {
                font-size: 12px;
            }

    .multiMod .mMMenuBar {
        position: relative;
        width: 718px;
        height: 30px;
        color: #fff;
        background-color: #003871;
        border-top: 1px solid #809cb8;
        z-index: 10;
    }

    .multiMod .mMSearch {
        float: right;
        margin-right: 10px;
    }

        .multiMod .mMSearch .mMLabel {
            float: left;
            font-size: 12px;
            margin: 7px 6px 0 0;
        }

        .multiMod .mMSearch .mMSrchInpt {
            float: left;
            width: 140px;
            font-size: 11px;
            color: #003871;
            border: 1px solid #809cb8;
            margin: 4px 2px 0 0;
            padding: 2px;
        }

        .multiMod .mMSearch .mMSrchImgBtn {
            float: left;
            width: 26px;
            height: 26px;
            margin: 2px 0 0 0;
        }

    .multiMod .mMCats {
        float: left;
        margin: 2px 0 0 10px;
    }

        .multiMod .mMCats .mMLabel {
            float: left;
            font-size: 12px;
            margin: 5px 6px 0 0;
        }

    .multiMod .mMBrdcrmb {
        width: 718px;
        background-color: #eaeaea;
        border-bottom: 1px solid #809cb8;
        margin-bottom: 10px;
        padding: 5px 0
    }

    .multiMod .mMBrdcrmbInner {
        font-size: 11px;
        color: #003871;
        margin: 0 10px;
    }

        .multiMod .mMBrdcrmbInner span {
            font-weight: bold;
        }

    .multiMod .mMIndex {
        width: 715px;
        height: 254px;
        margin-left: -4px;
    }

        .multiMod .mMIndex ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

            .multiMod .mMIndex ul li {
                float: left;
                display: inline;
                width: 143px;
                height: 126px;
                position: relative;
                background: url(/cms/images/multimod/thumb_bg.gif) no-repeat 0 0;
                margin: 0 0 0 8px;
                padding: 0;
            }

                .multiMod .mMIndex ul li.last {
                    margin-right: 0;
                }

        .multiMod .mMIndex .mMThumb {
            position: absolute;
            top: 3px;
            left: 3px;
        }

            .multiMod .mMIndex .mMThumb img {
                width: 132px;
                height: 74px;
                background-repeat: no-repeat;
                background-position: center center;
            }

    .multiMod .mMThumb a:link img,
    .multiMod .mMThumb a:visited img {
        border: 1px solid #003871;
    }

    .multiMod .mMThumb a:hover img {
        border: 1px solid #c50013;
    }

    .multiMod .mMIndex .mMThumbOverlay {
        position: absolute;
        top: 0;
        left: 0;
        display: none;
        width: 138px;
        height: 94px;
        background: url(/cms/images/multimod/thumb_overlay.gif) no-repeat 0 0;
        text-indent: -9999em;
    }

    .multiMod .mMIndex .mMCaption {
        width: 130px;
        height: 30px;
        position: absolute;
        top: 84px;
        left: 6px;
        font-size: 11px;
        line-height: 14px;
        color: #003871;
        overflow: hidden;
    }

    .multiMod .mMPagerBar {
        height: 27px;
        color: #fff;
        background-color: #003871;
        border-top: 1px solid #809cb8;
    }

    .multiMod .mMPagerStatus {
        float: left;
        font-size: 12px;
        margin: 5px 0 0 10px;
    }

    .multiMod .mMPagerBar .mMPager {
        float: right;
        font-size: 12px;
        margin: 3px 10px 0 0;
    }

        .multiMod .mMPagerBar .mMPager ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

            .multiMod .mMPagerBar .mMPager ul li {
                float: left;
                display: inline;
                cursor: pointer;
            }

                .multiMod .mMPagerBar .mMPager ul li.page-number {
                    margin-right: 2px;
                    padding: 2px;
                }

                    .multiMod .mMPagerBar .mMPager ul li.page-number:hover, .multiMod .mMPagerBar .mMPager ul li.pgCurrent {
                        text-decoration: underline;
                    }

        .multiMod .mMPagerBar .mMPager li.pgFirst, .multiMod .mMPagerBar .mMPager li.pgLast, .multiMod .mMPagerBar .mMPager li.pgPrev, .multiMod .mMPagerBar .mMPager li.pgNext {
            width: 46px;
            height: 23px;
            background-image: url(/cms/images/multimod/pager_sprite.gif);
            background-repeat: no-repeat;
            margin: 0;
            padding: 0;
            text-indent: -9999em;
        }

        .multiMod .mMPagerBar .mMPager li.pgFirst {
            background-position: 0 0;
            margin: 0;
        }

            .multiMod .mMPagerBar .mMPager li.pgFirst:hover {
                background-position: 0 -23px;
            }

        .multiMod .mMPagerBar .mMPager li.pgLast {
            background-position: -46px 0;
        }

            .multiMod .mMPagerBar .mMPager li.pgLast:hover {
                background-position: -46px -23px;
            }

        .multiMod .mMPagerBar .mMPager li.pgPrev {
            background-position: 0 -46px;
            margin-right: 4px;
        }

            .multiMod .mMPagerBar .mMPager li.pgPrev:hover {
                background-position: 0 -69px;
            }

        .multiMod .mMPagerBar .mMPager li.pgNext {
            background-position: -46px -46px;
            margin-left: 4px;
        }

            .multiMod .mMPagerBar .mMPager li.pgNext:hover {
                background-position: -46px -69px;
            }

        .multiMod .mMPagerBar .mMPager li.pgEmpty {
            display: none;
        }

.mMCats .sf-menu {
    float: left;
}

    .mMCats .sf-menu a.mMCatBtn,
    .mMCats .sf-menu a.mMCatBtn:link,
    .mMCats .sf-menu a.mMCatBtn:visited {
        width: 99px;
        background-image: url(/cms/images/multimod/cat_menu_btn.gif)
    }

    .mMCats .sf-menu a,
    .mMCats .sf-menu a:link,
    .mMCats .sf-menu a:visited {
        height: 26px;
        text-decoration: none;
        text-indent: -9999em;
        padding: 0px;
    }

        .mMCats .sf-menu a,
        .mMCats .sf-menu a:visited {
            color: #003871;
        }

    .mMCats .sf-menu li {
        font-size: 11px;
    }

        .mMCats .sf-menu li ul {
            width: 120px;
            background-color: #fff;
            border: 1px solid #003871;
            margin: -3px 0 0 1px;
            padding: 4px 10px 8px 10px;
        }

        .mMCats .sf-menu li li {
            background: url(/cms/images/multimod/cat_menu_li_bg.gif) repeat-x 0 bottom;
        }

            .mMCats .sf-menu li li ul {
                margin-left: 15px;
            }

            .mMCats .sf-menu li li li {
            }

            .mMCats .sf-menu li li a,
            .mMCats .sf-menu li li a:link,
            .mMCats .sf-menu li li a:visited {
                height: auto;
                padding: 5px 0;
                text-indent: 0;
            }

        .mMCats .sf-menu li a:hover {
            background-position: 0 -26px;
        }

        .mMCats .sf-menu li.sfHover a {
            background-position: 0 -26px;
        }

        .mMCats .sf-menu li li a:hover,
        .mMCats .sf-menu li li a:active {
            color: #900;
        }

        .mMCats .sf-menu li:hover,
        .mMCats .sf-menu li.sfHover,
        .mMCats .sf-menu a:focus,
        .mMCats .sf-menu a:hover,
        .mMCats .sf-menu a:active {
            color: #900;
            outline: 0;
        }

    .mMCats .sf-menu a.sf-with-ul ul {
        padding-right: 2.25em;
        min-width: 1px;
    }

.mMCats .sf-sub-indicator {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 8px;
    height: 8px;
    text-indent: -999em;
    overflow: hidden;
    background: url(/cms/images/multimod/cat_menu_arrow.gif) no-repeat -10px -100px;
}

.mMCats a > .sf-sub-indicator {
    top: .8em;
    background-position: 0 -100px;
}

.mMCats a:focus > .sf-sub-indicator,
.mMCats a:hover > .sf-sub-indicator,
.mMCats a:active > .sf-sub-indicator,
.mMCats li:hover > a > .sf-sub-indicator,
.mMCats li.sfHover > a > .sf-sub-indicator {
    background-position: -10px -100px;
}

.mMCats .sf-menu ul .sf-sub-indicator {
    background-position: -10px 0;
}

.mMCats .sf-menu ul a > .sf-sub-indicator {
    background-position: 0 0;
}

.mMCats .sf-menu ul a:focus > .sf-sub-indicator,
.mMCats .sf-menu ul a:hover > .sf-sub-indicator,
.mMCats .sf-menu ul a:active > .sf-sub-indicator,
.mMCats .sf-menu ul li:hover > a > .sf-sub-indicator,
.mMCats .sf-menu ul li.sfHover > a > .sf-sub-indicator {
    background-position: -10px 0;
}

.mMCats ul.sf-menu li li:hover ul, .mMCats ul.sf-menu li li.sfHover ul {
    left: 115px; /* match ul width */
    top: 0;
}
/* end video player */

.iframe-container,
.video-wrapper {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}

    .iframe-container iframe,
    .video-wrapper iframe {
        border: 0;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

.booklet-wrapper iframe {
    height: 500px !important;
}

@media only screen and (min-width:60em) {
    .booklet-wrapper iframe {
        height: 1000px !important;
    }
}

#cookie-box {
    background: #000;
    padding: 2rem 2rem 4rem 2rem;
    color: #fff;
    text-align: center;
    display: none;
    font-size: 16px;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 10;
}

    #cookie-box a {
        color: #fff;
        text-decoration: underline;
    }

    #cookie-box .btn {
        padding: 8px 25px;
    }

@media only screen and (min-width:48em) {
    #cookie-box {
        padding: 2rem;
    }
}

.cpyrt {
    display: none;
}

.figure-right {
    display: table;
    float: right;
    margin: 0 0 1rem 20px;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 5px 0;
    max-width: 50%;
}

.figure-left {
    display: table;
    float: left;
    margin: 0 1rem 15px 0;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 5px 0;
    max-width: 50%;
}

.figure-center {
    display: table;
    margin: 0 auto 1rem auto;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 5px 0;
}

table .figure-center {
    display: block;
}

.figure-right figcaption,
.figure-left figcaption,
.figure-center figcaption {
    margin-top: 5px;
    display: table-caption;
    caption-side: bottom;
    font-size: 0.9em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
}

.figure-right img,
.figure-left img,
.figure-center img {
    display: block;
    width: 100%;
}

@media only screen and (max-width:29.9rem) {
    .figure-right,
    .figure-left,
    .figure-center {
        float: none;
        margin: 0 auto 1rem auto;
        max-width: 100%;
        text-align: center;
    }
}

.cards-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

    .cards-list li {
        background: #fff;
        border-radius: 20px;
        -moz-box-shadow: 0px 0px 3px 1px #ccc;
        -webkit-box-shadow: 0px 0px 3px 1px #ccc;
        box-shadow: 0px 0px 3px 1px #ccc;
        margin: 20px 0px;
        position: relative;
        text-decoration: none !important;
        overflow: hidden;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        width: 100%;
    }

        .cards-list li img {
            margin: 0 auto;
            max-width: 1000px !important;
            height: 212px !important;
            width: 100%;
            object-fit: cover;
        }

        .cards-list li .image {
            flex: 1
        }

        .cards-list li .text {
            padding: 20px;
        }

            .cards-list li .text .h2 {
                font-size: 20px;
                font-weight: bold;
                text-transform: uppercase;
                display: block;
            }

            .cards-list li .text p {
                margin: 0;
            }

@media only screen and (min-width:48em) {
    .cards-list li {
        flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
    }

        .cards-list li img {
            height: 212px !important;
            min-height: 100%;
            width: 310px;
        }
}

.events-list {
    display: block;
    width: 100%;
}

    .events-list .row,
    .events-list .alternate {
        font-size: 1rem !important;
        color: #0A0A0A !important;
        text-align: left;
    }

    .events-list tr {
        border-radius: 20px;
        -moz-box-shadow: 0px 0px 3px 1px #ccc;
        -webkit-box-shadow: 0px 0px 3px 1px #ccc;
        box-shadow: 0px 0px 3px 1px #ccc;
        margin: 20px 0px;
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        width: 100%;
        background: #fff !important;
    }

        .events-list tr.todayList {
            background: #fff !important;
            -moz-box-shadow: 0px 0px 3px 1px #003d7d;
            -webkit-box-shadow: 0px 0px 3px 1px #003d7d;
            box-shadow: 0px 0px 3px 1px #003d7d;
        }

        .events-list tr td.listRailDate {
            width: 100%;
            padding: 20px;
            font-weight: bold;
            border-radius: 20px;
        }

        .events-list tr td.listRailInfo {
            padding: 20px;
            width: 100%;
            border-radius: 20px;
        }

@media only screen and (min-width:48em) {
    .events-list tr {
        flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
    }

        .events-list tr td.listRailDate {
            width: 240px;
        }

        .events-list tr td.listRailInfo {
            width: calc(100% - 240px);
        }
}

.event-time:empty,
.event-short-description:empty {
    display: none;
}

.event-time,
.event-short-description {
    margin: 0 0 1rem 0;
}

.event-short-description {
    font-style: italic;
}

.box {
    max-width: 555px;
    margin: 0 auto 1rem auto;
    -moz-box-shadow: 0px 0px 3px 1px #ccc;
    -webkit-box-shadow: 0px 0px 3px 1px #ccc;
    box-shadow: 0px 0px 3px 1px #ccc;
    padding: 40px 25px 40px 25px;
}

    .box p:last-child {
        margin: 0;
    }

.cc-revoke.cc-bottom {
    left: 0 !important;
}

@media only screen and (min-width:1760px) {
    .cc-revoke.cc-bottom {
        left: 3rem !important;
    }

    .footer-wrapper {
        padding: 30px;
    }
}

.form-table {
    margin: 1rem 0;
}

    .form-table td {
        vertical-align: middle;
        padding: 0 10px 10px 0;
    }

.form-buttons .btnWrpr {
    margin: 0 10px 10px 0;
    display: inline-block;
}

.members-map .infoWindow .image {
    width: 100%;
    text-align: center;
    display: block;
}

.members-map .infoWindow img {
    width: 120px;
    margin-bottom: 20px;
}

@media only screen and (max-width:47.9em) {

    .site-header {
        height: 100px;
        padding-bottom: 45px;
    }

        .site-header .buttons-area {
            position: absolute;
            bottom: 0px;
            right: 0px;
        }

        .site-header .logo-area img {
            width: 260px;
        }

    .main-content {
        margin-top: 100px;
    }

    a.member-btn {
        padding: 16px 10px 15px 10px;
    }

    a.member-info {
        height: 45px;
    }

    .member-navigation {
        top: 45px;
    }
}

@media only screen and (min-width:90em) {
    .break-sponsor {
        flex-basis: 100%;
        height: 0;
    }
}

.grecaptcha-badge {
    bottom: 65px !important;
}

/* Ticket # - Testimonials Revamp  */
.carousel-testimonials .slick-list {
    xoverflow: visible;
    padding-top: 75px;
    padding-bottom: 20px;
}

.carousel-testimonials .slick-slide {
    position: relative;
}

.carousel-testimonials .meta {
    margin: 0 0 1rem 0;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    padding-right: 40px;
}

    .carousel-testimonials .meta .category {
        color: red;
        display: block;
    }

    .carousel-testimonials .meta span {
        padding: 0 0 0 0px;
    }

x.carousel-testimonials .meta span + span:before {
    content: "";
    margin: 0 10px;
}

.carousel-testimonials .meta span.date {
    font-style: normal;
    color: #000;
    font-size: 12px;
    display: block;
}

.carousel-testimonials .slick-track {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.carousel-testimonials .slick-slide {
    height: auto;
    float: none;
    position: relative;
    background: #efefef;
    padding: 80px 30px 120px 30px;
    color: #000;
}

    .carousel-testimonials .slick-slide h2 {
        font-size: 26px;
    }

    .carousel-testimonials .slick-slide .btn {
        position: absolute;
        bottom: 40px;
        width: calc(100% - 80px);
        left: 40px;
        display: block;
        /*background:transparent url(/cms/images/svg/soundcloud-white.svg) no-repeat 90% 50%;*/
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
    }

        .carousel-testimonials .slick-slide .btn:hover,
        .carousel-testimonials .slick-slide .btn:focus {
            background: #d82013;
        }

.carousel-testimonials .testimonialImg img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    border: solid 5px #fff;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.carousel-testimonials .slick-slide.slick-current + .slick-slide {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

.carousel-testimonials .slick-slide p {
    position: relative;
    font-style: italic;
}

    .carousel-testimonials .slick-slide p span {
        color: red;
        font-size: 60px;
        height: 10px;
        display: inline-block;
        line-height: 0px;
        position: relative;
        top: 20px;
        margin: 0px 5px;
    }

@media only screen and (min-width:48em) {

    .carousel-testimonials {
        width: 94%;
        margin: 0 auto;
    }

        .carousel-testimonials .slick-slide {
            margin-right: 20px;
        }
}

@media only screen and (max-width:768px) {
    .carousel-testimonials .slick-slide.slick-current {
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    }

        .carousel-testimonials .slick-slide.slick-current + .slick-slide {
            -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);
            -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);
            box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);
        }
}

/* Ticket 635605 - Navaigation and Event changes */
.itemList {
    list-style: none;
}

.eventsTheme .itemList {
    display: table;
    margin: 0px 0px 10px 0px;
    width: 100%;
    padding: 0
}

.eventsTheme .item {
    border: none;
    padding: 0px;
    width: 100%;
    display: table-row;
}

.eventsTheme .date {
    vertical-align: top;
    padding: 10px;
    width: 10%;
    display: table-cell;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .eventsTheme .date > .dateIcon {
        text-align: center;
        border: 1px solid #c8c8c8;
    }

        .eventsTheme .date > .dateIcon > .month {
            font-weight: 400;
            background: #23447E;
            padding: 3px;
            border-bottom: 1px solid #c8c8c8;
            color: #fff;
            min-width: 40px;
            font-size: 1em;
            height: auto;
            margin: 0;
        }

        .eventsTheme .date > .dateIcon > .day {
            padding: 5px;
            background-color: #fff;
        }

.eventsTheme .item > .content {
    display: table-cell;
    width: 90%;
    vertical-align: top;
    padding: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


.eventsTheme .item .item {
    border: 0px;
    display: table;
    padding: 0px;
    width: 100%;
}

.eventsTheme .item > .content {
    display: table-cell;
    width: 90%;
    vertical-align: top;
    padding: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
}

    .eventsTheme .item > .content .content {
        padding: 0px 0px 10px 0px;
    }

a.eventLink, a.eventLink:link, a.eventLink:visited {
    color: #000;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.28px;
    text-decoration: none;
    line-height: normal;
}

.eventsTheme .item > .itemImage {
    margin-left: 20px;
    float: left;
    width: 120px;
    text-align: right;
}

.eventsTheme .item > .itemImage {
    text-align: right;
} 