
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
    display: block
}

body {
    line-height: 1
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    font-family: "Ubuntu", sans-serif;
    background-color: #2e313d;
    padding-top: 0px !important;
}

img {
    max-width: 100%;
    height: auto;
}

.image-left {
    float: left;
    position: relative;
    padding: 0;
    margin: 10px;
}

.image-right {
    float: right;
    position: relative;
    padding: 0;
    margin: 10px;
}

.container {
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
    padding-top: 2em;
}

.container::after {
    content: '';
    display: table;
    clear: both;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #c52b9f;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.header:after {
    content: "";
    display: table;
    clear: both;
}

.header #logo {
    float: left;
    margin: 13px 0 0 5%;
}

.header #logo img {
    display: block;
    max-width: 100px;
    height: auto;
}

@media only screen and (min-width: 768px) {
    .header {
        height: 70px;
    }

    .header #logo {
        margin: 23px 0 0 5%;
    }
}

.main-nav {
    float: right;
    margin-right: 5%;
    width: 44px;
    height: 100%;
    background: url("images/icon-menu.svg") no-repeat center center;
    background-size: 44px 44px;
    cursor: pointer;
}

.main-nav ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.main-nav ul.is-visible {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.main-nav a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 5%;
    background: #2e313d;
    border-top: 1px solid #353846;
    color: #FFF;
}

.main-nav li {
    margin-bottom: 0 !important
}

@media only screen and (min-width: 768px) {
    .main-nav {
        width: auto;
        height: auto;
        background: 0;
        cursor: auto;
    }

    .main-nav ul {
        position: static;
        width: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        line-height: 65px;
    }

    .main-nav ul.is-visible {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .main-nav li {
        display: inline;
        margin-left: 1em;
    }

    .main-nav a {
        display: inline-block;
        height: auto;
        line-height: normal;
        background: transparent !important;
        padding: .6em 1em;
        border-top: 0;
        font-size: 13px;
        font-size: .8125rem;
        font-weight: bold;
        text-transform: uppercase;
    }
}

.secondary-nav {
    pointer-events: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    display: block;
    height: auto;
    line-height: 60px;
    width: 100%;
    z-index: 9999;
}

.secondary-nav ul {
    position: static;
    top: 65px;
    left: 0;
    width: 100%;
    line-height: 40px;
    padding-left: 10px;
    background: #2e313d;
}

.secondary-nav ul ul {
    margin: 0px;
    line-height: 54px !important;
}

.secondary-nav ul.is-visible {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.secondary-nav a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 0;
    color: #FFF;
    font-size: 1em;
    margin-right: 1em;
}

.secondary-nav li {
    line-height: 0;
    margin-bottom: 0;
    display: inline-block;
    margin-right: 0;
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .secondary-nav {
        width: auto;
        height: auto;
        background: 0;
        cursor: auto;
    }

    .secondary-nav ul {
        position: static;
        width: 100%;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        line-height: 40px;
    }

    .secondary-nav ul.is-visible {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .secondary-nav li {
        display: inline-block;
        margin-left: 1em;
        margin-right: 0;
    }

    .secondary-nav a {
        display: block;
        height: auto;
        line-height: normal;
        background: transparent;
        padding: .6em 1em;
        border-top: 0;
        font-size: 13px;
        font-size: .8125rem;
        font-weight: bold;
        text-transform: uppercase;
    }
}

#intro {
    position: relative;
    height: 300px;
    margin-top: 50px;
    z-index: 1;
}

#intro #intro-background {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

#intro #intro-tagline {
    position: absolute;
    width: 90%;
    max-width: 1170px;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#intro h1 {
    text-transform: uppercase;
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media only screen and (min-width: 768px) {
    #intro {
        height: 400px;
        margin-top: 70px;
    }

    #intro h1 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media only screen and (min-width: 1170px) {
    #intro {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 500px;
        margin-top: 0;
    }

    #intro .intro-background {
        -webkit-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    #intro h1 {
        font-size: 32px;
        font-size: 2rem;
    }
}

.content {
    position: relative;
    padding-right: 0;
    padding-bottom: 2em;
    padding-left: 0;
    line-height: 1.6;
    color: #65676f;
    background-color: #f0f1e7;
    z-index: 2;
}

.content::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 50px;
    background: -webkit-linear-gradient(bottom, rgba(46, 49, 61, 0.5), rgba(46, 49, 61, 0));
    background: linear-gradient(to top, rgba(46, 49, 61, 0.5), rgba(46, 49, 61, 0));
}

.no-cssgradients .cd-content::before {
    display: none;
}

.content h2 {
    font-size: 20px;
    font-size: 1.25rem;
}

.content p {
    margin: 1em 0;
}

@media only screen and (min-width: 768px) {
    .content {
        line-height: 1.8;
        padding-bottom: 2em;
    }

    .content h2 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media only screen and (min-width: 1170px) {
    .content {
        padding: 0 0 2em;
        margin-top: 570px;
    }
}

#footer {
    left: 0;
    width: 100%;
    background: #2e313d;
}

#footerContent {
    display: block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: 1.6em 1em;
    border-top: 0;
    font-size: 13px;
    font-size: .8125rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 5%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
}

h1 {
    font-size: 28px;
    line-height: 50px;
}

h2 {
    font-size: 22px;
    line-height: 30px;
}

h3 {
    font-size: 18px;
    line-height: 34px;
}

h4 {
    font-size: 16px;
    line-height: 30px;
}

h5 {
    font-size: 14px;
    line-height: 24px;
}

h6 {
    font-size: 12px;
    line-height: 21px;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
    color: #333;
}

small {
    font-size: 80%;
}

a, a:visited {
    text-decoration: none;
}

ul {
    list-style: none outside;
}

ol {
    list-style: decimal;
}

ul.square {
    list-style: square outside;
}

ul.circle {
    list-style: circle outside;
}

ul.disc {
    list-style: disc outside;
}

ul ul, ul ol, ol ol, ol ul {
    margin: 4px 0 5px 30px;
    font-size: 90%;
}

ul ul li, ul ol li, ol ol li, ol ul li {
    margin-bottom: 6px;
}

li {
    line-height: 18px;
    margin-bottom: 12px;
}

ul.large li {
    line-height: 21px;
}

li p {
    line-height: 21px;
}

.container ul, .container ol {
    padding-left: 20px;
}

blockquote {
    border-left: 10px solid #ccc;
    padding: .5em 10px;
    quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: .1em;
    margin-right: .25em;
    vertical-align: -0.4em;
}

blockquote p {
    display: inline;
}

.blog-archive-month {
    color: #3f3f3f;
}

.blog-archive-link {
    color: #3f3f3f;
}

.blog-archive-link-enabled {
    color: #3f3f3f;
}

.blog-archive-link a:link, .blog-archive-link a:visited {
    color: #3f3f3f;
}

.blog-entry {
    margin-top: 5px;
    margin-bottom: 20px;
}

.blog-entry-body {
    padding-right: 30px;
    padding-top: 15px;
    max-width: 500px;
    margin-bottom: 50px;
    border-bottom: 1px solid #dadada;
    padding-bottom: 40px;
}

h1.blog-entry-title a:link {
    color: #3f3f3f;
}

.blog-entry-title {
    padding-top: 0;
    margin-bottom: 0;
}

.blog-entry-date {
    top: 15px;
    position: relative;
    margin-bottom: 20px;
    max-width: 530px;
}

.blog-entry-category {
    display: inline-block;
    padding: 5px;
}

.blog-entry-category a:link, .blog-entry-category a:visited {
    color: #3f3f3f;
}

.blog-entry-permalink a:link, .blog-entry-permalink a:visited {
    color: #3f3f3f;
}

.blog-read-more {
    color: #3f3f3f;
}

p.blog-entry-tags, p.blog-entry-tags a:link {
    color: #3f3f3f;
    margin-top: 10px;
}

ul.blog-tag-cloud {
    text-align: left;
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 30px 0 0;
}

ul.blog-tag-cloud a:link {
    color: #3f3f3f;
}

#blog-archives {
    margin-top: 30px;
}

#blog-categories {
    margin-top: 10px;
}

.blog-category-link-enabled {
    color: #3f3f3f;
}

#blog-rss-feeds {
    margin-top: 30px;
}

.blog-rss-link {
    color: #3f3f3f;
}

.blog-comments-rss-link {
    color: #3f3f3f;
}

.filesharing-item {
    background-color: #e5e5e5;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.filesharing-item-title a:link {
    color: #3f3f3f;
    font-size: 14px;
}

.filesharing-item-title a:hover {
    color: #b2b2b2;
}

.filesharing-item-description {
    margin-top: 10px;
}

.album-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 60px;
    padding-left: 30px;
}

.album-description {
    margin-bottom: 20px;
}

.album-wrapper {
    padding-left: 30px;
}

.thumbnail-wrap {
    float: left;
    margin-right: 30px;
    margin-bottom: 80px;
    padding-right: 10px;
    display: block;
    width: 100%;
}

.thumbnail-frame {
    cursor: pointer
}

.thumbnail-frame img {
    position: relative;
    cursor: pointer;
    border: 10px solid #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.thumbnail-frame:hover {
    -webkit-transform: scale(1.05);
    z-index: 1;
}

.photo-background {
    padding: 60px;
    text-align: center;
}

.photo-navigation {
    margin: 20px;
}

.photo-links {
    padding: 8px;
}

.photo-navigation a:link, .photo-navigation a:visited {
    color: #3f3f3f;
}

.photo-navigation a:hover {
    color: #b2b2b2;
}

.photo-frame {
    max-width: 100%;
    height: auto;
    position: relative;
    border: 10px solid #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.photo-title {
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.photo-caption {
    font-size: 18px;
    line-height: 22px;
}

.movie-description {
    margin-top: 20px;
    margin-bottom: 20px;
}

.movie-thumbnail-frame {
    margin-bottom: 20px;
    width: 32%;
    display: block;
    float: right;
    margin-left: 5px;
    margin-right: 8px;
}

.movie-thumbnail-frame:hover {
    -webkit-transform: scale(1.05);
    z-index: 1;
}

.movie-thumbnail-frame img {
    width: 100% !important;
    height: auto !important;
}

.movie-thumbnail-caption {
    text-align: center;
    padding-top: 5px;
    margin: 0;
    overflow: hidden;
}

.movie-background {
    width: 100%;
    text-align: center;
}

.message-text {
    color: #3f3f3f;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-top: 40px;
}

label {
    color: #3f3f3f;
    margin-left: 10px;
}

form br {
}

.form-input-field, .form-input-textarea {
    background-color: #ebebeb;
    width: 310px;
    display: block;
    line-height: 1.3em;
    padding: 8px 16px;
    font-size: 1.8em;
    margin: 0 6px 6px auto;
    outline: 0;
    height: 20px;
    border: 0;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    color: #fff;
}

.form-input-field:focus, .textarea.form-input-field:focus {
    background-color: #838383;
    color: white;
}

.form-input-field {
    width: 300px;
    height: 50px;
    margin-bottom: 0px;
    margin-left: 10px;
}

textarea.form-input-field {
    width: 70%;
    max-width: 500px;
    height: 300px;
    margin-bottom: 0px;
}

.form-input-button {
    width: auto;
    line-height: 20px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    -webkit-appearance: none;
    margin-left: 10px;
    text-transform: uppercase;
    border: 0;
    padding: 12px 35px 30px;
    background: 0;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    margin-top: 20px;
}

.form-input-button:hover {
    background-color: #ff6860;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

form select {
    padding: 5px 15px;
    -webkit-appearance: button;
    -webkit-border-radius: 0;
    -webkit-box-shadow: 0;
    -webkit-padding-end: 20px;
    -webkit-padding-start: 5px;
    -webkit-user-select: none;
    -moz-border-radius: 0;
    -moz-box-shadow: 0;
    -moz-padding-end: 5px;
    -moz-padding-start: 5px;
    -moz-user-select: none;
    -moz-linear-gradient: #fafafa, #f4f4f4 40%, #e5e5e5;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 300px;
    height: 50px;
    font-size: 1em;
    background: #d8d9d8;
    background-repeat: no-repeat;
    background-position: center;
}

form select, form select:focus {
    outline: 0;
    height: 50px;
    font-size: 1em;
    width: 300px !important;
}

ul.tree {
    margin: 40px 0 0 40px;
}

ul.tree > li {
    float: none;
    margin-bottom: 20px;
    list-style: none;
}

ul.tree ul {
    padding-top: 10px;
    list-style: none;
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 5px;
}

ul.tree ul li ul {
    display: none;
}

ul.tree a:link {
    color: #3f3f3f;
}

ul.tree a:hover {
    color: #b2b2b2;
}

ul.tree ul li a {
    color: #b2b2b2 !important;
}

ul.tree ul li a:hover {
    text-decoration: underline;
}

ul.tree li ul li {
    padding-top: 15px;
}

#aside {
    float: right;
    width: 28%;
    margin-left: 10%;
}

#sidebar {
    width: 100%;
    margin: 0 auto;
}

#sidebar li {
    line-height: 1em;
}

#sidebar {
    width: 100%;
    margin: 0 auto;
}

#sidebar li {
    line-height: 1em;
}

@media only screen and (max-width: 767px) {
    #aside {
        float: none;
        width: 100%;
        margin-left: 0;
    }

    #sidebar {
        width: 100%;
    }

    #sidebar {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    #aside {
        float: none;
        width: 100%;
        margin-left: 0;
    }

    #sidebar {
        width: 100%;
    }

    #sidebar {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .form-input-field {
        width: 85% !important;
    }

    textarea.form-input-field {
        width: 85% !important;
    }

    .message-text {
        width: 85% !important;
    }

    form select {
        width: 85% !important;
    }

    .form-input-field, .form-input-button, label, .message-text, form select {
        margin-left: 20px !important;
    }
}

/* RapidCart */
.rcItemThumb {
    margin-top: 20px;
}

#rcHeader img, .rcButton img, .rcCartTools img {
    max-width: auto;
    width: auto;
}

/* @end *//* iPad Portrait Navigation Adjustment */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .main-nav {
        float: right;
        margin-right: 5%;
        width: 44px;
        height: 100%;
        background: url("images/icon-menu.svg") no-repeat center center;
        background-size: 44px 44px;
        cursor: pointer;
    }

    .main-nav ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        padding-top: 20px;
    }

    .main-nav ul.is-visible {
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -ms-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
    }

    .main-nav a {
        display: block;
        height: 50px;
        line-height: 30px;
        padding-left: 5%;
        text-transform: none;
        font-weight: normal;
        font-size: 1em;
        border-top: 1px solid #353846;
    }

    .main-nav li {
        margin-bottom: 0 !important;
        display: block ! !important;
        margin-left: 0em !important
    }
}

/* @end */
#container, #breadcrumb li:last-child a, form label, .message-text, .photo-title {
    color: #65676F;
}

.filesharing-item-title a:link {
    color: #8CB55A;
}

h1.blog-entry-title a:link, .blog-entry-title a, .blog-entry-title, .album-title, .movie-page-title, h1, h2, h3, h4, h5, h6 {
    color: #003300;
}

.content {
    color: #65676F;
    background-color: #F0F1E7;
}

a:link, a:visited, .photo-navigation a:link, .photo-navigation a:visited {
    color: #8CB55A;
}

a:hover, .photo-navigation a:hover {
    color: #28442F;
}

.main-nav a {
    color: #FFFFFF;
    background: #2E313D;
}

.main-nav a:hover {
    color: #8CB55A;
}

/* iPad Portrait Navigation Adjustment */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .main-nav a {
        color: #FFFFFF;
        background: #2E313D !important;
    }

    .main-nav a:hover {
        color: #8CB55A;
    }
}

.main-nav a#current, a.currentAncestor.parent {
    color: #8CB55A;
}

.secondary-nav ul {
    background: #2E313D;
}

.secondary-nav a {
    color: #FFFFFF;
}

.secondary-nav a:hover {
    color: #8AB25A;
}

.secondary-nav a#current {
    color: #8AB25A;
}

#intro h1 {
    color: #FFFFFF;
}

h1.siteTitle a:hover, h1.blog-entry-title a:hover {
    color:% colour_title *0.5%;
}

body {
    background-color: #2E313D;
}

#sidebar {
    background-color:% colour_sidebarBcrnd%;
    color:% colour_sidebarTxt%;
}

#sidebar a:link, #sidebar a:visited {
    color:% colour_sidebarLinks%;
    border-bottom: 1px solid% colour_sidebarLinks%;
}

#sidebar a:hover {
    color:% colour_sidebarLinksHover%;
    border-bottom: 1px solid% colour_sidebarLinksHover%;
}

#sidebar h1, #sidebar h2, #sidebar h3, #sidebar h4, #sidebar h5, #sidebar h6 {
    color:% colour_sidebarTitle%;
}

.header {
    background: #333333;
}

#footer {
    background: #2E313D;
}

#footerContent {
    color: #FFFFFF;
}

#footer a:link, #footer a:visited {
    color: #B2B2B2;
}

#footer a:hover, #footer a:active {
    color: #3F3F3F;
}

h1.siteTitle a {
    color:% colour_titleHeader%;
}

h2.entry-title a {
    color:% colour_entryTitle%;
}

.date-title {
    color:% colour_entryDate%;
}

ul.tree a:link {
    color: #8CB55A;
}

ul.tree ul li a {
    color:% colour_text% !important;
}

blockquote {
    border-left: 10px solid #CCCCCC;
}

blockquote:before {
    color: #CCCCCC;
}

button, .blog-entry-category {
    background:% colour_btn% !important;
}

button:hover, .blog-entry-category:hover {
    background:% colour_btnHover% !important;
}

.form-input-field, .form-input-textarea {
    color: #65676F;
}

form select {
    border-color:% colour_background%;
}

.form-input-field, .form-input-textarea {
    background-color: #EBEBEB;
    color: #FFFFFF;
}

.form-input-field:focus, .textarea.form-input-field:focus {
    background-color: #838383;
    color: #FFFFFF;
}

.form-input-button {
    background: #FF6860;
    color: #FFFFFF;
}

.form-input-button:hover {
    background-color: #000000;
}

#intro #intro-background {
    height: 100%;
    width: 100%;
    background: url("images/header.jpg") no-repeat center center;
    background-size: cover;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5)
}

#intro {
    position: relative;
    height: 100px;
    margin-top: 50px;
    z-index: 1;
}

#intro h1 {
    font-size: 1.0rem;
}

h1 {
    line-height: 20px;
}

@media only screen and (min-width: 768px) {
    #intro {
        height: 200px;
        margin-top: 70px;
    }

    #intro h1 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media only screen and (min-width: 1170px) {
    #intro {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 300px;
        margin-top: 0;
    }

    #intro h1 {
        font-size: 32px;
        font-size: 2rem;
    }

    .content {
        padding: 0;
        margin-top: 370px;
    }
}

.container {
    max-width: 1068px
}

#contentContainer {
    max-width: 60%
}

@media only screen and (max-width: 767px) {
    #contentContainer {
        max-width: 100%
    }
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}