/*Pattern 02 - Mostly Fluid*/
body {
    font-size: 1em;
}

/*Pattern 1 - Simply Stacked*/
header h1 {
    margin-bottom: 0.25em;
}

nav li {
    list-style: none;
    padding: 0.25em 0.5em 0 0;
    font-weight: bold;
}

nav li a {
    text-decoration: none;
}

@media only screen and (min-width: 750px) {
    header h1 {
        float: left;
        margin: 0;
    }

    nav {
        float: left;
    }

    nav li {
        display: inline-block;
    }
}

/*end simply stacked*/

header, footer, section {
    padding: 0.75em;
}

section, article {
    overflow: auto;
}

article {
    padding: 1em;
}

article img {
    /*width: 100%;*/
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.primary {
    padding-top: 0;
}

.secondary p {
    margin-bottom: 0;
}

h2, h3, h4 {
    border-bottom: 1px solid darkgray;
}

@media screen and (min-width: 600px) {
    body {
        /*font-size: 0.875em;*/
        /*font-size: 10%;*/
    }

    header, footer, section {
        padding: 1em;
        margin-bottom: 1em;
    }

    .primary img {
        float: left;
        margin: 0.5em;
        border-style: solid;
        border-color: grey;
        border-width: 0.1em;
        height: auto;
        max-width: 50%;
    }

    .secondary {
        width: 50%;
        float: left;
    }
}

/* Trick for div with semi-transparent background image */
/* http://stackoverflow.com/questions/7241341/can-i-set-an-opacity-only-to-the-background-image-of-a-div */
.contentOverBGPic {
    position: relative;
    z-index: 1;
}

.contentOverBGPic .bgPicForContent {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*background: url(/images/amber-trim.jpg) center center;*/
    opacity: 0.15;
    width: 100%;
    height: 100%;
}

/* For footer items */
.copyright {
    float: left;
}

.privacy {
    float: right;
}