html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/*****
 Legacy flexbox syntax (for now), for changing visual order
******/

.wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox; /* IE10 fix 
    display: -webkit-f*/lex;
    display: flex;
    -webkit-flex-flow: column wrap;
    -ms-flex-flow: column wrap; /* IE10 fix */
    flex-flow: column wrap;
    -ms-flex-pack: start; /* IE10 fix */
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -webkit-flex-align: center;
    -ms-flex-align: center; /* IE10 fix */
    align-items: center;
}

.commonwealth {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
}

header {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}

nav {
    -webkit-box-ordinal-group: 4;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 4;
    -webkit-order: 4;
    order: 4;
}

main {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
}

footer {
    -webkit-box-ordinal-group: 5;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 5;
    -webkit-order: 5;
    order: 5;
}

/***** *****/

.commonwealth,
header,
nav {
    max-width: 1340px;
}

main,
footer {
    max-width: 1340px;
}

.commonwealth {
    width: 100%;
}

    .commonwealth li a {
        font-family: "franklin-gothic-urw", sans-serif;
        /* font-size: 90%; */
    }

header {
    width: 100%;
}

nav {
    width: 100%;
}

main {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 0 !important;
}

    main table {
        width: 100%;
    }

.alerts {
    background: #ede6db;
    background: rgba(237, 230, 219, .5);
    padding: 20px;
    border-radius: 3px;
}

    .alerts h2 {
        color: #333;
        font-size: 1.4em;
        text-align: center;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, .7);
    }

    .alerts table {
        background: #fff;
        margin: 0;
        padding: 0;
    }

    .alerts th,
    .alerts td {
        vertical-align: top;
    }

    .alerts .alert_title {
        font-weight: bold;
        display: block;
    }

.call_out {
    background: #ede6db;
    background: rgba(237, 230, 219, .5);
    padding: 20px;
    border-radius: 3px;
}

.breadcrumb {
    overflow: hidden;
    width: 100%;
    padding: 10px 20px;
    opacity: .7;
    border-bottom: 1px solid hsla(52, 7%, 44%, .1);
}

    .breadcrumb ul {
        list-style: none;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0;
    }

        .breadcrumb ul li {
            display: inline;
            font-family: "franklin-gothic-urw", sans-serif;
            font-size: .9em;
            margin: 0 0 0 0;
            padding: 0;
        }

            .breadcrumb ul li:after {
                content: " \003e ";
            }

            .breadcrumb ul li:last-child:after {
                content: "";
            }

.page_links {
    max-width: 1140px;
    margin: 40px auto;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-size: 100%;
}

a {
    color: #537993;
}

img {
    max-width: 100%;
    height: auto;
}

a img {
    border: 0;
}

.commonwealth {
    
	padding: 8px 10px 7px 10px;
	background: #000;
	background: rgba(0, 0, 0, .9);
	color: #fff;
	min-height: 40px;
	
    overflow: hidden;
}

.commonwealth_links,
.commonwealth_search {
    display: none;
}

.menu_link {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 3px 0;
    float: right;
}

    .menu_link li a {
        display: inline-block;
        color: #fff;
        text-decoration: none;
        font-family: Verdana, sans-serif;
        font-size: 80%;
        font-weight: bold;
    }

#agency-header {
    overflow: hidden;
    background: #2b5135;
}

    #agency-header h1 {
        font-family: "abril-titling", Georgia, serif;
        text-transform: uppercase;
        line-height: 1em;
        font-size: 150%;
        color: #fff;
        text-shadow: 1px 1px 0 #000;
        text-align: center;
        margin: 0;
        padding: 0;
    }

        #agency-header h1 .vdo {
            display: block;
            font-size: 80%;
        }

        #agency-header h1 .gif {
            display: block;
            font-size: 125%;
        }

        #agency-header h1 .ccp-tag {
            font-size: 60%;
            font-weight: normal;
            opacity: .9;
            margin-top: 7px;
            display: block;
        }

#agency-header-photo {
    padding: 20px 10px;
}

form#agency-search {
    margin: 0 auto 2px auto;
    width: 100%;
    display: inline-block;
    text-align: center;
}

    form#agency-search label,
    form#agency-search input#agency-search-submit {
        display: none;
    }

    form#agency-search input#agency-search-box {
        margin: 0;
        padding: .25em;
        font-family: "franklin-gothic-urw", sans-serif;
        border-radius: 3px;
        font-size: 1.2em;
        text-align: center;
        width: 100%;
        border: 0;
    }

header h1 a {
    color: #fff;
    text-decoration: none;
}

nav {
    overflow: hidden;
    border: 1px solid #fff;
    border-width: 1px 0 0 0;
}

#nav-menu {
    background: #2a5235;
    border: 1px solid rgba(255, 255, 255, .5);
    border-width: 1px 0;
}

    #nav-menu ul {
        background: transparent;
    }

        #nav-menu ul li a {
            border: 0;
        }

    #nav-menu a {
        font-family: "franklin-gothic-urw", sans-serif;
        font-weight: normal;
        font-size: 1.2em;
        text-transform: uppercase;
        color: #fff;
        padding: .75em;
        text-shadow: 1px 1px 0 rgba(0, 0, 0, .7);
    }

    #nav-menu .current-menu-item a {
        /* background: rgba(121, 147, 83, .9); */
        background: #356341;
    }

nav ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

    nav ul li {
        display: block;
    }

        nav ul li a {
            display: block;
            font-weight: bold;
            padding: 1em .5em;
            text-decoration: none;
            font-family: Verdana, sans-serif;
            font-size: 75%;
            color: #000;
        }

main {
    max-width: 1340px;
    margin: 0 auto;
    padding: 5px;
    border-radius: 0 0 3px 3px;
    background: rgba(255, 255, 255, .95);
}

    main h1,
    main h2,
    main h3,
    main h4,
    main h5,
    main h6 {
        margin: 0 0 20px 0;
        padding: 0;
        color: #333;
    }

    main h1 {
        font-family: "abril-titling", Georgia, serif;
        font-weight: bold;
        font-size: 2.4em;
        text-align: left;
        margin-top: 20px;
    }

    main h2 {
        font-family: "abril-titling", Georgia, serif;
        font-weight: bold;
        font-size: 1.6em;
        text-align: left;
    }

    main h3 {
        font-family: "abril-titling", Georgia, serif;
        font-weight: bold;
        font-size: 1.2em;
        text-align: left;
    }

    main p,
    main li,
    main address {
        font-family: "franklin-gothic-urw", sans-serif;
        font-size: 1.2em;
        font-style: normal;
        line-height: 175%;
        color: #333;
        margin: 1.5em 0;
        padding: 0;
    }

    main li {
        margin: 0;
    }

        main li li,
        article li li {
            font-size: 1em;
        }

    main article {
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px;
        background: transparent;
    }

.home main article {
    max-width: 1340px;
}

article table {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1em;
    margin: 40px 0;
    padding: 0;
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

    article table td,
    article table th {
        padding: .5em;
        margin: 0;
        border: 0;
    }

    article table tr {
        /*border-bottom: 1px solid #eee;*/
    }

    article table th {
        background: #666;
        color: #fff;
        text-align: left;
        font-weight: bold;
    }

article p.wp-caption-text,
article .wp-caption-text {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 90%;
    color: #333;
}

.gallery img {
    border-color: transparent !important;
}

form label {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1em;
    font-weight: bold;
}

figure,
figcaption {
    margin: 0;
    padding: 0;
}

footer {
    /* background: rgba(92, 113, 58, .95); */
    background: #405a47;
    background: rgba(42, 82, 53, .8);
    margin: 0 auto;
    padding: 20px;
    max-width: 1340px;
    text-align: center;
}

    footer p,
    footer li,
    footer a {
        font-family: "franklin-gothic-urw", sans-serif;
        font-size: 1em;
        color: #fff;
        color: rgba(255, 255, 255, .9);
        text-shadow: 1px 1px 0 rgba(0, 0, 0, .7);
    }

    footer .tertiary ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    footer li {
        margin: 20px 0;
    }

        footer li a {
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, .9);
        }

    footer ul.legal,
    footer ul.required_links {
        list-style: none;
        margin: 40px 0;
        padding: 0;
    }

        footer ul.legal li,
        footer ul.required_links {
            margin: 0;
            padding: 0;
            line-height: 150%;
            color: rgba(255, 255, 255, .7);
        }

            footer ul.legal li a,
            footer ul.required_links {
                color: rgba(255, 255, 255, .7);
            }

    footer small {
        display: block;
        text-align: center;
        margin: 20px auto;
    }

.meta {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post_meta, .meta {
    font-style: italic;
    color: #777;
}

.page_links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none;
}

.social {
    overflow: hidden;
    margin: 20px auto 40px auto;
    width: 100%;
}

    .social ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

.social_wrapper {
    position: relative;
    padding-bottom: 15% !important;
    height: 0;
    width: 25%;
    float: left;
}

    .social_wrapper a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        -webkit-filter: grayscale(50%);
        filter: grayscale(50%);
        transition: .25s linear all;
        -webkit-transition: .25s linear all;
    }

        .social_wrapper a:hover {
            filter: grayscale(0%);
            -webkit-filter: grayscale(0%);
        }

.wp-caption {
    max-width: 96%;
}

.licenses_faq_link {
    font-size: 90%;
}

/*****
PNG-only for now; SVG versions with PNG fallback to come
*****/

a.facebook {
    background: #3b5998 url("../images/facebook.png") 50% 50% no-repeat;
    background-size: 33%;
    border-radius: 3px 0 0 3px;
}

a.twitter {
    background: #00aced url("../images/twitter.png") 50% 50% no-repeat;
    background-size: 33%;
}

a.instagram {
    background: #5e231c url("../images/instagram.png") 50% 50% no-repeat;
    background-size: 33%;
}

a.youtube {
    background: #e52d27 url("../images/youtube.png") 50% 50% no-repeat;
    background-size: 33%;
    border-radius: 0 3px 3px 0;
}

footer .social_wrapper {
    padding-bottom: 20% !important;
}

footer a.facebook,
footer a.twitter,
footer a.instagram,
footer a.youtube {
    background-size: 50%;
}

a.button.cta {
    /*
		background: rgba(214, 137, 3, 1);
	border-bottom: 2px solid rgba(173, 111, 3, 1);
*/
    background: rgba(243, 108, 33, 1);
    border-bottom: 2px solid rgba(187, 84, 24, 1);
}

a.button {
    text-decoration: none;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    display: block;
    margin: 0 auto 20px auto;
    padding: .5em;
    font-family: "franklin-gothic-urw", sans-serif;
    font-weight: bold;
    font-size: 1.4em;
    text-transform: uppercase;
    border-radius: 4px;
    background: #799353;
    background: hsla(84,28%,45%,1);
    border-bottom: 2px solid rgba(92, 113, 58, 1);
    -webkit-transition: .25s all linear;
    transition: .25s all linear;
    background: rgba(42, 82, 53, 1);
    border-bottom: 2px solid #1f3109;
}

    a.button:hover {
        background: hsla(84, 28%, 49%, 1);
        background: rgba(57, 111, 72, 1);
    }

    a.button.cta:hover {
        background: hsla(38, 97%, 47%, 1);
        background: hsla(38, 97%, 47%, 1);
        border-bottom: 2px solid rgba(173, 111, 3, 1);
    }

.alignleft,
.alignright {
    float: none;
    display: block;
    margin: 20px auto;
}

.aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

img.aligncenter {
    display: block;
    margin: 20px auto;
}

article h1 {
    text-align: center;
    margin: 20px 0 40px 0;
}

.alert_banner a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    background: #d61203;
    color: #fff;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1.2em;
    text-shadow: 1px 1px 0 #000;
    text-align: center;
    padding: 0.5em;
    margin: 20px auto 20px auto;
    border-radius: 4px;
}

.social {
    margin-bottom: 0px !important;
}

.prefilled-user-details #field_6_6,
.prefilled-user-details #field_6_2,
.prefilled-user-details #field_6_3,
.prefilled-user-details #field_6_4,
.prefilled-user-details #field_6_5 {
    display: none;
}

.aside-feature {
    background: rgba(223, 201, 162, .5);
    padding: 20px;
    width: 100%;
    margin: 40px auto;
}

.conservation-police #mc-embedded-subscribe-form input {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1.2em;
    padding: .5em;
}

    .conservation-police #mc-embedded-subscribe-form input[type="email"] {
        width: 50%;
        float: left;
        margin-right: 2%;
    }

    .conservation-police #mc-embedded-subscribe-form input[type="submit"] {
        font-family: "franklin-gothic-urw", serif;
        font-size: 1.2em;
        text-align: center;
        padding: .25em;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 0;
        border-radius: 3px;
        background: #2a5235;
        color: #fff;
        padding: .5em;
        text-shadow: 1px 1px 0 rgba(0, 0, 0, .7);
        float: left;
    }
