@import url("html5reset.css");
@import url("fonts.css");

html, body {
    height: 100%;
    font-size: 16px;
    line-height: 1.2em;
}

* {
    box-sizing: border-box;
}

#form1 {
    height: 100%;
}

a:link,
a:visited,
a:active {
    color:#7c6e65;
    text-decoration: none;    
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}


a:hover{
    color: #f37029;
}

input,
textarea {
    font-family: Arial;
    padding: 0 0 0 2px;
    color: #797979;
}

#Wrapper {
    min-height: 100%;
    position: relative;
}

.gray-color {
    color: #7c6e65;
}

.gray-bg {
    background-color: #7c6e65;
}


.lightGray-color {
    color: #f8f8f7;
}

.lightGray-bg {
    background-color: #f8f8f7;
}


.lightOrange-color {
    color: #f7931c;
}

.lightOrange-bg {
    background-color: #f7931c;
}


.darkOrange-color {
    color: #f37029;
}

.darkOrange-bg {
    background-color: #f37029;
}


.green-color {
    color: #3e873d;
}

.green-bg {
    background-color: #3e873d;
}


.white-color {
    color: #ffffff;
}

.white-bg {
    background-color: #ffffff;
}


.contentWidth {
    width: 100%;
    max-width: 1300px;
}

.centerElement {
    margin: 0 auto;
}

/* ----------------------------------------------------
		Start Header
------------------------------------------------------- */

#HeaderWrapper {
    width: 100%;
    background-image: url(/_assets/images/Global/header-border.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
}

    #HeaderWrapper .topWrapper {
        border-bottom: 1px solid #d3cecb;
        font-family: 'open_sansitalic';
    }

        /*#HeaderWrapper .topWrapper .topContent
{
    width: 100%;
}*/

        #HeaderWrapper .topWrapper .topContent .tagLineWrapper {
            display: inline-block;
            float: right;
            border-right: 1px solid #d3cecb;
            padding: 10px;
            font-size: 14px;
        }

        #HeaderWrapper .topWrapper .topContent .languageWrapper {
            display: inline-block;
            float: right;
            border-right: 1px solid #d3cecb;
            padding: 10px 10px 10px 40px;
            font-size: 14px;
            background-image: url(/_assets/images/Global/header-icon-language.png);
            background-repeat: no-repeat;
            background-position: left 10px center;
        }

        #HeaderWrapper .topWrapper .topContent .contactWrapper {
            display: inline-block;
            float: right;
            border-right: 1px solid #d3cecb;
            padding: 10px 10px 10px 40px;
            font-family: 'open_sansregular';
            background-image: url(/_assets/images/Global/header-icon-phone.png);
            background-repeat: no-repeat;
            background-position: left 10px center;
        }

    #HeaderWrapper .bottomWrapper {
        width: 100%;
        padding: 20px 0;
    }

        #HeaderWrapper .bottomWrapper .logoWrapper {
            margin-top: -56px;
            display: inline-block;
            float: left;
        }

        #HeaderWrapper .bottomWrapper .navigationWrapper {
            display: inline-block;
            float: right;
            font-family: 'aleoregular';
            position: relative;
            z-index: 100;
        }

            #HeaderWrapper .bottomWrapper .navigationWrapper .navItem {
                display: inline-block;
                float: left;
                padding: 17px;
                border: 1px solid #ffffff;
            }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem .name {
                    font-size: 18px;
                    -webkit-transition: color 0.2s ease-in-out;
                    -moz-transition: color 0.2s ease-in-out;
                    -o-transition: color 0.2s ease-in-out;
                    transition: color 0.2s ease-in-out;
                }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem:hover .name {
                    color: #f7931c;
                }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav {
                    background-image: url(/_assets/images/Global/nav-dd-arrow.png);
                    background-repeat: no-repeat;
                    background-position: center right 17px;
                    padding-right: 28px;
                    -webkit-transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
                    -moz-transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
                    -o-transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
                    transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
                }

                    #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav:hover {
                        background-color: #f8f8f7;
                        border: 1px solid #d3cecb;
                        border-bottom: none;
                        -webkit-transition-delay: 0s;
                        -moz-transition-delay: 0s;
                        -o-transition-delay: 0s;
                        transition-delay: 0s;
                    }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem .subNavWrapper {
                    width: 100%;
                    position: absolute;
                    left: 0;
                    top: 100%;
                    -webkit-transition: visibility 0s linear 0.2s, opacity 0.2s ease-in-out;
                    -moz-transition: visibility 0s linear 0.2s, opacity 0.2s ease-in-out;
                    -o-transition: visibility 0s linear 0.2s, opacity 0.2s ease-in-out;
                    transition: visibility 0s linear 0.2s, opacity 0.2s ease-in-out;
                    visibility: hidden;
                    opacity: 0;
                    margin-top: -1px;
                }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav:hover .subNavWrapper {
                    visibility: visible;
                    opacity: 1;
                    -webkit-transition-delay: 0s;
                    -moz-transition-delay: 0s;
                    -o-transition-delay: 0s;
                    transition-delay: 0s;
                }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column {
                    width: 50%;
                    display: inline-block;
                    padding: 20px;
                    background-color: #f8f8f7;
                    border: 1px solid #d3cecb;
                }

                    #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper {
                        width: 100%;
                        height: 100%;
                        display: table;
                    }

                        #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper .imageWrapper {
                            display: table-cell;
                            vertical-align: middle;
                            padding-right: 15px;
                            width: 105px;
                        }

                            #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper .imageWrapper .circleImage {
                                width: 105px;
                                height: 105px;
                                border-radius: 50%;
                                background-position: center center;
                                background-repeat: no-repeat;
                            }

                        #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper .copyWrapper {
                            display: table-cell;
                            vertical-align: middle;
                        }

                            #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper .copyWrapper .title {
                                font-family: 'aleoregular';
                                font-size: 18px;
                                padding-bottom: 5px;
                            }

                            #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper .copyWrapper .copy {
                                font-family: 'open_sansregular';
                                padding-bottom: 5px;
                            }

                            #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper .copyWrapper .link {
                                font-family: 'open_sansbold';
                                font-size: 1em;
                            }


                                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper .copyWrapper .link a {
                                    color: inherit;
                                    -webkit-transition: color 0.2s ease-in-out;
                                    -moz-transition: color 0.2s ease-in-out;
                                    -o-transition: color 0.2s ease-in-out;
                                    transition: color 0.2s ease-in-out;
                                }

                                    #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.cta .navCTAWrapper .copyWrapper .link a:hover {
                                        color: #f7931c;
                                    }



                    #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.hide {
                        display: none;
                    }

                    #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.left {
                        float: left;
                        border-right: 1px solid #d3cecb;
                    }

                    #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column.right {
                        float: right;
                    }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem .subNavWrapper.tableLayout {
                    display: table;
                }

                    #HeaderWrapper .bottomWrapper .navigationWrapper .navItem .subNavWrapper.tableLayout .column {
                        display: table-cell;
                        vertical-align: top;
                        float: none !important;
                    }

                        #HeaderWrapper .bottomWrapper .navigationWrapper .navItem .subNavWrapper.tableLayout .column.left {
                            border-right: none !important;
                        }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column ul.noFloat li {
                    display: block;
                    width: 100%;
                    float: none;
                    padding: 6px 0;
                    font-family: 'open_sansregular';
                    padding-left: 19px;
                    background-image: url(/_assets/images/Global/ul-bullet.png);
                    background-repeat: no-repeat;
                    background-position: left center;
                }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column ul.float li {
                    display: inline-block;
                    width: 50%;
                    float: left;
                    padding: 6px 0;
                    font-family: 'open_sansregular';
                    padding-left: 19px;
                    background-image: url(/_assets/images/Global/ul-bullet.png);
                    background-repeat: no-repeat;
                    background-position: left center;
                }

                #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column ul li a {
                    color: inherit;
                    -webkit-transition: color 0.2s ease-in-out;
                    -moz-transition: color 0.2s ease-in-out;
                    -o-transition: color 0.2s ease-in-out;
                    transition: color 0.2s ease-in-out;
                }

                    #HeaderWrapper .bottomWrapper .navigationWrapper .navItem.hasSubNav .subNavWrapper .column ul li a:hover {
                        color: #f7931c;
                    }

/*START MOBILE SUB NAV*/

.mobileLogoWrapper {
    padding: 10px 10px 15px 10px;
    text-align: center;
    border-bottom: 4px solid #f37029;
    display: none;
}

    .mobileLogoWrapper img {
        height: 100px;
        width: auto;
    }

.mobileMenu {
    text-align: center;
    border-bottom: 1px solid #D7D3D0;
    padding: 10px 0;
    font-family: 'aleobold';
    font-size: 18px;
    cursor: pointer;
    display: none;
}

.mobileSubNav {
    position: absolute;
    top: 40px;
    width: 100%;
    display: none;
    background-color: #f8f8f7;
    z-index: 21;
    font-family: 'aleobold';
    color: #7c6e65;
}

    .mobileSubNav a {
        -webkit-transition: color 0.2s ease-in-out;
        -moz-transition: color 0.2s ease-in-out;
        -o-transition: color 0.2s ease-in-out;
        transition: color 0.2s ease-in-out;
    }

        .mobileSubNav a:hover {
            color: #f7931c !important;
        }

    .mobileSubNav a {
        color: inherit;
    }

    .mobileSubNav .open {
        width: 50px;
        height: 52px;
        display: inline-block;
        float: right;
        background-image: url(/_assets/images/Global/nav-dd-arrow.png);
        background-repeat: no-repeat;
        background-position: center center;
        cursor: pointer;
        border-left: 1px solid #D7D3D0;
    }

    /*.mobileSubNav .open.activeSubNav {
            background-position: center -52px;
        }*/

    .mobileSubNav .firstLvlItem {
        padding-left: 10px;
        height: 53px;
        line-height: 52px;
        font-size: 18px;
        border-bottom: 1px solid #D7D3D0;
    }

    .mobileSubNav .activeSubNav {
        color: #f7931c !important;
    }

    .mobileSubNav .secondLvlItemWrapper {
        display: none;
    }

        .mobileSubNav .secondLvlItemWrapper .secondLvlItem {
            height: 53px;
            line-height: 52px;
            font-size: 18px;
            border-bottom: 1px solid #D7D3D0;
            text-transform: none;
            color: #7c6e65;
        }


/*END MOBILE SUB NAV*/

@media screen and (min-width: 0px) and (max-width:1320px) {
    #HeaderWrapper .bottomWrapper {
        padding: 20px 10px;
    }
}

@media screen and (min-width: 1160px) {
    .mobileSubNav {
        display: none !important;
    }
}

@media screen and (min-width: 0px) and (max-width:1170px) {
    #HeaderWrapper {
        display: none;
    }

    .mobileMenu {
        display: block;
    }

    .mobileLogoWrapper {
        display: block;
    }
}



/* ----------------------------------------------------
		End Header
------------------------------------------------------- */

/* ----------------------------------------------------
		Start Body
------------------------------------------------------- */

#BodyWrapper {
    width: 100%;
}

    #BodyWrapper #BodyContent {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
    }

.topText {
    padding: 20px;
    text-align: center;
}

.pageTitle {
    color: #3e873d;
    font-size: 30px;
    line-height: 1.2em;
    padding-bottom: 10px;
}

    .pageTitle .bold {
        font-family: 'aleobold';
    }

    .pageTitle .regular {
        font-family: 'aleoregular';
    }

.topText .bodyCopy {
    font-family: 'open_sansregular';
    color: #7c6e65;
    font-size: 14px;
}

.pageBodyCopy p {
    margin-bottom: .7em;
    line-height: 1.6em;
}

.pageBodyCopy img {
    max-width: 100%;
    height: auto !important;
}

.pageBodyCopy img[style*="float: left;"] {
  margin: 0px 20px 0px 0px;
}

.pageBodyCopy img[style*="float: right;"] {
  margin: 0px 0px 0px 20px;
}


.pageBodyCopy strong {
    font-family: 'open_sansbold';
}

.pageBodyCopy ul li {
    list-style-image: url(/_assets/images/Global/ul-bullet.png);
    list-style-position: inside;
    padding: 4px 0;
}

ul li ul {
    margin-left: 24px;
}

.pageBodyCopy .subHeadline {
    font-family: 'open_sansbold_italic';
    color: #f37029;
    /*font-style: italic;*/
    padding-top: 10px;
    margin-bottom: .3em !important;
}



@media screen and (min-width: 0px) and (max-width:515px) {
    .pageTitle {
        font-size: 23px;
    }
}


/* EDITED 7-15-16 DM */
.homePageCircleWrapper {
    width: 100%;
    text-align: center;
    padding: 5px 10px 20px 10px;
}

    .homePageCircleWrapper .CircleWidgetItem {
        width: 33.33%;
        display: inline-block;
        float: left;
        padding: 20px;
        text-align: center;
    }

        .homePageCircleWrapper .CircleWidgetItem .homePageCircles {
            z-index: 1;
            height: 250px;
            width: 250px;
            border-radius: 50%;
            background-repeat: no-repeat;
            position: relative;
            margin: 0 auto;
        }

        .homePageCircleWrapper .CircleWidgetItem .circlePageTitles {
            background-image: url(/_assets/images/CTAs/cta-title-bg.png);
            background-repeat: no-repeat;
            background-position: center center;
            height: 66px;
            margin: -13px;
            text-align: center;
            padding: 18px;
            color: #ffffff;
            font-family: 'aleobold';
            font-size: 22px;
        }

            .homePageCircleWrapper .CircleWidgetItem .circlePageTitles a {
                color: inherit;
            }

        .homePageCircleWrapper .CircleWidgetItem .circleCopy {
            padding: 20px 20px 10px 20px;
            font-family: 'open_sansregular';
            font-size: 16px;
            color: #7c6e65;
            line-height: 1.5em;
        }

        .homePageCircleWrapper .CircleWidgetItem .learnMore a {
            font-family: 'open_sansbold';
            color: #f37029;
            -webkit-transition: color 0.2s ease-in-out;
            -moz-transition: color 0.2s ease-in-out;
            -o-transition: color 0.2s ease-in-out;
            transition: color 0.2s ease-in-out;
        }

            .homePageCircleWrapper .CircleWidgetItem .learnMore a:hover {
                color: #f7931c;
            }

@media screen and (min-width: 0px) and (max-width:1160px) {
    .homePageCircleWrapper .CircleWidgetItem {
        width: 100%;
        max-width: 368px;
        margin: 0 auto;
        display: block;
        float: none;
        padding: 20px 0;
    }
}

/* END EDITS 7-15-16 DM */


/*NEW EDIT - 7/15/2016 - TWF*/

#BodyWrapper #BodyContent .mainContentArea {
    padding: 30px 0;
}

    #BodyWrapper #BodyContent .mainContentArea .leftColumn {
        display: inline-block;
        float: left;
        width: calc(100% - 370px);
        padding-right: 30px;
    }

        #BodyWrapper #BodyContent .mainContentArea .leftColumn.fullWidth {
            width: 100%;
            display: block;
            float: none;
        }

    #BodyWrapper #BodyContent .mainContentArea .rightColumn {
        display: inline-block;
        float: left;
        width: 370px;
        border-left: 1px solid #D7D3D0;
    }

@media screen and (min-width: 0px) and (max-width:1340px) {


    #BodyWrapper #BodyContent .mainContentArea {
        padding: 30px 10px 30px 10px;
    }
}

@media screen and (min-width: 0px) and (max-width:1000px) {

    #BodyWrapper #BodyContent .mainContentArea .leftColumn {
        display: block;
        float: none;
        width: 100%;
        padding-right: 0px;
    }

    #BodyWrapper #BodyContent .mainContentArea .rightColumn {
        display: block;
        float: none;
        width: 100%;
        max-width: 100%;
        border-left: none;
        margin: 0 auto;
    }

    .copyWrapper {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media screen and (min-width: 0px) and (max-width:750px) {

    #BodyWrapper #BodyContent .mainContentArea .rightColumn {
        display: block;
        float: none;
        width: 370px;
        max-width: 100%;
        border-left: none;
        margin: 0 auto;
    }
}


/* END NEW EDIT - 7/15/2016 - TWF*/

/*EDITS 7-15-16-2.0 DM*/

.copyWrapper .pageCopyTitle h1 {
    color: #3e873d;
    font-family: 'aleobold';
    font-size: 30px;
    padding: 0 0 20px 0;
    line-height: 1em;
}

.copyWrapper .pageBodyCopy {
    color: #7c6e65;
    font-family: 'open_sansregular';
    font-size: 16px;
    margin-bottom: 20px;
}

.listWidgetWrapper {
    width: 100%;
    margin: 20px 0;
}

    .listWidgetWrapper .title {
        font-family: 'aleoregular';
        color: #3e873d;
        font-size: 24px;
        padding-bottom: 5px;
    }

    .listWidgetWrapper .listWidgetContent {
        border-top: 1px solid #d7d3d0;
        padding: 20px 0;
        height: 100%;
    }

        .listWidgetWrapper .listWidgetContent.altBorder.first {
            border-top: none;
        }

        .listWidgetWrapper .listWidgetContent.altBorder.last {
            border-bottom: 1px solid #d7d3d0;
        }

        .listWidgetWrapper .listWidgetContent .listWidgetImage {
            display: inline-block;
            float: left;
            padding-right: 20px;
            margin-bottom: 6px;
            width: 236px;
        }
        
        .listWidgetWrapper .listWidgetContent .listWidgetImage img{
	    max-width: 100%;
	    height: auto;
        }

        .listWidgetWrapper .listWidgetContent .listWidgetText {
            display: block;
            line-height: 1.6em;
        }

            .listWidgetWrapper .listWidgetContent .listWidgetText .listWidgetTitle {
                font-family: 'aleoregular';
                color: #3e873d;
                font-size: 24px;
            }

            .listWidgetWrapper .listWidgetContent .listWidgetText .listWidgetSubtitle {
                font-family: 'open_sansbold_italic';
                color: #f37029;
                font-size: 18px;
                /*font-style: italic;*/
                padding-bottom: 3px;
            }

            .listWidgetWrapper .listWidgetContent .listWidgetText .listWidgetCopy {
                font-family: 'open_sansregular';
                color: #7c6e65;
                font-size: 16px;
            }

                .listWidgetWrapper .listWidgetContent .listWidgetText .listWidgetCopy strong {
                    font-family: 'open_sansbold';
                }

@media screen and (min-width: 0px) and (max-width:620px) {
    .listWidgetWrapper .listWidgetContent .listWidgetImage {
        display: block;
        float: none;
        width: 100%;
        padding: 0;
    }
}

/* END EDITS 7-15-16-2.0 DM */

/*NEW EDIT - 7/15/2016*/

/*START RIGHT COLUMN NAVIGATION*/

.rightColumnNavWrapper {
    width: 100%;
    padding: 15px;
    background-image: url(/_assets/images/RightColumn/sidebar-toplevel.png);
    background-repeat: no-repeat;
    background-position: top left;
}

    .rightColumnNavWrapper .rootNode {
        font-family: 'aleoregular';
        font-size: 24px;
        color: #ffffff;
        height: 63px;
        padding-top: 5px;
    }

        .rightColumnNavWrapper .rootNode a {
            color: inherit;
        }

    .rightColumnNavWrapper .subPagesWrapper {
        border-bottom: 1px solid #D7D3D0;
        padding-bottom: 40px;
    }

        .rightColumnNavWrapper .subPagesWrapper ul li {
            padding: 6px 0;
            padding-left: 19px;
            background-image: url(/_assets/images/Global/ul-bullet.png);
            background-repeat: no-repeat;
            background-position: left center;
            font-family: 'open_sansregular';
            color: #7c6e65;
        }

            .rightColumnNavWrapper .subPagesWrapper ul li.current {
                color: #f37029;
            }

            .rightColumnNavWrapper .subPagesWrapper ul li a:hover {
                color: #f7931c;
            }




            .rightColumnNavWrapper .subPagesWrapper ul li a {
                color: inherit;
                -webkit-transition: color 0.2s ease-in-out;
                -moz-transition: color 0.2s ease-in-out;
                -o-transition: color 0.2s ease-in-out;
                transition: color 0.2s ease-in-out;
            }

@media screen and (min-width: 0px) and (max-width:1000px) {

    .rightColumnNavWrapper {
        display: none;
    }
}


/*END RIGHT COLUMN NAVIGATION*/

/*START RIGHT COLUMN CTAs*/

.rightColumnCTAItemWrapper {
    padding: 15px;
}

    .rightColumnCTAItemWrapper .imageWrapper {
        width: 100%;
        margin-bottom: 15px;
    }

        .rightColumnCTAItemWrapper .imageWrapper img {
            width: 100%;
            height: auto;
        }

    .rightColumnCTAItemWrapper .title {
        font-family: 'aleoregular';
        font-size: 24px;
        margin-bottom: .6em;
        line-height: 1.1em;
    }

    .rightColumnCTAItemWrapper .copy {
        font-family: 'open_sansregular';
        color: #7c6e65;
        line-height: 1.5em;
        margin-bottom: .7em;
    }

    .rightColumnCTAItemWrapper .link {
        padding-bottom: 20px;
        border-bottom: 1px solid #D7D3D0;
    }

        .rightColumnCTAItemWrapper .link a {
            font-family: 'open_sansbold';
            color: #f37029;
            -webkit-transition: color 0.2s ease-in-out;
            -moz-transition: color 0.2s ease-in-out;
            -o-transition: color 0.2s ease-in-out;
            transition: color 0.2s ease-in-out;
        }

            .rightColumnCTAItemWrapper .link a:hover {
                color: #f7931c;
            }

    .rightColumnCTAItemWrapper:last-of-type .link {
        padding-bottom: 20px;
        border-bottom: none;
    }


@media screen and (min-width: 0px) and (max-width:1000px) {

    .rightColumnCTAItemWrapper {
        padding: 0px;
        width: 100%;
        margin-bottom: 20px;
    }

        .rightColumnCTAItemWrapper .imageWrapper {
            display: inline-block;
            float: left;
            width: 347px;
        }

        .rightColumnCTAItemWrapper .copyWrapper {
            display: inline-block;
            float: left;
            width: calc(100% - 347px);
            padding-left: 10px;
        }

        .rightColumnCTAItemWrapper .link {
            border-bottom: none;
        }
}

@media screen and (min-width: 0px) and (max-width:750px) {

    .rightColumnCTAItemWrapper {
        padding: 0px;
        width: 100%;
        margin-bottom: 20px;
    }

        .rightColumnCTAItemWrapper .imageWrapper {
            display: block;
            float: none;
            width: 100%;
        }

        .rightColumnCTAItemWrapper .copyWrapper {
            display: block;
            float: none;
            width: 100%;
            padding-left: 0px;
        }

        .rightColumnCTAItemWrapper .link {
            border-bottom: 1px solid #D7D3D0;
        }
}
/*END RIGHT COLUMN CTAs*/


/* END NEW EDIT - 7/15/2016*/

/*CIRCLE CTA 07 18 2016*/

.productCircleWidgetWrapper {
    width: 100%;
}

    .productCircleWidgetWrapper.fullPageWidth {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
    }

    .productCircleWidgetWrapper .productCircleWidgetContent {
        width: 100%;
    }

        .productCircleWidgetWrapper .productCircleWidgetContent .section {
            display: table;
            margin: 0 auto;
        }

            .productCircleWidgetWrapper .productCircleWidgetContent .section .mobileBlock {
                display: inline;
                float: left;
                height: 285px;
            }


        .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper {
            display: table-cell;
            text-align: center;
            vertical-align: middle;
            padding: 2px;
            padding-bottom: 30px;
            width: 225px;
            height: 195px;
            position: relative;
        }

    .productCircleWidgetWrapper.fullPageWidth .productCircleWidgetContent .productCircleWrapper {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        margin: 10px;
        width: 211px;
        height: 195px;
        position: relative;
    }

    .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .ctaName {
        padding: 13px 0;
    }

        .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .ctaName a {
            font-family: 'open_sansbold';
            font-size: 16px;
            color: #7c6e65;
            -webkit-transition: color 0.2s ease-in-out;
            -moz-transition: color 0.2s ease-in-out;
            -o-transition: color 0.2s ease-in-out;
            transition: color 0.2s ease-in-out;
        }

            .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .ctaName a:hover {
                color: #f7931c;
            }

    .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .productCircleContent {
        table-layout: fixed;
        display: block;
        width: 200px;
        height: 200px;
        margin: 0 auto;
        border-radius: 50%;
        vertical-align: middle;
        cursor: pointer;
        overflow: hidden;
        position: relative;
        z-index: 6;
        -webkit-transition: color 0.3s ease-in-out;
        -moz-transition: color 0.3s ease-in-out;
        -o-transition: color 0.3s ease-in-out;
        transition: color 0.3s ease-in-out;
    }

    .productCircleWidgetWrapper.fullPageWidth .productCircleWidgetContent .productCircleWrapper .productCircleContent {
        table-layout: fixed;
        display: block;
        width: 190px;
        height: 190px;
        margin: 0 auto;
        border-radius: 50%;
        vertical-align: middle;
        cursor: pointer;
        overflow: hidden;
        position: relative;
        z-index: 6;
        -webkit-transition: color 0.3s ease-in-out;
        -moz-transition: color 0.3s ease-in-out;
        -o-transition: color 0.3s ease-in-out;
        transition: color 0.3s ease-in-out;
    }

    .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .productCircleContent .vertAlignWrapper {
        display: table;
        width: 100%;
        height: 100%;
    }

        .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .productCircleContent .vertAlignWrapper .vertAlignContent {
            display: table-cell;
            vertical-align: middle;
            line-height: 1.2em;
            padding: 0 12px;
        }

    .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .overlay {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 200px;
        height: 200px;
        overflow: hidden;
        background-repeat: no-repeat;
        background-position: center center;
        z-index: -1;
        border-radius: 50%;
        -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
        -moz-transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
        -o-transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
        transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

    .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .productCircleContent .overlay {
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
        visibility: visible;
        opacity: 1;
    }

    .productCircleWidgetWrapper .productCircleWidgetContent .productCircleWrapper .productCircleContent {
        visibility: visible;
        opacity: 1;
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
        color: #ffffff;
    }

@media screen and (min-width: 0px) and (max-width:1350px) {
    .productCircleWidgetWrapper.contentWidthWidget .productCircleWidgetContent .section .mobileBlock {
        display: block;
        float: none;
        width: 450px;
        margin: 0 auto;
    }


    .productCircleWidgetWrapper.contentWidthWidget .productCircleWidgetContent .productCircleWrapper {
        display: inline-block;
        float: left;
        height: 250px;
    }

    .productCircleWidgetWrapper.contentWidthWidget {
        display: block;
        width: 100%;
        padding-bottom: 30px;
    }
}

@media screen and (min-width: 0px) and (max-width:1290px) {
    .productCircleWidgetWrapper.fullPageWidth .productCircleWidgetContent .section .mobileBlock {
        display: block;
        float: none;
        width: 462px;
        margin: 0 auto;
    }


    .productCircleWidgetWrapper.fullPageWidth .productCircleWidgetContent .productCircleWrapper {
        display: inline-block;
        float: left;
        height: 250px;
    }

    .productCircleWidgetWrapper.fullPageWidth {
        display: block;
        width: 100%;
        padding-bottom: 30px;
    }
}

@media screen and (min-width: 0px) and (max-width:500px) {



    .productCircleWidgetWrapper.contentWidthWidget .productCircleWidgetContent .section .mobileBlock {
        display: block;
        width: 100%;
        height: auto;
    }

    .productCircleWidgetWrapper.contentWidthWidget .productCircleWidgetContent .productCircleWrapper {
        display: block;
        width: 100%;
        float: none;
        margin: 0 auto;
        margin-bottom: 35px;
    }

        .productCircleWidgetWrapper.contentWidthWidget .productCircleWidgetContent .productCircleWrapper .productCircleContent {
            font-size: 18px;
        }


    .productCircleWidgetWrapper.fullPageWidth .productCircleWidgetContent .section .mobileBlock {
        display: block;
        float: none;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }


    .productCircleWidgetWrapper.fullPageWidth .productCircleWidgetContent .productCircleWrapper {
        display: block;
        float: none;
        height: 250px;
        margin: 0 auto;
    }

    .productCircleWidgetWrapper.fullPageWidth {
        display: block;
        width: 100%;
        padding-bottom: 30px;
    }
}


/*END CIRCLE CTA 07 18 2016*/

/*START SEASONAL CHART 7_19_2016*/

.popup {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 20px;
}

    .popup .caption {
        padding-top: 20px;
        font-family: 'open_sansregular';
    }

.seasonalityChartWrapper {
    margin-bottom: 20px;
}

    .seasonalityChartWrapper strong {
        font-family: 'open_sansbold';
    }

    .seasonalityChartWrapper.mobile {
        display: none;
    }

    .seasonalityChartWrapper .leftColumnWrapper {
        display: inline-block;
        float: left;
    }

        .seasonalityChartWrapper .leftColumnWrapper img {
            width: 268px;
            cursor: pointer;
        }

        .seasonalityChartWrapper .leftColumnWrapper .viewLarger {
            padding: 10px 0;
            text-align: center;
            font-family: 'open_sansbold';
            cursor: pointer;
            width: 268px;
        }

    .seasonalityChartWrapper .rightColumnWrapper {
        display: inline-block;
        float: left;
        padding-left: 20px;
    }

        .seasonalityChartWrapper .rightColumnWrapper .title {
            font-family: 'open_sansbold_italic';
            /*font-style: italic;*/
            margin-bottom: .9em;
        }

        .seasonalityChartWrapper .rightColumnWrapper .subTitle {
            font-family: 'open_sansregular';
            margin-bottom: .9em;
        }

.chartWrapper {
    display: table;
    border: 1px solid #D7D3D0;
    border-bottom: none;
    margin-bottom: 20px;
}

    .chartWrapper .header {
        display: table-row;
        background-color: #3e873d;
        color: #ffffff;
        font-family: 'open_sansregular';
    }

        .chartWrapper .header .column {
            display: table-cell;
            padding: 7px;
            border-bottom: 1px solid #D7D3D0;
        }

    .chartWrapper .country {
        display: table-row;
    }

        .chartWrapper .country .column {
            display: table-cell;
            padding: 7px;
            border-bottom: 1px solid #D7D3D0;
        }

            .chartWrapper .country .column.countryName {
                border-right: 1px solid #D7D3D0;
                font-family: 'open_sansbold';
            }

            .chartWrapper .country .column.active {
                background-color: #f7931c;
            }

@media screen and (min-width: 0px) and (max-width:1350px) {
    .seasonalityChartWrapper .leftColumnWrapper {
        display: block;
        float: none;
        padding-bottom: 20px;
    }

    .seasonalityChartWrapper .rightColumnWrapper {
        display: block;
        float: none;
        padding-left: 0px;
    }
}

@media screen and (min-width: 0px) and (max-width:750px) {

    .seasonalityChartWrapper .leftColumnWrapper .viewLarger.text {
        display: none;
    }

    .seasonalityChartWrapper .leftColumnWrapper .viewLarger.image {
        width: 100%;
    }
}

@media screen and (min-width: 0px) and (max-width:650px) {

    .seasonalityChartWrapper .rightColumnWrapper.desktop {
        display: none;
    }

    .seasonalityChartWrapper.mobile {
        display: block;
    }

        .seasonalityChartWrapper.mobile .title {
            font-family: 'open_sansbold_italic';
            /*font-style: italic;*/
            margin-bottom: .9em;
        }

        .seasonalityChartWrapper.mobile .subTitle {
            font-family: 'open_sansregular';
            margin-bottom: .9em;
        }

    .seasonalityChartWrapper.mobile {
        font-family: 'open_sansregular';
        margin-bottom: 40px;
    }
}


/*END SEASONAL CHART 7_19_2016*/

/* FULL PAGE BANNER 7-18-2016 DM */


.pageWidthWidgetsWrapper .bannerWrapper {
    position: relative;
    z-index: 1;
    height: 150px;
    width: 100%;
    margin-bottom: 4px;
}


.pageWidthWidgetsWrapper .bannerContent {
    display: table;
    position: relative;
    z-index: 1;
    height: 150px;
    width: 100%;
    table-layout: fixed;
}



    .pageWidthWidgetsWrapper .bannerContent .bannerLeft {
        display: table-cell;
        background-image: url(/_assets/images/banner-bg-1.jpg);
        background-repeat: repeat-x;
        width: calc(50% - 383px);
    }

    .pageWidthWidgetsWrapper .bannerContent .bannerRight {
        display: table-cell;
        background-image: url(/_assets/images/banner-bg-2.jpg);
        background-repeat: repeat-x;
        background-position: center right;
        width: calc(50% - 383px);
    }

    .pageWidthWidgetsWrapper .bannerContent .placeholder {
        display: table-cell;
        width: 760px;
    }

.pageWidthWidgetsWrapper .bannerWrapper .bannerCopyWrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: 2;
}

    .pageWidthWidgetsWrapper .bannerWrapper .bannerCopyWrapper .bannerCopyPositioner {
        width: 1099px;
        margin: 0 auto;
        height: 100%;
        display: table;
    }

    .pageWidthWidgetsWrapper .bannerWrapper .bannerCopyWrapper .bannerCopyContent {
        background-image: url(/_assets/images/banner-tagline-bg.png);
        width: 100%;
        max-width: 1099px;
        margin: 0 auto;
        height: 100%;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        background-repeat: no-repeat;
        background-position: center center;
    }

        .pageWidthWidgetsWrapper .bannerWrapper .bannerCopyWrapper .bannerCopyContent .bannerText {
            color: #ffffff;
            font-family: 'aleoitalic';
            /*font-style: italic;*/
            font-size: 40px;
            padding: 9px;
            line-height: 1em;
        }

@media screen and (min-width: 0px) and (max-width:1140px) {


    .pageWidthWidgetsWrapper .bannerWrapper .bannerCopyWrapper .bannerCopyPositioner {
        width: 100%;
        max-width: 1099px;
        margin: 0 auto;
        height: 100%;
        display: table;
    }

    .pageWidthWidgetsWrapper .bannerWrapper {
        background-image: url(/_assets/images/banner-bg-1.jpg);
    }

    .pageWidthWidgetsWrapper .bannerContent {
        display: none;
    }

    .pageWidthWidgetsWrapper .bannerWrapper .bannerCopyWrapper {
        position: relative;
        width: 100%;
        height: 100%;
        top: auto;
        left: auto;
        display: block;
        z-index: 2;
    }
}

@media screen and (min-width: 0px) and (max-width:475px) {

    .pageWidthWidgetsWrapper .bannerWrapper .bannerCopyWrapper .bannerCopyContent .bannerText {
        color: #ffffff;
        font-family: 'aleoitalic';
        /*font-style: italic;*/
        font-size: 28px;
        padding: 9px;
        line-height: 1em;
    }
}
/* END FULL PAGE BANNER */

/* RIGHT HAND LOCATIONS WIDGET START 7-18-16 DM */
.locationsWrapper {
    width: 100%;
    padding: 15px;
    background-image: url(/_assets/images/RightColumn/sidebar-toplevel.png);
    background-repeat: no-repeat;
    background-position: top left;
}

    .locationsWrapper .title {
        font-family: 'aleoregular';
        font-size: 24px;
        color: #ffffff;
        height: 63px;
        padding-top: 5px;
    }

    .locationsWrapper .locationItemsWrapper {
        padding-left: 10px;
    }

    .locationsWrapper .locationItem .name {
        font-family: 'open_sansbold';
        font-size: 18px;
        color: #3e873d;
        padding: 0 0 15px 5px;
    }

    .locationsWrapper .locationItem .staffList li {
        font-family: 'open_sansbold';
        font-size: 16px;
        color: #7c6e65;
        padding: 0px 0px 11px 27px;
        background-image: url(/_assets/images/icon-person.png);
        background-repeat: no-repeat;
        background-position: left center 1px;
    }

    .locationsWrapper .locationItem .addressLines {
        font-family: 'open_sansregular';
        font-size: 16px;
        color: #7c6e65;
        padding: 2px 0px 11px 0px;
    }

        .locationsWrapper .locationItem .addressLines .address {
            background-image: url(/_assets/images/icon-location.png);
            background-repeat: no-repeat;
            background-position: left center;
            padding-left: 27px;
            line-height: 1.5em;
        }

        .locationsWrapper .locationItem .addressLines .addressLine2 {
            padding-left: 27px;
        }

        .locationsWrapper .locationItem .addressLines .cityStateZip {
            padding-left: 27px;
        }

    .locationsWrapper .locationItem .phoneNumber {
        font-family: 'open_sansregular';
        font-size: 16px;
        color: #7c6e65;
        padding: 0px 0px 15px 27px;
        background-image: url(/_assets/images/icon-phone.png);
        background-repeat: no-repeat;
        background-position: left center 3px;
    }

        .locationsWrapper .locationItem .phoneNumber a {
            color: inherit;
        }

@media screen and (min-width: 0px) and (max-width:1000px) {
    .locationsWrapper {
        width: 100%;
        padding: 15px;
        background-image: url(/_assets/images/CTAs/cta-title-bg.png);
        background-repeat: no-repeat;
        background-position: top center;
        width: 100%;
        max-width: 368px;
        margin: 0 auto;
        text-align: center;
    }

        .locationsWrapper .title {
            font-family: 'aleoregular';
            font-size: 24px;
            color: #ffffff;
            height: 63px;
            padding-top: 5px;
            text-align: center;
        }

        .locationsWrapper .locationItem .staffList li {
            padding: 0px 0px 11px 27px;
            background-image: none;
            padding-left: 0;
        }

        .locationsWrapper .locationItem .addressLines .address {
            background-image: none;
            padding-left: 0px;
        }

        .locationsWrapper .locationItem .phoneNumber {
            padding: 0px 0px 15px 0px;
            background-image: none;
        }
}

@media screen and (min-width: 0px) and (max-width:700px) {

    .locationsWrapper .locationItem .phoneNumber a {
        color: #f7931c;
    }
}

/* RIGHT HAND LOCATIONS WIDGET END 7-18-16 DM */



/* ----------------------------------------------------
		End Body
------------------------------------------------------- */

/* ----------------------------------------------------
		Start Footer
------------------------------------------------------- */

#FooterWrapper {
    width: 100%;
}

    #FooterWrapper .footerColorBar {
        width: 100%;
        height: 4px;
        background-image: url(/_assets/images/Global/footer-colorbar.png);
        background-repeat: repeat-x;
        margin-bottom: 4px;
    }

    #FooterWrapper #FooterContent {
        width: 100%;
        padding: 30px 0 12px 0;
    }

        #FooterWrapper #FooterContent .contentWidth {
            background-image: url(/_assets/images/Global/footer-graphic-bg.png);
            background-repeat: no-repeat;
            background-position: right center;
        }


        #FooterWrapper #FooterContent .top {
            width: 100%;
            display: table;
        }

        #FooterWrapper #FooterContent .column {
            display: table-cell;
            vertical-align: top;
            color: #ffffff;
        }

            #FooterWrapper #FooterContent .column.location {
                padding-left: 30px;
            }

            #FooterWrapper #FooterContent .column.location {
                font-family: 'open_sansregular';
                font-size: 12px;
            }

                #FooterWrapper #FooterContent .column.location p {
                    margin-bottom: 3px;
                }

                #FooterWrapper #FooterContent .column.location .title {
                    padding-left: 18px;
                    background-image: url(/_assets/images/Global/footer-icon-location.png);
                    background-repeat: no-repeat;
                    background-position: left center;
                    font-family: 'open_sansbold';
                    font-size: 15px;
                    margin-bottom: 7px;
                    text-transform: uppercase;
                    line-height: 26px;
                    height: 23px;
                    vertical-align: middle;
                }


            #FooterWrapper #FooterContent .column .missionStatement {
                font-family: 'aleoregular';
                font-size: 18px;
                margin-top: 25px;
                width: 100%;
                max-width: 365px;
            }

            #FooterWrapper #FooterContent .column.sitemap .content {
                display: block;
            }


            #FooterWrapper #FooterContent .column a {
                color: inherit;
                -webkit-transition: color 0.2s ease-in-out;
                -moz-transition: color 0.2s ease-in-out;
                -o-transition: color 0.2s ease-in-out;
                transition: color 0.2s ease-in-out;
            }

                #FooterWrapper #FooterContent .column a:hover {
                    color: #f7931c;
                }

            #FooterWrapper #FooterContent .column.sitemap .content .column {
                display: inline-block;
                width: 33.3%;
                float: left;
                padding: 0px 15px 25px 15px;
            }

                #FooterWrapper #FooterContent .column.sitemap .content .column .footerNavItemWrapper {
                    padding-bottom: 10px;
                }

                #FooterWrapper #FooterContent .column.sitemap .content .column .footerNavItem {
                    font-family: 'open_sansbold';
                    text-transform: uppercase;
                    font-size: 15px;
                    padding-bottom: 7px;
                }

                #FooterWrapper #FooterContent .column.sitemap .content .column ul li {
                    font-family: 'open_sansregular';
                    font-size: 12px;
                    padding-bottom: 6px;
                }


        #FooterWrapper #FooterContent .bottom {
            text-align: center;
            color: #ffffff;
            width: 100%;
            border-top: 1px solid #ffffff;
            padding-top: 12px;
            font-family: 'open_sansregular';
            font-size: 11px;
        }

            #FooterWrapper #FooterContent .bottom img {
                vertical-align: middle;
            }

@media screen and (min-width: 0px) and (max-width:1320px) {
    #FooterWrapper #FooterContent {
        width: 100%;
        padding: 30px 10px 12px 10px;
    }
}

@media screen and (min-width: 0px) and (max-width:1020px) {
    #FooterWrapper #FooterContent .top {
        display: block;
    }

    #FooterWrapper #FooterContent .column {
        display: block;
        text-align: center;
    }

        #FooterWrapper #FooterContent .column.sitemap {
            display: none;
        }

        #FooterWrapper #FooterContent .column .missionStatement {
            margin: 25px auto 20px auto;
        }

        #FooterWrapper #FooterContent .column.location .title {
            display: inline-block;
        }

        #FooterWrapper #FooterContent .column.location {
            padding-left: 0;
        }

    #FooterWrapper #FooterContent .top {
        padding-bottom: 20px;
    }

    #FooterWrapper #FooterContent .bottom img {
        display: none;
    }

    .footerLogo {
        height: 90px;
        width: auto;
    }
}




/* ----------------------------------------------------
		End Footer
------------------------------------------------------- */

