@-webkit-viewport {
    width: device-width;
    zoom: 1.0;
}
@-moz-viewport {
    width: device-width;
    zoom: 1.0;
}
@-ms-viewport {
    width: device-width;
    zoom: 1.0;
}
@-o-viewport {
    width: device-width;
    zoom: 1.0;
}
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* ------------------------------------------------------
**** Box Model Reset
------------------------------------------------------ */

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

/* ------------------------------------------------------
**** Breakpoints
------------------------------------------------------ */

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */

}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */

}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */

}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */

}

/* BP Extra large */
@media only screen and (min-width: 90em) { /* 1440px */

}

/* ------------------------------------------------------
**** Typography
------------------------------------------------------ */

html {
    font-size: 62.5%;
}

body {
    line-height: normal;
    font-size: 1.4rem;
    font-family: "myriad-pro", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-style: normal;
    color: #545454;
}

/* ---- Headings ---- */
h1, .h1 {
    margin: 0 0 19px 0;
    font-family: "trajan-pro-3", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.2rem;
    color: #594e32;
}

h2, .h2 {
    margin: 0 0 12px 0;
    line-height: 1.25em;
    font-family: "trajan-pro-3", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    color: #594e27;
}

h3, .h3 {
    margin: 0 0 8px 0;
    line-height: 1.25em;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 1.6rem;
    color: #b49242;
}

h4, .h4 {
    margin: 0 0 8px 0;
    line-height: 1.4em;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 1.2rem;
    color: #000;
}

h5, .h5 {
    font-size: 1.2rem;
}

h6, .h6 {
    font-size: 1.2rem;
}

p,
ol,
ul,
dl,
address {
    margin: 0 0 0.9rem;
}

small {
    font-size: 1.2rem;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

/* ---- Lists ---- */
ul,
ol {
    padding: 0 0 0 2rem;
}

li ul,
li ol {
    margin: 1rem 0;
}

/* -- mainbar lists -- */
.mainbar ul {
    margin: 0 0 1em 2em;
    padding: 0 0 0 0;
    list-style-type: disc;
}

.mainbar ol {
    margin: 0 0 1em 2em;
    padding: 0 0 0 0;
    list-style-type: decimal;
}

.mainbar li {
    margin: 0 0 .75em 0;
    line-height: 1.4em;
}

.mainbar ul ul,
.mainbar ol ul {
    margin: .5em 0 .75em 3em;
}

.mainbar ol ol,
.mainbar ul ol {
    margin: .5em 0 .75em 3em;
    list-style-type: lower-alpha;
}

/* ---- Breadcrumbs ---- */
.breadcrumb {
    background: none;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-image-source: url('../images/img_border-decal--breadcrumb.png');
    border-image-slice: 16;
    border-image-width: 20px;
    border-image-repeat: round;
    margin: 0 0 30px 0;
    padding: 5px 0 5px 15px;
    line-height: 1.5;
    min-height: 41px;
}

.breadcrumb a:link,
.breadcrumb a:visited {
text-decoration: underline;
}

.breadcrumb a:hover,
.breadcrumb a:focus,
.breadcrumb a:active {
text-decoration: none;
}

/* ---- HR ---- */
hr, .hr {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    display: block;
    margin: 0 0 28px 0;
    border-top: 1px #99908c solid;
    border-bottom: 1px #413733 solid;
    height: 0px;
}

/* ---- Links ---- */
a:link,
a:visited {
    text-decoration: none;
    color: #b49242;
}

a:hover,
a:focus,
a:active {
    text-decoration: underline;
    color: #b49242;
}

/* ---- Expando Styles ---- */

a.expando-opener-link {
    background: url('../images/deco_expando.png') transparent 0 1px no-repeat;
    padding: 0 0 0 10px;
}

h2.expando-opener-heading {
    background: url('../images/deco_h2_expando.png') transparent 0 4px no-repeat;
    padding: 0 0 0 13px;
}

h2.expando-opener-heading.expanded {
    background: url('../images/deco_h2_expando_opened.png') transparent 0 4px no-repeat;
}

h3.expando-opener-heading {
    background: url('../images/deco_h3_expando.png') transparent 0 2px no-repeat;
    padding: 0 0 0 13px;
}

h3.expando-opener-heading.expanded {
    background: url('../images/deco_h3_expando_opened.png') transparent 0 2px no-repeat;
}

/* ------------------------------------------------------
**** Design Patterns
------------------------------------------------------ */
/* ---- Background colours ---- */

/* White */
.bg-white {
    background-color: #fff;
}

/* Light grey */
.bg-lightgrey {
    background-color: #f0f0f3;
}

/* Textured */
.bg-textured {
    background: url('../images/bg_body.jpg') transparent left top repeat;
}


/* ---- Buttons ---- */
/* text link button with hovering bg image */
.button,
.button:visited {
background: #000 url(../images/btn_black.png) repeat-x 0 0;
padding: 10px 15px;
cursor: pointer;
border: 0px solid #888;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0 2px 2px #a6aec0;
-webkit-box-shadow: 0 2px 2px #a6aec0;
text-shadow: 0 1px 1px #000;
text-decoration: none;
font-weight: bold;
font-size: 12px;
color: #fff;
}

.button:hover,
.button:focus,
.button:active {
background-position:0 -8px;
text-decoration: none;
color: #fff;
}

/* ------------------------------------------------------
**** Images
------------------------------------------------------ */

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

#logo img {
    margin: 0 0 0 0;
    display: block;
    border: 0;
}

img.left {
    margin: 0 10px 5px 0;
    float: left;
}

img.right {
    margin: 0 0 5px 10px;
    float: right;
}

img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

a img {
    border-style: none;
}

#logo img a {
    outline: none;
}

/* ------------------------------------------------------
**** Forms
------------------------------------------------------ */
form {
    margin: 0;
    padding: 0;
}

input {
    margin: 0;
    padding: 0;
}

    /* Generic/default styling for form elements */
input.textbox {
    height: 32px;
}

input.textbox,
select,
textarea {
    background-color: #fff;
    padding: 6px 6px;
    border: 1px #888 solid;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    vertical-align: middle;
    font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
    font-size: 12px;
    color: #000;
    max-width: 160px;
}

input.textbox:focus,
select:focus,
textarea:focus {
    outline-width: 0;
    border-color: #555;
    box-shadow: 0 0 6px #888;
    -moz-box-shadow: 0 0 6px #888;
    -webkit-box-shadow: 0 0 6px #888;
}

span.field-info {
    color: #01387A;
    font-weight: bold;
    margin: 0px;
    font-size: 10px;
    vertical-align: middle;

    text-indent: -9999px;
    line-height: 0;
    display: inline-block;
}

span.field-info:after {
    content: "*";
    text-indent: 0;
    display: block;
    line-height: inherit;
}


/* Basic input button styled to be all nice */

input.button {
    display: inline-block;
    margin-bottom: 0;
    white-space: normal;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
    background: none;
    background-color: #B49242;
    border-width: 1px;
    border-style: solid;
    border-color: #B49242;
    text-decoration: none;
    border-radius: 1px;
    border: none;
    outline: none;
    opacity: 1;
    position: relative;
    line-height: 1;
    transition: all 250ms ease-in-out;
    font-weight: normal;
    text-transform: lowercase;
    padding: 10px 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

input.button:hover,
input.button:active {
    background-color: #594e27;
}

input::-webkit-input-placeholder {
    color: #999;
}

input:-moz-placeholder {
    color: #999;
}

.textbox.placeholder-text {
    color: #999;
}

/* Attractive default form styles */
table.form-section,
table.checkbox-list {
border-collapse: collapse;
background-color: #eaeaea;
border: 1px #d1d1d1 solid;
margin-bottom: 30px;
width: 100%;
}

table.form-section tr,
table.checkbox-list tr {
border-bottom: 1px #bebebe dashed;
}

table.form-section th {
    font-weight: bold;
    padding: 10px 10px 10px 10px;
    vertical-align: middle;
    border: none;
}

table.form-section td,
table.checkbox-list td {
width: auto;
padding: 12px 8px;
vertical-align: top;
border: none;
}

table.form-section td.field-info {
vertical-align: middle;
width: 150px;
}

table.checkbox-list td.check {
width: 10px;
text-align: center;
}

table.form-section span.s {
display: block;
margin: 15px 0 0 0;
background: url("../images/arw_blue.gif") no-repeat scroll left center transparent;
padding: 0 0 0 22px;
}

table.form-section table.checkbox-list {
margin: 0;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    table.form-section th {
        padding: 15px 15px 15px 15px;
    }

    span.field-info {
        padding: 2px 10px;
        text-indent: 0;
        line-height: 0;
    }

    span.field-info:after {
        content: none;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    input.textbox,
    select,
    textarea {
    max-width: unset;
    }
}


/* Nice bar for submit buttons etc */
.submit-bar {
text-align: right;
margin-top: 20px;
background: #f8f8f8;
padding: 14px;
border-top: 1px #ccc dashed;
}

.submit-bar a {
margin-right: 20px;
}

/* ---- Search ---- */
.ib-search {
    margin: 0;
    padding: 0;
    float: right;
    position: relative;
    top: 0; left: 0;
    color: #287BB1;

    /* Must match textbox size + padding + border */
    height: 40px;
    width: 300px;
}

.ib-search .go {
    background: url('../images/btn_search.png') 100% 0 no-repeat;
    border: none;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 27px;
    line-height: 0;
    margin: 0;
    outline: none;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 6px;
    text-indent: -9999px;
    top: 6px;
    width: 30px;
    z-index: 10;
}

.ib-search .go:hover {
    background-position: 100% -27px;
}

.ib-search .go:active {
    background-position: 100% -54px;

    /* Fixes the IE8 background position bug */
    -ms-background-position-x: 1px/9;
    -ms-background-position-y: -53px/9;
}

.ib-search .query {
    display: block;
    background-color: #fff;
    border: 1px solid #c3d0db;
    color: #656565;
    font: 16px/1em Arial,sans-serif;
    padding: 5px 5px;
    line-height: 1em;
    width: 288px;
    height: 28px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    top: 0; left: 0;
    z-index: 5;

    /* for IE8 & below needs more top-padding */
    padding: 10px 5px 5px 5px\9;
    height: 23px\9;
}

.ib-search .query:hover {
    color: #656565;
    border: 1px solid #aad0e8;
}

.ib-search .query:focus {
    border: 1px solid #2f51b4;
    -webkit-box-shadow: 0px 0px 5px #aac6dd;
    -moz-box-shadow: 0px 0px 5px #aac6dd;
    box-shadow: 0px 0px 5px #aac6dd;
    color: #333;
    outline: medium none;
    text-shadow: 0 1px 0 #fff;
}



/* Search Results */

.search-result {
    margin-bottom: 15px;
    border-bottom: 1px #777 solid;
}

.search-result div {
    padding: 10px;
}

.search-result .odd {
    background-color: #EEE;
}

.search-result .even {
    background-color: #DDD;
}


/* Pagination for search rsults */

.search-paginate {
    padding: 12px;
    text-align: center;
}

.search-paginate .page-prev {
    float: left;
    *float: none;
}

.search-paginate .page {
    border: 1px #DDD solid;
    background: #FFF;
    text-decoration: none;
    padding: 5px 8px;
    margin: 0 3px;
}

.search-paginate .page.on {
    border: 1px #CCC solid;
    background: #EEE;
}

.search-paginate .page-next {
    float: right;
    *float: none;
}


/* Captcha */

.captcha {
    background: #f8f8f8;
    margin: 5px 0px;
    padding: 10px;
    width: 250px;
    border: 1px #ccc solid;
}

.captcha .info {
    width: 20px;
    float: right;
}

.captcha img.captcha {
    width: 200px;
    border: 1px #000 solid;
}

.captcha input.captcha {
    width: 200px;
    border: 1px #000 solid;
}


/* ------------------------------------------------------
**** Tables
------------------------------------------------------ */
.mainbar table {
    border-collapse: collapse;
    border: 1px solid #C8C7C7;
    font-weight: bold;
    width: 100%;
    margin: 0 0 30px 0;
}

.mainbar th,
.mainbar td {
    padding: 5px 10px;
    border: 1px solid #C8C7C7;
}

.mainbar th,
.mainbar thead td {
    background: #d9d9d9;
}

.mainbar table.clean th,
.mainbar table.clean td {
    border: none;
}

/* Nice table styles */

table.pretty {
    border-collapse: collapse;
    width: 100%;
    margin: 15px 0;
    border-bottom: 1px #ccc dashed;
}

table.pretty th {
    font-weight: bold;
    border-bottom: 1px #ccc dashed;
    padding: 6px 12px;
    font-size: 14px;
    text-shadow: 1px 1px 1px #ccc;
}

table.pretty td {
    padding: 6px 12px;
    font-size: 13px;
}

/* ------------------------------------------------------
**** Helper classes
------------------------------------------------------ */

/* ---- Clearfix ---- */
.clear {
    height: 0;
    clear: both;
    display: block;
}

.-clearfix:before,
.-clearfix:after {
    content: " ";
    display: table;
}

.-clearfix:after {
    clear: both;
}


/* ---- Hiding classes ---- */
.-ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
}

.-ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.-hidden {
    display: none !important;
    visibility: hidden;
}

.-vis-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.-vis-hidden.focusable:active,
.-vis-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/**
* Layout styles
**/

/* ------------------------------------------------------
**** Template Layout
------------------------------------------------------ */

* {
    margin: 0;
}

html,
body {
    background: #FFF;
    height: 100%;
}

body {
    background: url('../images/bg_banner_inner.jpg') #fff left 122px repeat-x;
    text-align: left;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    body {
        border-top: 8px #b49242 solid;
    }
}

#wrap {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    #wrap {
        margin-top: 0;
    }
}

/* ---- Container ---- */
.container {
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

.container--full {
    max-width: unset;
    width: 100%;
}

.container--full-capped {
    width: 100%;
}


/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .container {
        width: 92%;
    }

    .container--full {
        width: 100%;
    }

    .container--full-capped {
        width: 100%;
    }
}

/* BP Extra large */
@media only screen and (min-width: 90em) { /* 1440px */

}

/* ---- Sections ---- */
.section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.section-small {
    padding-top: 15px;
    padding-bottom: 15px;
}

.section-large {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-nopadding {
    padding-top: 0;
    padding-bottom: 0;
}

.section--bottom {
    padding-top: 0;
    padding-bottom: 20px;
}


/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-small {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section-large {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-nopadding {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section--bottom {
        padding-top: 0;
        padding-bottom: 60px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-small {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-large {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .section-nopadding {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section--bottom {
        padding-top: 0;
        padding-bottom: 80px;
    }
}


/* ---- Header ---- */
#header {
    background-color: #fff;
    text-align: left;
    display: none;
}

#top-links {
background: url('../images/bg_toplinks.png') transparent left top no-repeat;
margin: 0 -31px 0 0;
width: 439px;
height: 39px;
float: right;
}

#logo {
    width: 175px;
    float: left;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    #header {
        height: 122px;
        display: block;
    }

    #logo {
        width: 380px;
        float: left;
    }
}

/* ---- banner ---- */
#banner {
    background-image: url('../images/banner_inner.jpg');
    background-color: transparent;
    background-position: center center;
    background-size: 1280px;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 125px;
}

.banner-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#banner h1 {
    color: #FFFFFF;
    font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
    font-size: 38px;
    font-weight: normal;
    line-height: 38px;
    margin: 0;
    text-shadow: 0 0 5px #340000;
}

@media screen and (min-width: 48em) {
    #banner h1 {
        padding-left: 40px;
    }
}

@media only screen and (min-width: 62em) {
    #banner h1 {
        padding-left: 60px;
    }
}

/* home banner */
#home #banner {
    background-image: none;
    background: url('../images/bg_banner_home.jpg') #fff left repeat-x;
    position: relative;
    height: unset;
}

#home #banner,
.bnr-item {
    height: 304px;
}

.bnr-item {
    width: 100%;
}

.bnr-item > .container {
    position: relative;
    height: 100%;
}

.bnr-label h2 {
    margin: 0 0 1px 0;
    text-shadow: 0px 0px 5px #000;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #fff;
}

.bnr-item__content {
    background-color: rgba(0,0,0,0.66);
    height: 100%;
}

.bnr-label {
    position: relative;
    padding: 15px;
}

.bnr-label:before {
    position: relative;
    padding: 15px;
    width: 100%;
}


.bnr-label p {
    text-shadow: 0px 0px 5px #000;
    font-family: 'Myriad Pro';
    font-size: 1.6rem;
    color: #fff;
    margin-top: 0.5em;
}

.bnr-label a:link,
.bnr-label a:visited {
    text-decoration: underline;
    color: #fff;
}

.bnr-label a:hover,
.bnr-label a:focus,
.bnr-label a:active {
    text-decoration: underline;
    color: #fff;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    #home #banner,
    .bnr-item {
        height: 244px;
    }

    .bnr-item__content {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 34%;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #home .bnr-item__content {
        text-align: center;
    }

    #home .bnr-label {
        padding: 25px;
    }


    .bnr-item__img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: auto;
        width: 66%;
        max-width: 980px;
    }

    .bnr-label h2 {
        font-size: 24px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    #home #banner,
    .bnr-item {
        height: 318px;
    }

    .bnr-label {
        padding: 40px;
    }
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
    #home #banner,
    .bnr-item {
        height: 407px;
    }
}

/* BP Extra large */
@media only screen and (min-width: 90em) { /* 1440px */

}


/* ---- content ---- */
/* BP MAX small */
@media screen and (max-width: 47.9375em) { /* 767px */
    .section--content {
        background: #ffffff;
    }
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section--content > .container {
        box-shadow: 0 0 50px rgba(0,0,0,0.33);
    }
}

/* ---- layout ---- */
.mainbar .widget {
    margin-top: 40px;
}

.widget-top-page .widget,
.mainbar .widget-Form {
    margin-top: 0;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .mainbar .section {
        padding-left: 40px;
        padding-right: 60px;
        padding-bottom: 40px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .mainbar .section {
        padding-left: 60px;
        padding-right: 80px;
        padding-bottom: 40px;
    }
}

.sidebar__past-jobs {
    background-image: url('../images/img_south-australia.jpg');
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 390px;
    padding: 30px 20px 20px;
    max-width: 286px;
    margin-left: auto;
    margin-right: auto;
}

.sidebar__past-jobs p {
    text-align: center;
    font-family: "trajan-pro-3", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0,0,0,0.66), 0 0 10px rgba(0,0,0,0.66);
    line-height: 1.2;
}

.sidebar__past-jobs p span {
    display: block;
    margin-top: 1em;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .sidebar__past-jobs {
        min-height: 402px;
        max-width: 290px;
    }
}

@media screen and (min-width: 62em) { /* 992px */
    .sidebar__past-jobs {
        max-width: 310px;
    }
}

/* BP Extra large */
@media only screen and (min-width: 90em) { /* 1440px */
    .sidebar__past-jobs {
        min-height: 426px;
    }
}

#home #column-mid {
background: url('../images/bg_column_home_bottom.png') transparent left bottom no-repeat;
margin: 43px 20px 15px 0;
width: 75%;
float: left;
min-height: 268px;
}

#widget-content {
    background-image: url('../images/bg_column_left.jpg');
    background-color: transparent;
    background-position: left top;
    background-repeat: repeat-y;
    background-size: 100% auto;
    padding: 0;
}

.sidebar > #widget-content {
    padding-top: 28px;
}

@media screen and (min-width: 48em) {
    .sidebar > #widget-content {
        padding-top: 68px;
    }
}

@media only screen and (min-width: 62em) {
    .sidebar > #widget-content {
        padding-top: 88px;
    }
}


.home-alert {
    display: block;
    background-color: #B49242;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-image-source: url('../images/img_border-decal-reverse.svg');
    border-image-slice: 18;
    border-image-width: 18;
    border-image-outset: 1;
    border-image-repeat: round;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    width: calc(100% - 10px);
    max-width: 900px;
    text-align: center;
    zoom: 1;
}

.home-alert h2 {
    margin-bottom: 0;
}

.home-alert h2 {
    line-height: 1.2;
    padding: 15px 5px;
    font-size: 18px;
    color: #fff;
}

.home-alert h2 span {
    color: #594e27;
}

.home-alert h2 a:link,
.home-alert h2 a:visited {
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.home-alert h2 a:hover,
.home-alert h2 a:active,
.home-alert h2 a:focus,
.home-alert h2 a:hover span {
    text-decoration: none;
    color: #fff;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .home-alert h2 a:link,
    .home-alert h2 a:visited {
        font-size: 18px;
        margin-top: 0;
    }

    .home-alert h2 {
        padding: 10px;
    }
}

/* ---- footer ---- */

#footer-wrap {
background: #493e3c; /* Old browsers */
background-image: url('../images/bg_footer.png');
background-repeat: repeat-x;
background: -moz-linear-gradient(top, #645754 0%, #483d3b 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#645754), color-stop(100%,#483d3b)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #645754 0%,#483d3b 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #645754 0%,#483d3b 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #645754 0%,#483d3b 100%); /* IE10+ */
background: linear-gradient(to bottom, #645754 0%,#483d3b 100%); /* W3C */
}

.footer__contact {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
}

.footer__contact ul {
    margin: 0 0 20px 6px;
}

.footer__contact {
    background-image: url('../images/bg_footer_column_left.png');
    background-color: transparent;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.footer__contact ul {
    padding-left: 0;
    margin-left: 0;
}

.footer__contact a {
    padding: 0 0 0 35px;
    height: 40px;
    line-height: 24px;
    display: block;
    font-size: 15px;
    color: #c2af69!important;
    font-family: "trajan-pro-3", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.footer__contact a.icon-fb {
    background: url('../images/sprites.png') transparent 0 -88px no-repeat;
}

.footer__contact a.icon-yt {
    background: url('../images/sprites.png') transparent 0 -140px no-repeat;
}

.footer__contact a.icon-tel {
    background: url('../images/sprites.png') transparent 0 -192px no-repeat;
}

.footer__contact a.icon-mail {
    background: url('../images/sprites.png') transparent 0 -244px no-repeat;
}

.footer__quicklinks__header {
    border-bottom: 1px solid rgba(255,255,255,0.66);
    position: relative;
    margin-bottom: 40px;
}

.footer__quicklinks__header:after {
    content: "\00a0";
    position: absolute;
    bottom: -18px;
    left: calc(50% - 16px);
    width: 33px;
    height: 18px;
    background-image: url('../images/img_footer-decal.png');

}

.footer__quicklinks__header .footer-facebook {
    float: right;
    background: url('../images/bg_facebook.png') transparent right top no-repeat;
    height: 40px;
}

.footer-facebook {
    padding:0;
}

.footer-facebook p {
color: #d9cdba!important;
}

.footer-facebook a {
color: #b49242!important;
}

.footer-facebook span {
font-weight: bold;
color: #fff!important;
}

.footer h3 {
    color: #fff;
    font-family: "trajan-pro-3", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight: 300;
    font-style: normal;
    margin: 0 0 12px;
    padding-right: 40px;
    font-size: 18px;
}

.footer p {
    color: #a29995;
}

.footer a:link,
.footer a:visited {
text-decoration: none;
color: #a29995;
}

.footer a:hover,
.footer a:focus,
.footer a:active {
text-decoration: underline;
color: #a29995;
}

.footer__quicklinks ul {
    margin-left: 0;
    padding-left: 0;
}

.footer__quicklinks ul.apply-margin {
margin: 0 40px 17px 0;
}

.footer__quicklinks li {
margin: 0 0 13px 0;
}

.footer__quicklinks li a:link,
.footer__quicklinks li a:visited {
text-decoration: none;
font-size: 14px;
color: #c3b06a;
}

.footer__quicklinks li a:hover,
.footer__quicklinks li a:focus,
.footer__quicklinks li a:active {
text-decoration: underline;
color: #c3b06a;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .footer__contact {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer__rhs {
        padding-top: 30px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .footer__contact {
        padding-left: 45px;
        padding-right: 45px;
    }
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
    .footer__contact {
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 40px;
    }

    .footer__rhs {
        padding-top: 40px;
    }
}

/**
* Content styles
* Order: headings, copy, images, links, forms, search
**/

p.vert-mid * {
    vertical-align: middle;
}

/* top links */
#top-links {
    display: none;
}

#top-links ul {
    margin: 0;
    padding: 0 0 0 30px;
}

#top-links li {
padding: 0 10px 0 0;
float: left;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    #top-links {
        display: block;
    }
}



#home #column-mid ul {
list-style-type: none;
margin: 0 0 10px 15px;
font-size: 14px;
font-weight: bold;
}

#home #column-mid li {
background: url('../images/li_home.png') transparent left 1px no-repeat;
padding: 0 0 0 17px;
list-style-type: none;
}

#home #column-mid li a:link,
#home #column-mid li a:visited {
text-decoration: none;
color: #b49242;
}

#home #column-mid li a:hover,
#home #column-mid li a:active,
#home #column-mid li a:focus {
color: #594E27;
}

#home #column-mid li.last {
background: none;
padding: 0;
}

#home #column-mid li.last a:link,
#home #column-mid li.last a:visited {
text-decoration: none;
color: #594e27;
}

#home #column-mid li.last a:hover,
#home #column-mid li.last a:active,
#home #column-mid li.last a:focus {
text-decoration: underline;
color: #594e27;
}

#top-links li a:link,
#top-links li a:visited,
#top-links li a:hover,
#top-links li a:active,
#top-links li a:focus {
text-shadow: 1px 1px 1px #a8873d;
text-decoration: none;
font-size: 16px;
color: #fff;
}

#top-links a.icon-tel {
background: url('../images/sprites.png') transparent 5px 7px no-repeat;
padding: 0 0 0 30px;
height: 40px;
line-height: 34px;
display: block;
}

#top-links a.icon-mail {
background: url('../images/sprites.png') transparent 5px -37px no-repeat;
padding: 0 0 0 30px;
height: 40px;
line-height: 34px;
display: block;
}


/* Payment module */

table.payment-items {
width: 100%;
margin-bottom: 25px;
border-collapse: collapse;
border: 1px #CCC solid;
}

table.payment-items th {
background: #e8e8e8;
padding: 4px 8px;
font-size: 13px;
font-weight: bold;
border-bottom: 1px #CCC solid;
}

table.payment-items th.price {
border-left: 1px #ddd solid;
}

table.payment-items tr.item td {
padding: 8px;
font-size: 13px;
}

table.payment-items tr.gap td {
height: 10px;
}

table.payment-items tr.total td {
padding: 8px;
font-size: 13px;
font-weight: bold;
background: #f8f8f8;
border-top: 1px #eee solid;
border-bottom: 1px #eee solid;
}

table.payment-items tr.notes td {
font-size: 10px;
color: #555;
padding: 4px;
}

table.payment-items td.price {
border-left: 1px #eee solid;
}


table.payment-methods {
width: 100%;
margin-bottom: 15px;
border-collapse: collapse;
border: 1px #CCC solid;
}

table.payment-methods td.radio {
padding: 10px;
background: #e8e8e8;
border-top: 1px #ccc solid;
border-bottom: 1px #ccc solid;
}

table.payment-methods td.name {
padding: 10px 0;
font-weight: bold;
background: #e8e8e8;
border-top: 1px #ccc solid;
border-bottom: 1px #ccc solid;
}

table.payment-methods td.desc {
padding: 8px 0 15px 0;
}

.payment-continue {
text-align: right;
}

input.cc-cardname {
width: 200px;
}

input.cc-cardnum {
width: 200px;
}

select.cc-type {
width: 120px;
}

select.cc-exp {
width: 80px;
}

input.cc-cvn {
width: 50px;
}


/* Tags */

.tag-list h4 {
padding: 4px;
margin: 0 10px 0 0;
float: left;
}

.tag-list .tag {
padding: 3px 8px;
margin: 0 5px;
float: left;
list-style-type: none;
background: #eee;
}


/* ------------------------------------------------------
**** Widgets

Widgets & Modules that ship with sprout.
If they don't they belong in separate partial file

------------------------------------------------------ */
/**
* Order: generic, related links, image gallery, video, product list
**/


/* Generic style for all widgets */
/* ---- Catch all ---- */
.widget {
}

.widget h3.widget-title {
}


/* ---- Related Links ---- */
.widget-RelatedLinks {
padding: 0 0 15px 0;
}

.widget-RelatedLinks h3.widget-title {
    background-image: url('../images/bg_relatedlinks_heading.jpg');
    background-color: transparent;
    background-position: left bottom;
    background-size: contain;
    background-repeat: repeat-x;
    margin: 0 0 20px 0;
    padding: 0 0 20px 40px;
    text-shadow: 0px 0px 3px #d7cdba;
    font-family: "trajan-pro-3","Palatino Linotype","Book Antiqua",Palatino,serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: #594e27;
}

.widget-RelatedLinks ul {
padding: 0 40px 0 30px;
}

.widget-RelatedLinks li a:link,
.widget-RelatedLinks li a:visited {
padding: 0 0 10px 22px;
display: block;
text-decoration: none;
color: #9f7e2f;
text-shadow: 1px 1px 1px #fff;
}

.lt-ie9 .widget-RelatedLinks li a:link,
.lt-ie9 .widget-RelatedLinks li a:visited {
text-shadow: none;
}


.widget-RelatedLinks li a:hover,
.widget-RelatedLinks li.on a:link,
.widget-RelatedLinks li.on a:visited,
.widget-RelatedLinks li.on a:hover {
color: #594e27;
}

.widget-RelatedLinks li a:before {
content:"\003e  ";
float: left;
margin: -1px 0 0 -14px;
}

/* second level links */
.widget-RelatedLinks ul li.on ul {
padding: 0 0 5px 0;
}

.widget-RelatedLinks li.on ul li {
}

.widget-RelatedLinks li.on ul li a:link,
.widget-RelatedLinks li.on ul li a:visited {
background: none;
padding: 0 0 8px 30px;
font-size: 14px;
color: #b49242;
}

.widget-RelatedLinks li.on ul li a:hover,
.widget-RelatedLinks li.on ul li.on a:link,
.widget-RelatedLinks li.on ul li.on a:visited,
.widget-RelatedLinks li.on ul li.on a:hover {
background: none;
color: #594e27;
}

/* third level links */
.widget-RelatedLinks ul li.on ul li.on ul {
padding: 0 0 5px 0;
}

.widget-RelatedLinks li.on ul li.on ul li {
}

.widget-RelatedLinks li.on ul li.on ul li a:link,
.widget-RelatedLinks li.on ul li.on ul li a:visited {
background: none;
padding: 0 0 8px 45px;
font-size: 12px;
color: #b49242;
}

.widget-RelatedLinks li.on ul li.on ul li a:hover,
.widget-RelatedLinks li.on ul li.on ul li.on a:link,
.widget-RelatedLinks li.on ul li.on ul li.on a:visited,
.widget-RelatedLinks li.on ul li.on ul li.on a:hover {
background: none;
color: #594e27;
}


/* Top of page */
.widget-top-page {
    margin-left: calc( -1rem - 4%);
    margin-right: calc( -1rem - 4%);
    z-index: 5;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .widget-top-page {
        margin-left: -2rem;
        margin-right: 0;
        z-index: 5;
    }
}

/* ---- Widget Slider ---- */
.widget-Slider #slider-prev {
    position: absolute;
    top: calc(50% - 70px);
    left: 0;
    z-index: 99;
    cursor: pointer
}

.widget-Slider #slider-next {
    position: absolute;
    top: calc(50% - 70px);
    right: 0;
    z-index: 99;
    cursor: pointer
}

.bx-wrapper {
    height: unset;
    width: 100%;
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */

}

/* ---- Simple Gallery ---- */

.widget-GallerySimple > div {
    margin-left: -5px;
    margin-right: -5px;
}

.widget-GallerySimple .gallery-simple-thumb  {
    float: left;
    margin: 5px 5px 10px 5px;
    background: #CCC;
    width: calc(50% - 10px);
    height: auto;
    max-width: 183px;
}

.widget-GallerySimple .gallery-simple-thumb a.thumb {
display: block;
text-decoration: none;
color: #000;
}

.widget-GallerySimple .gallery-simple-thumb a.thumb img {
display: block;
}

.widget-GallerySimple .gallery-simple-thumb p.name {
padding: 5px 10px;
color: #000;
text-align: center;
}

.widget-GallerySimple .gallery-simple-thumb p.name a {
text-decoration: none;
color: #000;
}
.widget-GallerySimple h3  {
border-top: 1px solid #e0ded6;
border-bottom: 1px solid #e0ded6;
padding: 10px;
margin: 10px 0px;
}

.widget-GallerySimple h3.widget-title  {
display: none;
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .widget-GallerySimple .gallery-simple-thumb  {
        width: calc(33% - 9px)
    }
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
    .widget-GallerySimple .gallery-simple-thumb {
        width: calc(25% - 10px);
        max-width: unset;
    }
}

/* ---- Simple Image Gallery ---- */
.widget-ImageGallery img {
display: block;
}

.widget-ImageGallery .image-wide {
float: left;
margin-right: 5px;
margin-bottom: 5px;
}

.widget-ImageGallery .image-wide p {
text-align: center;
}

.widget-ImageGallery .image-tall {
margin-bottom: 5px;
}

.widget-ImageGallery .image-tall img {
display: inline;
vertical-align: middle;
margin-right: 5px;
}

.widget-ImageGallery .image-tall span {
vertical-align: middle;
}

.widget-ImageGallery .image-tall-compact {
float: left;
margin-right: 5px;
margin-bottom: 5px;
}

/*  gallery Preview */

.widget-GalleryPreview {

}

.widget-GalleryPreview h3.widget-title {
margin: 18px 0 15px 0;
padding: 7px 14px;
border-top: 1px solid #e0ded6;
border-bottom: 1px solid #e0ded6
}

.widget-GalleryPreview .g2-thumb,
.widget-Gallery .g2-thumb {
width: 33.33333333333333%;
text-align: center;
float: left;
margin: 0 0 15px 0;
}

.widget-GalleryPreview p.show-all {
border-top: 1px solid #e0ded6;
border-bottom: 1px solid #e0ded6;
padding: 6px 14px 4px;
margin: 0 0 15px 0;
text-align: right;
}

/* Page gallery widget */
.children-gallery-list,
.mainbar .children-gallery-list {
    padding: 0;
    margin: 0;
    list-style-type: none;

    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    margin-left: -5px;
    margin-right: -5px;
}

.children-gallery-list-item,
.mainbar .children-gallery-list-item {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    margin-left: 5px;
    margin-right: 5px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: calc(100% - 10px);
}

.children-gallery-list-item-link {
    display: block;
}

.children-gallery-list-item-link {
    display: block;
    position: relative;
}

.children-gallery-list-item-title {
    position: absolute;
    bottom: 45px;
    left:0;
    right: 0;
    margin-bottom: 0;
    color: #fff;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    background-color: rgba(76,66,63,0.75);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.children-gallery-list-item-anchor {
    position: absolute;
    bottom: 0;
    left:0;
    right: 0;
    margin-bottom: 0;
    height: 45px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    background-color: rgba(76,66,63,0.75);
}

.children-gallery-list-item-anchor .button {
    display: inline-block;
}

.children-gallery-list-item-title {

}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .children-gallery-list-item,
    .mainbar .children-gallery-list-item  {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: calc(50% - 10px);
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .children-gallery-list-item,
    .mainbar .children-gallery-list-item  {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: calc(33.333% - 10px);
    }
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
    .mainbar .children-gallery-list-item  {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: calc(25% - 10px);
    }
}


/* ---- Articles ---- */

.widget-ArticlesList {
border: 0;
background-color: transparent;
}

.article {
border-bottom:1px solid #CCCCCC;
margin:10px 0;
padding:10px 0;
}

#home .social-article {
margin: 0 0 10px 0;
padding: 0;
border: none;
}
#home .social-article p {
margin: 0 0 4px;
}

/* ---- Videos ---- */
.tinymce-media-iframe,
.widget-Video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    clear: both;
}

.tinymce-media-iframe iframe,
.widget-Video iframe,
.widget-Video object,
.widget-Video embed,
.widget-Video div  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

iframe {
    border: 0;
}

.tinymce-media-iframe {
    margin: 2rem 0;
}


/* ---- Product list ---- */
.widget-ProductList table {
width: 100%;
}



/**
* Print CSS
**/
@media print {
#header,
#nav,
#banner,
.footer,
#column-side,
#slider,
.footer,
a.button,
.noprint
{ display: none !important; }

#banner-wrap,
#wrap,
#content,
#column-main
{ float: none !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
}


