@import url('../../Default/Css/Default.css');

/* ############################################################################
   ## 
   ##  OneCol1
   ##
   ############################################################################ 

   | Header                               |
   |______________________________________|
   | SubHeader                            |
   |______________________________________|
   | PageTop                              | (TrailNav, PageFunctions)
   |______________________________________|
   |                                      |
   | Primary                              |
   |                                      |
   |______________________________________|
   | Secondary                            |
   |______________________________________|
   | PageBottom                           | (PageFunctions)
   |______________________________________|
   | Footer                               |
   |                                      |
   
    <TemplateWrapper>
        <Template>
            <AccessibilityToolbar />
            <Header />
            <SubHeader />
            <PageTop>
                <TrailNav />
                <PageFunctionsTop />
            </PageTop>
            <Content>
                <Page>
                    <PageContent>
                        <Primary />
                        <Secondary />
                    </PageContent>
                </Page>
                <Tertiary />
            </Content>
            <PageBottom>
                <PageFunctionsBottom />
            </PageBottom>
            <Footer />
        </Template>
    </TemplateWrapper>
*/

/* ############################################################################
   ## 
   ##  Custom Design Options
   ##  ADD/CHANGE RULES HERE (colors, styling, etc.)
   ##
   ##  - Note that some rules are overridden by fixed design elements below.
   ##  - Change column and page widths and other options in Variables.css.
   ##
   ######################################################################### */

#Page {
}

    #PageTop {
    }

    #PageContent {
    }
    
        #Primary {
            padding-bottom: var(--site-padding);
        }

            #Primary #PrimaryContent {
            }

        #Secondary {
        }

            #Secondary #SecondaryContent {
                padding: var(--site-padding-thick);
                background: var(--site-color-ui-lighter);
            }

    #PageBottom {
    }

@media screen and (max-width: 1200px) {

}

/*
    Full width template
*/

body.template-full-width #Content {
}

/* ############################################################################
   ## 
   ##  Fixed Design Elements
   ## 
   ##  DON'T CHANGE unless you want to re-test templates in all browsers.
   ## 
   ##  - Modify column widths in Variables.css. 
   ##  - Modify colors and styling in the section above.
   ##  - If you do make changes BE SURE to align all changes across
   ##    OneCol1.css, TwoCols1.css, TwoCols2.css, ThreeCols1.css and templates 
   ##    based on these: they were all tested together as a single collection.
   ##
   ######################################################################### */

#Template {
    /* See notes about --content-area-padding and --content-area-width on DefaultPageLayout.css */
    --content-area-width: var(--site-page-maxwidth-mid);
    --content-area-padding: var(--site-page-padding-horizontal);
}

#Content {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: var(--content-area-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--content-area-padding);
    padding-right: var(--content-area-padding);
}

    #Page {
        position: relative;
        box-sizing: border-box;
        width: 100%;
    }

        #PageContent {
            position: relative;
            box-sizing: border-box;
            width: 100%;
        }

#Tertiary {
    display: none;
}

@media screen and (min-width: 1501px) {

    #PageTop {
        /*padding-left: 0;*/ /* The page content is flush against the left of the page so move the trail nav there too. */
    }

}

@media screen and (max-width: 1500px) {
    /* This breakpoint matches --content-area-width width, not --site-breakpoint-large. */

    #Template {
        --content-area-width: 100vw;
        --site-page-padding-horizontal: var(--site-padding);
    }

}

@media screen and (max-width: 600px) {

    #Template {
        --site-page-padding-horizontal: var(--site-padding-thin);
    }

}