@import url('../../../Default/Css/screen/DefaultScreen.css');

/* ############################################################################
   ## 
   ##  OneCol1
   ##
   ############################################################################ 

   | Header                               |
   |______________________________________|
   | SubHeader                            |
   |______________________________________|
   | PageTop                              | (TrailNav, PageFunctions)
   |______________________________________|
   |                                      |
   | Primary                              |
   |                                      |
   |______________________________________|
   | Secondary                            |
   |______________________________________|
   | PageBottom                           | (PageFunctions)
   |______________________________________|
   | Footer                               |
   |                                      |
   
    <TemplateWrapper>
        <Template>
            <AccessibilityToolbar />
            <Header />
            <SubHeader />
            <Content>
                <Page>
                    <PageTop>
                        <TrailNav />
                        <PageFunctionsTop />
                    </PageTop>
                    <PageContent>
                        <Primary />
                        <Secondary />
                    </PageContent>
                    <PageBottom>
                        <PageFunctionsBottom />
                    </PageBottom>
                </Page>
                <Tertiary />
            </Content>
            <Footer />
        </Template>
    </TemplateWrapper>
*/

/* ############################################################################
   ## 
   ##  Custom Design Options
   ##  ADD/CHANGE RULES HERE.
   ##
   ##  - Note that some rules are overridden by fixed design elements below.
   ##
   ######################################################################### */

#Header {
    max-width: 1440px;
    margin: 0 auto;
}

#SubHeader {
    max-height: 400px;
    overflow: hidden;
}

#Page {
}

    #PageTop {
    }

    #Page #PageContent {
    }
    
        #Page #PageContent #Primary {
			padding: 10px 20px;
            margin-top: -88px;
        }

            #Page #PageContent #Primary #PrimaryContent {
            }

        #Page #PageContent #Secondary {
        }

            #Page #PageContent #Secondary #SecondaryContent {
                background: #e6e6e6;
                color: #000;
            }

                #Page #PageContent #Secondary #SecondaryContent h2,
                #Page #PageContent #Secondary #SecondaryContent h3,
                #Page #PageContent #Secondary #SecondaryContent h4,
                #Page #PageContent #Secondary #SecondaryContent a:link,
                #Page #PageContent #Secondary #SecondaryContent a:visited {
                    color: #006d6d;
                }

                #Page #PageContent #Secondary #SecondaryContent a:hover {
                    color: #000;
                }

    #PageBottom {
        clear: both;
        padding: 10px;
    }

/* ############################################################################
   ## 
   ##  Fixed 1 Column Design Elements
   ##  DON'T CHANGE.
   ##
   ##  - position: relative; makes sure other stuff always works.
   ##  - float with width ensures consistent layout in all browsers, and matches all our other templates.
   ##  - width: 100%; on all parent divs of main content ensures content fills the screen, which is best for most designs.
   ##  - box-sizing: border-box; just in case padding/borders are added in other parts of this file.
   ##
   ######################################################################### */

#Content {
    position: relative;
    /* float: left; */
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto !important;
}

    #Page #PageContent {
        position: relative;
        float: left;
        box-sizing: border-box;
        width: 100%;
    }

#Tertiary {
    display: none;
}

/* ############################################################################
   ## 
   ##  Layout for Different Screen Sizes
   ##
   ##  Be sure to co-ordinate these layouts with the responsive sizes used in all templates in the site, or you'll run into trouble.
   ##
   ######################################################################### */

@media screen and (max-width: 767px) {
    
    #Page #PageContent {
    }

}