@import url("/css/fck_editorarea.css");
@import url("/css/browse-bar.css");
@import url("/css/tabs.css");

/* GENERAL */

form {
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    transition: 400ms;
    overflow: hidden;
}

.wf-loading form {
    visibility: hidden;
    opacity: 0;
}

.wf-active form, .wf-inactive form {
    visibility: visible;
    opacity: 1;
}

.image-wrapper {
    position: relative;
}

.image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #333333;
    overflow: hidden;
    display: block;
}

    .image > div {
        height: 100%;
    }

.onlyprint {
    display: none;
}

.scroll-to-top {
    cursor: pointer;
    position: fixed;
    z-index: 98;
    right: 20px;
    bottom: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #202020;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    text-align: center;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    transition: 400ms;
}

    .scroll-to-top.active {
        opacity: 0.9;
        visibility: visible;
    }

    .scroll-to-top:hover {
        opacity: 1;
    }

a.icon-after-right:after, a.icon-before-left:before, span.icon-after-right:after {
    display: inline-block;
    opacity: 0.6;
    -webkit-transition: 200ms;
    -moz-transition: 200ms;
    transition: 200ms;
}

a:hover.icon-after-right:after, span:hover.icon-after-right:after {
    opacity: 1;
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    transform: translateX(5px);
}

a:hover.icon-before-left:before {
    opacity: 1;
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    transform: translateX(-5px);
}


.no-margin {
    margin: 0 !important;
}

.pagination{
    margin: 20px 0;
    }
/* HEADER */

header {
    position: relative;
    height: 120px;
    width: auto;
    background: url(/images/pattern-repeat.png) center repeat-x;
    z-index: 2;
    min-width: 1020px;
}

    header .bounds {
        height: 100%;
    }

		header .background {
			position: absolute;
			left: 0;
			right: 0;
			top: 0;
			bottom: 0;
			overflow: hidden;
			}

        header .background:before {
            content: "";
            width: 1396px;
            left: -450px;
            height: 100%;
            background: url(/images/nav-bg.png) 0 bottom no-repeat;
            position: absolute;
        }

    header .logo {
        position: absolute;
        width: 166px;
        height: 94px;
        top: 13px;
        left: 2%;
        background: url(/images/logo.png) 0 0 no-repeat;
        text-indent: -9999em;
    }

    header .action,
    header .action2,
    header .action3 {
        display: block;
        color: #e8e8e8;
        opacity: .75;
        border-radius: 0 0 4px 4px;
        -webkit-border-radius: 0 0 4px 4px;
        -moz-border-radius: 0 0 4px 4px;
        background: rgba(0,0,0,0.25);
        position: relative;
        /*
        position: absolute;
        right: 0;
        top: 0;
        */
        padding: 5px 20px;
        -webkit-transition: 200ms;
        -moz-transition: 200ms;
        transition: 200ms;
        z-index: 2;
    }
    header .action2 {
        padding: 7px 20px;
    }
    header .action3 {
        padding: 7px 20px;
    }

        header .action:hover,
        header .action2:hover,
        header .action3:hover {
            opacity: 1;
        }

    header .main {
        height: 120px;
        text-align: right;
    }

        header .main ul {
            margin: 0;
            list-style: none;
        }

        header .main nav {
            padding-top: 30px;
        }

            header .main nav > ul > li {
                position: relative;
                display: inline-block;
                line-height: 1.75rem;
            }

                header .main nav > ul > li:not(:first-child) {
                    margin-left: 60px;
                }

                header .main nav > ul > li > a,
                header .main nav > ul > li > span {
                    cursor: pointer;
                    position: relative;
                    color: #e8e8e8;
                    -webkit-transition: 150ms;
                    -moz-transition: 150ms;
                    transition: 150ms;
                }

                    header .main nav > ul > li > a .blank,
                    header .main nav > ul > li > span .blank {
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 1px;
                        height: 1px;
                        visibility: hidden;
                    }

                    header .main nav > ul > li > a:hover,
                    header .main nav > ul > li > span:hover {
                        color: #ebe1bf;
                    }

                        header .main nav > ul > li > a:hover .blank,
                        header .main nav > ul > li > span:hover .blank {
                            visibility: visible;
                        }

                header .main nav > ul > li:not(.no-dropdown) > a:after {
                    content: "";
                    position: absolute;
                    left: 50%;
                    top: 100%;
                    margin-left: -10px;
                    margin-top: 14px;
                    border-style: solid;
                    border-color: transparent;
                    border-width: 0 10px 10px;
                    border-bottom-color: #ebe1bf;
                    opacity: 0;
                    visibility: hidden;
                    -webkit-transform: translateY(-6px);
                    -moz-transform: translateY(-6px);
                    transform: translateY(-6px);
                    -webkit-transition: 200ms;
                    -webkit-transition-delay: 0ms;
                    -moz-transition: 200ms;
                    -moz-transition-delay: 0ms;
                    transition: 200ms;
                    transition-delay: 0ms;
                }

                header .main nav > ul > li:hover > a:after {
                    opacity: 1;
                    visibility: visible;
                    -webkit-transform: translateY(0px);
                    -moz-transform: translateY(0px);
                    transform: translateY(0px);
                    -webkit-transition-delay: 200ms;
                    -moz-transition-delay: 200ms;
                    transition-delay: 200ms;
                }

    header .dropdown {
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 100%;
        opacity: 0;
        padding-top: 19px;
        visibility: hidden;
        text-align: left;
        text-transform: none;
        -webkit-transform: translateY(-6px);
        -moz-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-transition: 200ms;
        -webkit-transition-delay: 0ms;
        -moz-transition: 200ms;
        -moz-transition-delay: 0ms;
        transition: 200ms;
        transition-delay: 0ms;
        pointer-events: none;
    }

        header .dropdown > ul,
        header .dropdown .multi {
            position: relative;
            left: -50%;
            padding: 20px 30px;
            pointer-events: all;
            white-space: nowrap;
            background: #ebe1bf;
            -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            -moz-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

            header .dropdown > ul:before,
            header .dropdown .multi:before {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                top: -20px;
                height: 20px;
            }

    header .main nav > ul > li:hover .dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 200ms;
        -moz-transition-delay: 200ms;
        transition-delay: 200ms;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }

    header .dropdown a {
        display: block;
        -webkit-transition: 150ms;
        -moz-transition: 150ms;
        transition: 150ms;
        color: #65604d;
        font-weight:500;
    }

    header .dropdown .items:hover a {
        color: #a29a7d;
    }


        header .dropdown .items:hover a:hover {
            color: #65604d;
        }

    header .callout,
    header .callout2 {
        position: relative;
        z-index: 1;
    }

    .header__menu {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .header__menu>div:not(:first-child) {
        margin-left: 12px;
    }

        header .callout .popout,
        header .callout2 .popout2 {
            position: absolute;
            visibility: hidden;
            opacity: 0;
            z-index: 2;
            right: 0;
            top: 0;
            width: 400px;
            padding: 30px 40px;
            background: #f6f6f6;
            -webkit-transform: scale(0.4);
            -webkit-transform-origin: right top;
            -webkit-transition-property: opacity, visibility, -webkit-transform;
            -webkit-transition-duration: 200ms;
            -webkit-transition-delay: 0, 0, 200ms;
            transform: scale(0.4);
            transform-origin: right top;
            transition-property: opacity, visibility, transform;
            transition-duration: 200ms;
            transition-delay: 0, 0, 200ms;
        }
        header .callout.active .popout,
        header .callout2.active .popout2 {
            visibility: visible;
            opacity: 1;
            -webkit-transform: scale(1);
            -webkit-transition-delay: 0;
            transform: scale(1);
            transition-delay: 0;
        }

        header .callout.active,
        header .callout2.active {
            z-index: 2;
        }

        header .callout .popout .close,
        header .callout2 .popout2 .close {
            position: absolute;
            cursor: pointer;
            right: 15px;
            top: 15px;
            width: 16px;
            height: 16px;
            background: url(/images/icon-close.png) center no-repeat;
            opacity: 0.7;
        }

            header .callout .popout .close:hover,
            header .callout2 .popout2 .close:hover {
                opacity: 1;
            }
        
        header .callout .extra-padding,
        header .callout2 .extra-padding {
            padding-top: 20px;
            }
        
        header .callout .button-smaller,
        header .callout2 .button-smaller {
            margin: 0 2px;
            }


/* HERO */

.hero {
    position: relative;
    height: 650px;
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
    min-width: 1020px;
}

    .hero.interior, .hero.calendar, .hero.sermons {
        height: 300px;
        margin-top: -40px;
        z-index: 1;
        padding-left: 2%;
        padding-right: 2%;
        overflow: visible;
    }
    
    .hero.sermons a{
        color:#f6f6f6;
        }
    .hero.sermons a:hover{
        color:#f6f6f6;
        }

.sermons .heading {
    margin: 40px 0;
}

.hero a.button,
.hero span.button {
    border: none;
    background: #ffffff;
    color: #444444;
    opacity: 0.9;
    padding: .35em 1.5em;
    cursor: pointer;
}

    .hero a.button:hover,
    .hero span.button:hover {
        opacity: 1;
    }

    .hero a.button:hover, .hero span.button:hover {
        color: #444;
    }

.hero .links {
    margin-bottom: 20px;
}

    .hero .links a {
        margin: 0 10px;
        white-space: nowrap;
    }

        .hero .links a:hover {
            color: #e0f9ff;
        }

.hero .input-wrapper {
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.hero.calendar .caption {
    color: #ffffff;
    position: absolute;
    left: 50px;
    right: 50px;
    opacity: 1;
    z-index: 2;
    height: 100%;
}

    .hero.calendar .caption .text-wrapper {
        position: absolute;
        left: 0;
        right: 0;
        top: 0px;
        height: 300px;
        line-height: 345px;
        text-align: center;
    }

    .hero.calendar .caption .text {
        display: inline-block;
        vertical-align: middle;
    }

/* HOME */

.section.pastor{
    padding-top:85px;
    }

.pastor .image-wrapper {
    height: 300px;
    overflow: hidden;
}

.pastor .text {
    padding-left: 40px;
}

.wheat-bg {
    position: absolute;
    background: url(/images/wheat-bg.jpg) 0 0 no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .1;
}

.heading-wrapper {
    position: relative;
}

    .heading-wrapper .outline {
        position: absolute;
        top: 0;
        left: 11px;
        margin-right: 30px;
    }

    .heading-wrapper h3 {
        line-height: 56px;
        padding-left: 86px;
        margin-top: 0;
    }

.events-list {
    position: relative;
    overflow: hidden;
}

    .events-list:before {
        content: "";
        width: 2px;
        height: 1000px;
        background: #f6f6f6;
        opacity: .6;
        position: absolute;
        top: 56px;
        left: 35px;
    }

    .events-list ul {
        list-style: none;
        margin: 40px 0 0;
    }

        .events-list ul li {
            position: relative;
            margin-bottom: 20px;
        }

    .events-list li:last-child {
        margin-bottom: 0;
    }

.date {
    display: block;
    position: absolute;
    background: #f6f6f6;
    color: #4f607e !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    line-height: 1em;
    padding: 10px;
    text-align: center;
}

    .date .month {
        display: block;
        font-family: "effra", serif;
        font-size: 0.8125rem;
        line-height: 1.55rem;
        font-weight: bold;
    }

    .date .day {
        display: block;
        font-family: "effra", serif;
        font-size: 2rem;
        font-weight: 500;
        font-style: italic;
    }

.events-list li a {
    height: 63px;
    color: #f6f6f6;
    display: block;
    padding-left: 88px;
    line-height: 1.2em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 7px;
}

.extra-padding {
    padding: 40px 0 0;
}

/* INTERIOR */

.yellow-bar {
    position: relative;
    height: 40px;
    width: auto;
    background: url(/images/pattern-repeat-yellow.png) center repeat;
    z-index: 0;
    min-width:1020px;
}

.yellow-bar-fat {
    position: relative;
    height: 80px;
    width: auto;
    background: url(/images/pattern-repeat-yellow.png) center repeat;
    z-index: 0;
    min-width:1020px;
}

.yellow-bar.toolbar {
    padding: 10px 0;
    height: 40px;
}

.toolbar a {
    opacity: .75;
}

    .toolbar a:hover {
        color: #4b7046;
        opacity: 1;
    }

.column9 .text {
    padding-right: 45px;
}

#sermons .sermon-details {
    margin-top: 8px;
}

/* SECTION */

.section {
    position: relative;
    padding: 60px 0;
    min-width: 1020px;
}
.content, #cal{
    min-width: 1020px;
    }

.content .hero {
    min-width: 0 !important;
    width: auto !important;
    }

    .section h2 {
        text-transform: uppercase;
    }

    .section.blue {
        background: #4f607e;
        color: white;
        height: 100%;
    }

    .section.interior {
    }

/* SIDEBAR */


.sidebar {
    padding-top: 10px;
}

    .sidebar h3 {
        text-transform: uppercase;
        padding-left: 15px;
        font-weight: 500;
    }

    .sidebar ul {
        list-style: none;
        margin-left: 0;
    }

    .sidebar li.selectedtrue {
        border: 1px solid #969592;
    }

        .sidebar li.selectedtrue a {
            color: #586b8c;
        }

    .sidebar li.selectedfalse {
        color: #969592;
        border: 1px solid transparent;
    }

    .sidebar a {
        padding: 3px 0px 3px 13px;
        border: 1px solid transparent;
        font-weight: 500;
        font-size: 18px;
        display: block;
        color: #969592;
    }

    .sidebar li:hover a {
        color: #586b8c;
    }

.contact ul.social{
    display: inline-block;
    }

.contact ul.social li{
    display: inline-block;
    }

/* FOOTER */

.section.actions {
    padding: 0;
}

.matchHeight {
    overflow: hidden;
}

.service {
    position: relative;
    float: left;
    width: 60%;
    background: url(/images/translucent-bg.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 60px 30px 150px;
    box-sizing: border-box;
    color: white;
    margin-bottom: -70px;
}

.gospel {
    position: relative;
    width: 40%;
    float: left;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 30px 150px;
    box-sizing: border-box;
    color: white;
    margin-bottom: -70px;
}

.overlay{
    position: absolute;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    }

footer {
    position: relative;
    padding: 50px 0 20px;
    background: #363330;
    color: #dad6d2;
    min-width: 1020px;
}

    footer ul {
        margin: 0;
        list-style: none;
    }

        footer ul li {
            display: inline-block;
        }

        footer ul a {
            display: block;
            opacity: 0.8;
            color: #dad6d2;
        }

            footer ul a:hover {
                opacity: 1;
                color: #dad6d2;
            }

    footer nav {
        margin-bottom: 10px;
    }

    footer .copyright {
        opacity: 0.8;
    }

    footer ul.social {
        font-size: 20px;
        display: inline-block;
    }

        footer ul.social li:not(:first-child) {
            margin-left: 20px;
        }

    footer .social a {
        color: #f5e4a7;
    }

    footer .social {
        border-radius: 1000px;
        border: 3px solid #413e3b;
        background: none;
        padding: 3px 20px;
        width: auto;
        height: auto;
    }

    footer hr {
        border-top: 1px solid #413e3b;
    }

.signature {
    color: #dad6d2;
}

    .signature a {
        color: #dad6d2;
    }

        .signature a:hover {
            color: #eeeeee;
        }

        .signature a:after {
            font-size: 24px;
            vertical-align: -5px;
            margin-left: 4px;
            margin-right: 10px;
        }



/* POPUP */

.popup-wrapper {
    cursor: default;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    display: table;
    width: 100%;
    height: 100%;
    background: rgba(50,50,50,0.95);
    -webkit-transition-property: opacity, visibility;
    -webkit-transition-duration: 300ms;
    -moz-transition-property: opacity, visibility;
    -moz-transition-duration: 300ms;
    -o-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

    .popup-wrapper:before,
    .popup-wrapper:after {
        position: absolute;
        right: 20px;
        top: 20px;
        content: "";
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .popup-wrapper:before {
        width: 2px;
        height: 30px;
        margin-right: 14px;
    }

    .popup-wrapper:after {
        width: 30px;
        height: 2px;
        margin-top: 14px;
    }

    .popup-wrapper.popup-active {
        visibility: visible;
        opacity: 1;
    }

.popup {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 300ms;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 300ms;
    -o-transition-property: transform;
    transition-property: transform;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    padding: 0 20px;
}

.popup-active .popup {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.popup .text {
    display: inline-block;
    text-align: left;
    padding: 0 !important;
}

.popup .label {
    color: #ffffff;
    margin-bottom: 20px;
}

.popup .input-wrapper {
    margin-bottom: 0;
    background: #ffffff;
}

.popup input {
    border-color: transparent !important;
}



/* BUTTONS */

[class*="button"] {
    position: relative;
    display: inline-block;
    padding: 1.25em 1.95em;
    border-width: 2px;
    border-style: solid;
    margin-top: 5px;
    margin-bottom: 5px;
    opacity: 0.8;
    -webkit-transition: 200ms;
    -moz-transition: 200ms;
    transition: 200ms;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 50px;
    letter-spacing: 1px;
}

    [class*="button"][class*="full"] {
        display: block;
        text-align: center;
    }

    [class*="button"][class*="smaller"] {
        padding: 0.65em 1.75em;
    }

    [class*="button"][class*="smallest"] {
        padding: 0.2em 0.9em;
    }

a[class*="button"]:hover {
    opacity: 1;
    color: inherit;
}

.button .tip {
    font-family: "museo-sans", sans-serif;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    display: block;
    bottom: -45px;
    right: 0;
    background: #f6f6f6;
    color: #444;
    padding: 6px 10px;
    white-space: nowrap;
    font-size: 90%;
    font-weight: normal;
    -webkit-transform: translateY(-10px);
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    -webkit-transition-duration: 200ms, 200ms, 0;
    -webkit-transition-delay: 0, 0, 200ms;
    transform: translateY(10px);
    transition-property: opacity, visibility, transform;
    transition-duration: 200ms;
    transition-delay: 0, 0, 200ms;
}

.button:hover .tip,
.button:hover .tip {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -webkit-transition-duration: 200ms;
    -webkit-transition-delay: 300ms;
    transform: translateY(0);
    transition-duration: 200ms;
    transition-delay: 300ms;
}

.button .tip:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    right: 10px;
    border: 5px solid transparent;
    border-bottom-color: #f6f6f6;
    border-top-width: 0;
}

.button.pagesecurity-login-btn, .button.pagesecurity-cancel-btn{
    padding: 0.65em 1.75em;
    margin-right:10px;
    }
.select-dropdown {
    cursor: default;
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    top: 100%;
    min-width: 100%;
    padding: 20px;
    background: #ffffff;
    font-size: 90%;
    color: #333333;
    text-shadow: none;
    font-family: "museo-sans", sans-serif;
    font-weight: normal;
    border: 1px solid #cdc9c0;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}

    .select-dropdown ul {
        margin: 0;
        list-style: none;
    }

    .select-dropdown li {
        display: block;
        position: relative;
        white-space: nowrap;
        margin: 6px 0;
    }

    .select-dropdown label {
        display: block;
        position: relative;
        padding-left: 20px;
        line-height: normal;
    }

/* FORM ELEMENTS */

.input-wrapper,
.ss-wrapper {
    position: relative;
    margin-bottom: 25px;
}

    .input-wrapper label {
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        max-width: 100%;
        color: #333333;
        opacity: 0.6;
    }

    .input-wrapper input[type="text"],
    .input-wrapper input[type="password"],
    .input-wrapper input[type="email"],
    .input-wrapper input[type="number"],
    .input-wrapper textarea {
        font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background: transparent;
        outline: none;
        border: none;
        width: 100%;
        color: #333333;
        border: 1px solid rgba(166,166,166,1);
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    .input-wrapper label,
    .input-wrapper input[type="text"],
    .input-wrapper input[type="password"],
    .input-wrapper input[type="email"],
    .input-wrapper input[type="number"],
    .input-wrapper textarea {
        display: block;
        font-size: 100%;
        padding: 13px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        line-height: normal;
    }

    .input-wrapper.dollars:before {
        content: "$";
        position: absolute;
        left: 1px;
        top: 1px;
        bottom: 1px;
        width: 46px;
        line-height: 45px;
        text-align: center;
        font-weight: 500;
        border-right: 1px solid #cacaca;
        color: #757575;
    }

    .input-wrapper.dollars:after {
        content: ".00";
        position: absolute;
        right: 1px;
        top: 1px;
        bottom: 1px;
        width: 46px;
        line-height: 45px;
        text-align: center;
        font-weight: 500;
        border-left: 1px solid #cacaca;
        color: #757575;
    }

    .input-wrapper.dollars input {
        padding-left: 60px;
        padding-right: 60px;
    }

    .input-wrapper[class*="icon-before"]:before,
    .input-wrapper[class*="icon-after"]:after {
        position: absolute;
        top: 50%;
        margin-top: -8px;
        pointer-events: none;
    }

    .input-wrapper[class*="icon-before"] input,
    .input-wrapper[class*="icon-before"] label {
        padding-left: 35px !important;
    }

    .input-wrapper[class*="icon-before"]:before {
        left: 12px;
    }

    .input-wrapper[class*="icon-after"]:after {
        right: 12px;
    }

    .input-wrapper a {
        position: absolute;
        z-index: 2;
        right: 12px;
        top: 50%;
        margin-top: -14px;
    }

        .input-wrapper a ~ input,
        .input-wrapper a ~ label,
        .input-wrapper[class*="icon-after"] input,
        .input-wrapper[class*="icon-after"] label {
            padding-right: 35px !important;
        }

    .input-wrapper textarea {
        display: block;
        height: 150px;
        resize: none;
    }

.ss-wrapper {
    padding: 8px 26px 9px 0;
    border: 1px solid rgba(166,166,166,1);
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    cursor:pointer;
    border-radius:4px;
    padding-left: 10px;
    
}
#AdvancedSearch{
    padding: 40px;
    }
    .ss-wrapper select {
        z-index: 1;
    }

    .ss-wrapper.initial {
        color: #858585;
    }

    .ss-wrapper.focus,
    .input-wrapper input[type="text"]:focus,
    .input-wrapper input[type="password"]:focus,
    .input-wrapper input[type="email"]:focus,
    .input-wrapper input[type="number"]:focus,
    .input-wrapper textarea:focus {
    }

    .ss-wrapper::after {
        font-family: 'icons';
        content: "\e003";
        position: absolute;
        right: 6px;
        top: 50%;
        margin-top: -14px;
    }

.checkbox-group {
    margin-top: 5px;
    margin-bottom: 25px;
}

    .checkbox-group br {
        display: none;
    }

    .checkbox-group ul,
    .checkbox-group ul li {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .checkbox-group ul li, .checkbox-wrapper {
            position: relative;
            display: inline-block;
            white-space: nowrap;
            padding-left: 28px;
            margin-bottom: 5px;
            margin-top: 3px;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .checkbox-group ul li:not(:last-child), .checkbox-wrapper:not(:last-child) {
                margin-right: 1em;
            }

            .checkbox-group ul li input + label:before, .checkbox-wrapper input + label:before {
                content: "";
                position: absolute;
                left: 0;
                top: 2px;
                width: 20px;
                height: 20px;
                background: #ffffff;
                border: 1px solid #758283;
            }

            .checkbox-group ul li input[type="radio"] + label:before, .checkbox-wrapper input[type="radio"] + label:before {
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
            }

            .checkbox-group ul li label, .checkbox-wrapper label {
                display: inline-block;
                white-space: normal;
            }

            .checkbox-group ul li input, .checkbox-wrapper input {
                position: absolute;
                z-index: 2;
                left: 0;
                top: 2px;
                -webkit-appearance: none;
                width: 22px;
                height: 22px;
                opacity: 0;
            }

                .checkbox-group ul li input + label:after, .checkbox-wrapper input + label:after {
                    position: absolute;
                    display: block;
                    z-index: 1;
                    opacity: 0;
                    -webkit-transform: scale(0.5);
                    -webkit-transition: 150ms;
                    -moz-transform: scale(0.5);
                    -moz-transition: 150ms;
                    transform: scale(0.5);
                    transition: 150ms;
                }

                .checkbox-group ul li input[type="checkbox"] + label:after, .checkbox-wrapper input[type="checkbox"] + label:after {
                    font-family: "icons";
                    content: "\e00a";
                    left: 0;
                    top: 2px;
                    width: 22px;
                    height: 22px;
                    display: block;
                    color: #444444;
                    text-align: center;
                    line-height: 22px;
                    font-size: 18px;
                }

                .checkbox-group ul li input[type="radio"] + label:after, .checkbox-wrapper input[type="radio"] + label:after {
                    content: "";
                    left: 5px;
                    top: 5px;
                    width: 12px;
                    height: 12px;
                    background: #444444;
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                    border-radius: 50%;
                }

    .checkbox-group.all-checked ul li input + label:after, .all-checked .checkbox-wrapper input + label:after {
        opacity: 0.25;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }

    .checkbox-group ul li input:checked + label:after, .checkbox-wrapper input:checked + label:after {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }

select {
    font-size: 16px;
    cursor: pointer;
}

.validator {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 100%;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    background: #4b7046 url(/images/icon-validator.png) center center no-repeat;
}

.error {
    display: block;
    border: 1px solid #93595c;
    background: #e7d3d4;
    color: #912028;
    padding: 6px 10px;
    margin-bottom: 20px;
}



/* LOADER */

.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    font-size: 10px;
    text-indent: -9999em;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    background: #999999;
    background: -moz-linear-gradient(left, #999999 10%, rgba(255, 255, 255, 0) 42%);
    background: -webkit-linear-gradient(left, #999999 10%, rgba(255, 255, 255, 0) 42%);
    background: -o-linear-gradient(left, #999999 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #999999 10%, rgba(255, 255, 255, 0) 42%);
    background: linear-gradient(to right, #999999 10%, rgba(255, 255, 255, 0) 42%);
    -webkit-animation: load3 1s infinite linear;
    animation: load3 1s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: 200ms;
    -moz-transition: 200ms;
    transition: 200ms;
}

.wf-loading .loader {
    visibility: visible;
    opacity: 1;
}

.wf-active .loader,
.wf-inactive .loader {
    visibility: hidden;
    opacity: 0;
}

.loader:before {
    width: 50%;
    height: 50%;
    background: #999999;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.loader:after {
    background: #f6f6f6;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/* GRID FRAMEWORK */

.bounds {
    position: relative;
    max-width: 1240px;
    padding: 0 5%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.bounds.padding,
.row.padding {
    padding-left: 2%;
    padding-right: 2%;
}

.row {
    margin-left: -2%;
    margin-right: -2%;
}

[class*="column"] {
    position: relative;
    float: left;
    padding-left: 2%;
    padding-right: 2%;
    min-height: 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.reverse > [class*="column"] {
    float: right;
}

[class*="column"][class*="center"] {
    float: none;
    margin: 0 auto;
}

[class*="column1"] {
    width: 8.33333%;
}

[class*="column2"] {
    width: 16.66667%;
}

[class*="column3"] {
    width: 25%;
}

[class*="column4"] {
    width: 33.33333%;
}

[class*="column5"] {
    width: 41.66667%;
}

[class*="column6"], [class*="half"] {
    width: 50%;
}

[class*="column7"] {
    width: 58.33333%;
}

[class*="column8"] {
    width: 66.66667%;
}

[class*="column9"] {
    width: 75%;
}

[class*="column10"] {
    width: 83.33333%;
}

[class*="column11"] {
    width: 91.66667%;
}

[class*="column12"] {
    width: 100%;
}



/* RETINA */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    header .logo {
        background-image: url(/images/logo-2x.png);
        background-size: 166px 94px;
    }

    .validator {
        background-size: 16px;
        background-image: url(/images/icon-validator-2x.png);
    }
}


/* RESPONSIVE */

@media screen and (min-width:1240px) {
    .bounds {
        width: 1240px;
        padding-left: 62px;
        padding-right: 62px;
    }

    header .service-trigger {
        margin-right: 62px;
    }
}

@media screen and (max-width:1020px) {
    .hero, .section, .content, #cal, footer, header, .yellow-bar, .yellow-bar-fat{
        width: 1020px;
        }
}


/*@media screen and (min-width:800px) {
    footer .column4 {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 640px) {
    [class*="column"]:not([class*="responsive"]) {
        float: none !important;
        width: 100% !important;
    }

    footer .column4 {
        text-align: center;
        margin-bottom: 20px;
    }

        footer .column4 p, footer .column4 ul {
            text-align: center;
        }

        footer .column4 p, footer .column4 ul {
            text-align: center;
        }
}*/
