    
    /* Fonts */

    @font-face {
        font-family: 'open_sans_reg';
        src:    url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype'),
                url('../fonts/OpenSans/Regular/OpenSans-Regular.ttf') format('truetype');
    }

    @font-face {
        font-family: 'cerebri-sans-regular';
        src:    url('../fonts/cerebri-sans/cerebri-sans-regular.eot') format('eot'),
                url('../fonts/cerebri-sans/cerebri-sans-regular.eot?#iefix') format('eot'),
                url('../fonts/cerebri-sans/cerebri-sans-regular.woff2') format('woff2'),
                url('../fonts/cerebri-sans/cerebri-sans-regular.ttf') format('truetype');
    }
    
    /* Globals */

    * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    div, article, section, header, footer, nav, li {
        position: relative;
    }

    html, body {
        height: 100%;
        max-height: 100%;
        padding: 0;
        margin: 0;
    }

    body {
        padding: 0;
        margin: 0;
        font-family: "cerebri-sans-regular", sans-serif;
        color: rgb(70,65,57);
        moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
    
    #body_top_spacer {
        height: 20px;
        width: 100%;
        z-index: 10000;
    }
    
    #body_container {
        width: 100%;
        width: 93%;
        max-width: 1200px;
        margin: 0 auto;
        -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.15);
        -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.15);
        box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.15);
    }
    
    body,
    #body_top_spacer,
    .site_footer,
    .site_footer .full {
        background: rgb(240,240,240);
    }
    
    .clearfix:after {
        content: '';
        display: block;
        clear: both;
    }

    ::-moz-selection, ::selection {
        background: #1a79de;
        color: white;
    }

    h1, h2, h3, h4, h5 {
        font-weight: normal;
        margin: 0;
    }
    
    a {
        outline: none;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }
    
    img {
        width: 100%;
        height: auto;
        float: left;
        border: none;
        outline: none;
    }
     
    /* Inputs */

    .icon_button {
        color: rgb(30,40,50) !important;
        display: block;
        font-size: 16px !important;
        padding: 15px 16px 15px 18px !important;
        border-radius: 0;
        outline: none;
        font-family: "cerebri-sans-regular", sans-serif;
        cursor: pointer;
        background: rgb(240,240,240) !important;
        border: 1px solid rgb(240,240,240) !important; /* overrides anchor style */
    }
    .icon_button i {
        color: rgb(50,50,50) !important;
    }
    .icon_button:hover {
        color: black !important;
        border: 1px solid rgb(60,140,230) !important;
        text-decoration: none !important;
    }
    .icon_button:hover i {
        color: black !important;
    }
    .icon_wrapper {
        display: inline-block;
        float: right;
        padding: 3px 0 3px 20px;
        font-size: 12px;
    }

    .dark_on_light_input::-webkit-input-placeholder {
        color: rgb(70,70,70);
        opacity: 0.7;
    }
    .dark_on_light_input:-ms-input-placeholder {
        color: rgb(70,70,70);
        opacity: 0.7;
    }
    .dark_on_light_input::-moz-placeholder {
        color: rgb(70,70,70);
        opacity: 0.7;
    }
    .dark_on_light_input:-moz-placeholder {
        color: rgb(70,70,70);
        opacity: 0.7;
    }
    
    .dark_on_light_input {
        font-size: 16px;
        padding: 12px 15px;
        font-family: "cerebri-sans-regular", sans-serif;
        outline: 0;
        border: none;
        color: rgb(70,70,70);
        border: 1px solid rgb(150,150,150);
        width: 100%;
        width: calc(100%);
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        appearance: none;
        -webkit-appearance: none;
    }
    
    .input_label {
        display: block;
        padding: 0 0 8px;
        font-size: 13px;
    }
    
    .prompt_required {
        color: rgb(225,0,0);
    }
    
    .prompt_required::before {
        content: "Required: ";
    }

    /* Divisions */

    .wrapper {
        height: auto;
    }

    .full {
        width: 100%;
        height: auto;
        float: left;
        background: #d5d4d1;
    }

    /* Header */

    #header_image_container {
        z-index: 2;
        background-size: cover;
        background-position: center;
    }
    #header_image_container.home {
        background-image: url('/img/bg83.jpg');
    }
    #header_image_container.about {
        background-image: url('/img/bg85.jpg');
    }
    #header_image_container.contact {
        background-image: url('/img/bg82.jpg');
    }
    #header_image_container.terms {
        background-image: url('/img/bg49.jpg');
    }
    #header_image_container.privacy {
        background-image: url('/img/bg76.jpg');
    }
    #header_image_container.security {
        background-image: url('/img/bg77.jpg');
    }
    
    #header_image_shade {
        background: rgba(30,40,48,0.75);
        height: 100px;
    }
    
    .site_header {
        float: left;
        position: absolute;
        top: 0;
        z-index: 1000;
        left: 0;
        right: 0;
    }

    a.logo, #menu_icon_container, #menu_icon_container i {
        letter-spacing: 4px;
        color: white;
        text-decoration: none;
        text-shadow: 0px 0px 2px rgba(0,0,0,0.25);
    }

    a.logo {
        font-family: 'open_sans_reg', sans-serif;
        font-size: 21px;
        padding: 35px 40px;
        display: inline-block;
        white-space: nowrap;
    }
    
    /*a.logo:hover, #menu_icon_container i:hover {
        color: rgb(20,25,30);
    }*/
    
    #menu_icon_container {
        position: absolute;
        top: 0;
        right: 0;
    }
    
    #menu_icon_container i {
        font-size: 21px;
        padding: 40px 38px;
        cursor: pointer;
    }
    
    #close_menu_icon {
        display: none;
    }
    
    /* Navigation cells */

    #nav_container {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: absolute;
        top: -400px;
        margin-top: 100px;
        right: 0;
        z-index: 1;
        overflow: hidden;
        background: white;
    }
    
    a.nav_cell {
        display: block;
        white-space: nowrap;
        text-align: center;
        margin: 0;
        color: rgb(60,65,70);
        margin-bottom: 3px;
        background: rgb(245,245,245);
    }

    a.nav_cell.active {
        cursor: default;
        color: rgb(60,65,70);
        background: white;
        text-decoration: none !important;
    }

    .nav_text_container {
        padding: 20px 60px;
        display: block;
        font-size: 16px;
    }
    
    /* Page Body */
    
    .site_content {
        background: white;
        margin-bottom: 10px;
    }

    .centering_container {
        margin: 0 auto;
        max-width: 960px;
        padding: 40px 40px 60px;
    }
    
    .centering_container p {
        font-size: 16px;
        margin-top: 0;
        line-height: 1.5;
        padding: 8px 0 12px;
    }
    
    .centering_container p.text_large {
        font-size: 18px;
    }

    .centering_container a {
        color: rgb(60,140,230);
        font-size: 18px;
        padding: 15px 20px 15px 0;
        display: inline-block;
    }
            
    a.inline_link {
        font-size: inherit !important;
        display: inline !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    h2.section_header {
        display: block;
        font-size: 20px;
        color: rgb(60,65,70);
        margin-top: 50px;
        padding-bottom: 10px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgb(200,205,210);
        width: 100%;
        text-transform: uppercase;
    }
    h2.section_header.extra_top_spacing {
        padding-top: 15px;
    }
    #projects_top_spacer { /* make up space below SELECTED WORK */
        height: 18px;
    } 
    
    h3.sub_header {
        font-size: 20px;
        color: rgb(60,65,70);
        line-height: 2;
        padding-bottom: 10px;
        margin-bottom: 0 !important;
        font-size: 20px;
    }
        
    h3.sub_header i {
        padding-right: 10px;
    }
    
    .line_break {
        display: block;
        height: 20px;
    }
    
    /* Home page */
    
    .project_image {
        width: 40%;
        height: auto;
        float: left;
    }

    .project_image img {
        border: 1px solid rgb(210,215,220);
    }
    
    .project_detail_inner {
        width: 60%;
        height: auto;
        float: left;
        padding: 25px 0 0 60px;
        overflow: hidden;
        display: inline-block;
    }
    
    .project_detail_inner h4, .project_detail_inner a {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .project_spacer {
        clear: both;
        height: 48px;
    }
    
    #projects_bottom_spacer {
        clear: both;
        height: 43px;
    }
        
    /* Footer */
    
    .site_footer {
        font-family: 'open_sans_reg', sans-serif;
        height: auto;
        margin: auto;
        text-align: center;
    }

    .site_footer .full {
        padding: 40px 0 35px;
    }

    .site_footer ul.menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .site_footer .menu_item {
        display: inline-block;
        padding: 10px 0;
    }
    
    .site_footer a {
        padding: 10px 20px;
        color: #534e4b;
    }
    
    .site_footer .active {
        text-decoration: none !important;
        cursor: default;
        color: rgb(120,125,130);
    }
    
    .sub_footer {
        display: block;
        font-size: 12px;
        padding: 20px 0;
        margin: 0;
        list-style: none;
    }
    .sub_footer li {
        display: inline-block;
        padding: 0;
        margin: 0;
    }
    .sub_footer a, #copyright {
        display: inline-block;
        padding: 10px 5px;
    }
    
     
    @media screen and (max-width: 1200px) {

        #body_container {
            width: 100%;
        }
        
        #body_top_spacer {
            display: none;
        }
    
    }
    
    @media screen and (max-width: 820px) {

        .project_image {
            min-width: 360px;
            height: auto;
            float: left;
        }
        
        .project_detail_inner {
            width: 100%;
        }        
        
        .project_detail_inner {
            padding: 20px 0 10px;
        }
        
        .project_spacer {
            height: 27px;
        }
    
        #projects_bottom_spacer {
            height: 5px;
        }
        
        .centering_container {
            padding: 30px 40px 50px;
        }

        h2.section_header {
            margin-top: 40px;
            margin-bottom: 25px;
        }
        h2.section_header.extra_bottom_spacing {
            margin-bottom: 28px;
        }

    }
    
    @media screen and (max-width: 767px) {

        #nav_container {
            width: 100%;
        }        
        
    }
    
    @media screen and (max-width: 540px) {
                        
        .project_image {
            width: 100%;
            min-width: 0;
            height: auto;
            float: left;
        }
        
        
        h3.sub_header {
            font-size: 18px;
        }     
        
        .centering_container p.text_large {
            font-size: 16px;
        }

        a.find_out_more {
            font-size: 16px;
        }
    
        .project_detail_inner h3 {
            margin-bottom: 5px;
        }


        h2.section_header {
            margin-bottom: 20px;
            font-size: 18px;
        }
        h2.section_header.extra_bottom_spacing {
            margin-bottom: 25px;
        }
        
        .site_footer .menu_item {
            display: block;
            padding: 15px 0;
        }
        
        .site_footer .menu_link {
            padding: 10px 15px;
        }

    }
    
    @media screen and (max-width: 440px) {
                    
        a.logo {
            padding-left: 25px;
            padding-right: 20px;
        }
        
        #menu_icon_container i {
            padding-left: 28px;
            padding-right: 23px;
        }
        
        .centering_container {
            padding-left: 25px;
            padding-right: 25px;
        }
        
    }