/* ----------------------------------------------------------------------------------
Site name
Theme name: Site name
---------------------------------------------------------------------------------- */


/* -----------------------------------------------------------
   Template sites - common settings
----------------------------------------------------------- */



/* -----------------------------------------------------------
   Layout
----------------------------------------------------------- */

    html {
        height: auto;
    }

    body.navigation-open {
        overflow: hidden;
    }

    #container {
        padding: 0;
        width: auto;
    }

    #header,
    body.layout-hero-header #header {
        height: 0;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2000;
    }

    #logo {
        position: fixed;
        top: 54px;
        left: 50%;
        width: 63px;
        height: 19px;
        margin-left: -32px;
        z-index: 2500;
        transition: opacity 0.4s ease-in-out;
        opacity: 0;
    }
        .cms-frontend-toolbar-active #logo {
            top: 82px;
        }
        body.page-top #logo,
        body.navigation-open #logo {
            opacity: 1;
        }
        #logo a {
            display: block;
            width: 63px;
            height: 19px;
            text-indent: -9999px;
            background: url(/images/logo.png) 0 0 no-repeat;
        }
        .device-highres #logo a {
            background-image: url(/images/logo_2x.png);
            background-size: auto 19px;
        }

    #top_nav_section_reveal {
        position: fixed;
        z-index: 2500;
        top: 54px;
        left: 54px;
        width: 16px;
        height: 14px;
        display: block;
        cursor: pointer;
    }
        .cms-frontend-toolbar-active #top_nav_section_reveal {
            top: 82px;
        }
                #top_nav_section_reveal {
                  width: 18px;
                  height: 14px;
                  -webkit-transform: rotate(0deg);
                  -moz-transform: rotate(0deg);
                  -o-transform: rotate(0deg);
                  transform: rotate(0deg);
                  -webkit-transition: .5s ease-in-out;
                  -moz-transition: .5s ease-in-out;
                  -o-transition: .5s ease-in-out;
                  transition: .5s ease-in-out;
                  cursor: pointer;
                }
                    #top_nav_section_reveal span {
                      display: block;
                      position: absolute;
                      height: 2px;
                      width: 100%;
                      background: #fff;
                      border-radius: 1px;
                      opacity: 1;
                      left: 0;
                      -webkit-transform: rotate(0deg);
                      -moz-transform: rotate(0deg);
                      -o-transform: rotate(0deg);
                      transform: rotate(0deg);
                      -webkit-transition: .25s ease-in-out;
                      -moz-transition: .25s ease-in-out;
                      -o-transition: .25s ease-in-out;
                      transition: .25s ease-in-out;
                    }
                    body.navigation-bg-light #top_nav_section_reveal span {
                        background: #886e49;
                    }
                    body.navigation-bg-light #top_nav_section_reveal.open span {
                        background: #fff;
                    }
                    #top_nav_section_reveal span:nth-child(1) {
                      top: 0px;
                    }
                    #top_nav_section_reveal span:nth-child(2),
                    #top_nav_section_reveal span:nth-child(3) {
                      top: 6px;
                    }
                    #top_nav_section_reveal span:nth-child(4) {
                      top: 12px;
                    }
                    #top_nav_section_reveal.open span:nth-child(1) {
                      top: 6px;
                      width: 0%;
                      left: 50%;
                    }
                    #top_nav_section_reveal.open span:nth-child(2) {
                      -webkit-transform: rotate(45deg);
                      -moz-transform: rotate(45deg);
                      -o-transform: rotate(45deg);
                      transform: rotate(45deg);
                    }
                    #top_nav_section_reveal.open span:nth-child(3) {
                      -webkit-transform: rotate(-45deg);
                      -moz-transform: rotate(-45deg);
                      -o-transform: rotate(-45deg);
                      transform: rotate(-45deg);
                    }
                    #top_nav_section_reveal.open span:nth-child(4) {
                      top: 6px;
                      width: 0%;
                      left: 50%;
                    }


    #top_nav_section {
        display: none;
        position: fixed;
        z-index: 2400;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.6);
        -moz-transition: background 0.4s ease-in-out;
        -webkit-transition: background 0.4s ease-in-out;
        transition: background 0.4s ease-in-out;
        -webkit-font-smoothing: antialiased;
        font-weight: 200;
    }
        #top_nav_section ul {
            position: fixed;
            z-index: 2400;
            top: 50px;
            left: 0;
            right: 0;
            bottom: 0;
            display: block;
            list-style: none;
            margin: 0;
            padding: 0 200px;
            width: 100%;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            /* Flexbox to vertically center the content within the box */
            /* Testing this functionality at the moment */
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-flex-direction: column;
            flex-direction: column;
            /* End flexbox */
        }
        #top_nav_section ul li {
            display: block;
            clear: both;
            padding: 0 0 30px;
            margin-left: -40px;
            opacity: 0;
            white-space: nowrap;
            float: left;
            clear: both;
            -moz-transition: opacity 0.4s ease-in-out, margin 0.4s cubic-bezier(.31,.15,.26,1.88);
            -webkit-transition: opacity 0.4s ease-in-out, margin 0.4s cubic-bezier(.31,.15,.26,1.88);
            transition: opacity 0.4s ease-in-out, margin 0.4s cubic-bezier(.31,.15,.26,1.88);
        }
            #top_nav_section ul li.show {
                margin-left: 0;
                opacity: 1;
            }
            #top_nav_section ul li:hover {
                margin-left: 10px;
                -moz-transition: opacity 0.4s ease-in-out, margin 0.4s ease-in-out;
                -webkit-transition: opacity 0.4s ease-in-out, margin 0.4s ease-in-out;
                transition: opacity 0.4s ease-in-out, margin 0.4s ease-in-out;
            }
        #top_nav_section ul li a,
        #top_nav_section ul li a:visited {
            color: #fff;
            font-family: 'TeeFranklin', sans-serif;
            font-weight: 200;
            letter-spacing: 1px;
            font-size: 40px;
            line-height: 50px;
            text-decoration: none;
            display: block;
        }


    .navigation {

    }
        .navigation ul {

        }
        .navigation ul li {

        }
        .navigation ul li a {

        }
        .navigation ul li a,
        .navigation ul li a:visited {

        }
        .navigation ul li a:hover {

        }
        .navigation ul li.active a,
        .navigation ul li.active a:visited,
        .navigation ul li.active a:hover {

        }

    #main_content {
        -moz-transition: opacity 0.4s ease-in-out;
        -webkit-transition: opacity 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out;
        margin: 0;
        opacity: 1;
    }
        body.navigation-open.page-top #main_content {
            opacity: 0;
        }
        #main_content h1 {

        }

    #content {

    }
        #content_module {

        }
        #sidebar {

        }

    #footer {
        padding: 120px 80px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #886e49;
        background: rgba(248,246,243,0.5);
        font-weight: normal;
        font-size: 11px;
        line-height: 20px;
        margin: 0;
        line-height: 30px;
    }
        #footer #copyright {
            margin: 0 0 30px;
        }
        #footer #copyright:after {
            content: '.';
            text-indent: -9999px;
            max-width: 70px;
            width: 100%;
            margin: 30px auto 0;
            display: block;
            border-bottom: 1px solid #886e49;
            height: 0;
        }
        #footer #artlogic {
            font-size: 9px;
        }
        #footer a,
        #footer a:visited {
            
        }


/* -----------------------------------------------------------
   Page Specific
----------------------------------------------------------- */


    /* Home
    ----------------------------------------------------------- */
    
    .section-home .scrollpane .panel {
        overflow: hidden;
    }
    
    .section-home .scrollpane .panel .image {
        overflow: visible;
    }

    .section-home .scrollpane .panel.panel_standard .arrow {
        background-image: url(/images/hero_down_2x.png);
        background-size: auto 16px;
        width: 29px;
        height: 16px;
        position: absolute;
        left: -14.5px;
        bottom: 50px;
        z-index: 999;
        filter: brightness(0);
        cursor: pointer;
    }
    
    .section-home .scrollpane section.panel_standard:nth-of-type(even) .arrow {
        left: auto;
        right: -14.5px;
    }
    
    .section-home .scrollpane section.panel_standard:last-of-type .arrow {
        display: none;
    }
    

    /* Artists
    ----------------------------------------------------------- */

    body.section-artists.no-page-params.navigation-open.page-top #main_content {
        opacity: 1;
    }
    body.section-artists.no-page-params .top_section {
        display: none;
    }

    #container.artist-list-page #footer {
        display: none;
    }
    #container.artist-list-page .top_section .inner {
        left: -9999px;
        position: absolute;
    }

    #artist_list_images {
        position: fixed;
        z-index: 1300;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
        -webkit-transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
        -moz-transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
        transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
    }
        .page-top #artist_list_images {
            opacity: 1;
        }
        #artist_list_images > div {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: center center no-repeat;
            background-size: cover;
        }
        #artist_list_images:after {
            content: '.';
            text-indent: -9999px;
            display: block;
            position: absolute;
            z-index: 1400;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            -webkit-transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
            -moz-transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
            transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
            background: rgba(0,0,0,0.65);
        }

    .section-artists #artist_list {
        position: relative;
        z-index: 1400;
    }
        .section-artists .artist_list {
            -webkit-font-smoothing: antialiased;
            font-weight: 200;
            position: relative;
            z-index: 1400;
            padding-top: 200px;
            /* Flexbox to vertically center the content within the box */
            /* Testing this functionality at the moment */
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-flex-direction: column;
            flex-direction: column;
            /* End flexbox */
            -moz-transition: opacity 0.4s ease-in-out;
            -webkit-transition: opacity 0.4s ease-in-out;
            transition: opacity 0.4s ease-in-out;
        }
        .section-artists #artist_list li {
            width: 100% !important;
        }
        body.navigation-open.section-artists #artist_list .artist_list {
            opacity: 0;
        }
            .section-artists .artist_list .artist_list_exhibited_note {
                width: 100%;
                margin: 0 0 40px;
                text-align: left;
                color: #fff;
                font-weight: normal;
                line-height: 30px;
                font-size: 16px;
                opacity: 0;
                -moz-transition: opacity 0.6s ease-in-out, margin 0.6s ease-in-out;
                -webkit-transition: opacity 0.6s ease-in-out, margin 0.6s ease-in-out;
                transition: opacity 0.6s ease-in-out, margin 0.6s ease-in-out;
            }
                .section-artists .artist_list .artist_list_exhibited_note.show {
                    opacity: 1;
                }
            .section-artists .artist_list .records_list {
                padding: 0 100px 50px 230px;
                width: 100%;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
            }
            .section-artists .artist_list .records_list ul {
                float: left;
                width: 25%;
                margin-top: 0;
                opacity: 1;
                -moz-transition: opacity 0.6s ease-in-out, margin 0.6s ease-in-out;
                -webkit-transition: opacity 0.6s ease-in-out, margin 0.6s ease-in-out;
                transition: opacity 0.6s ease-in-out, margin 0.6s ease-in-out;
            }
                .section-artists .artist_list .records_list ul.show {
                    margin-top: 0;
                    opacity: 1;
                }
                        
            .section-artists .artist_list .records_list ul li {
                clear: both;
                display: block;
                margin: 0 0 30px;
            }
            .section-artists .artist_list .records_list ul li h2 {
                font-size: 20px;
                line-height: 30px;
                font-weight: normal;
                text-align: left;
            }
            .section-artists .artist_list .records_list ul li a,
            .section-artists .artist_list .records_list ul li a:visited {
                color: #fff;
            }

            .section-artists #artist_list_exhibited.artist_list .records_list ul li {
                margin: 0 0 20px;
            }
            .section-artists #artist_list_exhibited.artist_list .records_list ul li h2 {
                font-size: 22px;
                line-height: 32px;
                color: #fff;
            }
            .section-artists #artist_list_exhibited.artist_list .records_list ul li h2 a {
                display: inline;
                border-bottom: 1px solid rgba(255,255,255,0.5);
            }

            /*
        .section-artists #artist_list.gallery-artists-active #artist_list_gallery {
            opacity: 1;
        }
        .section-artists #artist_list.exhibited-artists-active #artist_list_exhibited {
            opacity: 1;
        }
            */

        .section-artists #artist_list_chooser {
            position: absolute;
            z-index: 1400;
            top: 150px;
            left: 200px;
            width: auto;
            color: #fff;
            font-weight: 400;
            cursor: pointer;
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            -moz-transition: opacity 0.4s ease-in-out;
            -webkit-transition: opacity 0.4s ease-in-out;
            transition: opacity 0.4s ease-in-out;
        }
        body.navigation-open.section-artists #artist_list_chooser {
            opacity: 0;
        }
            .section-artists #artist_list_chooser > a {
                display: inline-block;
                vertical-align: top;
                margin: 0 20px 0 0;
                opacity: 0.7;
            }
            .section-artists #artist_list_chooser > a,
            .section-artists #artist_list_chooser > a:visited {
                color: #fff;
                text-decoration: none;
            }
            .section-artists #artist_list_chooser > a.active {
                opacity: 1;
            }


    /* Exhibitions
    ----------------------------------------------------------- */

    /* Publications
    ----------------------------------------------------------- */



    .section-publications .scrollpane.no-overheight section.panel_standard .image div {
        height: auto !important;
    }




    /* Fairs
    ----------------------------------------------------------- */

    .section-art-fairs .top_section .inner {
        left: -9999px;
        position: absolute;
    }
    .section-art-fairs #container #footer {
        display: none;
    }
    
    .section-art-fairs #art-fairs-grid-container {
        -webkit-font-smoothing: antialiased;
        font-weight: 200;
        position: fixed;
        z-index: 1400;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
        .section-art-fairs #art-fairs-grid-container .fairs_list {
            position: fixed;
            z-index: 1400;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            /* Flexbox to vertically center the content within the box */
            /* Testing this functionality at the moment */
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-flex-direction: column;
            flex-direction: column;
            /* End flexbox */
        }
            .section-art-fairs #art-fairs-grid-container .fairs_list ul {
                display: block;
                width: 100%;
                text-align: center;
                padding: 100px;
                margin: 0;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
            }
            .section-art-fairs #art-fairs-grid-container .fairs_list ul li {
                display: inline-block;
                vertical-align: top;
                width: 33.33%;
                max-width: 492px;
                padding: 0 55px;
                margin: 0;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                -moz-transition: opacity 0.4s ease-in-out, margin 0.4s cubic-bezier(.31,.15,.26,1.88);
                -webkit-transition: opacity 0.4s ease-in-out, margin 0.4s cubic-bezier(.31,.15,.26,1.88);
                transition: opacity 0.4s ease-in-out, margin 0.4s cubic-bezier(.31,.15,.26,1.88);
                color: #fff;
                font-weight: normal;
            }
            .section-art-fairs #art-fairs-grid-container .fairs_list ul li .image {
                min-height: 175px;
                width: 100%;
                display: block;
            }
                .section-art-fairs #art-fairs-grid-container .fairs_list ul li .image a {
                    min-height: 175px;
                    width: 100%;
                    display: block;
                    /* Flexbox to vertically center the content within the box */
                    /* Testing this functionality at the moment */
                    display: -webkit-flex;
                    display: flex;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    -webkit-flex-direction: column;
                    flex-direction: column;
                    /* End flexbox */
                }
                .section-art-fairs #art-fairs-grid-container .fairs_list ul li .image img {
                    display: inline-block;
                    max-width: 100%;
                    max-height: 100%;
                }
            .section-art-fairs #art-fairs-grid-container .fairs_list ul li .date {
                color: #fff;
                font-weight: normal;
                opacity: 0.8;
                -webkit-font-smoothing: subpixel-antialiased;
                margin: 0 0 30px;
                display: block;
            }
            .section-art-fairs #art-fairs-grid-container .fairs_list ul li .description {
                padding: 30px 0 0;
                border-top: 1px solid #fff;
                display: block;
            }
            .section-art-fairs #art-fairs-grid-container .fairs_list ul li h2 {
                font-size: 30px;
                line-height: 40px;
            }
            .section-art-fairs #art-fairs-grid-container .fairs_list ul li a,
            .section-art-fairs #art-fairs-grid-container .fairs_list ul li a:visited {
                color: #fff;
            }


    /* About
    ----------------------------------------------------------- */

    .section-about #footer {
        display: none;
    }
    .section-about .top_section .inner {
        left: -9999px;
        position: absolute;
    }
        .section-about #overlay_container {
            position: fixed;
            z-index: 1400;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            /* Flexbox to vertically center the content within the box */
            /* Testing this functionality at the moment */
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-flex-direction: column;
            flex-direction: column;
            /* End flexbox */
        }
        .section-about #overlay_content {
            padding: 50px 0 0;
            width: 100%;
            text-align: center;
            vertical-align: middle;
            color: #fff;
            -webkit-font-smoothing: antialiased;
        }
            .section-about #overlay_content * {
                color: #fff;
            }
            .section-about #overlay_content #content_module {
                display: inline-block;
                text-align: left;
                float: none;
                width: 40%;
                max-width: 543px;
                vertical-align: middle;
                padding: 0 40px;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                font-weight: normal;
            }
            .section-about #overlay_content #sidebar {
                display: inline-block;
                width: 40%;
                max-width: 524px;
                text-align: left;
                vertical-align: top;
                float: none;
                font-size: 53px;
                line-height: 63px;
                border-left: 1px solid #fff;
                padding: 0 30px;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                font-weight: 200;
            }
            .section-contact #content_module a,
            .section-contact #content_module a:visited {
                text-decoration:none;
            }


    /* Contact
    ----------------------------------------------------------- */

    body.section-contact .top_section:after {
        opacity: 1;
    }
    body.navigation-open #overlay_content {
        opacity: 0;
    }
    .section-contact #footer {
        display: none;
    }
    .section-contact .top_section .inner {
        left: -9999px;
        position: absolute;
    }
        .section-contact #overlay_container {
            position: fixed;
            z-index: 1400;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            /* Flexbox to vertically center the content within the box */
            /* Testing this functionality at the moment */
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-flex-direction: column;
            flex-direction: column;
            /* End flexbox */
        }
        .section-contact #overlay_content {
            padding: 135px 0 0;
            width: 100%;
            text-align: center;
            vertical-align: middle;
            color: #fff;
            -webkit-font-smoothing: antialiased;
        }
            .section-contact #overlay_content * {
                color: #fff;
            }
            .section-contact #overlay_content #content_module {
                display: inline-block;
                text-align: left;
                float: none;
                width: 40%;
                max-width: 543px;
                vertical-align: middle;
                padding: 0 40px;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                font-weight: normal;
                -webkit-transition: opacity 0.5s ease-in-out;
                -moz-transition: opacity 0.5s ease-in-out;
                transition: opacity 0.5s ease-in-out;
                opacity: 0;
            }
                body.page-top.section-contact #overlay_content #content_module {
                    opacity: 1;
                }
            .section-contact #overlay_content #sidebar {
                display: inline-block;
                width: 40%;
                max-width: 473px;
                text-align: left;
                vertical-align: top;
                float: none;
            }
            .section-contact #overlay_content #sidebar .inner {
                font-size: 40px;
                line-height: 53px;
                border-left: 1px solid #fff;
                padding: 0 30px;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                font-weight: 200;
                margin: 0 0 45px;
            }
            .section-contact #overlay_content #sidebar .google_map_link {
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 3px;
                cursor: pointer;
                -webkit-font-smoothing: subpixel-antialiased;
                -webkit-transition: opacity 0.5s ease-in-out;
                -moz-transition: opacity 0.5s ease-in-out;
                transition: opacity 0.5s ease-in-out;
                opacity: 0;
            }
            .section-contact #overlay_content #sidebar .instagram_link {
                text-decoration: none;
                transition: opacity 0.5s ease-in-out;
                opacity: 0;
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 6px;
                cursor: pointer;
                -webkit-font-smoothing: subpixel-antialiased;
            }
            .section-contact #overlay_content #sidebar .instagram_link .social_media_icon {
                border: none;
                background-color: transparent;
                float: none;
                display: inline-block;
                background-position-y: -18px;
                vertical-align: text-bottom;
            }
            .section-contact #overlay_content #sidebar .instagram_link .text {
                display: inline-block;
                vertical-align: middle;
                line-height: 1em;
            }
            .section-contact #overlay_content #sidebar .google_map_link {
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 6px;
                cursor: pointer;
                -webkit-font-smoothing: subpixel-antialiased;
                -webkit-transition: opacity 0.5s ease-in-out;
                -moz-transition: opacity 0.5s ease-in-out;
                transition: opacity 0.5s ease-in-out;
                opacity: 0;
                background: url(/images/marker_2x.png) 0 5px no-repeat;
                background-size: auto 23px;
                padding: 0 0 0 30px;
            }
            body.page-top.section-contact #overlay_content #sidebar .google_map_link,
            body.page-top.section-contact #overlay_content #sidebar .instagram_link {
                opacity: 1;
            }
        #map_wrapper {
            position: relative;
            overflow: hidden;
        }
        #map_basic > div > div > div > div {
            /* Slightly darken the map with a black overlay */
            background: rgba(0,0,0,0.3);
        }
        
        .page-contact h6 {
            font-weight: 400;
            font-size: 14px;
        }



/* -----------------------------------------------------------
   Global Classes
----------------------------------------------------------- */


    table.biog {
        line-height: inherit;
        font-size: inherit;
    }
    table.biog tr {
        line-height: inherit;
        font-size: inherit;
    }
    table.biog td {
        padding: 0 0 20px;
        line-height: 25px;
        font-size: inherit;
    }
    table.biog td.biog_col_1 {
        white-space: nowrap;
        padding-right: 20px;
    }

    /* Hero section
    ----------------------------------------------------------- */

    .parallax-mirror #mirror-hero_parallax_content {
        width: 100%;
        position: absolute;
        max-height: 102%;
    }
        .parallax-mirror #mirror-hero_parallax_content div {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: center center no-repeat;
            background-size: cover;
        }

   .top_section {
        display: block;
        background-size: cover;
        width: 100%;
        height: 1000px;
        position: relative;
        z-index: 1000;
        -moz-transition: background 0.8s ease-in-out;
        -webkit-transition: background 0.8s ease-in-out;
        transition: background 0.8s ease-in-out;
    }
    .top_section.parallax-loaded {
        background: transparent !important;
    }
        .top_section:before,
        .top_section:after {
            content: '.';
            text-indent: -9999px;
            display: block;
            position: absolute;
            z-index: 1102;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            -webkit-transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
            -moz-transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
            transition: opacity 0.5s cubic-bezier(.87,.17,.18,.85);
            opacity: 0;
        }
        body .top_section:after {
            background: rgba(0,0,0,0.6);
        }

        
        /* TEMPORARILY REMOVED BACKGROUND MASK - GALLERY REQUEST */
            /*body.section-home .top_section:after {
                background: none;
            }*/
        
        body.page-top .top_section:after {
            opacity: 1;
        }
        body.page-init .top_section:before {
            display: block;
            position: absolute;
            z-index: 1102;
        }

        .top_section #hero_parallax_content {
            display: none;
        }
        .top_section #hero_parallax_content,
        .top_section #hero_parallax_content div {
            background: center center no-repeat;
            background-size: cover;
            position: absolute;
            z-index: 1100;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        .device-handheld .top_section #hero_parallax_content {
            display: block;
        }
        
        #container .top_section #slideshow.fullscreen_slideshow {
            z-index: 1101;
        }
        #container #slideshow.fullscreen_slideshow .hero-parallax-element .image, 
        #content #slideshow.fullscreen_slideshow .hero-parallax-element .image {
            display: block;
        }

        .top_section_heading {
            position: absolute;
            top: 50%;
            margin-top: -100px;
            text-align: center;
            padding: 0 50px;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 100%;
            z-index: 1200;
            opacity: 0;
            -webkit-transition: opacity 0.5s ease-in-out;
            -moz-transition: opacity 0.5s ease-in-out;
            transition: opacity 0.5s ease-in-out;
        }
        body.page-top .top_section_heading {
            opacity: 1;
        }
        body.navigation-open .top_section_heading {
            opacity: 0;
        }
        body.page-top.auto-scrol-initial .top_section_heading {
            display: none;
        }
            .top_section_heading h1 {
                color: #fff;
                margin: 0 0 30px;
            }
                .top_section_heading h1:after {
                    content: '.';
                    text-indent: -9999px;
                    max-width: 575px;
                    width: 100%;
                    margin: 15px auto 0;
                    display: block;
                    border-bottom: 1px solid #fff;
                    height: 0;
                }
            .top_section_heading .subtitle {
                color: #fff;
                font-weight: 200;
                font-size: 11px;
                letter-spacing: 6px;
            }
                .top_section_heading .subtitle .subtitle_2 {
                    padding-left: 30px;
                }

        .top_section_down {
            position: absolute;
            bottom: -50px;
            left: 50%;
            margin-left: -15px;
            width: 29px;
            height: 16px;
            background: url(/images/hero_down.png) 0 0 no-repeat;
            z-index: 1200;
            opacity: 0;
            cursor: pointer;
            -webkit-transition: opacity 0.5s ease-in-out, bottom 0.5s cubic-bezier(.85,-0.8,.66,.78);
            -moz-transition: opacity 0.5s ease-in-out, bottom 0.5s cubic-bezier(.85,-0.8,.66,.78);
            transition: opacity 0.5s ease-in-out, bottom 0.5s cubic-bezier(.85,-0.8,.66,.78);
        }
            body.page-top .top_section_down {
                opacity: 1;
                bottom: 50px;
                -webkit-transition: opacity 0.5s ease-in-out, bottom 0.5s cubic-bezier(.79,.08,.3,.87);
                -moz-transition: opacity 0.5s ease-in-out, bottom 0.5s cubic-bezier(.79,.08,.3,.87);
                transition: opacity 0.5s ease-in-out, bottom 0.5s cubic-bezier(.79,.08,.3,.87);
            }
            body.device-highres .top_section_down {
                background-image: url(/images/hero_down_2x.png);
                background-size: auto 16px;
            }


        /* Hero border
        ----------------------------------------------------------- */

        #body_border {
            display: inline;
        }
            #body_border div:before,
            #body_border div:after {
                display: block;
                content: '.';
                text-indent: -9999px;
                position: fixed;
                z-index: 3000;
                background: #fff;
                /*-webkit-transition: all 0.5s cubic-bezier(.87,.17,.18,.85);
                -moz-transition: all 0.5s cubic-bezier(.87,.17,.18,.85);
                transition: all 0.5s cubic-bezier(.87,.17,.18,.85);*/
                transition: all 0.75s cubic-bezier(.85,-1.54,.66,.78);
            }
            #body_border_x:before {
                height: 0;
                width: 100%;
                top: 0;
                left: 0;
                right: 0;
            }
            #body_border_x:after {
                height: 0;
                width: 100%;
                bottom: 0;
                left: 0;
                right: 0;
            }
            #body_border_y:before {
                width: 0;
                height: 100%;
                top: 0;
                bottom: 0;
                left: 0;
            }
            #body_border_y:after {
                width: 0;
                height: 100%;
                top: 0;
                bottom: 0;
                right: 0;
            }

            .cms-frontend-toolbar-active #body_border_x:before {
                top: 28px;
            }
            body.page-top #body_border_y:before,
            body.page-top #body_border_y:after,
            body.page-top #body_border_x:before,
            body.page-top #body_border_x:after,
            body.navigation-open #body_border_y:before,
            body.navigation-open #body_border_y:after,
            body.navigation-open #body_border_x:before,
            body.navigation-open #body_border_x:after,
            body.fancybox-lock #body_border_y:before,
            body.fancybox-lock #body_border_y:after,
            body.fancybox-lock #body_border_x:before,
            body.fancybox-lock #body_border_x:after {
                transition: all 0.5s cubic-bezier(.79,.08,.3,.87);
            }
            body.page-top #body_border_y:before,
            body.page-top #body_border_y:after,
            body.navigation-open #body_border_y:before,
            body.navigation-open #body_border_y:after,
            body.fancybox-lock #body_border_y:before,
            body.fancybox-lock #body_border_y:after {
                width: 15px;
            }
            body.page-top #body_border_x:before,
            body.page-top #body_border_x:after,
            body.navigation-open #body_border_x:before,
            body.navigation-open #body_border_x:after,
            body.fancybox-lock #body_border_x:before,
            body.fancybox-lock #body_border_x:after {
                height: 15px;
            }

        

    /* Feature panel sections
    ----------------------------------------------------------- */

    .scrollpane {
        float: left;
        width: 100%;
    }
        .scrollpane section.panel_standard {
            width: 100%;
            position: relative;
            clear: both;
            float: left;
        }
            .scrollpane section.panel_standard:after {
                content: ".";
                clear: both;
                display: block;
                height: 0;
                line-height: 0;
                overflow: hidden;
                visibility: hidden;
            }
            .scrollpane section.panel_standard .image {
                width: 50%;
                float: right;
                min-height: 500px;
                position: absolute;
                right: 0;
                overflow: hidden;
            }
                .scrollpane section.panel_standard .image div {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    background-size: cover;
                    background-position: center 0;
                }
                body.device-handheld .scrollpane section.panel_standard .image div {
                    background-position: center center !important;
                }
                .scrollpane section.panel_standard.section-in-view .image {
                    position: fixed;
                    top: 0;
                }
                    body.cms-frontend-toolbar-active .scrollpane section.panel_standard.section-in-view .image {
                        top: 28px;
                    }
                .scrollpane section.panel_standard.section-above .image {
                    position: absolute;
                    bottom: 0;
                }

                .scrollpane.no-overheight section.panel_standard .image div {
                    top: 40px !important;
                    left: 40px !important;
                    right: 40px !important;
                    bottom: 40px !important;
                    background-position: center center !important;
                    background-repeat: no-repeat !important;
                    background-size: contain !important;
                }

            .scrollpane section.panel_standard .content {
                width: 50%;
                float: left;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                padding: 80px;
                /* FLEXBOX MUST HAVE A HEIGHT VALUE TO WORK WITH IE10, IE11*/
                height:100%;
                text-align: center;
                /* Flexbox to vertically center the content within the box */
                /* Testing this functionality at the moment */
                display: -ms-flexbox;
                display: -webkit-flex;
                display: -webkit-box;
                display: flex;
                -ms-flex-align: center;
                /*-webkit-align-items: center;
                -webkit-box-align: center;
                align-items: center;*/
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                -webkit-box-pack: center;
                justify-content: center;
                -webkit-flex-direction: column;
                -ms-flex-direction: column;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                flex-direction: column;
                /* End flexbox */
            }
                .scrollpane section.panel_standard .content.list-content-style {
                    text-align: center;
                    opacity: 0;
                    -webkit-transition: opacity 0.5s ease-in-out;
                    -moz-transition: opacity 0.5s ease-in-out;
                    transition: opacity 0.5s ease-in-out;
                }
                    .scrollpane section.panel_standard.section-in-proximity .content.list-content-style,
                    .scrollpane section.panel_standard.section-in-view .content.list-content-style,
                    .scrollpane section.panel_standard.section-above .content.list-content-style,
                    .device-handheld .scrollpane section.panel_standard .content.list-content-style {
                        opacity: 1;
                    }
                .scrollpane section.panel_standard .content > hr {
                    margin-bottom: 50px
                }
                .scrollpane section.panel_standard .content > .description {
                    padding-top: 40px;
                    margin-bottom: 40px;
                }
                .scrollpane section.panel_standard .content > .subtitle,
                .scrollpane section.panel_standard .content > .date {
                    padding: 0;
                    margin: 0;
                }

                .scrollpane section.content-type-feature_panels .content {
                    padding: 100px;
                    text-align: left;
                }
        .scrollpane section.panel_standard.layout-alt {

        }   .scrollpane section.panel_standard:nth-of-type(even) .image,
            .scrollpane section.panel_standard.layout-alt .image {
                float: left;
                right: auto;
                left: 0;
            }
            .scrollpane section.panel_standard:nth-of-type(even) .content,
            .scrollpane section.panel_standard.layout-alt .content {
                float: right;
            }

        /* Text panel style
        ----------------------------------------------------------- */

        .scrollpane section.panel_text {
            min-height: 0 !important;
            height: auto !important;
            clear: both;
            background: rgba(248,246,243,0.75);
        }
            .scrollpane section.panel_text .content {
                min-height: 0 !important;
                height: auto !important;
                padding: 120px 80px;
                width: 100%;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                max-width: 790px;
                margin: 0 auto;
            }
            .scrollpane section.panel_text.has_video .content {
                max-width: none;
            }
            .scrollpane section.panel_text .content hr {

            }



        /*  Slider panel
        ---------------------------------------------------------------------------------- */

        .records_list_slider {
            position: relative;
            clear: both;
            padding: 100px 0 100px;
            width: 100%;
            overflow: hidden;
        }
            .records_list_wrapper {
                position: relative;
            }
            .records_list_inner {
                outline: none;
            }
            .records_list_slider .pagination_controls > button {
                opacity: 0.8;
                height: 100%;
                top: 0;
                bottom: 0;
            }
                .records_list_slider .pagination_controls > button:hover {
                    opacity: 1;
                }
            .records_list_slider .item {
                display: block;
                height: 550px;
                padding: 0 25px;
                transition: opacity 800ms ease-in-out;
                opacity: 0.2;
                    opacity: 0.4;
            }
                .records_list_slider .item.is-selected {
                    opacity: 1;
                }
                .records_list_slider .item a {
                    display: block;
                    height: 550px;
                }
                .records_list_slider .item .image {
                    height: 550px;
                    padding: 0;
                    position: relative;
                    -webkit-touch-callout: none;
                    -webkit-user-select: none;
                    -khtml-user-select: none;
                    -moz-user-select: none;
                    -ms-user-select: none;
                    user-select: none;
                    display: block;
                }
                    .records_list_slider .item .image img {
                        position: static;
                        width: auto;
                        max-height: 550px;
                        height: 100%;
                        max-width: none;
                        pointer-events: none;
                        align-self: center;
                    }

            .records_list_slider_caption {
                min-height: 25px;
                text-align: center;
                padding: 35px 0 0;
                font-size: 15px;
                line-height: 20px;
            }
                .records_list_slider_caption.subtitle span {
                    margin: 0;
                }


            .pagination_controls {
                height: 0;
            }
                .pagination_controls > button {
                    position: absolute;
                    z-index: 6;
                    top: 85px;
                    width: 80px;
                    height: 80vh;
                    cursor: pointer;
                    text-indent: -200px;
                    background: url('/images/arrow_left.png') 25% center no-repeat;
                    background-size: 47px auto;
                    opacity: 0.15;
                    transition: opacity 400ms ease-in-out, transform 600ms cubic-bezier(.65,.06,.19,.96);
                    transform: translate3d(10px, 0, 0);
                    overflow: hidden;
                }
                    .pagination_controls > button.pagination_controls_next {
                        right: 0;
                        transform: translate3d(-10px, 0, 0);
                        background: url('/images/arrow_right.png') 75% center no-repeat;
                        background-size: 47px auto;
                    }
                    /* PERFORMANCE ISSUE - causes footer to repaint */
                    .pagination_controls > button:hover {
                        opacity: 1;
                        transform: translate3d(0, 0, 0);
                    }
                    .pagination_controls > button.pagination_controls_next:hover {
                        opacity: 1;
                        transform: translate3d(0, 0, 0);
                    }
                        .pagination_controls > button a {
                            position: absolute;
                            display: block;
                            top: 0;
                            bottom: 0;
                            left: 0;
                            right: 0;
                        }
                    .pagination_controls > button.disabled {
                        display: none;
                    }



    /* Records list
       Default styling for all content grids on the site
    ----------------------------------------------------------- */

    .records_list {

    }
        .records_list ul {

        }
        .records_list ul li {

        }
        .records_list ul li a,
        .records_list ul li a:visited {

        }
        .records_list ul li .image {

        }
        .records_list .content {

        }


    /* Image list
       A grid of images with captions e.g. Artists list
    ----------------------------------------------------------- */

    .image_list {

    }
        .image_list ul {

        }
        .image_list ul li {

        }
        .image_list ul li .image {

        }
        .image_list ul li .content {

        }


    /* Detail list
       A grid which usually has an image with more preview text/content
    ----------------------------------------------------------- */

    .detail_list {

    }
        .detail_list ul {

        }
        .detail_list ul li {

        }

        .detail_list ul li .image {

        }
        .detail_list ul li .content {

        }


    /* Full list
       A grid where each item fills the full width of the page
    ----------------------------------------------------------- */

    .full_list {

    }
        .full_list ul {

        }
        .full_list ul li {

        }
        .full_list ul li .image {

        }


    /* link
       Basic text link usually used throughout the site
    ----------------------------------------------------------- */

    .link {

    }
        .link a{

        }
        .link a,
        .link a:visited {

        }


    /* Miscellaneous
       Common classes used throughout the site, generally on grids
    ----------------------------------------------------------- */

    .description {

    }
    .subtitle,
    .date,
    .price {
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #886e49;
        font-weight: normal;
        font-size: 12px;
        line-height: 20px;
    }
    .button,
    .link {
        border: 0;
        float: none;
        display: inline-block;
    }
        .button:hover,
        .link:hover {
            background: none;
        }
        .button a,
        .link a {
            float: none;
            display: inline-block;
            border: 1px solid #886e49;
            padding: 5px 20px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #886e49;
            font-size: 12px;
            text-indent: 4px;
            font-weight: normal;
            -moz-transition: color 0.2s ease-in-out;
            -webkit-transition: color 0.2s ease-in-out;
            transition: color 0.2s ease-in-out;
            line-height: 36px;
            -moz-transition: background 0.2s ease-in-out;
            -webkit-transition: background 0.2s ease-in-out;
            transition: background 0.2s ease-in-out;
        }
        .button a:hover,
        .link a:hover {
            color: #fff;
            background: #886e49;
        }
    .divider {

    }


    /* Contact form ----------------------------------------- */

    #contact_form h1 {
        font-size: 40px;
        line-height: 50px;
    }
    #contact_form #contact_form_item_preview .content {
        font-size: 15px;
        line-height: 20px;
    }
    #contact_form .form .link {
        float: left;
    }


    /* Fancybox ----------------------------------------- */

    .fancybox-skin {
        color: #886e49;
    }
    .fancybox-overlay {
        background: rgba(0,0,0,0.5);
        z-index: 2100;
    }


    .section-pagenotfound #container {
        padding: 30px;
    }
    .section-pagenotfound h1 {
        font-size: 61px;
        line-height: 67px;
    }
    
    /* Accessibility links
    ----------------------------------------------------------- */
    #skiplink-container .skiplink,
    .skiplink-container .skiplink {
        position: fixed;
        left: -9999px;
        transform: none;
        text-decoration: none;
    }
        #skiplink-container .skiplink:focus,
        .skiplink-container .skiplink:focus {
            left: 20px;
            top: 0;
            transform: translateY(50%);
            padding: 20px 15px;
            background: #FFF !important;
            color: #000 !important;
        }
        .cms-frontend-toolbar-active #skiplink-container .skiplink:focus,
        .cms-frontend-toolbar-active .skiplink-container .skiplink:focus {
            top: 25px;
        }
        