

/*******************************************/
/*  TABLE OF CONTENTS                      */
/*******************************************/
/*                                         */
/*   i.   CSS RESET                        */
/*   ii.  COLOR / FONT REFERENCE           */
/*   iii. GOOGLE FONTS                     */
/*                                         */
/*   1.   TYPOGRAPHY                       */
/*   2.   MAIN STRUCTURE                   */
/*   3.   HEADER                           */
/*   4.   SIDEBAR                          */
/*   5.   FOOTER                           */
/*   6.   FORMS                            */
/*   7.   TABULAR                          */
/*   8.   WP CORE                          */
/*   9.   PAGE SPECIFIC                    */
/*  10.   GENERAL RULES                    */
/*  11.   MEDIA QUERIES                    */
/*                                         */
/*******************************************/








/*******************************************/
/*  i. CSS RESET                           */
/*******************************************/
:root,
body {
    width: 100vw;
    overflow-x: hidden;
}
.loading-spinner,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
hr,
main,
menu,
nav,
section,
span.article-meta {
    display: block;
}
.post-edit-link,
a {
    text-decoration: none;
}
.bgimg,
.ctb-slide-img,
.featured-image img,
.hp-bg-img,
.img-bgcover {
    object-fit: cover;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}
#comment,
.comment-form-comment,
.nav-next,
.nav-previous,
td {
    vertical-align: top;
}
body {
    line-height: 1;
    font: 400 14pt/1.5 Lora, georgia, times, serif;
    background-color: var(--body-bg);
    letter-spacing: -0.5px;
    color: var(--main-text);
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}
:focus {
    outline: 0;
}
@font-face {
    font-family: entypo;
    src: url(../font/entypo.eot);
    src: url(../font/entypo.eot?#iefix) format("embedded-opentype"), url(../font/entypo.woff) format("woff"), url(../font/entypo.ttf) format("truetype"), url(../font/entypo.svg#entypo) format("svg");
    font-weight: 400;
    font-style: normal;
}
:root {
    --body-bg: #fff;
    --body-bg-home: #000;
    --main-bg: #fff;
    --main-text: #222;
    --main-bold: #000;
    --home-text: #aaa;
    --home-hilite: #fff;
    --home-header: #fff;
    --main-header: #222;
    --main-hilite: #000;
    --main-dk-green: #366;
    --main-dk-green-a50: rgba(51, 102, 102, 0.5);
    --main-brown: #54370d;
    --main-greige: #989376;
    --main-canary: #ffee7a;
    --main-dk-red: #700;
    --main-red: #ab3434;
    --main-black: #000;
    --main-gray: #777;
    --main-dk-gray: #222;
    --main-lt-gray: #eee;
    --main-white: #fff;
    --main-white-a50: rgba(255, 255, 255, 0.5);
}
main.main {
    padding-top: 65px;
}
.home main.main {
    padding-top: 0;
}
a {
    font-weight: 700;
    color: var(--main-dk-red);
}
a.read-more {
    font-family: roboto, arial, helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 80%;
    padding-left: 3px;
    white-space: nowrap;
}
.photo-credit,
h6,
legend {
    letter-spacing: 2px;
    text-transform: uppercase;
}
ol,
p,
ul {
    padding: 0 0 1em;
}
.large p {
    font-size: 130%;
}
.small p {
    font-size: 80%;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.text-center,
.text-center * {
    text-align: center !important;
}
.text-left,
.text-left * {
    text-align: left !important;
}
.text-right,
.text-right * {
    text-align: right !important;
}
.text-justified,
.text-justified * {
    text-align: justify !important;
}
blockquote {
    padding: 2em;
    margin: 2em 0;
    background: var(--main-lt-gray);
    border: none;
    border-left: 3px solid var(--main-dk-green);
    font-size: 90%;
}
blockquote p:last-of-type {
    padding: 0;
}
.entry-content p a,
.entry-content ul a,
.strong,
b,
strong {
    font-family: roboto, arial, verdana, helvetica, sans-serif;
    font-weight: 700;
}
.strong,
b,
strong {
    color: var(--main-hilite);
}
.em,
em,
i {
    font-style: italic;
}
.photo-credit {
    font-size: 8pt;
    line-height: 12pt;
    text-align: right;
    padding-top: 4px;
}
.clickable {
    cursor: pointer;
}
hr {
    padding: 0;
    margin: 20px 0;
    border-top: 1px dashed #ccc;
    border-bottom: none;
}
.main > .stage {
    padding: 50px 1rem;
}
.main ul {
    padding: 0 0 1em;
}
.main ul li {
    padding: 0 0 0.5em 1.1em;
    position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0 0 0.5em;
    margin: 0;
}
.main ul li:before {
    content: "";
    height: 0;
    width: 0;
    border: 6px solid transparent;
    border-left-width: 10px;
    border-left-color: var(--main-gray);
    position: absolute;
    top: 7px;
    left: 0;
}
dl {
    padding: 20px 0;
    font: 400 10pt Roboto, arial, helvetica, sans-serif;
}
dt,
legend {
    font-weight: 700;
    padding: 0 0 0 20px;
    position: relative;
}
dd {
    padding: 0 0 1em 20px;
}
ol {
    list-style-type: decimal;
    padding: 0 2em 1em 1em;
}
ol li {
    margin-bottom: 0.5em;
}
fieldset {
    border: 1px solid #ccc;
    padding: 2em;
    margin: 0 0 2em;
}
legend {
    font-size: 80%;
    left: -10px;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 1em 0;
    font: 400 10pt Roboto, arial, helvetica, sans-serif;
}
sub,
sup {
    font-size: 75%;
    position: relative;
}
h1,
h2,
h3,
h6,
th {
    font-weight: 700;
}
th {
    text-align: left;
    border-bottom: 1px solid #ccc;
}
td {
    padding: 5px;
}
table.table-list tr td:first-of-type {
    font-weight: 700;
    color: var(--main-dk-green);
    width: 33%;
}
table.table-list tr td:first-of-type a {
    color: inherit;
}
table.table-list tr td:last-of-type {
    width: 67%;
}
table.table-list tr {
    background-color: var(--main-greige);
}
table.table-list tr:nth-child(even) {
    background-color: transparent;
}
sup {
    top: -5px;
}
sub {
    top: 5px;
}
cite {
    opacity: 0.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
abbr,
acronym {
    border-bottom: 1px dotted #ccc;
    cursor: help;
}
code,
kbd,
pre,
samp,
tt,
var {
    font-family: courier, monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 1em;
    margin: 1em;
    font-size: 90%;
    display: block;
    background: var(--main-lt-gray);
}
h1,
h2,
h3,
h6 {
    font-family: Staatliches, arial, helvetica, sans-serif;
    line-height: 1;
    color: var(--main-header);
}
h4,
h5 {
    font-family: Lora, georgia, times, serif;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    letter-spacing: -1px;
}
div.cascade.bg-dark h1,
div.cascade.bg-dark h2,
div.cascade.bg-dark h3,
div.cascade.bg-dark h4,
div.cascade.bg-dark h5 {
    color: var(--home-header);
}
div.cascade.bg-dark h6 {
    color: var(--home-text);
}
.page-header h4,
h6,
span.article-meta {
    color: var(--main-dk-green);
}
article.waw-page-content h1,
article.waw-page-content h2,
article.waw-page-content h3,
article.waw-page-content h4,
article.waw-page-content h5,
article.waw-page-content h6 {
    padding-top: 1em;
}
div.cascade h6 {
    padding: 0 0 2em;
}
h1 {
    font-size: 35pt;
}
h2 {
    font-size: 30pt;
}
h3 {
    font-size: 25pt;
}
h4 {
    font-size: 18pt;
}
h5 {
    font-size: 16pt;
}
h6 {
    font-size: 12pt;
}
::-moz-selection {
    background: var(--main-canary);
    text-shadow: none;
}
::selection {
    background: var(--main-canary);
    text-shadow: none;
}
span.article-meta {
    font: 700 10pt/1.5 roboto, arial, verdana, sans-serif;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    top: -5px;
    padding: 0 0 1em;
}
.fade-clear {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.loading-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--main-black);
    z-index: 15000;
}
.loading-con {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.loading-spinner {
    width: 75px;
    height: 75px;
    border: 10px solid var(--main-white-a50);
    border-right-color: var(--main-dk-green);
    border-radius: 50%;
    margin: 0 auto;
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}
.main,
.stage {
    margin: 0;
    position: relative;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.main {
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.full-screen {
    width: 100%;
    height: 100%;
    background: var(--main-white);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.stage {
    padding: 20px;
}
.menu-main-con div.stage {
    padding: 0 !important;
    margin: 0 auto !important;
    overflow: visible !important;
}
.cascade,
.ctb-slides,
.entry-summary,
.featured-image,
.footer-widgets,
.no-height,
.no-overflow,
.page-margin,
.popup-box-con,
.screen-reader-text,
.waw-works-list-item,
div.sh-overseas-books-con {
    overflow: hidden;
}
.page-header {
    padding: 0 0 1em;
    margin: 0 0 1.5em;
}
.page-header h1 {
    margin: 0;
    padding: 0;
}
.page-header h4 {
    padding: 0.5em 0 0;
    font-size: 20pt;
}
.page-header h6 {
    padding: 0 0 2em;
}
ul.meta-list {
    margin: 5px 0 0;
    padding: 0;
}
ul.meta-list li {
    display: inline-block;
    font: 700 9pt/1 roboto, arial, verdana, helvetica, sans-serif;
    text-transform: uppercase;
    color: var(--main-dk-red);
    letter-spacing: 2px;
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
    border-right: 1px solid var(--main-dk-red);
    white-space: nowrap;
}
ul.meta-list li:last-of-type {
    margin: 0;
    padding: 0;
    border-right: none;
}
ul.meta-list li:before {
    content: none;
}
#tribe-events-pg-template,
.tribe-events-pg-template {
    max-width: none !important;
    padding: 0 !important;
}
.archive-header,
.events-header {
    padding: 0 0 0.1em;
    display: table;
    margin: 0 auto 4em;
    text-align: center;
}
.archive-header,
.events-header h1 span {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.archive-header h1,
.events-header h1 {
    color: var(--main-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-left: 3px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    font-size: 25pt;
    font-weight: 400;
}
.breadcrumbs p,
.entry-meta,
.footer-credits p,
.menu-main li,
.page-numbers {
    letter-spacing: 1px;
}
.no-mobile {
    display: none;
}
.entry-meta-item,
.has-featured-image p:first-of-type {
    display: block;
}
.entry-header {
    padding: 0.5em 0 2em;
    margin: 0 auto;
}
.entry-header h1 {
    padding-bottom: 0.2em;
}
.entry-header h5 {
    padding-bottom: 0.6em;
    font: italic 18pt/1.2 Lora, georgia, times, serif;
    font-weight: 400;
}
.entry-meta-item,
p.latest-posts {
    font-family: Roboto, arial, helvetica, sans-serif;
}
.entry-summary-header h4 {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
    padding: 0 0 0.1em;
    margin: 0 0 0.1em;
}
.entry-summary-header a {
    color: inherit;
}
.entry-con {
    position: relative;
}
.entry-meta {
    font-weight: 700;
    font-size: 9pt;
    line-height: 1.4;
    text-transform: uppercase;
    padding: 0.3em 0 1em;
    margin: 0;
    color: var(--main-red);
}
.entry-meta a {
    color: inherit;
}
.entry-featured-image {
    width: 100%;
    height: auto;
    border: 1px solid #000;
}
p.latest-posts {
    font-size: 11pt !important;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
p.latest-posts.lp-date {
    font-size: 8pt !important;
    color: var(--main-greige);
    margin: 0;
    padding: 0 0 1.5em;
}
.entry-summary-header {
    padding: 1em 0 0.5em;
    margin: 0 auto;
}
.entry-summary p {
    font-size: 12pt;
}
.entry-footer {
    margin: 0;
    padding: 2em 0 3em;
}
p.list-item-deck {
    font-size: 90%;
    font-style: italic;
    color: var(--main-gray);
    padding: 0;
}
p.entry-tags {
    font-family: roboto, arial, verdana, sans-serif;
    font-size: 10pt;
    line-height: 1.4;
    padding: 0 0 4em;
}
.entry-tags {
    padding: 0;
}
.featured-image {
    width: 100%;
    height: 300px;
    padding: 0;
    margin: 0;
    position: relative;
    box-shadow: 0 0 5px #000;
}
.fea-img-text,
.fea-img-text-con {
    margin: 0 auto;
}
.fea-img-text,
.featured-image img,
.header,
.img-bgcover,
.img-parallax {
    width: 100%;
    position: absolute;
    left: 0;
}
.featured-image img {
    height: 100%;
    top: 0;
    object-position: 50% 0;
    z-index: 0;
}
.fea-img-text {
    bottom: 0;
    padding: 50px 10px 10px;
}
.fea-img-text-con * {
    text-shadow: 0 0 5px var(--main-black);
    text-align: center;
    color: var(--main-white);
}
.fea-img-text-con h1 {
    font-size: 24pt;
    color: var(--main-white);
    padding: 0 0 0.2em;
}
.fea-img-text-con h4 {
    text-align: center;
    padding: 0;
    font-size: 14pt;
    line-height: 1.3;
}
.has-featured-image p:first-of-type::first-letter {
    display: block;
    float: left;
    font-weight: 700;
    line-height: 65pt;
    font-size: 70pt;
    margin: 0 5px 0 0;
    color: var(--main-dk-green);
}
.nav-links {
    width: 100%;
    display: table;
    margin: 1em 0 0;
    padding: 1em 0 0;
    border-top: 1px dashed var(--main-greige);
    text-align: center;
}
.nav-next,
.nav-previous {
    display: table-cell;
    text-align: left;
}
.nav-next {
    text-align: right;
}
.nav-previous:before {
    content: "\25c4";
    color: var(--main-greige);
    margin: 0 5px 0 0;
}
.nav-next:after {
    content: "\25ba";
    color: var(--main-greige);
    margin: 0 0 0 5px;
}
.page-numbers {
    display: inline-block;
    font-family: Staatliches, verdana, sans-serif;
    font-size: 1em;
    line-height: 1;
    padding: 6px 9px;
    color: var(--main-black);
    background-color: var(--main-white);
    margin: 0 5px;
    border: 1px solid var(--main-black);
    -webkit-appearance: none;
    cursor: pointer;
}
.page-numbers.current,
.page-numbers.current:hover,
.page-numbers:hover {
    background-color: var(--main-black);
    color: var(--main-white);
}
.page-numbers.dots,
.page-numbers.dots:hover {
    cursor: auto;
    color: var(--main-black) !important;
    background-color: var(--main-white);
}
.comments {
    padding: 2em 0 0;
}
.form-allowed-tags {
    font-size: 9pt;
    color: #777;
}
.c1,
.c2,
.c3 {
    max-width: 250px;
}
.page-margin {
    padding: 20px;
}
.img-parallax {
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.img-bgcover {
    height: 100%;
    top: 0;
    z-index: 0;
}
.header {
    top: 0;
    z-index: 9999;
    background: var(--main-black);
	height: 65px;
}
.home .header {
    background: rgba(0, 0, 0, 0.5);
}
.header .stage {
    padding: 0;
}
.header-branding {
    padding: 13px 15px;
    margin: 0;
    z-index: 999;
    display: table;
}
.header-branding img {
    height: 39px;
    width: auto;
}
.header-branding a {
    display: block;
    height: 0;
    color: var(--main-white);
}
.header-branding h1 {
    color: var(--main-white);
    text-shadow: 0 0 10px #000;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 30pt;
    line-height: 1;
    text-align: left;
}
.search-form-con {
    display: block;
    width: 200px;
    height: 65px;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
}
input.search-input {
    display: inline-block;
    font-size: 12pt !important;
    border: none !important;
    width: 100%;
    color: var(--main-text);
    padding: 8px 30px 8px 8px !important;
    background: var(--main-white);
}
input.search-button {
    margin: 0 !important;
    padding: 10px 5px !important;
    color: var(--main-text) !important;
    font-size: 15pt !important;
    font-family: entypo !important;
    background-color: transparent !important;
    position: absolute;
    top: 0;
    right: 0;
    border: none !important;
}
#header-home-btn,
.header-scroll-arrow {
    display: none;
}
.waw-menu-main-con {
    width: 100%;
    margin: 0;
    padding: 15px;
    background: #222;
    position: absolute;
    top: 65px;
    left: -110%;
}
.show-menu .waw-menu-main-con {
    left: 0;
}
.menu-main-ctl-con {
    position: absolute;
    top: 0;
    right: 0;
    padding: 23px 15px;
    text-align: center;
    background-color: transparent;
    z-index: 99999;
}
.cascade,
.menu-bar {
    background-color: var(--main-white);
}
.menu-main-ctl {
    position: relative;
    width: 35px;
    height: 19px;
    margin: 0 auto;
}
.menu-bar {
    display: block;
    width: 35px;
    height: 3px;
    position: absolute;
    left: 0;
}
.fancy-select,
.footer,
.footer-widgets,
.menu-main li,
.menu-main-con {
    position: relative;
}
.menu-bar.top {
    top: 0;
}
.menu-bar.middle {
    top: 9px;
}
.menu-bar.bottom {
    top: 18px;
}
.show-menu .menu-bar {
    width: 30px;
    top: 8px;
}
.show-menu .menu-main-ctl {
    width: 30px;
}
.show-menu .menu-bar.top {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
}
.show-menu .menu-bar.middle {
    width: 0;
    right: 10px;
    opacity: 0;
}
.show-menu .menu-bar.bottom {
    -webkit-transform: rotate(495deg);
    -moz-transform: rotate(495deg);
    -ms-transform: rotate(495deg);
    -o-transform: rotate(495deg);
    transform: rotate(495deg);
}
.menu-main-con {
    width: 100%;
    height: 56px;
    z-index: 9500;
    background: #273e47;
    padding: 0;
    border-bottom: 1px solid #eee;
}
.menu-main {
    margin: 0;
    padding: 0;
    width: 100%;
}
.show-menu .menu-main {
    display: block;
}
.menu-main li {
    font: 700 18pt/1 Staatliches, arial, helvetica, sans-serif;
    display: block;
    color: var(--main-white);
    padding: 10px 0;
}
.menu-main li a {
    font-weight: 400;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    width: 100%;
    color: inherit;
}
.menu-main li ul {
    text-align: left;
    margin: 0;
    padding: 10px 0 0 20px;
}
.menu-main li ul li {
    font-size: 14pt;
    display: block;
    width: 100%;
    float: none;
    border-bottom: none;
    border-top: none;
}
.waw-menu-main-con .waw-sm-icons {
    display: block;
    margin: 0 auto;
    padding: 0 0 35px;
    text-align: center;
}
.waw-menu-main-con .waw-sm-icons li {
    display: inline-block;
    float: none;
}
.waw-menu-main-con .waw-sm-icon {
    font-size: 20pt;
    padding: 0 10px;
    color: var(--home-hilite);
}
.breadcrumbs {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 2em;
}
.breadcrumbs p {
    font-size: 9pt;
    font-family: Roboto, arial, helvetica, sans-serif;
    text-transform: uppercase;
    color: #273e47;
    padding: 0;
    font-weight: 700;
}
.breadcrumbs a {
    color: inherit;
    font-weight: 400;
}
.breadcrumbs .ico-home {
    position: relative;
    top: 1px;
}
.sh-work-article {
    padding: 0 0 40px;
}
.sh-work-article:last-of-type {
    padding: 0;
}
.sh-asides h5 {
    padding: 0 0 0.3em;
}
.sh-asides p,
.sh-asides ul {
    font-family: roboto, arial, verdana, helvetica, sans-serif;
    font-size: 80%;
}
.sh-asides ul li {
    padding-left: 12px;
}
.sh-asides ul li:before {
    border-width: 4px 4px 4px 7px;
    top: 6px;
}
.footer {
    padding: 40px 20px;
    margin: 0;
    background: var(--main-dk-gray);
    z-index: +1;
}
.footer .stage,
.footer p:last-of-type,
.footer-widgets {
    padding: 0;
}
.footer img.size-medium {
    width: 400px;
    height: auto;
    max-width: 80% !important;
    padding: 0;
    margin: 0 auto;
}
.footer * {
    text-align: center;
    font: 700 14pt/1.5 Staatliches, arial, helvetica, sans-serif;
    text-transform: uppercase;
    color: var(--home-text);
}
.footer a {
    color: inherit;
}
.footer-widgets {
    text-align: center;
}
.footer .widget {
    margin: 0 auto;
    padding: 0 0 2em;
}
.footer-credits p {
    font-size: 6pt;
    line-height: 2.5;
    text-transform: uppercase;
}
.footer .waw-sm-icon {
    color: var(--main-white);
    margin: 0;
    padding: 15px;
}
.share-icons {
    list-style-type: none;
    text-align: left;
    color: #777;
    padding: 1em 0 0;
}
.aligncenter,
.hp-hero-text p,
.mc-submit,
div.aligncenter {
    text-align: center;
}
.share-icons a {
    color: inherit;
}
.share-this {
    margin: 0 15px 0 0;
}
.smi-facebook:before {
    content: "b";
}
.smi-twitter:before {
    content: "a";
}
.smi-googleplus:before {
    content: "c";
}
.smi-instagram:before {
    content: "x";
}
.smi-linkedin:before {
    content: "j";
}
.smi-email:before {
    content: "@";
}
.smi-goodreads:before {
    content: "5";
}
.smi-pinterest:before {
    content: "d";
}
.smi-myspace:before {
    content: "m";
}
.smi-soundcloud:before {
    content: "n";
}
.smi-spotify:before {
    content: "o";
}
.smi-youtube:before {
    content: "r";
}
.smi-vimeo:before {
    content: "s";
}
.smi-dailymotion:before {
    content: "t";
}
.smi-vine:before {
    content: "u";
}
.smi-flickr:before {
    content: "v";
}
.smi-stumbleupon:before {
    content: "E";
}
.smi-tumblr:before {
    content: "z";
}
.share-icons li.smi-facebook {
    background-color: #3b5a9a;
}
.share-icons li.smi-twitter {
    background-color: #2da8e0;
}
.share-icons li.smi-googleplus {
    background-color: #dd4c37;
}
.share-icons li.smi-instagram {
    background-color: #537fa4;
}
.share-icons li.smi-linkedin {
    background-color: #077bb7;
}
.share-icons li.smi-email {
    background-color: #0b0;
}
.share-icons li.smi-goodreads {
    background-color: #743900;
}
.share-icons li.smi-pinterest {
    background-color: #cb2129;
}
.share-icons li.smi-myspace {
    background-color: #039;
}
.share-icons li.smi-soundcloud {
    background-color: #f04e24;
}
.share-icons li.smi-spotify {
    background-color: #7ab843;
    color: #000;
}
.share-icons li.smi-youtube {
    background-color: #c9322d;
}
.share-icons li.smi-vimeo {
    background-color: #20b7eb;
}
.share-icons li.smi-dailymotion {
    background-color: #0064dc;
}
.share-icons li.smi-vine {
    background-color: #00b488;
}
.share-icons li.smi-flickr {
    background-color: #ed2183;
}
.share-icons li.smi-stumbleupon {
    background-color: #e74d25;
}
.share-icons li.smi-tumblr {
    background-color: #31506d;
}
form {
    font-family: Roboto, arial, helvetica, sans-serif;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    font-weight: 400;
    font-size: 16pt;
    padding: 8px 12px;
    border: 1px solid #777;
    border-radius: 3px;
    margin: 0;
    -webkit-appearance: none;
    vertical-align: top;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
}
.fancy-select,
.mc-field-group label {
    font-weight: 700;
    display: block;
}
textarea {
    height: 200px;
    resize: none;
}
input:disabled,
textarea:disabled {
    opacity: 0.5;
    cursor: auto;
}
.button,
.cta-link,
a.cta-link,
input[type="submit"] {
    font-family: roboto, arial, verdana, sans-serif;
    background-color: transparent;
    display: table;
    margin: 10px auto;
    padding: 25px 40px;
    border: 1px solid var(--main-text);
    color: var(--main-text);
    font-size: 9pt;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.bg-dark .button,
.bg-dark .cta-link,
.bg-dark a.cta-link,
.bg-dark input[type="submit"],
.hp-feature .button,
.hp-feature .cta-link,
.hp-feature a.cta-link,
.hp-feature input[type="submit"] {
    border: 1px solid var(--home-text);
    color: var(--home-text);
}
.hp-feature .cta-link {
    margin: 0 auto;
}
.pointer {
    cursor: pointer;
}
.search-header {
    padding: 0 0 40px;
}
input.srch-btn {
    display: inline-block;
    margin: 0;
    padding: 14px 10px;
}
.search-page-form {
    padding: 0 0 40px;
}
img.hp-book-sale-link {
    width: 130px;
    height: auto;
    padding: 0 10px;
    display: inline-block;
    vertical-align: middle;
}
img.hp-book-sale-link.img-amazon {
    width: 110px;
    margin-top: 15px;
}
img.hp-book-sale-link.img-audible,
img.hp-book-sale-link.img-bn {
    width: 160px;
}
div.sh-overseas-books {
    margin: 0;
    padding: 2em 0;
}
div.sh-overseas-books-con {
    padding: 0 0 2em;
}
img.sh-overseas-book-img {
    width: 300px;
    height: auto;
    max-width: 80%;
    display: block;
    margin: 0 auto 20px;
}
div.sh-overseas-book-text h4 {
    padding-top: 0;
}
.fancy-select {
    margin: 0 auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: var(--main-white);
    font-family: Roboto, arial, helvetica, sans-serif;
    font-size: 9pt;
    line-height: 1;
    padding: 15px 40px 15px 20px;
    background: url(../img/menu-arrows.png) right center no-repeat #bd632f;
    background-size: auto 15px;
}
.fancy-select .first-option:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--main-white) transparent transparent;
}
.mc-form {
    padding: 0 0 2em;
}
.mc-field-group {
    position: relative;
    margin: 0 0 1em;
}
.mc-field-group ul li label {
    display: inline;
    font-weight: 400;
}
.mc-field-group input[type="text"],
.mc-field-group input[type="email"],
.mc-field-group textarea {
    width: 100%;
}
.mc-submit {
    padding: 1em 0 0;
}
.asterisk {
    color: red;
}
.indicates-required {
    margin: 0 0 1em;
    font-size: 10pt;
}
.post-edit-link {
    position: absolute;
    top: 0;
    right: 0;
    font: 400 7pt arial, helvetica, sans-serif;
    color: #999;
    text-transform: uppercase;
}
img.waw-attch-img {
    width: 100%;
    height: auto;
    display: block;
}
.aligncenter,
.alignleft,
.alignnone,
.alignright,
.entry-summary img,
.full-width,
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
.wp-caption,
.wp-caption.alignleft,
.wp-caption.alignnone,
.wp-caption.alignright {
    display: block;
    height: auto;
}
.wp-caption {
    margin-bottom: 1.5em;
    margin-left: -1rem;
    max-width: 100vw;
}
.full-width,
.size-full,
.size-large,
.size-medium {
    width: 112%;
    margin-left: -6%;
    margin-right: -6%;
}
.size-thumbnail {
    width: 150px;
    margin: 0 auto;
}
.alignleft {
    float: left;
    margin: 0 10px 10px 0;
}
.alignright {
    float: right;
    margin: 0 0 10px 10px;
}
.wp-caption img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    border: 0;
    margin: 0 0 4px;
    padding: 0;
}
.wp-caption p,
p.caption {
    font-family: roboto, arial, helvetica, sans-serif;
    font-size: 9pt;
    font-weight: 400;
    padding: 0.5em 0 0;
    margin: 0;
    text-align: center;
}
.wp-caption p {
    padding: 0 6% 2em;
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
.hp-bg-img {
    width: 100vw;
    height: 100vh;
    margin: 0;
    object-position: 0 -100px;
    position: absolute;
    top: 0;
    left: 0;
}
div.hp-feature {
    background: var(--main-black);
    overflow: hidden;
    z-index: 1;
    position: relative;
    height: 100vh;
}
.hp-hero-text-con {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.hp-hero-text {
    padding: 10px 15px 40px;
}
.hp-hero-text p {
    font-size: 14pt;
}
p.hp-img-credit {
    font: 700 8pt/1 roboto, arial, helvetica, sans-serif;
    color: var(--main-text);
    text-align: left;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 10px;
    bottom: 10px;
}
.hp-content-block *,
div.cascade * {
    text-align: center;
}
div.cascade.bg-dark *,
div.hp-feature * {
    color: var(--home-text);
}
div.cascade.bg-dark a,
div.hp-feature a,
div.hp-feature strong {
    color: var(--main-white);
}
.hp-content-block {
    padding: 20px 20px 60px;
}
.hp-cb-body-copy h3,
.hp-cb-body-copy h4,
.hp-cb-body-copy h5,
.hp-cb-body-copy h6 {
    padding: 0 0 0.2em;
}
.hp-cb-body-copy a,
.hp-cb-body-copy b,
.hp-cb-body-copy strong {
    font-family: roboto, sans-serif;
}
.hp-cb-img {
    max-width: 90%;
    max-height: 250px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}
.ctb-slides {
    width: 100vw;
    height: 100vw;
    position: relative;
}
.ctb-slide-img {
    width: 100%;
    height: 100%;
}
.hp-cb-body-copy {
    padding: 30px;
}
.cascade {
    padding: 40px 20px;
    position: relative;
    z-index: +1;
}
div.cascade.bg-dark {
    background-color: var(--main-dk-gray);
}
.casc-con-parallax {
    height: 200px;
    background: #777;
}
img.cascade-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}
img.casc-img-parallax {
    position: absolute;
    top: 0;
    left: 0;
    height: 50vh;
    width: 100vw;
    object-fit: cover;
    object-position: 50% -100px;
}
.hp-news-item {
    padding: 0 0 2em;
}
.hp-news-item h3 {
    padding: 0 0 0.2em;
}
div.hp-news-item h5 {
    font-size: 14pt;
    padding: 0 0 0.5em;
}
div.hp-news-item h5 * {
    color: var(--main-white) !important;
}
p.hp-news-date {
    font-family: roboto, arial, helvetica, sans-serif;
    font-size: 70%;
    font-weight: 700;
    color: var(--main-canary) !important;
    text-transform: uppercase;
}
.event-list-meta {
    font-family: Roboto, arial, helvetica, sans-serif;
    font-size: 12pt;
    height: 23px;
    line-height: 1.2;
    text-transform: uppercase;
    clear: both;
    display: block;
    margin: 10px 0 20px;
    padding: 0;
}
.event-date-time,
.event-list-ticket-cost,
.event-ticket-buy {
    display: block;
    float: left;
    margin: 0;
    padding: 6px 8px !important;
    border-radius: 0;
    text-transform: uppercase !important;
    font-family: Roboto, arial, helvetica, sans-serif;
    font-weight: 700;
    font-size: 10pt;
}
.event-date-time {
    background-color: #273e47;
    color: var(--main-white);
}
.event-list-ticket-cost {
    background: var(--main-white);
    color: #000;
}
.event-ticket-buy {
    background: var(--main-white);
    color: #a4243b;
    cursor: pointer;
}
.event-ticket-buy:before {
    font-family: entypo;
    content: "\e09e";
    line-height: 1;
    vertical-align: -2px;
    margin: 0 5px 0 0;
}
.event-text-con .event-date-time {
    padding: 0 0 0.5em;
}
.event-text-header {
    position: relative;
}
.view-more-info-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: block !important;
    width: 30px;
    height: 30px;
    font-size: 18pt !important;
    padding: 0 !important;
    background-color: transparent !important;
    color: rgba(039, 062, 071, 0.5) !important;
}
.view-more-info-btn .ico-info-circled:before {
    top: 5px;
}
.event-text-header h3 {
    font-size: 20pt;
    color: #273e47;
    border-bottom: 1px dashed rgba(039, 062, 071, 0.3);
    padding: 0.2em 35px 4px 0;
    margin-bottom: 0;
}
.event-text-header h6 {
    color: #bd632f;
    padding: 6px 0 0;
}
.event-tickets {
    margin: 1em 0;
}
.event-organizer {
    font-family: Roboto, arial, helvetica, sans-serif;
    font-size: 9pt;
    padding: 2em 0 0;
}
.event-spotify-playlist {
    padding: 2em 0;
}
.video-container {
    position: relative;
    padding-bottom: 52%;
    padding-top: 25px;
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.datepicker.dropdown-menu {
    z-index: 99999 !important;
}
.sh-review-pub {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 60%;
    white-space: nowrap;
    padding-left: 5px;
    font-family: roboto, arial, verdana, helvetica, sans-serif;
}
img.work-img {
    display: block !important;
    width: 100% !important;
    margin: 0 0 5px !important;
}
.waw-works-list {
    width: 100%;
}
.waw-works-list-item {
    width: 100%;
    padding: 0 0 40px;
}
.waw-list-summary-img {
    width: 110%;
    height: auto;
    margin-left: -5%;
    margin-right: -5%;
}
.waw-works-list-item ul.tax-meta {
    margin: 0 0 1em;
    padding: 0;
}
.nf-header h6 {
    color: var(--main-dk-green);
    padding: 0 0 3em;
    letter-spacing: 0;
}
.nf-item {
    margin: 0;
    padding: 0 0 40px;
}
.nf-item-header {
    padding: 0 0 1em;
}
.nf-item-header h2 {
    padding: 0;
    margin: 0 0 0.1em;
}
.nf-item-header h2 a {
    color: var(--main-header);
}
.nf-item-header h5 {
    font-size: 16pt;
    padding: 0;
}
p.nf-item-date {
    font-style: italic;
    color: var(--main-dk-red);
    font-size: 70%;
    padding: 0 0 0.7em;
}
[class*=" ico-"]:before,
[class^="ico-"]:before,
[data-icon]:before {
    font-family: entypo !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.nf-item-img {
    width: 112%;
    height: auto;
    margin: 0 -6% 3px;
    display: block;
}
.nf-sidebar,
.screen-reader-text {
    display: none;
}
.fixed {
    position: fixed !important;
}
.ontop {
    z-index: 999999 !important;
}
.bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hide {
    display: none !important;
}
.block,
.coverall {
    display: block;
}
.no-height {
    height: 0;
}
.background,
.coverall {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.coverall {
    z-index: +1;
}
.background {
    z-index: 0;
}
.content-top,
.top {
    z-index: 9000;
}
.hoverclear:hover {
    background-color: transparent;
}
.anim,
.anim.all * {
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
}
.anim.fast,
.anim.fast.all * {
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease;
}
.anim-slow,
.anim-slow.all * {
    -webkit-transition: 0.8s all ease;
    -moz-transition: 0.8s all ease;
    -o-transition: 0.8s all ease;
    transition: 0.8s all ease;
}
.a05 {
    background-color: rgba(0, 0, 0, 0.05) !important;
}
.a10 {
    background-color: rgba(0, 0, 0, 0.1) !important;
}
.a20 {
    background-color: rgba(0, 0, 0, 0.2) !important;
}
.a30 {
    background-color: rgba(0, 0, 0, 0.3) !important;
}
.a40 {
    background-color: rgba(0, 0, 0, 0.4) !important;
}
.a50 {
    background-color: rgba(0, 0, 0, 0.5) !important;
}
.a60 {
    background-color: rgba(0, 0, 0, 0.6) !important;
}
.a70 {
    background-color: rgba(0, 0, 0, 0.7) !important;
}
.a80 {
    background-color: rgba(0, 0, 0, 0.8) !important;
}
.a90 {
    background-color: rgba(0, 0, 0, 0.9) !important;
}
.b10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.b20 {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
.b30 {
    background-color: rgba(255, 255, 255, 0.3) !important;
}
.b40 {
    background-color: rgba(255, 255, 255, 0.4) !important;
}
.b50 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}
.b60 {
    background-color: rgba(255, 255, 255, 0.6) !important;
}
.b70 {
    background-color: rgba(255, 255, 255, 0.7) !important;
}
.b80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
}
.b90 {
    background-color: rgba(255, 255, 255, 0.9) !important;
}
.p10 {
    padding: 10px !important;
}
.p20 {
    padding: 20px !important;
}
.p30 {
    padding: 30px !important;
}
.p40 {
    padding: 40px !important;
}
.p50 {
    padding: 50px !important;
}
.p60 {
    padding: 60px !important;
}
.p70 {
    padding: 70px !important;
}
.p80 {
    padding: 80px !important;
}
.p90 {
    padding: 90px !important;
}
.o10 {
    opacity: 0.1;
}
.o20 {
    opacity: 0.2;
}
.o30 {
    opacity: 0.3;
}
.o40 {
    opacity: 0.4;
}
.o50 {
    opacity: 0.5;
}
.o60 {
    opacity: 0.6;
}
.o70 {
    opacity: 0.7;
}
.o80 {
    opacity: 0.8;
}
.o90 {
    opacity: 0.9;
}
.r45 {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.r90 {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.r135 {
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.r180 {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.r225 {
    -ms-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
.r270 {
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
.r315 {
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
.inline {
    display: inline;
}
.nopos {
    position: static !important;
}
.nopadding,
.noshim {
    margin: 0 !important;
    padding: 0 !important;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.static {
    position: static;
}
.no-float {
    float: none;
    clear: both;
}
.popup-box-con {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.info-box {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    margin: 0 auto;
    background: var(--main-white);
    position: relative;
}
[data-icon]:before {
    content: attr(data-icon);
}
.ico-address:before {
    content: "\61";
}
.ico-adjust:before {
    content: "\62";
}
.ico-air:before {
    content: "\63";
}
.ico-alert:before {
    content: "\64";
}
.ico-archive:before {
    content: "\65";
}
.ico-arrow-combo:before {
    content: "\66";
}
.ico-arrows-ccw:before {
    content: "\67";
}
.ico-attach:before {
    content: "\68";
}
.ico-attention:before {
    content: "\69";
}
.ico-back:before {
    content: "\6a";
}
.ico-back-in-time:before {
    content: "\6b";
}
.ico-bag:before {
    content: "\6c";
}
.ico-basket:before {
    content: "\6d";
}
.ico-battery:before {
    content: "\6e";
}
.ico-behance:before {
    content: "\6f";
}
.ico-bell:before {
    content: "\70";
}
.ico-block:before {
    content: "\71";
}
.ico-book:before {
    content: "\72";
}
.ico-book-open:before {
    content: "\73";
}
.ico-bookmark:before {
    content: "\74";
}
.ico-bookmarks:before {
    content: "\75";
}
.ico-box:before {
    content: "\76";
}
.ico-briefcase:before {
    content: "\77";
}
.ico-brush:before {
    content: "\78";
}
.ico-bucket:before {
    content: "\79";
}
.ico-calendar:before {
    content: "\7a";
}
.ico-camera:before {
    content: "\41";
}
.ico-cancel:before {
    content: "\42";
}
.ico-cancel-circled:before {
    content: "\43";
}
.ico-cancel-squared:before {
    content: "\44";
}
.ico-cc:before {
    content: "\45";
}
.ico-cc-by:before {
    content: "\46";
}
.ico-cc-nc:before {
    content: "\47";
}
.ico-cc-nc-eu:before {
    content: "\48";
}
.ico-cc-nc-jp:before {
    content: "\49";
}
.ico-cc-nd:before {
    content: "\4a";
}
.ico-cc-pd:before {
    content: "\4b";
}
.ico-cc-remix:before {
    content: "\4c";
}
.ico-cc-sa:before {
    content: "\4d";
}
.ico-cc-share:before {
    content: "\4e";
}
.ico-cc-zero:before {
    content: "\4f";
}
.ico-ccw:before {
    content: "\50";
}
.ico-cd:before {
    content: "\51";
}
.ico-chart-area:before {
    content: "\52";
}
.ico-chart-bar:before {
    content: "\53";
}
.ico-chart-line:before {
    content: "\54";
}
.ico-chart-pie:before {
    content: "\55";
}
.ico-chat:before {
    content: "\56";
}
.ico-check:before {
    content: "\57";
}
.ico-clipboard:before {
    content: "\58";
}
.ico-clock:before {
    content: "\59";
}
.ico-cloud:before {
    content: "\5a";
}
.ico-cloud-thunder:before {
    content: "\30";
}
.ico-code:before {
    content: "\31";
}
.ico-cog:before {
    content: "\32";
}
.ico-comment:before {
    content: "\33";
}
.ico-compass:before {
    content: "\34";
}
.ico-credit-card:before {
    content: "\35";
}
.ico-cup:before {
    content: "\36";
}
.ico-cw:before {
    content: "\37";
}
.ico-database:before {
    content: "\38";
}
.ico-db-shape:before {
    content: "\39";
}
.ico-direction:before {
    content: "\21";
}
.ico-doc:before {
    content: "\22";
}
.ico-doc-landscape:before {
    content: "\23";
}
.ico-doc-text:before {
    content: "\24";
}
.ico-doc-text-inv:before {
    content: "\25";
}
.ico-docs:before {
    content: "\26";
}
.ico-dot:before {
    content: "\27";
}
.ico-dot-2:before {
    content: "\28";
}
.ico-dot-3:before {
    content: "\29";
}
.ico-down:before {
    content: "\2a";
}
.ico-down-bold:before {
    content: "\2b";
}
.ico-down-circled:before {
    content: "\2c";
}
.ico-down-dir:before {
    content: "\2d";
}
.ico-down-open:before {
    content: "\2e";
}
.ico-down-open-big:before {
    content: "\2f";
}
.ico-down-open-mini:before {
    content: "\3a";
}
.ico-down-thin:before {
    content: "\3b";
}
.ico-download:before {
    content: "\3c";
}
.ico-dribbble:before {
    content: "\3d";
}
.ico-dribbble-circled:before {
    content: "\3e";
}
.ico-drive:before {
    content: "\3f";
}
.ico-dropbox:before {
    content: "\40";
}
.ico-droplet:before {
    content: "\5b";
}
.ico-erase:before {
    content: "\5d";
}
.ico-evernote:before {
    content: "\5e";
}
.ico-export:before {
    content: "\5f";
}
.ico-eye:before {
    content: "\60";
}
.ico-facebook:before {
    content: "\7b";
}
.ico-facebook-circled:before {
    content: "\7c";
}
.ico-facebook-squared:before {
    content: "\7d";
}
.ico-fast-backward:before {
    content: "\7e";
}
.ico-fast-forward:before {
    content: "\5c";
}
.ico-feather:before {
    content: "\e000";
}
.ico-flag:before {
    content: "\e001";
}
.ico-flash:before {
    content: "\e002";
}
.ico-flashlight:before {
    content: "\e003";
}
.ico-flattr:before {
    content: "\e004";
}
.ico-flickr:before {
    content: "\e005";
}
.ico-flickr-circled:before {
    content: "\e006";
}
.ico-flight:before {
    content: "\e007";
}
.ico-floppy:before {
    content: "\e008";
}
.ico-flow-branch:before {
    content: "\e009";
}
.ico-flow-cascade:before {
    content: "\e00a";
}
.ico-flow-line:before {
    content: "\e00b";
}
.ico-flow-parallel:before {
    content: "\e00c";
}
.ico-flow-tree:before {
    content: "\e00d";
}
.ico-folder:before {
    content: "\e00e";
}
.ico-forward:before {
    content: "\e00f";
}
.ico-gauge:before {
    content: "\e010";
}
.ico-github:before {
    content: "\e011";
}
.ico-github-circled:before {
    content: "\e012";
}
.ico-globe:before {
    content: "\e013";
}
.ico-google-circles:before {
    content: "\e014";
}
.ico-gplus:before {
    content: "\e015";
}
.ico-gplus-circled:before {
    content: "\e016";
}
.ico-graduation-cap:before {
    content: "\e017";
}
.ico-heart:before {
    content: "\e018";
}
.ico-heart-empty:before {
    content: "\e019";
}
.ico-help:before {
    content: "\e01a";
}
.ico-help-circled:before {
    content: "\e01b";
}
.ico-home:before {
    content: "\e01c";
}
.ico-hourglass:before {
    content: "\e01d";
}
.ico-inbox:before {
    content: "\e01e";
}
.ico-infinity:before {
    content: "\e01f";
}
.ico-info:before {
    content: "\e020";
}
.ico-info-circled:before {
    content: "\e021";
}
.ico-instagrem:before {
    content: "\e022";
}
.ico-install:before {
    content: "\e023";
}
.ico-key:before {
    content: "\e024";
}
.ico-keyboard:before {
    content: "\e025";
}
.ico-lamp:before {
    content: "\e026";
}
.ico-language:before {
    content: "\e027";
}
.ico-lastfm:before {
    content: "\e028";
}
.ico-lastfm-circled:before {
    content: "\e029";
}
.ico-layout:before {
    content: "\e02a";
}
.ico-leaf:before {
    content: "\e02b";
}
.ico-left:before {
    content: "\e02c";
}
.ico-left-bold:before {
    content: "\e02d";
}
.ico-left-circled:before {
    content: "\e02e";
}
.ico-left-dir:before {
    content: "\e02f";
}
.ico-left-open:before {
    content: "\e030";
}
.ico-left-open-big:before {
    content: "\e031";
}
.ico-left-open-mini:before {
    content: "\e032";
}
.ico-left-thin:before {
    content: "\e033";
}
.ico-level-down:before {
    content: "\e034";
}
.ico-level-up:before {
    content: "\e035";
}
.ico-lifebuoy:before {
    content: "\e036";
}
.ico-light-down:before {
    content: "\e037";
}
.ico-light-up:before {
    content: "\e038";
}
.ico-link:before {
    content: "\e039";
}
.ico-linkedin:before {
    content: "\e03a";
}
.ico-linkedin-circled:before {
    content: "\e03b";
}
.ico-list:before {
    content: "\e03c";
}
.ico-list-add:before {
    content: "\e03d";
}
.ico-location:before {
    content: "\e03e";
}
.ico-lock:before {
    content: "\e03f";
}
.ico-lock-open:before {
    content: "\e040";
}
.ico-login:before {
    content: "\e041";
}
.ico-logo-db:before {
    content: "\e042";
}
.ico-logout:before {
    content: "\e043";
}
.ico-loop:before {
    content: "\e044";
}
.ico-magnet:before {
    content: "\e045";
}
.ico-mail:before {
    content: "\e046";
}
.ico-map:before {
    content: "\e047";
}
.ico-megaphone:before {
    content: "\e048";
}
.ico-menu:before {
    content: "\e049";
}
.ico-mic:before {
    content: "\e04a";
}
.ico-minus:before {
    content: "\e04b";
}
.ico-minus-circled:before {
    content: "\e04c";
}
.ico-minus-squared:before {
    content: "\e04d";
}
.ico-mixi:before {
    content: "\e04e";
}
.ico-mobile:before {
    content: "\e04f";
}
.ico-monitor:before {
    content: "\e050";
}
.ico-moon:before {
    content: "\e051";
}
.ico-mouse:before {
    content: "\e052";
}
.ico-music:before {
    content: "\e053";
}
.ico-mute:before {
    content: "\e054";
}
.ico-network:before {
    content: "\e055";
}
.ico-newspaper:before {
    content: "\e056";
}
.ico-note:before {
    content: "\e057";
}
.ico-note-beamed:before {
    content: "\e058";
}
.ico-palette:before {
    content: "\e059";
}
.ico-paper-plane:before {
    content: "\e05a";
}
.ico-pause:before {
    content: "\e05b";
}
.ico-paypal:before {
    content: "\e05c";
}
.ico-pencil:before {
    content: "\e05d";
}
.ico-phone:before {
    content: "\e05e";
}
.ico-picasa:before {
    content: "\e05f";
}
.ico-picture:before {
    content: "\e060";
}
.ico-pinterest:before {
    content: "\e061";
}
.ico-pinterest-circled:before {
    content: "\e062";
}
.ico-play:before {
    content: "\e063";
}
.ico-plus:before {
    content: "\e064";
}
.ico-plus-circled:before {
    content: "\e065";
}
.ico-plus-squared:before {
    content: "\e066";
}
.ico-popup:before {
    content: "\e067";
}
.ico-print:before {
    content: "\e068";
}
.ico-progress-0:before {
    content: "\e069";
}
.ico-progress-1:before {
    content: "\e06a";
}
.ico-progress-2:before {
    content: "\e06b";
}
.ico-progress-3:before {
    content: "\e06c";
}
.ico-publish:before {
    content: "\e06d";
}
.ico-qq:before {
    content: "\e06e";
}
.ico-quote:before {
    content: "\e06f";
}
.ico-rdio:before {
    content: "\e070";
}
.ico-rdio-circled:before {
    content: "\e071";
}
.ico-record:before {
    content: "\e072";
}
.ico-renren:before {
    content: "\e073";
}
.ico-reply:before {
    content: "\e074";
}
.ico-reply-all:before {
    content: "\e075";
}
.ico-resize-full:before {
    content: "\e076";
}
.ico-resize-small:before {
    content: "\e077";
}
.ico-retweet:before {
    content: "\e078";
}
.ico-right:before {
    content: "\e079";
}
.ico-right-bold:before {
    content: "\e07a";
}
.ico-right-circled:before {
    content: "\e07b";
}
.ico-right-dir:before {
    content: "\e07c";
}
.ico-right-open:before {
    content: "\e07d";
}
.ico-right-open-big:before {
    content: "\e07e";
}
.ico-right-open-mini:before {
    content: "\e07f";
}
.ico-right-thin:before {
    content: "\e080";
}
.ico-rocket:before {
    content: "\e081";
}
.ico-rss:before {
    content: "\e082";
}
.ico-search:before {
    content: "\e083";
}
.ico-share:before {
    content: "\e084";
}
.ico-shareable:before {
    content: "\e085";
}
.ico-shuffle:before {
    content: "\e086";
}
.ico-signal:before {
    content: "\e087";
}
.ico-sina-weibo:before {
    content: "\e088";
}
.ico-skype:before {
    content: "\e089";
}
.ico-skype-circled:before {
    content: "\e08a";
}
.ico-smashing:before {
    content: "\e08b";
}
.ico-sound:before {
    content: "\e08c";
}
.ico-soundcloud:before {
    content: "\e08d";
}
.ico-spotify:before {
    content: "\e08e";
}
.ico-spotify-circled:before {
    content: "\e08f";
}
.ico-star:before {
    content: "\e090";
}
.ico-star-empty:before {
    content: "\e091";
}
.ico-stop:before {
    content: "\e092";
}
.ico-stumbleupon:before {
    content: "\e093";
}
.ico-stumbleupon-circled:before {
    content: "\e094";
}
.ico-suitcase:before {
    content: "\e095";
}
.ico-sweden:before {
    content: "\e096";
}
.ico-switch:before {
    content: "\e097";
}
.ico-tag:before {
    content: "\e098";
}
.ico-tape:before {
    content: "\e099";
}
.ico-target:before {
    content: "\e09a";
}
.ico-thermometer:before {
    content: "\e09b";
}
.ico-thumbs-down:before {
    content: "\e09c";
}
.ico-thumbs-up:before {
    content: "\e09d";
}
.ico-ticket:before {
    content: "\e09e";
}
.ico-to-end:before {
    content: "\e09f";
}
.ico-to-start:before {
    content: "\e0a0";
}
.ico-tools:before {
    content: "\e0a1";
}
.ico-traffic-cone:before {
    content: "\e0a2";
}
.ico-trash:before {
    content: "\e0a3";
}
.ico-trophy:before {
    content: "\e0a4";
}
.ico-tumblr:before {
    content: "\e0a5";
}
.ico-tumblr-circled:before {
    content: "\e0a6";
}
.ico-twitter:before {
    content: "\e0a7";
}
.ico-twitter-circled:before {
    content: "\e0a8";
}
.ico-up:before {
    content: "\e0a9";
}
.ico-up-bold:before {
    content: "\e0aa";
}
.ico-up-circled:before {
    content: "\e0ab";
}
.ico-up-dir:before {
    content: "\e0ac";
}
.ico-up-open:before {
    content: "\e0ad";
}
.ico-up-open-big:before {
    content: "\e0ae";
}
.ico-up-open-mini:before {
    content: "\e0af";
}
.ico-up-thin:before {
    content: "\e0b0";
}
.ico-upload:before {
    content: "\e0b1";
}
.ico-upload-cloud:before {
    content: "\e0b2";
}
.ico-user:before {
    content: "\e0b3";
}
.ico-user-add:before {
    content: "\e0b4";
}
.ico-users:before {
    content: "\e0b5";
}
.ico-vcard:before {
    content: "\e0b6";
}
.ico-video:before {
    content: "\e0b7";
}
.ico-vimeo:before {
    content: "\e0b8";
}
.ico-vimeo-circled:before {
    content: "\e0b9";
}
.ico-vkontakte:before {
    content: "\e0ba";
}
.ico-volume:before {
    content: "\e0bb";
}
.ico-water:before {
    content: "\e0bc";
}
.ico-window:before {
    content: "\e0bd";
}
.ico-500px:before {
    content: "\e0be";
}
.ico-app-store:before {
    content: "\e0bf";
}
.ico-dropbox-1:before {
    content: "\e0c0";
}
.ico-flickr-1:before {
    content: "\e0c1";
}
.ico-google:before {
    content: "\e0c2";
}
.ico-grooveshark:before {
    content: "\e0c3";
}
.ico-instagram:before {
    content: "\e0c4";
}
.ico-linkedin-1:before {
    content: "\e0c5";
}
.ico-pinterest-1:before {
    content: "\e0c6";
}
.ico-rdio-1:before {
    content: "\e0c7";
}
.ico-scribd:before {
    content: "\e0c8";
}
.ico-skype-1:before {
    content: "\e0c9";
}
.ico-soundcloud-1:before {
    content: "\e0ca";
}
.ico-spotify-1:before {
    content: "\e0cb";
}
.ico-tripadvisor:before {
    content: "\e0cc";
}
.ico-tumblr-1:before {
    content: "\e0cd";
}
.ico-twitter-1:before {
    content: "\e0ce";
}
.ico-vimeo-1:before {
    content: "\e0cf";
}
.ico-vine:before {
    content: "\e0d0";
}
.ico-yelp:before {
    content: "\e0d1";
}
.ico-goodreads:before {
    content: "\e0d3";
}
.ico-youtube:before {
    content: "\e0d4";
}
.ico-banknote:before {
    content: "\e0d2";
}
.ico-bubble:before {
    content: "\e0d5";
}
.ico-bulb:before {
    content: "\e0d6";
}
.ico-calendar-1:before {
    content: "\e0d7";
}
.ico-camera-1:before {
    content: "\e0d8";
}
.ico-clip:before {
    content: "\e0d9";
}
.ico-clock-1:before {
    content: "\e0da";
}
.ico-cloud-1:before {
    content: "\e0db";
}
.ico-cup-1:before {
    content: "\e0dc";
}
.ico-data:before {
    content: "\e0dd";
}
.ico-diamond:before {
    content: "\e0de";
}
.ico-display:before {
    content: "\e0df";
}
.ico-eye-1:before {
    content: "\e0e0";
}
.ico-fire:before {
    content: "\e0e1";
}
.ico-food:before {
    content: "\e0e2";
}
.ico-heart-1:before {
    content: "\e0e3";
}
.ico-key-1:before {
    content: "\e0e4";
}
.ico-lab:before {
    content: "\e0e5";
}
.ico-like:before {
    content: "\e0e6";
}
.ico-location-1:before {
    content: "\e0e7";
}
.ico-lock-1:before {
    content: "\e0e8";
}
.ico-mail-1:before {
    content: "\e0e9";
}
.ico-megaphone-1:before {
    content: "\e0ea";
}
.ico-music-1:before {
    content: "\e0eb";
}
.ico-news:before {
    content: "\e0ec";
}
.ico-note-1:before {
    content: "\e0ed";
}
.ico-paperplane:before {
    content: "\e0ee";
}
.ico-params:before {
    content: "\e0ef";
}
.ico-pen:before {
    content: "\e0f0";
}
.ico-phone-1:before {
    content: "\e0f1";
}
.ico-photo:before {
    content: "\e0f2";
}
.ico-search-1:before {
    content: "\e0f3";
}
.ico-settings:before {
    content: "\e0f4";
}
.ico-shop:before {
    content: "\e0f5";
}
.ico-sound-1:before {
    content: "\e0f6";
}
.ico-stack:before {
    content: "\e0f7";
}
.ico-star-1:before {
    content: "\e0f8";
}
.ico-study:before {
    content: "\e0f9";
}
.ico-t-shirt:before {
    content: "\e0fa";
}
.ico-tag-1:before {
    content: "\e0fb";
}
.ico-trash-1:before {
    content: "\e0fc";
}
.ico-truck:before {
    content: "\e0fd";
}
.ico-tv:before {
    content: "\e0fe";
}
.ico-user-1:before {
    content: "\e0ff";
}
.ico-vallet:before {
    content: "\e100";
}
.ico-video-1:before {
    content: "\e101";
}
.ico-vynil:before {
    content: "\e102";
}
.ico-world:before {
    content: "\e103";
}
.c1,
.c2,
.c3,
.c4,
.c5,
.c6,
.c7,
.c8,
.c9,
.waw-col,
.waw-col-reset {
    width: 100%;
    float: none;
    border: none;
    padding: 0;
    margin: 0;
}
.fea-img-norm {
    width: 100%;
    height: auto;
}
.vert-translate-50 {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media only screen and (min-width: 500px) and (orientation: landscape) {
    img.hp-bg-img {
        width: 53vw;
        object-position: 50% 50%;
    }
    .hp-hero-text {
        padding: 60px 20px 0 0;
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .hp-hero-text-con {
        left: auto;
        right: 0;
        width: 65vw;
        height: 100vh;
        background: 0 0;
    }
    .hp-hero-text-con p {
        font-size: 12pt;
    }
    .event-img {
        max-height: 300px;
    }
}
@media only screen and (min-width: 500px) {
    .waw-list-summary-img {
        width: 33%;
        float: left;
        margin: 0;
        padding: 0;
    }
    .waw-works-list-text-con {
        width: 67%;
        float: left;
        margin: 0;
        padding: 0 0 0 20px;
    }
    .waw-works-list-text-con h3 {
        padding: 0 0 0.2em;
    }
    .size-medium {
        width: 400px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .size-thumbnail {
        width: 200px;
    }
    .alignleft {
        margin: 0 15px 15px 0;
    }
    .alignright {
        margin: 0 0 15px 15px;
    }
    .ctb-with-slideshow {
        width: 100%;
        position: relative;
    }
    .ctb-slides {
        width: 50vw;
        height: 50vw;
    }
    .ctb-with-slideshow .ct-img-left .hp-cb-body-copy,
    .ctb-with-slideshow .ct-img-right .hp-cb-body-copy {
        width: 50vw;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .ctb-with-slideshow .ct-img-left .hp-cb-body-copy {
        right: 0;
        padding: 20px;
    }
    .ctb-with-slideshow .ct-img-right .hp-cb-body-copy {
        left: 0;
        padding: 20px;
    }
    .ct-img-left .ctb-slides {
        margin: 0 auto 0 0;
    }
    .ct-img-right .ctb-slides {
        margin: 0 0 0 auto;
    }
}
@media only screen and (min-width: 700px) and (orientation: portrait) {
    .header .stage {
        width: auto;
    }
    .waw-menu-main-con {
        width: auto;
        min-width: 300px;
    }
    .hp-bg-img {
        object-position: 0 -190px;
    }
    .hp-hero-text {
        padding: 40px;
    }
    .hp-hero-text p {
        font-size: 16pt;
    }
    .summary-thumb-con.wp-caption {
        float: right;
        width: 300px;
        margin: 0 0 30px 30px;
    }
    .entry-summary img {
        width: auto;
        height: auto;
        max-width: 300px;
        max-height: 400px;
    }
    blockquote {
        padding: 2em;
    }
    .entry-meta-item {
        display: inline-block;
        line-height: 0.9;
        border-right: 1px solid #777;
        margin: 0 5px 0 0;
        padding: 0 7px 0 0;
    }
    .entry-meta-item:last-of-type {
        border-right: none;
    }
    .event-img {
        width: 33%;
        max-height: 150px;
        float: left;
        margin: 0;
        padding: 0;
    }
    .event-text-con {
        width: 67%;
        float: right;
        margin: 0;
        padding: 0 0 0 10px;
    }
    .share-this {
        display: block;
        margin: 0 0 10px;
    }
    .band-bio-mod img {
        width: 300px;
    }
    .store-item-main,
    .store-item-side {
        width: 50%;
        float: left;
    }
    .store-item-side {
        padding: 0 40px 0 0;
    }
    .store-item-main {
        padding: 0;
    }
    ul.store-item-links {
        padding: 1em 0 0;
    }
    .footer-credits p {
        font-size: 9pt;
    }
    .event-featured-image {
        max-height: 400px;
    }
    .mc-field-group {
        padding: 0 0 0 300px;
        margin: 0 0 2em;
    }
    .mc-field-group .label,
    .mc-field-group label {
        position: absolute;
        top: 6px;
        left: 0;
        width: 280px;
    }
    .mc-field-group ul li label {
        position: static;
        width: auto;
    }
}
@media only screen and (min-width: 700px) {
    div.alignright,
    img.alignright {
        float: right !important;
        margin: 0 0 30px 30px !important;
    }
    div.alignleft,
    img.alignleft {
        float: left !important;
        margin: 0 30px 30px 0 !important;
    }
    div.aligncenter,
    img.aligncenter {
        display: block;
        float: none !important;
        margin: 0 auto 30px !important;
    }
    .size-full,
    .size-medium {
        position: static;
        margin-left: auto;
        margin-right: auto;
    }
    .fea-img-text {
        padding: 50px 20px 20px;
    }
    .fea-img-text-con h1 {
        font-size: 30pt;
    }
    .size-full,
    .size-large {
        width: 100%;
    }
    header.header {
        position: fixed;
        top: 0;
        left: 0;
    }
    .waw-menu-main-con .waw-sm-icons {
        position: fixed;
        top: 23px;
        right: 100px;
        padding: 0;
        margin: 0;
    }
    .waw-menu-main-con .waw-sm-icons .waw-sm-icon {
        font-size: 14pt;
        color: var(--home-text);
    }
    .nf-item-img {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .footer {
        padding: 100px;
    }
    .hp-cb-body-copy {
        padding: 30px;
    }
    div.sh-overseas-books-con {
        padding: 0;
        position: relative;
    }
    img.sh-overseas-book-img {
        width: 50%;
        max-width: none;
        float: left;
        margin: 0;
    }
    div.sh-overseas-book-text {
        width: 50%;
        float: none;
        padding: 0 0 0 30px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    div.sh-overseas-books-con h4 {
        padding-left: 30px;
        padding-right: 30px;
        display: block;
        position: relative;
    }
    div.sh-overseas-books-con h4:before {
        content: "";
        height: 0;
        width: 0;
        border: 9px solid transparent;
        border-right-width: 15px;
        border-right-color: var(--main-dk-green);
        position: absolute;
        top: 18px;
        left: -8px;
    }
    div.sh-overseas-books-con p {
        padding: 0 0 0 30px;
    }
    div.sh-overseas-books-con:nth-child(even) img.sh-overseas-book-img {
        float: right;
    }
    div.sh-overseas-books-con:nth-child(even) div.sh-overseas-book-text {
        padding: 0 30px 0 0;
        left: 0;
    }
    div.sh-overseas-books-con:nth-child(even) div.sh-overseas-book-text * {
        text-align: right;
    }
    div.sh-overseas-books-con:nth-child(even) h4:before {
        content: none;
    }
    div.sh-overseas-books-con:nth-child(even) h4:after {
        content: "";
        height: 0;
        width: 0;
        border: 9px solid transparent;
        border-left-width: 15px;
        border-left-color: var(--main-dk-green);
        position: absolute;
        top: 18px;
        right: -7px;
    }
    div.sh-overseas-books-con:nth-child(even) p {
        padding: 0 30px 0 0;
    }

    .wp-caption {margin-left:auto;max-width:100%}

}
@media only screen and (min-width: 900px) and (orientation: landscape) {


    .stage.event-single,
    dl {
        overflow: hidden;
    }
    .entry-header *,
    .page-header * {
        text-align: center;
    }
    div.cascade {
        padding: 50px 100px;
    }
    .waw-menu-main-con {
        width: auto;
        min-width: 300px;
    }
    .stage {
        margin: 0 auto;
        width: 700px;
    }
    .hp-hero-text {
        padding: 40px 130px;
    }
    .hp-hero-text p {
        font-size: 18pt;
    }
    .waw-list-summary-img {
        width: 25%;
    }
    .waw-works-list-text-con {
        width: 75%;
    }
    .main .stage {
        padding: 50px 0;
    }
    .home .footer .stage {
        padding: 0;
        margin: 0 auto;
    }
    .cascade-text-block {
        width: 100%;
        position: relative;
    }
    .ct-img-left .hp-cb-img,
    .ct-img-right .hp-cb-img {
        width: 40%;
        height: auto;
        max-height: none;
    }
    .ct-img-left .hp-cb-img {
        margin: 0 auto 0 0;
    }
    .ct-img-right .hp-cb-img {
        margin: 0 0 0 auto;
    }
    div.ct-img-left div.hp-cb-body-copy,
    div.ct-img-right div.hp-cb-body-copy {
        width: 60% !important;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .ct-img-left .hp-cb-body-copy {
        right: 0;
        padding-left: 20px;
    }
    .ct-img-right .hp-cb-body-copy {
        left: 0;
        padding-right: 20px;
    }
    div.ctb-slides {
        height: 40vw;
        width: 40vw;
    }
    .ct-img-left .ctb-slides {
        margin: 0 auto 0 0;
    }
    .ct-img-right .ctb-slides {
        margin: 0 0 0 auto;
    }
    h4 {
        font-size: 20pt;
    }
    h5 {
        font-size: 16pt;
    }
    h6 {
        font-size: 14pt;
    }
    h1.hp-intro-text-con {
        font-size: 24pt;
    }
    .page-header {
        padding: 1.5em 0 1em;
    }
    .page-header h1 {
        font-size: 45pt;
    }
    .page-header h4 {
        margin: 0 10%;
        font-size: 25pt;
    }
    .page-header.works-header h1 {
        font-size: 40pt;
    }
    .featured-image {
        height: 500px;
    }
    .fea-img-text {
        padding: 150px 50px 50px;
    }
    .fea-img-text-con {
        width: 800px;
    }
    .fea-img-text-con h1 {
        font-size: 50pt !important;
    }
    .fea-img-text-con h3 {
        font-size: 20pt !important;
    }
    .hp-big-show .hp-event-kicker {
        font-size: 12pt;
    }
    .hp-big-show h1 {
        font-size: 28pt;
        padding-left: 35px;
        background-color: rgba(0, 0, 0, 0.7);
    }
    .hp-big-show .hp-event-text span.ico-right-dir {
        font-size: 30pt;
        top: 8px;
    }
    .hp-big-show .button {
        vertical-align: 2px;
    }
    .hp-big-menu-row {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    .hp-big-menu-item {
        display: table-cell;
        float: none;
        width: auto;
    }
    .hp-event-row {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    .hp-event {
        display: table-cell;
        position: relative;
        width: auto;
        float: none;
    }
    .event-featured-image {
        max-height: 475px;
    }
    .event-meta {
        width: 25%;
        float: left;
        margin: 0;
        padding: 0 20px 0 0;
    }
    .event-content {
        width: 75%;
        float: right;
        margin: 0;
        padding: 0;
    }
    .formElements dd,
    .formElements dt,
    dd,
    dt {
        float: left;
        margin: 0;
    }
    .event-img {
        max-height: 200px;
    }
    .waw-col-reset {
        display: table;
        width: 100%;
    }
    .waw-col {
        display: table-cell;
        padding: 0 20px;
        vertical-align: top;
    }
    .waw-col:first-of-type {
        padding-left: 0;
    }
    .waw-col:last-of-type {
        padding-right: 0;
    }
    .waw-col.c1 {
        width: 11.11%;
    }
    .waw-col.c2 {
        width: 22.22%;
    }
    .waw-col.c3 {
        width: 33.33%;
    }
    .waw-col.c4 {
        width: 44.44%;
    }
    .waw-col.c5 {
        width: 55.55%;
    }
    .waw-col.c6 {
        width: 66.66%;
    }
    .waw-col.c7 {
        width: 77.77%;
    }
    .waw-col.c8 {
        width: 88.88%;
    }
    .wf-line {
        position: relative;
        padding: 0 0 1em 170px;
    }
    .wf-label {
        position: absolute;
        top: 0;
        left: 0;
    }
    .formElements dt {
        width: 25%;
        padding: 0 0 1em;
    }
    .formElements dd {
        width: 75%;
        padding: 0 0 1em 20px;
    }
    .formElements input[type="text"],
    .formElements input[type="email"] {
        width: 100%;
        border-radius: 0;
    }
    dl {
        display: block;
        font-size: 14pt;
        float: none;
        clear: both;
        width: 100%;
    }
    dt {
        width: 25%;
        clear: left;
        padding: 0 20px 20px 0;
    }
    dd {
        width: 75%;
        clear: right;
        padding: 0;
    }
    table.table-list {
        margin: 0 0 40px;
    }
    table.table-list td {
        padding: 8px;
    }
    table.table-list tr td:first-of-type {
        width: 25%;
    }
    table.table-list tr td:last-of-type {
        width: 75%;
    }
    .mc-submit {
        padding: 2em 0 0;
    }
    .entry-header .entry-categories {
        padding: 0 0 2em;
    }
    .casc-con-parallax {
        height: 300px;
    }
    img.casc-img-parallax {
        height: 100vh;
    }
    .minimized header.header {
        background-color: var(--main-black);
    }
    .fea-img-text-con h4 {
        font-size: 20pt;
    }
}
@media only screen and (min-width: 1100px) {
    .menu-main-ctl-con,
    .mobile-only {
        display: none;
    }
	
	
	
    .minimized header.header,
    header.header {
        background-color: var(--main-black);
    }
	header.header {height:75px}
	.minimized header.header {height:52px}
    main.main {
        padding-top: 77px;
        min-height: 400px;
    }
    .header-branding img {
        height: 51px;
    }
    a:hover {
        color: var(--main-red);
    }
    div.cascade {
        padding: 100px 200px;
    }
    h1 {
        font-size: 45pt;
    }
    h2 {
        font-size: 35pt;
    }
    h3 {
        font-size: 30pt;
    }
    h4 {
        font-size: 25pt;
    }
    h5 {
        font-size: 20pt;
    }
    h6 {
        font-size: 18pt;
    }
    .entry-header h3 {
        padding-bottom: 1em;
    }
    .fea-img-text-con,
    .header .stage,
    .stage {
        width: 800px;
        margin: 0 auto;
    }
    .home header.header {
        background-color: transparent;
    }
    .minimized.home header.header {
        background-color: var(--main-black);
    }
    .header-branding {
        position: relative;
        display: table;
        padding: 13px 20px;
    }
    .header-branding h1 {
        display: table;
        font-size: 40pt;
    }
    .minimized .header-branding h1 {
        font-size: 18pt;
        letter-spacing: 1px;
    }
    .minimized .header-branding img {
        height: 27px;
    }
    ul.header-sm-icons {
        display: none !important;
    }
    .waw-menu-main-con {
        left: auto;
    }
    .waw-menu-main-con .waw-sm-icons {
        left: 285px;
        right: auto;
        top: 40px;
    }
    .minimized .waw-menu-main-con .waw-sm-icons {
        left: 160px;
        top: 18px;
    }
    .minimized .waw-menu-main-con .waw-sm-icon {
        font-size: 12pt;
        padding: 0 6px;
    }
    .menu-main li,
    .waw-menu-main-con,
    .waw-menu-main-con ul {
        padding: 0;
        margin: 0;
    }
    .waw-menu-main-con .waw-sm-icons .waw-sm-icon {
        font-size: 14pt;
        color: var(--home-text);
    }
    .waw-menu-main-con .waw-sm-icons .waw-sm-icon:hover {
        color: var(--home-hilite);
    }
    .waw-menu-main-con {
        position: absolute;
        right: 10px;
        top: 28px;
        background: 0 0;
    }
    .img-parallax,
    .photo-break {
        background-attachment: fixed;
    }
    .minimized .waw-menu-main-con {
        top: 15px;
    }
    .menu-main .current-menu-ancestor > a,
    .menu-main .current-menu-item > a {
        color: var(--main-canary);
    }
    .menu-main li {
        position: relative;
        white-space: nowrap;
        font-weight: 700;
    }
    .menu-main > li {
        display: inline-block;
    }
    .menu-main li a {
        font-weight: 700;
        padding: 15px;
        width: 100%;
        color: var(--home-hilite);
    }
    .menu-main li a:hover {
        color: var(--main-canary);
    }
    .menu-main > li > ul {
        display: none;
        position: absolute;
        top: 35px;
        left: 0;
        margin: 0;
        padding: 0;
        background-color: var(--main-black);
    }
    .menu-main > li:hover > ul,
    .menu-main > li > ul * {
        display: block;
    }
    .menu-main > li > ul li {
        font-size: 15pt;
        font-weight: 700;
        color: var(--home-text);
    }
    .menu-main > li:last-of-type ul {
        left: auto;
        right: 0;
    }
    .menu-main li ul li ul {
        padding: 0 0 0 10px;
    }
    .menu-main li ul li ul li a {
        padding: 5px 15px;
    }
    .waw-works-list-text-con {
        padding: 0 0 0 40px;
    }
    .wrapper {
        padding-top: 160px;
    }
    .hp-big-show .hp-event-header,
    .hp-big-show .hp-event-meta {
        height: 40px;
    }
    .hp-big-show .hp-event-date,
    .hp-big-show .hp-event-header span {
        font-size: 12pt;
        padding: 8px 12px;
    }
    .hp-big-show .hp-event-text .button span {
        font-size: 17pt !important;
    }
    .bg-dark .cta-link:hover,
    .bg-dark a.cta-link:hover,
    .hp-feature .cta-link:hover,
    .hp-feature a.cta-link:hover {
        color: var(--main-black);
        border-color: var(--main-white);
        background-color: var(--main-white);
    }
    .button.small-btn:hover,
    .button:hover,
    .cta-link:hover,
    a.button.small-btn:hover,
    a.cta-link:hover,
    input[type="submit"]:hover {
        color: var(--main-white);
        border-color: var(--main-black);
        background-color: var(--main-black);
    }
    .button,
    .cta-link,
    input[type="submit"] {
        cursor: pointer;
        -webkit-transition: 0.2s all ease;
        -moz-transition: 0.2s all ease;
        -o-transition: 0.2s all ease;
        transition: 0.2s all ease;
    }
    div.hp-big-show,
    div.hp-events {
        width: 1000px;
        margin: 20px auto;
        border-bottom: none;
        box-shadow: 0 0 5px #000;
        background-color: rgba(0, 0, 0, 0.8);
    }
    @keyframes fadein {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    @-moz-keyframes fadein {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    @-webkit-keyframes fadein {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    .menu-main-con {
        top: 200px;
    }
    .main .stage {
        padding: 50px 0 100px;
    }
    .stage.wide {
        width: 1000px;
    }
    .breadcrumbs {
        left: 40px;
    }
    .img-parallax {
        background-position: center 200px;
        background-color: #000;
    }
    .entry-share {
        position: absolute;
        top: 6px;
        left: -60px;
    }
    .event-text-con {
        padding-left: 20px;
    }
    .share-this {
        margin: 0 10px;
        cursor: pointer;
    }
    .share-this:hover {
        color: var(--main-red);
    }
    .cascade .stage {
        width: auto;
        margin: 0 200px;
    }
    .footer .stage {
        width: auto;
        margin: 0 100px;
    }
    .footer a:hover {
        color: #d8c99b;
    }
    .footer .waw-sm-icon {
        font-size: 16pt;
        color: var(--main-gray);
    }
    .footer .waw-sm-icon:hover {
        color: var(--main-white);
    }
    .search-form-con {
        width: 215px;
    }
    .view-more-info-btn .ico-info-circled {
        color: rgba(039, 062, 071, 0.5) !important;
    }
    .view-more-info-btn .ico-info-circled:hover {
        color: #273e47 !important;
    }
    .event-ticket-buy:hover {
        color: var(--main-white);
        background-color: #a4243b;
    }
    table {
        font-size: 12pt;
    }
    table td {
        padding: 0 20px 20px 0;
    }
    .hp-big-show .hp-event-text .button {
        padding: 9px !important;
    }
    .hp-big-show .hp-event-text .button span {
        top: 1px !important;
    }
    .casc-con-parallax {
        height: 400px;
    }
    .casc-txt-size-lg p {
        font-size: 120%;
    }
    .ctb-with-slideshow .ct-img-left .hp-cb-body-copy {
        right: 0;
        padding: 40px;
    }
    .ctb-with-slideshow .ct-img-right .hp-cb-body-copy {
        left: 0;
        padding: 40px;
    }
}
@media only screen and (min-width: 1300px) {
    .ctb-slides {
        height: 500px;
    }
    img.hp-bg-img {
        width: 60vw;
    }
    .hp-hero-text p {
        font-size: 20pt;
    }
    .ctb-with-slideshow .ct-img-left .hp-cb-body-copy {
        right: 0;
        padding: 60px;
    }
    .ctb-with-slideshow .ct-img-right .hp-cb-body-copy {
        left: 0;
        padding: 60px;
    }
}
