diff --git a/css/sass/_variables.scss b/css/sass/_variables.scss index d9287d2..b926bb4 100644 --- a/css/sass/_variables.scss +++ b/css/sass/_variables.scss @@ -1,6 +1,6 @@ // Thene Version -$version: '1.4.3'; +$version: '1.4.5'; // Theme Version // First Digit: Manual // Second Digit: Branch Version diff --git a/css/sass/elements/_colorsets.scss b/css/sass/elements/_colorsets.scss index 8777159..53581e8 100644 --- a/css/sass/elements/_colorsets.scss +++ b/css/sass/elements/_colorsets.scss @@ -209,10 +209,7 @@ .footer-feature-btn:focus, -#comments-toggle:focus, -.footer-feature-btn:hover, -.comments-show #comments-toggle, -#comments-toggle:hover { +.footer-feature-btn:hover { background: #0c6ca6; } @@ -226,12 +223,7 @@ background: #0c6ca6; } -.comments-show #comments-toggle, -#comments-toggle:focus, -#comments-toggle:hover { - border-color: #0c6ca6; - color: #fff; -} + #primary #infinite-handle span:focus, #front-section-three a.all-posts-link:focus, @@ -249,6 +241,9 @@ // // Comments // + + + #comments { #respond a#cancel-comment-reply-link, .comment-reply a { @@ -293,8 +288,9 @@ .comments-show #comments-toggle, #comments-toggle:focus, #comments-toggle:hover { - border-color: $color-linkhover; + border-color: $color-main; color: #fff; + background: $color-main; } diff --git a/css/sass/elements/_headlines.scss b/css/sass/elements/_headlines.scss index b277c8d..968003a 100644 --- a/css/sass/elements/_headlines.scss +++ b/css/sass/elements/_headlines.scss @@ -52,10 +52,12 @@ h1, h2, h3, h4, h5, h6, font-weight: 600; } +p.site-title, h1.site-title { font-weight: bold; - padding-right: 55px; - @include px2rem($font-size-h1-sitetitle); + padding-right: 25px; + @include px2rem($font-size-base-sm); + } @@ -230,10 +232,16 @@ h3 { @media screen and (min-width: $breakpoint-sm) { + p.site-title, + h1.site-title { + padding-top: 5px; + } + + .single-post .entry-header h1.entry-title, .single-attachment .entry-header h1.entry-title, .attachment h1.entry-title, - .page h1.entry-title { + h1.entry-title { @include px2rem($font-size-h1-sitetitle-sm); } diff --git a/css/sass/elements/_social-media.scss b/css/sass/elements/_social-media.scss index 0d8fc3d..00d90eb 100644 --- a/css/sass/elements/_social-media.scss +++ b/css/sass/elements/_social-media.scss @@ -34,6 +34,7 @@ @include px2rem($font-size-socialmedia-icon); text-align: center; vertical-align: middle; + padding-top: 1px; } @@ -116,16 +117,7 @@ &[href*="google.com"]:hover { background-color: darken(#4285f4,10%); } - &[href*="plus.google.com"] { - @extend .fa-google-plus; - background-color: #dd4b39; - border-color: #dd4b39; - color: white; - } - &[href*="plus.google.com"]:focus, - &[href*="plus.google.com"]:hover { - background-color: darken(#dd4b39,20%); - } + &[href*="github.com"] { @extend .fa-github; diff --git a/css/sass/structure/_header.scss b/css/sass/structure/_header.scss index 90960f5..27b9244 100644 --- a/css/sass/structure/_header.scss +++ b/css/sass/structure/_header.scss @@ -22,6 +22,9 @@ z-index: 21; background: #fff; + @media screen and (min-width: $breakpoint-sm) { + min-height: 46px; + } @media screen and (min-width: $breakpoint-1060) { position: relative; width: 87.5%; diff --git a/css/sass/structure/_main.scss b/css/sass/structure/_main.scss index ed94445..68f6b1c 100644 --- a/css/sass/structure/_main.scss +++ b/css/sass/structure/_main.scss @@ -1,11 +1,12 @@ -/*-----------------------------------------------------------------------------------*/ -/* Main -/*-----------------------------------------------------------------------------------*/ - -main { - position: relative; - top: 59px; - @media screen and (min-width: 1024px) { - top: 0; - } +/*-----------------------------------------------------------------------------------*/ +/* Main +/*-----------------------------------------------------------------------------------*/ + +main { + position: relative; + top: 59px; + + @media screen and (min-width: 1024px) { + top: 0; + } } \ No newline at end of file diff --git a/css/sass/structure/_menus.scss b/css/sass/structure/_menus.scss index 6379ac1..84deea4 100644 --- a/css/sass/structure/_menus.scss +++ b/css/sass/structure/_menus.scss @@ -179,46 +179,6 @@ } -/* --- Skiplinks --- */ -#skiplinks{ - position: relative; - left: 0; - width: 100%; - margin-left: 0; - text-align: center; - list-style: outside none; - - ul { - margin: 0; - } - li { - list-style-type: none; - } - a{ - position: absolute; - left: -99999px; - top: 150px; - } - a:focus, - a:active{ - @include px2rem($font-size-base); - position: relative; - display: block; - z-index:9999; - height: auto; - margin: 0 auto; - text-align: center; - text-decoration: none; - color: #fff; - background: $color-second; - left: 0; - top: 0; - } -} - - - - @media screen and (min-width: $breakpoint-1024) { #desktop-navigation { display: block; @@ -268,7 +228,7 @@ li:focus > ul, li:hover > ul { top: 15px; - left: 215px; + left: 75px; li > ul.focus, li.focus > ul, @@ -316,7 +276,42 @@ } } } - - - + + +/* --- Skiplinks --- */ +#skiplinks{ + position: relative; + left: 0; + width: 100%; + margin-left: 0; + text-align: center; + list-style: outside none; + + ul { + margin: 0; + } + li { + list-style-type: none; + } + a{ + position: absolute; + left: -99999px; + top: 150px; + } + a:focus, + a:active{ + @include px2rem($font-size-base); + position: relative; + display: block; + z-index:9999; + height: auto; + margin: 0 auto; + text-align: center; + text-decoration: none; + color: #fff; + background: $color-second; + left: 0; + top: 0; + } +} diff --git a/css/sass/structure/_off-canvas.scss b/css/sass/structure/_off-canvas.scss index ca2778e..5bf320c 100644 --- a/css/sass/structure/_off-canvas.scss +++ b/css/sass/structure/_off-canvas.scss @@ -6,15 +6,17 @@ #overlay-open, #overlay-close { position: absolute; - top: 8px; + top: 0; right: 5.3125%; - width: 40px; + width: 30px; height: 40px; .no-js & { display: none; } - + @media screen and (min-width: $breakpoint-sm) { + top: 8px; + } } #overlay-open { @@ -34,7 +36,7 @@ margin: 0; padding: 0; z-index: 9999; - text-align: right; + background: transparent; line-height: 1; opacity: 1; @@ -76,7 +78,10 @@ /* --- Overlay Widget Area --- */ - +.overlay-title-wrap { + padding: 15px 5.3125%; + background: #f5f5f6; +} .inner-offcanvas-wrap { width: 100%; display: block; diff --git a/css/sass/structure/_pagination.scss b/css/sass/structure/_pagination.scss index f6bf8fb..e65b9bd 100644 --- a/css/sass/structure/_pagination.scss +++ b/css/sass/structure/_pagination.scss @@ -129,9 +129,18 @@ display: block; margin: 20px 0; - .nav-next, .nav-previous { - display: inline-block; + .nav-next, + .nav-previous { + display: inline; } + + .nav-next { + text-align: right; + @media screen and (min-width:$breakpoint-sm) { + text-align: left; + } + } + } .pagebreak-links { @@ -145,13 +154,28 @@ a { padding: 5px; margin-right: 5px; + margin-top: 5px; + + + width: 100%; + display: block; + @media screen and (min-width:$breakpoint-sm) { + width: inherit; + display: inline; + } } .next, .prev { padding: 2px 4px; } - + .next { + text-align: right; + @media screen and (min-width:$breakpoint-sm) { + text-align: left; + } + } + .next:after { margin-left: 5px; @extend .fa; diff --git a/style.css b/style.css index 484c12c..4d4e7b3 100644 --- a/style.css +++ b/style.css @@ -5,7 +5,7 @@ Description: Theme for pirate parties worldwide. This theme allows to chose between the mostly used color combinations (purple and orange) as main colors for designing elements. It uses several free to use pirate symbols and allows custom CSS. It was created for the german pirate party as replacement for their prior wordpress theme. Author: xwolf Author URI: https://www.xwolf.de - Version: 1.4.3 + Version: 1.4.5 License: GNU General Public License v2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: white, orange, purple, sticky-post, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, translation-ready @@ -13,4 +13,4 @@ This theme, like WordPress, is licensed under the GPL. Lets make the world a better place. -*/@font-face{font-family:'roboto';src:url("./fonts/roboto/Roboto-Bold-webfont.eot");src:url("./fonts/roboto/Roboto-Bold-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-Bold-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-Bold-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-Bold-webfont.svg#robotobold") format("svg");font-weight:bold;font-style:normal}@font-face{font-family:'roboto';src:url("./fonts/roboto/Roboto-BoldItalic-webfont.eot");src:url("./fonts/roboto/Roboto-BoldItalic-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-BoldItalic-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-BoldItalic-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-BoldItalic-webfont.svg#robotobold_italic") format("svg");font-weight:bold;font-style:italic}@font-face{font-family:'roboto';src:url("./fonts/roboto/Roboto-Italic-webfont.eot");src:url("./fonts/roboto/Roboto-Italic-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-Italic-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-Italic-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-Italic-webfont.svg#robotoitalic") format("svg");font-weight:normal;font-style:italic}@font-face{font-family:'roboto';src:url("./fonts/roboto/Roboto-Regular-webfont.eot");src:url("./fonts/roboto/Roboto-Regular-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-Regular-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-Regular-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-Regular-webfont.svg#robotoregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'roboto-light';src:url("./fonts/roboto/Roboto-Light-webfont.eot");src:url("./fonts/roboto/Roboto-Light-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-Light-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-Light-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-Light-webfont.svg#robotolight") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'DejaWeb';src:url("./fonts/dejaweb/DejaWeb-Bold.ttf");src:url("./fonts/dejaweb/DejaWeb-Bold.ttf") format("truetype");font-weight:bold;font-style:normal}@font-face{font-family:'DejaWeb';src:url("./fonts/dejaweb/DejaWeb-BoldItalic.ttf");src:url("./fonts/dejaweb/DejaWeb-BoldItalic.ttf") format("truetype");font-weight:bold;font-style:italic}@font-face{font-family:'DejaWeb';src:url("./fonts/dejaweb/DejaWeb-Italic.ttf");src:url("./fonts/dejaweb/DejaWeb-Italic.ttf") format("truetype");font-weight:normal;font-style:italic}@font-face{font-family:'DejaWeb';src:url("./fonts/dejaweb/DejaWeb.ttf");src:url("./fonts/dejaweb/DejaWeb.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'FontAwesome';src:url("./fonts/fontawesome/fontawesome-webfont.eot?v=4.7.0");src:url("./fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("./fonts/fontawesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("./fonts/fontawesome/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("./fonts/fontawesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("./fonts/fontawesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa,.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a::after,#desktop-navigation ul.menu li .external a::after,.search-open:before,#overlay-open:before,#overlay-open-sticky:before,#overlay-close:before,.single-post .post-navigation .next:after,.single-post .pagebreak-links .next:after,.single-post .post-navigation .prev:before,.single-post .pagebreak-links .prev:before,.entry-content ul li:before,.entry-content ul li ul li:before,.social-nav ul li a::before,#comments-toggle:before,.entry-comments a:before,#comments .comment-reply a:before,.featured-slider button.slick-prev:after,.featured-slider button.slick-next:after,.accordion .accordion-group .accordion-heading .accordion-toggle:before,.gallery .slick-prev:before,.gallery .slick-next:before,.gallery [dir='rtl'] .slick-next:before,.gallery .slick-dots li button:before,[class^="picrew-icon-"],[class*=" picrew-icon-"]{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x,#overlay-open:before,#overlay-open-sticky:before,#overlay-close:before{font-size:2em}.fa-3x,.gallery .slick-prev:before,.gallery .slick-next:before{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul,.social-nav ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li,.social-nav ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fa-pull-left.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a.fa-pull-left::after,#desktop-navigation ul.menu li .external a.fa-pull-left::after,.fa-pull-left.search-open:before,.fa-pull-left#overlay-open:before,.fa-pull-left#overlay-open-sticky:before,.fa-pull-left#overlay-close:before,.single-post .post-navigation .fa-pull-left.next:after,.single-post .pagebreak-links .fa-pull-left.next:after,.single-post .post-navigation .fa-pull-left.prev:before,.single-post .pagebreak-links .fa-pull-left.prev:before,.entry-content ul li.fa-pull-left:before,.social-nav ul li a.fa-pull-left::before,.fa-pull-left#comments-toggle:before,.entry-comments a.fa-pull-left:before,#comments .comment-reply a.fa-pull-left:before,.featured-slider button.fa-pull-left.slick-prev:after,.featured-slider button.fa-pull-left.slick-next:after,.accordion .accordion-group .accordion-heading .fa-pull-left.accordion-toggle:before,.gallery .fa-pull-left.slick-prev:before,.gallery .fa-pull-left.slick-next:before,.gallery .slick-dots li button.fa-pull-left:before,.fa-pull-left[class^="picrew-icon-"],.fa-pull-left[class*=" picrew-icon-"]{margin-right:.3em}.fa.fa-pull-right,.fa-pull-right.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a.fa-pull-right::after,#desktop-navigation ul.menu li .external a.fa-pull-right::after,.fa-pull-right.search-open:before,.fa-pull-right#overlay-open:before,.fa-pull-right#overlay-open-sticky:before,.fa-pull-right#overlay-close:before,.single-post .post-navigation .fa-pull-right.next:after,.single-post .pagebreak-links .fa-pull-right.next:after,.single-post .post-navigation .fa-pull-right.prev:before,.single-post .pagebreak-links .fa-pull-right.prev:before,.entry-content ul li.fa-pull-right:before,.social-nav ul li a.fa-pull-right::before,.fa-pull-right#comments-toggle:before,.entry-comments a.fa-pull-right:before,#comments .comment-reply a.fa-pull-right:before,.featured-slider button.fa-pull-right.slick-prev:after,.featured-slider button.fa-pull-right.slick-next:after,.accordion .accordion-group .accordion-heading .fa-pull-right.accordion-toggle:before,.gallery .fa-pull-right.slick-prev:before,.gallery .fa-pull-right.slick-next:before,.gallery .slick-dots li button.fa-pull-right:before,.fa-pull-right[class^="picrew-icon-"],.fa-pull-right[class*=" picrew-icon-"]{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a.pull-left::after,#desktop-navigation ul.menu li .external a.pull-left::after,.pull-left.search-open:before,.pull-left#overlay-open:before,.pull-left#overlay-open-sticky:before,.pull-left#overlay-close:before,.single-post .post-navigation .pull-left.next:after,.single-post .pagebreak-links .pull-left.next:after,.single-post .post-navigation .pull-left.prev:before,.single-post .pagebreak-links .pull-left.prev:before,.entry-content ul li.pull-left:before,.social-nav ul li a.pull-left::before,.pull-left#comments-toggle:before,.entry-comments a.pull-left:before,#comments .comment-reply a.pull-left:before,.featured-slider button.pull-left.slick-prev:after,.featured-slider button.pull-left.slick-next:after,.accordion .accordion-group .accordion-heading .pull-left.accordion-toggle:before,.gallery .pull-left.slick-prev:before,.gallery .pull-left.slick-next:before,.gallery .slick-dots li button.pull-left:before,.pull-left[class^="picrew-icon-"],.pull-left[class*=" picrew-icon-"]{margin-right:.3em}.fa.pull-right,.pull-right.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a.pull-right::after,#desktop-navigation ul.menu li .external a.pull-right::after,.pull-right.search-open:before,.pull-right#overlay-open:before,.pull-right#overlay-open-sticky:before,.pull-right#overlay-close:before,.single-post .post-navigation .pull-right.next:after,.single-post .pagebreak-links .pull-right.next:after,.single-post .post-navigation .pull-right.prev:before,.single-post .pagebreak-links .pull-right.prev:before,.entry-content ul li.pull-right:before,.social-nav ul li a.pull-right::before,.pull-right#comments-toggle:before,.entry-comments a.pull-right:before,#comments .comment-reply a.pull-right:before,.featured-slider button.pull-right.slick-prev:after,.featured-slider button.pull-right.slick-next:after,.accordion .accordion-group .accordion-heading .pull-right.accordion-toggle:before,.gallery .pull-right.slick-prev:before,.gallery .pull-right.slick-next:before,.gallery .slick-dots li button.pull-right:before,.pull-right[class^="picrew-icon-"],.pull-right[class*=" picrew-icon-"]{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.search-open:before{content:""}.fa-envelope-o:before,.social-nav ul li a[href^="mailto"]:before{content:""}.fa-heart:before{content:""}.fa-star:before,.social-nav ul li a:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,#overlay-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before,.social-nav ul li a[href*="flattr.com"]:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before,.gallery .slick-prev:before,.gallery [dir='rtl'] .slick-next:before{content:""}.fa-chevron-right:before,.gallery [dir='rtl'] .slick-prev:before,.gallery .slick-next:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before,.social-nav ul li a[href*="twitter.com"]:before{content:""}.fa-facebook-f:before,.fa-facebook:before,.social-nav ul li a[href*="facebook.com"]:before{content:""}.fa-github:before,.social-nav ul li a[href*="github.com"]:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before,.social-nav ul li a[href*="feed"]:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before,#overlay-open:before,#overlay-open-sticky:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before,.social-nav ul li a[href*="pinterest.com"]:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before,.social-nav ul li a[href*="plus.google.com"]:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.accordion .accordion-group .accordion-heading .accordion-toggle:before{content:""}.fa-caret-up:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:hover:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:focus:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before,.social-nav ul li a[href*="lists.piratenpartei.de"]:before{content:""}.fa-linkedin:before,.social-nav ul li a[href*="linkedin.com"]:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before,#comments-toggle:before,.entry-comments a:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before,.gallery .slick-dots li button:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before,.single-post .post-navigation .prev:before,.single-post .pagebreak-links .prev:before{content:""}.fa-chevron-circle-right:before,.entry-content ul li:before,.entry-content ul li ul li:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before,.social-nav ul li a[href*="youtube.com"]:before{content:""}.fa-xing:before,.social-nav ul li a[href*="xing.com"]:before{content:"\f168"}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before,.social-nav ul li a[href*="instagram.com"]:before{content:""}.fa-flickr:before,.social-nav ul li a[href*="flickr.com"]:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before,.social-nav ul li a[href*="tumblr.com"]:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before,.social-nav ul li a[href*="skype.com"]:before,.social-nav ul li a[href*="skype:"]:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before,.social-nav ul li a[href*="slack.com"]:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before,.social-nav ul li a[href*="wordpress.org"]:before,.social-nav ul li a[href*="wordpress.com"]:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before,.social-nav ul li a[href*="google.com"]:before{content:""}.fa-reddit:before,.social-nav ul li a[href*="reddit.com"]:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before,.social-nav ul li a[href*="stumbleupon.com"]:before{content:""}.fa-delicious:before,.social-nav ul li a[href*="delicious.com"]:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before,.social-nav ul li a[href*="spotify.com"]:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before,.social-nav ul li a[href*="slideshare.com"]:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before,.social-nav ul li a[href*="whatsapp.com"]:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before,.comments-show #comments-toggle:before,#comments .comment-reply a:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before,.social-nav ul li a[href*="vimeo.com"]:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before,.social-nav ul li a[href*="snapchat.com"]:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}p.site-title,.entry-summary,.widget,.title-footer,.entry-header p.intro,.entry-content,.entry-content p,.entry-content table,.entry-content dl,.entry-content ul,.entry-content ol,p.section-about-text,p.text-big,p.text-small{font-family:"DejaWeb",sans-serif}.entry-content blockquote p,.entry-content p span.uppercase,.section-about-column-two .social-nav ul li a,.section-about-column-one p cite,.widget_mc4wp_form_widget input[type="email"],.widget_mc4wp_form_widget input[type="submit"],.jetpack_subscription_widget #subscribe-email input[type="email"],.jetpack_subscription_widget #subscribe-submit input[type="submit"],.contact-form input[type="submit"],input,textarea,.site-content div.wpcf7 input,.site-content div.wpcf7 textarea,.site-content div.wpcf7 p,a.standard-btn,.big-instagram-wrap .clear,.single-product .entry-summary h1{font-family:"DejaWeb",sans-serif}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:0;padding-right:0}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0%}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0%}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width: 979px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0%}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0%}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{font-family:"DejaWeb",sans-serif;display:block;color:#1a1a1a;background:#ffffff;font-size:16px;font-size:1rem;line-height:1.35}body.overlay-show{overflow:hidden}body.blog.slider-on.slider-fullscreen,body.blog.headerimg-on.header-fullscreen{padding-top:0}html.overlay-show{overflow:hidden}#site-branding,.blog-wrap,.singlepost-wrap,.recommended-posts-wrap,#colophon{padding-left:5.3125%;padding-right:5.3125%}.mobile-search{padding-left:5.3125%;padding-right:5.3125%}#overlay-nav ul li a,#overlay-nav ul ul li a{padding-left:5.3125%;padding-right:5.3125%}#mobile-social,#sidebar-offcanvas .widget,.front-section{padding-left:5.3125%;padding-right:5.3125%}#offcanvas-widgets-open,.headerimg-on.header-boxed .header-image{margin-left:5.3125%;margin-right:5.3125%}#front-section-four .entry-thumbnail a{width:130%}.featured-content,#front-section-four .type-post{width:100%;overflow:hidden}.headerimg-on .front-section:first-of-type{padding-top:0}.front_section_twocolumn_excerpt #front-section-twocolumn .entry-summary{display:block}.front_section_threecolumn_excerpt #front-section-threecolumn .entry-summary{display:block}.front_section_fourcolumn_excerpt #front-section-fourcolumn .entry-summary{display:block}.front_section_sixcolumn_excerpt #front-section-sixcolumn .entry-summary{display:block}.front_hidedate .blog .entry-date{display:none !important}.front_hidecomments .blog .entry-comments{display:none !important}@media screen and (min-width: 64em){.page .content-wrap,.front-section:first-of-type,.page.has-thumb .blog-wrap,.search .blog-wrap,.archive .blog-wrap,.error404 .content-wrap{padding-top:40px}.singlepost-wrap{padding-top:20px}}#desktop-navigation,.header-social,.search-open,.desktop-search,.sticky-header{display:none}#site-branding{position:fixed;top:0;left:0;right:0;display:block;padding-top:5px;padding-bottom:5px;border-bottom:1px solid #ddd;z-index:21;background:#fff}@media screen and (min-width: 66.25em){#site-branding{position:relative;width:87.5%;margin-left:auto;margin-right:auto;padding:17px 0 0;border-bottom:none;background:none}}.admin-bar #site-branding{position:absolute;top:46px}@media screen and (min-width: 783px){.admin-bar #site-branding{top:32px;position:fixed}}@media screen and (min-width: 66.25em){.admin-bar #site-branding{top:0;position:relative}}.home.blog.headerimg-on.header-fullscreen #site-branding{position:absolute}a.site-logo{display:none;line-height:0}.home a.site-logo{display:inline-block}p.site-description{display:none}@media screen and (min-width: 66.25em){p.site-description{display:block;text-align:center;margin:0;padding:4px 0 0 0;font-size:12px;font-size:0.75rem;text-transform:uppercase;letter-spacing:1px}.hide-tagline p.site-description{display:none !important}}.header-image{display:block;position:relative}.custom-logo-wrap{margin-left:auto;margin-right:auto;text-align:left;display:block}.custom-logo-wrap a.custom-logo-link img{vertical-align:middle;width:auto;max-width:300px;height:49px}@media screen and (min-width: 66.25em){.sticky-header{display:block;position:fixed;top:0;left:0;width:100%;background:#fff;min-height:59px;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-shadow:0 0 8px rgba(0,0,0,0.25);z-index:100000}.sticky-header.hidden{-webkit-transform:translateY(-100%);transform:translateY(-100%);box-shadow:none}.sticky-header p{display:none;font-size:30px;font-size:1.875rem}.hide-header-sticky .sticky-header{display:none !important}.header-stick .sticky-header p{display:block;padding:8px 0 0 0}.header-stick #overlay-open-sticky{top:0px;z-index:9999}.header-stick #overlay-open-sticky{width:60px}.custom-logo-wrap{text-align:center}.custom-logo-wrap a.custom-logo-link img{width:auto;height:100px;max-width:360px}.sticky-header .custom-logo-wrap{text-align:center;margin-left:auto;margin-right:auto}.sticky-header .custom-logo-wrap .custom-logo-link img{max-width:400px;width:auto;height:59px}}#overlay-nav{display:block}#overlay-nav ul{list-style:none;margin:0;padding:0}#overlay-nav ul li{display:block;margin:0;padding:0;border-bottom:1px solid #ddd}#overlay-nav ul ul li{margin:0;padding:5px 0;border-bottom:none}#overlay-nav ul li a{display:block;padding-top:15px;padding-bottom:15px}#overlay-nav ul ul.sub-menu,#overlay-nav ul ul.children{display:none;overflow:hidden;margin:0;padding:0 0 10px}#overlay-nav ul ul ul.sub-menu,#overlay-nav ul ul ul.children{margin:0;border-top:none}#overlay-nav ul ul li a{border-bottom:none;padding-top:0;padding-bottom:0;font-weight:normal;line-height:1.5;text-transform:none;letter-spacing:0}.dropdown-toggle{border:none;outline:none}#secondary .dropdown-toggle,#sidebar-offcanvas .widget-area .dropdown-toggle,#colophon .dropdown-toggle{display:none}.menu-item-has-children,.page_item_has_children{position:relative}.dropdown-toggle{position:absolute;top:0;right:5.3125%;width:50px;height:50px;background:transparent}.dropdown-toggle:after{vertical-align:top;position:absolute;content:"";top:0;right:5.3125%;width:50px;height:50px;padding:13px 0 0 0;text-align:inherit;margin-right:-10px}.dropdown-toggle.toggle-on:after{content:""}.sub-menu .menu-item-has-children .dropdown-toggle,.children .page_item_has_childrenn .dropdown-toggle:after{width:30px;height:30px}.sub-menu .menu-item-has-children .dropdown-toggle:after,.children .page_item_has_children .dropdown-toggle:after{padding:4px 0 0 0}#overlay-nav ul.sub-menu.toggled-on,#overlay-nav ul.children.toggled-on{display:block !important}.single-attachment .post-navigation a:focus,.single-attachment .post-navigation a:hover{border-bottom:2px solid #51a8dd}#desktop-navigation ul.menu{font-family:"roboto",sans-serif}#desktop-navigation ul.menu li.menu-item-has-children>a{margin-right:0px}#desktop-navigation ul.menu li.menu-item-has-children>a::after{margin-left:5px;content:""}#desktop-navigation ul.menu li a{color:#1a1a1a}#desktop-navigation ul.menu li .external a::after{margin-left:5px;content:""}#desktop-navigation ul.menu li.current-menu-ancestor a,#desktop-navigation ul.menu li.focus a,#desktop-navigation ul.menu li:focus a,#desktop-navigation ul.menu li:hover a{border-bottom:3px solid #f80;color:#1a1a1a}#desktop-navigation ul.menu li.current-menu-ancestor li a,#desktop-navigation ul.menu li.focus li a,#desktop-navigation ul.menu li:focus li a,#desktop-navigation ul.menu li:hover li a{border-bottom:none}#mobile-social{border-bottom:1px solid #ddd}#mobile-social li{padding:10px 0}#skiplinks{position:relative;left:0;width:100%;margin-left:0;text-align:center;list-style:outside none}#skiplinks ul{margin:0}#skiplinks li{list-style-type:none}#skiplinks a{position:absolute;left:-99999px;top:150px}#skiplinks a:focus,#skiplinks a:active{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;position:relative;display:block;z-index:9999;height:auto;margin:0 auto;text-align:center;text-decoration:none;color:#fff;background:#672082;left:0;top:0}@media screen and (min-width: 64em){#desktop-navigation{display:block;padding:0}#desktop-navigation ul{margin:0;padding:0;text-align:center}#desktop-navigation ul li{position:relative;display:inline-block;padding:20px 15px 18px}#desktop-navigation .sub-menu,#desktop-navigation .children,#desktop-navigation .dropdown-toggle{position:absolute;left:-9999px}#desktop-navigation .sub-menu:hover,#desktop-navigation .sub-menu:focus,#desktop-navigation .sub-menu.focus,#desktop-navigation .children:hover,#desktop-navigation .children:focus,#desktop-navigation .children.focus,#desktop-navigation .dropdown-toggle:hover,#desktop-navigation .dropdown-toggle:focus,#desktop-navigation .dropdown-toggle.focus{display:block !important}#desktop-navigation .sub-menu .sub-menu{border-top:1px solid #ccc;border-left:1px solid #ccc;border-bottom:1px solid #ccc}#desktop-navigation ul li>ul.focus.sub-menu,#desktop-navigation ul li>ul.focus.children,#desktop-navigation ul li.focus>ul.sub-menu,#desktop-navigation ul li.focus>ul.children,#desktop-navigation ul li:focus>ul.sub-menu,#desktop-navigation ul li:focus>ul.children,#desktop-navigation ul li:hover>ul.sub-menu,#desktop-navigation ul li:hover>ul.children{display:block;left:0}#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul,#desktop-navigation ul li>ul.focus.children li>ul.focus,#desktop-navigation ul li>ul.focus.children li.focus>ul,#desktop-navigation ul li>ul.focus.children li:focus>ul,#desktop-navigation ul li>ul.focus.children li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul,#desktop-navigation ul li.focus>ul.children li>ul.focus,#desktop-navigation ul li.focus>ul.children li.focus>ul,#desktop-navigation ul li.focus>ul.children li:focus>ul,#desktop-navigation ul li.focus>ul.children li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul,#desktop-navigation ul li:focus>ul.children li>ul.focus,#desktop-navigation ul li:focus>ul.children li.focus>ul,#desktop-navigation ul li:focus>ul.children li:focus>ul,#desktop-navigation ul li:focus>ul.children li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul,#desktop-navigation ul li:hover>ul.children li>ul.focus,#desktop-navigation ul li:hover>ul.children li.focus>ul,#desktop-navigation ul li:hover>ul.children li:focus>ul,#desktop-navigation ul li:hover>ul.children li:hover>ul{top:15px;left:215px}#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus li:hover>ul,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul li:hover>ul,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul li:hover>ul,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul li:hover>ul,#desktop-navigation ul li>ul.focus.children li>ul.focus li>ul.focus,#desktop-navigation ul li>ul.focus.children li>ul.focus li.focus>ul,#desktop-navigation ul li>ul.focus.children li>ul.focus li:focus>ul,#desktop-navigation ul li>ul.focus.children li>ul.focus li:hover>ul,#desktop-navigation ul li>ul.focus.children li.focus>ul li>ul.focus,#desktop-navigation ul li>ul.focus.children li.focus>ul li.focus>ul,#desktop-navigation ul li>ul.focus.children li.focus>ul li:focus>ul,#desktop-navigation ul li>ul.focus.children li.focus>ul li:hover>ul,#desktop-navigation ul li>ul.focus.children li:focus>ul li>ul.focus,#desktop-navigation ul li>ul.focus.children li:focus>ul li.focus>ul,#desktop-navigation ul li>ul.focus.children li:focus>ul li:focus>ul,#desktop-navigation ul li>ul.focus.children li:focus>ul li:hover>ul,#desktop-navigation ul li>ul.focus.children li:hover>ul li>ul.focus,#desktop-navigation ul li>ul.focus.children li:hover>ul li.focus>ul,#desktop-navigation ul li>ul.focus.children li:hover>ul li:focus>ul,#desktop-navigation ul li>ul.focus.children li:hover>ul li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul li:hover>ul,#desktop-navigation ul li.focus>ul.children li>ul.focus li>ul.focus,#desktop-navigation ul li.focus>ul.children li>ul.focus li.focus>ul,#desktop-navigation ul li.focus>ul.children li>ul.focus li:focus>ul,#desktop-navigation ul li.focus>ul.children li>ul.focus li:hover>ul,#desktop-navigation ul li.focus>ul.children li.focus>ul li>ul.focus,#desktop-navigation ul li.focus>ul.children li.focus>ul li.focus>ul,#desktop-navigation ul li.focus>ul.children li.focus>ul li:focus>ul,#desktop-navigation ul li.focus>ul.children li.focus>ul li:hover>ul,#desktop-navigation ul li.focus>ul.children li:focus>ul li>ul.focus,#desktop-navigation ul li.focus>ul.children li:focus>ul li.focus>ul,#desktop-navigation ul li.focus>ul.children li:focus>ul li:focus>ul,#desktop-navigation ul li.focus>ul.children li:focus>ul li:hover>ul,#desktop-navigation ul li.focus>ul.children li:hover>ul li>ul.focus,#desktop-navigation ul li.focus>ul.children li:hover>ul li.focus>ul,#desktop-navigation ul li.focus>ul.children li:hover>ul li:focus>ul,#desktop-navigation ul li.focus>ul.children li:hover>ul li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul li:hover>ul,#desktop-navigation ul li:focus>ul.children li>ul.focus li>ul.focus,#desktop-navigation ul li:focus>ul.children li>ul.focus li.focus>ul,#desktop-navigation ul li:focus>ul.children li>ul.focus li:focus>ul,#desktop-navigation ul li:focus>ul.children li>ul.focus li:hover>ul,#desktop-navigation ul li:focus>ul.children li.focus>ul li>ul.focus,#desktop-navigation ul li:focus>ul.children li.focus>ul li.focus>ul,#desktop-navigation ul li:focus>ul.children li.focus>ul li:focus>ul,#desktop-navigation ul li:focus>ul.children li.focus>ul li:hover>ul,#desktop-navigation ul li:focus>ul.children li:focus>ul li>ul.focus,#desktop-navigation ul li:focus>ul.children li:focus>ul li.focus>ul,#desktop-navigation ul li:focus>ul.children li:focus>ul li:focus>ul,#desktop-navigation ul li:focus>ul.children li:focus>ul li:hover>ul,#desktop-navigation ul li:focus>ul.children li:hover>ul li>ul.focus,#desktop-navigation ul li:focus>ul.children li:hover>ul li.focus>ul,#desktop-navigation ul li:focus>ul.children li:hover>ul li:focus>ul,#desktop-navigation ul li:focus>ul.children li:hover>ul li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul li:hover>ul,#desktop-navigation ul li:hover>ul.children li>ul.focus li>ul.focus,#desktop-navigation ul li:hover>ul.children li>ul.focus li.focus>ul,#desktop-navigation ul li:hover>ul.children li>ul.focus li:focus>ul,#desktop-navigation ul li:hover>ul.children li>ul.focus li:hover>ul,#desktop-navigation ul li:hover>ul.children li.focus>ul li>ul.focus,#desktop-navigation ul li:hover>ul.children li.focus>ul li.focus>ul,#desktop-navigation ul li:hover>ul.children li.focus>ul li:focus>ul,#desktop-navigation ul li:hover>ul.children li.focus>ul li:hover>ul,#desktop-navigation ul li:hover>ul.children li:focus>ul li>ul.focus,#desktop-navigation ul li:hover>ul.children li:focus>ul li.focus>ul,#desktop-navigation ul li:hover>ul.children li:focus>ul li:focus>ul,#desktop-navigation ul li:hover>ul.children li:focus>ul li:hover>ul,#desktop-navigation ul li:hover>ul.children li:hover>ul li>ul.focus,#desktop-navigation ul li:hover>ul.children li:hover>ul li.focus>ul,#desktop-navigation ul li:hover>ul.children li:hover>ul li:focus>ul,#desktop-navigation ul li:hover>ul.children li:hover>ul li:hover>ul{top:15px;left:75px}#desktop-navigation ul ul.sub-menu,#desktop-navigation ul ul.children{position:absolute;margin:18px 0 0 0;min-width:230px;max-width:300px;padding:0;text-align:left;color:#fff;background:#1a1a1a;z-index:100000}#desktop-navigation .sub-menu li a,#desktop-navigation .children li a{display:block;padding:10px 15px;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;color:#fff !important;text-transform:none;font-weight:normal;letter-spacing:0}#desktop-navigation .sub-menu li,#desktop-navigation .children li{padding:0;display:block}}.search-open{border-width:1px;border-style:solid;border-radius:50%}.search-open :focus,.search-open :hover{border-radius:50%}.search-open:before{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.no-js .search-open{display:none}#footer-search{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}#footer-search .search-field{border-width:1px;border-style:solid;padding:5px;letter-spacing:0.5px;font-weight:bolder}#footer-search input#submit,#footer-search input[type="submit"]{border-width:1px;border-style:solid;padding:5px}@media screen and (min-width: 66.25em){#masthead{position:relative;border-bottom-width:1px;border-bottom-style:solid}.search-open,.desktop-search{display:block}.search-open{position:absolute;top:50px;left:9.23611111111111%;right:auto;border:none;z-index:1000;padding:0;overflow:hidden;display:inline-block;width:25px;height:25px;text-align:center;vertical-align:middle;border-radius:50%}.search-open:before{vertical-align:middle;text-align:center}.desktop-search{position:absolute;top:100%;width:100%;opacity:0;height:0;z-index:10000;text-align:center;border-top-width:1px;border-top-style:solid;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.desktop-search input.search-field{width:33%;border-top:0;border-left:0;border-right:0;border-bottom-width:1px;border-bottom-style:solid;padding:9px 0;letter-spacing:0.5px;font-weight:bolder}.desktop-search input[type="submit"]{margin-left:10px;padding:8px 20px;border-width:2px;border-style:solid;font-size:15px;font-size:0.9375rem;text-transform:uppercase;letter-spacing:3px}.desktop-search .searchform{height:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.searchbar-maincolor .desktop-search input.search-field:hover,.searchbar-maincolor .desktop-search input.search-field:focus{padding-left:10px}.searchbar-maincolor .desktop-search input[type="submit"]{font-weight:bold}.searchbar-maincolor .desktop-search input[type="submit"]:focus,.searchbar-maincolor .desktop-search input[type="submit"]:hover{font-weight:bolder}.desktop-search-show .desktop-search{position:absolute;top:100%;opacity:1;height:118px;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.desktop-search-show .desktop-search .searchform{height:118px;padding-top:35px;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.desktop-search .header-stick #search-open-sticky{z-index:9999}.desktop-search .header-stick .desktop-search{position:fixed;top:59px;border-top:none;height:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.desktop-search .header-stick.desktop-search-show .desktop-search{height:118px}#overlay-open-sticky{position:absolute;height:59px;text-align:center;top:0px;left:10px;width:59px}#search-open-sticky{top:17px;left:69px}}main{position:relative;top:59px}@media screen and (min-width: 1024px){main{top:0}}.front-section{margin:0 auto;padding-bottom:70px}.front-section-title{position:relative;display:block;padding:3px 130px 20px 0}.social-front-title{position:relative;display:block;padding:3px 130px 20px 0;padding-right:0}.shortcode-section a.all-posts-link,.front-section a.all-posts-link,.big-instagram-wrap .null-instagram-feed .clear{position:absolute;top:11px;right:-2px;display:block;text-transform:uppercase;letter-spacing:3px;font-weight:600}.sidebar-offcanvas .null-instagram-feed .clear,.sidebar .null-instagram-feed .clear{position:absolute;top:16px;right:0;display:block;margin:0}.front-section a.all-posts-link:after{content:'\2192';text-align:right;padding-left:3px}.front-section .type-post{position:relative;display:block;margin:0;padding:20px 0 35px;border-top:1px solid #1a1a1a}.section-two-column-one .entry-author,.section-three-column-one .entry-author{font-weight:600}.section-two-column-one .entry-date:before,.section-three-column-one .entry-date:before{content:' / ';padding:0 2px}.section-one-column-one .entry-header{padding:15px 0 0px}.section-one-column-one .entry-author{font-weight:600}.section-one-column-one .entry-date:before{content:' / ';padding:0 2px}.section-one-column-one .entry-comments,.section-one-column-one .entry-edit{margin-left:20px}.section-one-column-one .entry-summary{padding:0 0 20px;line-height:1.35}.section-one-column-one .entry-cats{top:60px;left:40px}.section-one-column-one .entry-meta{margin-bottom:15px}.section-two-column-one .entry-comments,.section-two-column-one .entry-edit{margin-left:20px}.section-three-column-one .entry-comments,.section-three-column-one .entry-edit{margin-left:20px}.section-one-column-two,.section-two-column-two{display:block;overflow:hidden}.section-one-column-two .type-post:nth-of-type(n+2),.section-two-column-two .type-post,.section-fourcolumn-postwrap .type-post,.section-sixcolumn-postwrap .type-post{width:47.8134110787172%}.section-one-column-two .type-post:nth-of-type(2),.section-one-column-two .type-post:nth-of-type(4){float:left;margin-right:2.1865889212828%;clear:left}.section-two-column-two .type-post:nth-of-type(1),.section-two-column-two .type-post:nth-of-type(3),.section-two-column-two .type-post:nth-of-type(5),.section-two-column-two .type-post:nth-of-type(7){float:left;margin-right:2.1865889212828%;clear:left}.section-fourcolumn-postwrap .type-post:nth-of-type(odd),.section-sixcolumn-postwrap .type-post:nth-of-type(odd){float:left;margin-right:2.1865889212828%;clear:left}.section-one-column-two .type-post:nth-of-type(3),.section-one-column-two .type-post:nth-of-type(5){float:right;margin-left:2.1865889212828%;clear:right}.section-two-column-two .type-post:nth-of-type(2),.section-two-column-two .type-post:nth-of-type(4),.section-two-column-two .type-post:nth-of-type(6),.section-two-column-two .type-post:nth-of-type(8){float:right;margin-left:2.1865889212828%;clear:right}.section-fourcolumn-postwrap .type-post:nth-of-type(even),.section-sixcolumn-postwrap .type-post:nth-of-type(even){float:right;margin-left:2.1865889212828%;clear:right}#front-section-one .section-one-column-two .type-post:nth-of-type(4),#front-section-one .section-one-column-two .type-post:nth-of-type(5){padding-bottom:0}#front-section-two .section-two-column-two .type-post:nth-of-type(7),#front-section-two .section-two-column-two .type-post:nth-of-type(8){padding-bottom:0}.section-fourcolumn-postwrap .type-post:last-child,.section-fourcolumn-postwrap .type-post:nth-last-child(2){padding-bottom:0}.section-sixcolumn-postwrap .type-post:last-child,.section-sixcolumn-postwrap .type-post:nth-last-child(2){padding-bottom:0}.section-two-column-one .entry-header,.section-three-column-one .entry-header{padding:15px 0 10px}.section-two-column-one .entry-summary,.section-three-column-one .entry-summary{padding:0 0 20px;line-height:1.35}.columns-wrap .entry-header{padding:8px 0 0 0}.columns-wrap .entry-header h2.entry-title{padding:8px 0 0 0}.columns-wrap .entry-summary{padding:8px 0 0 0}#front-section-three{width:100%;background:#f4f4f4;margin-left:0;margin-right:0;margin-bottom:70px;padding-top:35px;padding-bottom:35px}#front-section-three h3.front-section-title{position:relative;display:block;padding:8px 0 20px;border-top:none}#front-section-three h3.front-section-title:before{content:" ";border-top:4px solid #1a1a1a;width:50px;position:absolute;top:0;left:0}#big-footer-feature h3.footer-feature-title:before{content:" ";border-top:4px solid #1a1a1a;width:50px;position:absolute;top:0;left:0;border-top:4px solid #fff}#front-section-three a.all-posts-link{border:2px solid #2b2b2b;padding:4px 6px;top:2px}#front-section-three a.all-posts-link:after{display:none}#front-section-three .section-three-column-one .type-post{border-top:none;padding-top:0}.section-three-column-two .entry-thumbnail{width:50%;float:left;padding-right:4.6875%;padding-bottom:35px}.section-three-column-two .entry-header{width:50%;float:left}.section-three-column-two .type-post{clear:both}.section-three-column-two .type-post .entry-header h2.entry-title{padding:0}.section-three-column-two .type-post:last-of-type .entry-thumbnail{padding-bottom:0}#front-section-four{padding-left:0;padding-right:0}#front-section-four .type-post{position:relative;padding:0;border-top:none}#front-section-four .type-post .entry-summary,#front-section-four .type-post .entry-author{display:none}#front-section-four .type-post .entry-thumbnail img{width:100%}#front-section-four .meta-main-wrap{display:block;padding-left:5.3125%;padding-right:5.3125%;padding-bottom:17px}.section-about-column-one{padding:0;overflow:hidden}.section-about-column-one .front-section-title{border-bottom:1px solid #1a1a1a;margin-bottom:20px}.front-about-img{width:50%;float:left;clear:left;padding-right:2.34375%}.section-about-column-one p{display:block;margin:0;clear:right;float:left;width:50%;padding-left:2.34375%}.section-about-column-one p cite{display:block;padding:20px 0 0 0;font-weight:600;letter-spacing:3px;text-transform:uppercase;font-style:normal}.section-about-column-two{padding-top:60px}#front-section-twocolumn .type-post:last-of-type,#front-section-threecolumn .type-post:last-of-type{padding-bottom:0}#front-section-twocolumn .entry-summary,#front-section-threecolumn .entry-summary,#front-section-fourcolumn .entry-summary,#front-section-sixcolumn .entry-summary{display:none}.blog-wrap h3.blog-title,.archive-header h1.archive-title{display:block;padding:3px 0 20px}.site-content .hentry{position:relative}.site-content .hentry .entry-meta,.site-content .hentry .entry-author{display:none}.blog-wrap:last-child .hentry{padding-bottom:34px}.comment-name{display:none}.entry-author span{padding-right:4px}.page #primary .blogroll .hentry .entry-thumbnail,.blog #primary .hentry .entry-thumbnail,.archive #primary .hentry .entry-thumbnail,.search-results #primary .hentry .entry-thumbnail{width:32.1875%;margin:0 0 0 10px;float:right}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:-5.94405594405594%;margin-right:-5.94405594405594%;margin-bottom:34px;padding:0;border-top:0}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail{width:100%;margin:0;float:none}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail img{width:100%}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{width:100%;padding:0 5.3125% 28px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{float:none}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-summary{display:none}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-title a{text-shadow:1px 2px 2px black}#front-section-four .entry-date{padding-right:20px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{font-weight:600}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{display:block;position:absolute;width:80.43478260869566%;left:5.3125%;bottom:17px}#front-section-four .entry-edit{display:none}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{display:none}@media screen and (min-width: 37.5em){#front-section-twocolumn .entry-summary,#front-section-threecolumn .entry-summary,#front-section-fourcolumn .entry-summary,#front-section-sixcolumn .entry-summary{display:inline-block}#front-section-four .entry-edit{display:inline-block}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{display:inline-block}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit:after,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author:after{content:' / '}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit{padding-left:20px}.no-author .entry-date:before{content:'';padding:0}#front-section-four .entry-edit{padding-left:20px}.entry-content p.pull-left,.entry-content p.pull-right{width:48%}.entry-content p.pull-left{float:left;margin-right:20px}.entry-content p.pull-right{float:right;margin-left:20px;text-align:right}#front-section-twocolumn .type-post{width:47.8134110787172%;float:left}#front-section-twocolumn .type-post:nth-of-type(odd){margin-right:2.1865889212828%;clear:left}#front-section-twocolumn .type-post:nth-of-type(even){margin-left:2.1865889212828%;clear:right}#front-section-twocolumn .type-post:nth-last-of-type(2){padding-bottom:0}}@media screen and (min-width: 48em){#front-section-four .format-video .entry-thumbnail a:before,.section-three-column-one .format-video .entry-thumbnail a:before{width:60px;height:42px;padding:22px 0 0 24px;font-size:16px}.featured-content{padding-bottom:60px;min-height:400px}.header-image{margin-bottom:60px}#front-section-four .meta-main-wrap{padding-bottom:35px}.front-section{padding-bottom:75px}.front-section a.all-posts-link{top:25px}.section-two-column-two .type-post{width:22.28915662650602%}.section-two-column-two .type-post:nth-of-type(1),.section-two-column-two .type-post:nth-of-type(2),.section-two-column-two .type-post:nth-of-type(3),.section-two-column-two .type-post:nth-of-type(5),.section-two-column-two .type-post:nth-of-type(6),.section-two-column-two .type-post:nth-of-type(7){float:left;margin-right:3.6144578313253%;margin-left:0;clear:none}.section-two-column-two .type-post:nth-of-type(1),.section-two-column-two .type-post:nth-of-type(5){clear:left}.section-two-column-two .type-post:nth-of-type(4),.section-two-column-two .type-post:nth-of-type(8){float:right;margin:0;clear:right}.front-section .section-two-column-two .type-post:nth-of-type(5),.front-section .section-two-column-two .type-post:nth-of-type(6),.front-section .section-two-column-two .type-post:nth-of-type(7),.front-section .section-two-column-two .type-post:nth-of-type(8){padding-bottom:0}#front-section-three{padding-top:75px;padding-bottom:75px}#front-section-three h3.front-section-title{padding-bottom:40px}#front-section-three a.all-posts-link{padding:8px 20px;top:0}.section-three-column-two .entry-thumbnail{padding-bottom:0}.section-three-column-two .type-post:nth-of-type(1),.section-three-column-two .type-post:nth-of-type(3){width:47.81021897810219%;float:left;clear:left}.section-three-column-two .type-post:nth-of-type(2),.section-three-column-two .type-post:nth-of-type(4){width:47.81021897810219%;float:right;clear:right}.section-three-column-two .type-post:nth-of-type(3),.section-three-column-two .type-post:nth-of-type(4){padding-bottom:0}#front-section-threecolumn .type-post{width:30.42333333333333%;float:left}.section-sixcolumn-postwrap .type-post{width:30.42333333333333%;float:left}.section-sixcolumn-postwrap .type-post:nth-of-type(even){float:left;clear:none;margin-left:0}.section-sixcolumn-postwrap .type-post:nth-of-type(odd){clear:none;margin-right:0}#front-section-threecolumn .type-post:nth-of-type(3n+1),.section-sixcolumn-postwrap .type-post:nth-of-type(3n+1){margin-right:2.9%;clear:left}#front-section-threecolumn .type-post:nth-of-type(3n+2),.section-sixcolumn-postwrap .type-post:nth-of-type(3n+2){margin-left:1.455%;margin-right:1.455%}#front-section-threecolumn .type-post:nth-of-type(3n+3),.section-sixcolumn-postwrap .type-post:nth-of-type(3n+3){margin-left:2.915%;clear:right}.section-fourcolumn-postwrap .type-post{width:22.28915662650602%;margin-right:3.6144578313253%;float:left;clear:none}.section-fourcolumn-postwrap .type-post:nth-of-type(odd),.section-fourcolumn-postwrap .type-post:nth-of-type(even){clear:none;margin-left:0;margin-right:3.6144578313253%;float:left}.section-fourcolumn-postwrap .type-post:nth-of-type(4n+1){clear:left}.section-fourcolumn-postwrap .type-post:nth-of-type(4n+4){margin-right:0;clear:right}#front-section-threecolumn .type-post:last-child,#front-section-threecolumn .type-post:nth-last-child(2),#front-section-threecolumn .type-post:nth-last-child(3){padding-bottom:0}.section-fourcolumn-postwrap .type-post:last-child,.section-fourcolumn-postwrap .type-post:nth-last-child(2),.section-fourcolumn-postwrap .type-post:nth-last-child(3),.section-fourcolumn-postwrap .type-post:nth-last-child(4){padding-bottom:0}.section-sixcolumn-postwrap .type-post:nth-last-child(3){padding-bottom:0}.blog-wrap:last-child .hentry{padding-bottom:40px}.blog #primary .hentry .entry-meta,.archive #primary .hentry .entry-meta,.search-results #primary .hentry .entry-meta{width:25.49019607843137%;float:left;display:block}.blog #primary .hentry .entry-main,.archive #primary .hentry .entry-main,.search-results #primary .hentry .entry-main{width:74.50980392156863%;float:left;margin-bottom:20px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-main{width:100%;float:none}.blog #primary .hentry .entry-thumbnail{width:36.14457831325301%}.archive #primary .hentry .entry-thumbnail,.search-results #primary .hentry .entry-thumbnail{width:36.14457831325301%}.blog #primary .hentry .meta-main-wrap,.archive #primary .hentry .meta-main-wrap,.search-results #primary .hentry .meta-main-wrap{width:61.44578313253012%;float:left}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-top:40px;margin-bottom:80px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{padding:0 5.3125% 64px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{width:80.43478260869566%;left:5.3125%;bottom:35px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats{padding-bottom:8px}}@media screen and (min-width: 64em){#front-section-four .entry-thumbnail a{width:100%}.section-about-column-one p{padding-left:1.6%;width:67.2%}}@media screen and (min-width: 66.25em){body,.inner-offcanvas-wrap,.featured-content{padding-top:0}.blog.headerimg-on #masthead{margin-bottom:0;border-bottom:none}.blog #masthead{margin-bottom:60px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:-10.8433734939759%;margin-right:0}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) img.wp-post-image{width:100%}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{padding-left:9.78260869565217%}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{left:9.78260869565217%}.blog #primary .hentry.has-post-thumbnail.format-video:nth-child(4n+1) .entry-thumbnail a:before{left:9.78260869565217%;top:35px}.blog.sidebar-left #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-right:-10.8433734939759%;margin-left:0}.blog.sidebar-left #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{padding-left:40px;padding-right:9.78260869565217%}.blog.sidebar-left #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta,.blog.no-sidebar #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{left:40px}.blog.no-sidebar #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:auto}.blog.no-sidebar #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{padding-left:40px}.home.blog.slider-on.slider-fullscreen #site-branding,.home.blog.headerimg-on.header-fullscreen #site-branding{position:relative}.home.blog.headerimg-on.header-fullscreen #masthead .site-header-content,.home.blog.slider-on.slider-fullscreen #masthead .site-header-content{position:absolute;top:0;left:0;right:0;border-bottom:none;z-index:1000000}.blog-wrap{padding-left:0;padding-right:0}.section-one-column-one .type-post .entry-summary,.section-about-column-one p{font-size:32px;font-size:2rem;line-height:1.25}.section-one-column-one{width:65.87301587301587%;float:left}.section-one-column-one .type-post{padding-bottom:0}.section-one-column-two{width:31.74603174603175%;float:right}.section-one-column-one .entry-header{padding:25px 0 0}.section-one-column-one .entry-summary{padding:0 0 35px}.section-three-column-one .entry-summary{padding:0 0 35px}.columns-wrap .entry-header{padding:12px 0 0 0}.section-two-column-one{width:31.74603174603175%;float:left}.section-two-column-two{width:65.87301587301587%;float:right}.section-two-column-one .entry-header{padding:20px 0 0 0}.section-two-column-one .entry-header h2.entry-title{padding:10px 0 20px}.shortcode-section .section-two-column-one .type-post,.front-section .section-two-column-one .type-post{padding-bottom:0}#front-section-three{padding-left:6.25%;padding-right:6.25%}.section-three-column-one{padding-bottom:50px;clear:both;overflow:hidden}.section-three-column-one .entry-thumbnail{width:48.80952380952381%;float:right}.section-three-column-one .entry-cats{top:30px;left:53.57142857142857%}.section-three-column-one .entry-header,.section-three-column-one .entry-summary,.section-three-column-one .entry-meta{width:48.80952380952381%;float:left;clear:left}.section-three-column-one .entry-header{padding-top:0}.section-three-column-one .entry-header h2.entry-title{padding-top:0}.section-three-column-two .type-post{width:23.21428571428571% !important;float:left !important;padding-bottom:0 !important}.section-three-column-two .type-post .entry-header h2.entry-title{padding-bottom:0}.section-three-column-two .type-post:nth-of-type(2),.section-three-column-two .type-post:nth-of-type(3){clear:none;margin-right:2.38095238095238%}.section-three-column-two .type-post:nth-of-type(1){clear:left;margin-right:2.38095238095238%}.section-three-column-two .type-post:nth-of-type(4){clear:right}#front-section-four .meta-main-wrap{padding-left:6.25%;padding-right:6.25%}#front-section-four .format-video .entry-thumbnail a:before{left:6.25%;top:40px}#front-section-four .meta-main-wrap .entry-header{width:65.87301587301587%}#front-section-four .meta-main-wrap .entry-meta{padding-top:20px}.section-about-column-one{width:74.4047619047619%;float:left}.section-about-column-two{width:23.21428571428571%;float:right;padding:0}#front-section-twocolumn .type-post{width:48.80952380952381%}#front-section-twocolumn .type-post:nth-of-type(odd){margin-right:1.19047619047619%}#front-section-twocolumn .type-post:nth-of-type(even){margin-left:1.19047619047619%}#front-section-threecolumn .type-post{width:31.74603333333333%}#front-section-threecolumn .type-post:nth-of-type(3n+1){margin-right:1.5873%}#front-section-threecolumn .type-post:nth-of-type(3n+2){margin-left:0.79365%;margin-right:0.79365%}#front-section-threecolumn .type-post:nth-of-type(3n+3){margin-left:1.5873%}.section-fourcolumn-postwrap .type-post{width:23.21428571428572%;margin-right:2.38095238095238%;float:left;clear:none}.section-fourcolumn-postwrap .type-post:nth-of-type(odd),.section-fourcolumn-postwrap .type-post:nth-of-type(even){margin-right:2.38095238095238%}.section-fourcolumn-postwrap .type-post:nth-of-type(4n+1){clear:left}.section-fourcolumn-postwrap .type-post:nth-of-type(4n+4){margin-right:0;clear:right}.section-sixcolumn-postwrap .type-post{width:14.68253968253968%;margin-right:2.38095238095238% !important;margin-left:0;float:left;clear:none}.section-sixcolumn-postwrap .type-post:nth-of-type(3n+1){clear:none}.section-sixcolumn-postwrap .type-post:nth-of-type(3n+2){margin-left:0}.section-sixcolumn-postwrap .type-post:nth-of-type(3n+3){margin-left:0;clear:none}.section-sixcolumn-postwrap .type-post:nth-of-type(6n+1){clear:left}.section-sixcolumn-postwrap .type-post:nth-of-type(6n+6){clear:right;margin-right:0 !important}.section-sixcolumn-postwrap .type-post:nth-last-child(4),.section-sixcolumn-postwrap .type-post:nth-last-child(5),.section-sixcolumn-postwrap .type-post:nth-last-child(6){padding-bottom:0}#front-section-twocolumn .entry-header,#front-section-threecolumn .entry-header,#front-section-fourcolumn .entry-header{padding:20px 0 0 0}#front-section-twocolumn .entry-summary,#front-section-threecolumn .entry-summary,#front-section-fourcolumn .entry-summary{padding:12px 0 0 0}}@media screen and (min-width: 85em){.section-three-column-one .type-post .entry-summary,.section-about-column-one p{font-size:34px;font-size:2.125rem;line-height:1.3}.section-about-column-one p cite{padding:30px 0 0 0}.section-one-column-one .format-video .entry-thumbnail a:before,.section-two-column-one .format-video .entry-thumbnail a:before,#front-section-four .format-video .entry-thumbnail a:before{width:70px;height:52px;padding:29px 0 0 28px;font-size:19px}#front-section-fourcolumn .format-video .entry-thumbnail a:before{width:60px;height:42px;padding:22px 0 0 24px;font-size:16px}}@media screen and (min-width: 112.5em){.blog-wrap,.front-section{width:70%;margin-left:auto;margin-right:auto}#front-section-three .front-section-title,#front-section-three .section-three-column-one,#front-section-three .section-three-column-two{width:70%;margin-left:auto;margin-right:auto}#front-section-three{padding-left:0;padding-right:0}#front-section-four{width:100%;margin-left:0}#front-section-four .meta-main-wrap{padding-left:15%;padding-right:15%}#front-section-four .format-video .entry-thumbnail a:before{left:15%}}@media screen and (min-width: 137.5em){.blog-wrap,.front-section{width:56%}#front-section-three .front-section-title,#front-section-three .section-three-column-one,#front-section-three .section-three-column-two{width:56%}#front-section-four .meta-main-wrap{padding-left:22%;padding-right:22%}#front-section-four .format-video .entry-thumbnail a:before{left:22%}}.entry-thumbnail a{max-height:900px;overflow:hidden}.single-post .format-video .entry-thumbnail a:before,.featured-slider .entry-date:before{display:none}.entry-thumbnail a{position:relative;line-height:0;display:block}.format-video .entry-thumbnail{position:relative}.format-video .entry-thumbnail a:before{content:'\25b6';position:absolute;display:block;width:40px;height:28px;padding:15px 0 0 16px;font-size:12px;color:#1a1a1a;background:#fff;z-index:1;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}#front-section-twocolumn .format-video .entry-thumbnail a:before,#front-section-threecolumn .format-video .entry-thumbnail a:before,.section-one-column-one .format-video .entry-thumbnail a:before,.blog #primary .hentry.format-video:nth-child(4n+1) .entry-thumbnail a:before,.section-two-column-one .format-video .entry-thumbnail a:before{width:60px;height:42px;padding:22px 0 0 24px;font-size:16px}.blog #primary .hentry.format-video:nth-child(4n+1) .entry-thumbnail a:before,#front-section-four .format-video .entry-thumbnail a:before{top:30px;left:5.3125%;-webkit-transform:translate(0, 0);-moz-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.featured-slider .format-video .entry-thumbnail a:before{display:none}.attachment .entry-header .entry-meta{margin-top:20px}.singlepost-wrap,.recommended-posts-wrap{margin-left:auto;margin-right:auto}.single-post .hentry{position:relative;padding:0}.single-post .entry-header{display:block;margin:0 0 35px;padding:25px 0 0}.single-attachment .entry-header{display:block;margin:0 0 35px;padding:25px 0 0;padding-top:40px}.single-post .entry-header h1.entry-title{position:relative;display:block;padding-top:5px}.single-post .hentry .entry-meta{display:block;margin-top:20px;padding-top:15px;border-top:3px solid #1a1a1a;line-height:1.6}.single-attachment .entry-meta{display:block;margin-top:20px;padding-top:15px;border-top:3px solid #1a1a1a;line-height:1.6}.entry-header p.intro{display:none;margin:0;padding:10px 0 0}.meta-columnone{width:60%;float:left}.meta-columntwo,.meta-columthree{width:40%;float:left}.single-post .entry-comments-title{font-weight:600}.author-pic{width:35px;float:left;margin:0 10px 0 0;display:block;line-height:0}.author-pic img{width:35px;height:35px;-moz-border-radius:50px;-webkit-border-radius:50px;border-radius:50px}.single-post .entry-author,.single-post .entry-tags span{font-weight:600}.single-post .entry-thumbnail{padding-bottom:35px}.single-post .canonical-link{padding:5px 0 0 0;letter-spacing:1px}.single-post .canonical-link span{text-transform:uppercase;font-weight:600}.single-post .canonical-link span:after{content:'\2022';padding:0 7px}.single-post .entry-tags{padding:30px 0 0 0;letter-spacing:1px;text-transform:uppercase}.single-post .entry-tags span:after{content:'\2022';padding:0 7px}.single-post .authorbox{position:relative;margin:40px 0 0 0;padding:30px 0 0 0;clear:both;border-top:1px solid #1a1a1a}.big-thumb .entry-thumbnail{margin-left:-5.94405594405594%;margin-right:-5.94405594405594%;padding-bottom:35px}.big-thumb .entry-thumbnail img{width:100%}.big-thumb .entry-meta{margin-top:0}.big-thumb .entry-header{position:relative;padding:0}.big-thumb .title-wrap{bottom:88px;width:111.88811188811188%;margin-left:-5.94405594405594%;margin-right:-5.94405594405594%;padding-bottom:17px}.big-thumb .title-wrap .entry-cats{padding-left:5.3125%;padding-right:5.3125%}.big-thumb .entry-header h1.entry-title,.big-thumb .entry-header p.intro{padding-left:5.3125%;padding-right:5.3125%}.authorbox .author-pic{width:40px;height:40px;float:left}.authorbox .author-pic img{width:40px;height:40px}.authorbox .author-heading{padding:0 0 0 60px}.authorbox h3.author-title{margin:0;padding:0;text-transform:uppercase;letter-spacing:1px}.authorbox h3.author-title span{padding:0 5px 0 0;display:inline-block;font-style:normal}.authorbox h3.author-title:after{content:':';padding-left:1px}.authorbox p.author-bio{margin:0;padding:15px 0 0 60px}.authorbox .author-links{padding:16px 0 0 60px}.author-links a.author-website{position:relative;padding:0 0 0 20px;display:block}.author-links a.author-twitter{position:relative;display:block;margin:4px 0 0 0;padding:0 0 0 18px}.author-links a.author-website:before,.author-links a.author-twitter:before{display:block;position:absolute;top:2px;left:-4px;text-align:left}.single-post .hentry .entry-meta,.single-attachment .entry-meta{border-top:none !important}article header{margin-bottom:20px}@media screen and (min-width: 48em){.single-post .entry-header{margin:0 0 20px;padding:25px 0 0}.big-thumb .single-post .entry-header{padding:0}.single-post .entry-tags{padding:30px 0 0 0}.single-post .big-thumb .entry-thumbnail{padding-bottom:60px;margin-left:-7.14285714285714%;margin-right:-7.14285714285714%;padding-bottom:60px}.big-thumb .title-wrap{margin-left:-7.14285714285714%;margin-right:-7.14285714285714%;bottom:128px;padding-bottom:35px;width:114.28571428571428%}.big-thumb .title-wrap .entry-cats{padding-left:6.25%;padding-right:6.25%}.big-thumb .title-wrap h1.entry-title,.big-thumb .title-wrap p.intro{padding-left:6.25%;padding-right:6.25%}.meta-columnone{display:block;width:320px}.meta-columntwo{display:block;width:320px;width:200px}.author-pic{width:50px}.author-pic img{width:50px;height:50px}.authorbox .author-pic{width:70px;height:70px}.authorbox .author-pic img{width:70px;height:70px}.authorbox .author-heading,.authorbox p.author-bio,.authorbox .author-links{padding-left:90px}.author-links a.author-website{display:inline-block;margin:0 30px 0 0}.author-links a.author-twitter{display:inline-block}}@media screen and (min-width: 66.25em){.single-post.no-sidebar .contentwrap{width:100%;max-width:1260px;float:none;margin-left:0}.single-post.no-sidebar .entry-content,.single-post.no-sidebar .entry-footer,.single-post.no-sidebar #comments{margin-left:auto;margin-right:auto;width:80%}.single-post.no-sidebar .entry-content .wide-content{margin-left:-12.5%;margin-right:-12.5%}.big-thumb .entry-header p.intro{font-size:26px;font-size:1.625rem}.entry-meta,.entry-cats,.search-results a.post-edit-link,.archive a.post-edit-link{font-size:12px;font-size:0.75rem;font-weight:normal}.singlepost-wrap{margin-top:0}.single-post .contentwrap,.single-attachment .contentwrap{width:65.87301587301587%;float:left}.single-post #colophon,.single-attachment #colophon{margin-top:80px}.entry-header p.intro{display:block}}@media screen and (min-width: 85em){.single-post #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:0}.big-thumb .title-wrap{width:114.28571428571428%}.single-post .entry-content{margin-top:-8px}.single-post.no-sidebar .contentwrap{width:100%;float:none;margin-left:0}.single-post.no-sidebar .entry-content,.single-post.no-sidebar .entry-footer,.single-post.no-sidebar #comments{width:70%;margin-left:100px;margin-right:auto}.single-post.no-sidebar .entry-content .wide-content{margin-left:0;margin-right:-31.5%}.single-post #socialicons-sticky{position:relative}.single-post .sharedaddy .sd-social-icon{display:block;position:absolute;top:8px;left:0;z-index:10000}.single-post .sd-social-icon .sd-content ul{margin:0 !important}.single-post .sd-social-icon .sd-content ul li{display:block}}@media screen and (min-width: 112.5em){.singlepost-wrap,.recommended-posts-wrap{width:70%;margin-left:auto;margin-right:auto}.big-instagram-wrap{width:70%;margin-left:auto;margin-right:auto}.big-thumb .title-wrap .entry-cats{padding-left:15%;padding-right:15%}.big-thumb .entry-header h1.entry-title,.big-thumb .entry-header p.intro{padding-left:15%;padding-right:15%}.single-post .big-thumb .entry-thumbnail{width:142.85714285714286%;margin-left:-21.42857142857143%}.single-post .big-thumb .title-wrap{width:142.85714285714286%;margin-left:-21.42857142857143%;margin-right:-21.42857142857143%}}@media screen and (min-width: 137.5em){.singlepost-wrap,.recommended-posts-wrap{width:56%}.big-instagram-wrap{width:56%}.big-thumb .title-wrap .entry-cats{padding-left:22%;padding-right:22%}.big-thumb .entry-header h1.entry-title,.big-thumb .entry-header p.intro{padding-left:22%;padding-right:22%}.single-post .big-thumb .entry-thumbnail{width:178.86178861788618%;margin-left:-39.43089430894309%}.single-post .big-thumb .title-wrap{width:178.86178861788618%;margin-left:-39.43089430894309%;margin-right:-39.43089430894309%}}#overlay-open,#overlay-close{position:absolute;top:8px;right:5.3125%;width:40px;height:40px}.no-js #overlay-open,.no-js #overlay-close{display:none}#overlay-open{z-index:100}#overlay-close{z-index:1000}.overlay-btn{border:none;outline:none;display:block;margin:0;padding:0;z-index:9999;text-align:right;background:transparent;line-height:1;opacity:1}.overlay-btn span{display:none}.overlay-btn:before{display:block}#overlay-open:before,#overlay-open-sticky:before{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}#overlay-close:before{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.close-btn-wrap{height:51px;border-bottom:1px solid #ddd;background:#fff}.menu-item-has-children,.page_item_has_children{position:relative}.inner-offcanvas-wrap{width:100%;display:block;position:fixed;left:-100%;top:0;height:100%;overflow:auto;z-index:1000;background:#fff;-webkit-transition:left,.35s,ease-in-out;-moz-transition:left,.35s,ease-in-out;-o-transition:left,.35s,ease-in-out;transition:left,.35s,ease-in-out}.admin-bar .inner-offcanvas-wrap{top:46px}.overlay-show .inner-offcanvas-wrap{left:0}#offcanvas-wrap{padding-top:20px}#offcanvas-widgets-open{margin-bottom:20px;outline:none;width:89.375%;background:transparent;display:block;padding:14px 0;border:2px solid #2b2b2b;font-size:15px;font-size:0.9375rem;font-weight:600;text-transform:uppercase;letter-spacing:3px;text-align:center}.sidebar-offcanvas{display:none;padding:0 0 30px}.offcanvas-widgets-show .sidebar-offcanvas,.mobilewidgets-show .sidebar-offcanvas{display:block}.mobile-search{padding-top:20px;padding-bottom:20px;background:#f5f5f6;border-bottom:1px solid #ddd}.mobile-search .searchform #s{width:100%;line-height:1.4}.mobile-search .submit{display:none}@media screen and (min-width: 49.375em){.admin-bar .inner-offcanvas-wrap{top:32px}}@media screen and (min-width: 66.25em){#overlay-nav .dropdown-toggle{display:none !important}.overlay-show #overlay-wrap{width:100%;background:transparent;position:fixed;top:0;left:0;right:0;bottom:-20px;z-index:90000000;cursor:pointer}.inner-offcanvas-wrap{position:fixed;left:-100%;top:0;height:100%;overflow:auto;display:block;background:#f4f4f4;width:70.13888888888889%;padding-left:6.25%;padding-right:6.25%;z-index:100000000;pointer-events:auto;padding-bottom:100px;-webkit-transition:left,.35s,ease-in-out;-moz-transition:left,.35s,ease-in-out;-o-transition:left,.35s,ease-in-out;transition:left,.35s,ease-in-out}.offcanvas-widgets-off .inner-offcanvas-wrap{width:40.27777777777778%}.overlay-show .inner-offcanvas-wrap{left:0}#overlay-open{position:absolute;top:34px;left:-17px;right:auto;width:4.76190476190476%;height:59px;text-align:center}.close-btn-wrap{border:none}.mobile-search,#mobile-social{display:none}#overlay-nav{width:48.19277108433735%;float:left;border-top:1px solid #1a1a1a}#sidebar-offcanvas{width:48.19277108433735%;float:right}.offcanvas-widgets-off #overlay-nav{width:100%}.close-btn-wrap{position:relative;height:160px}#overlay-close{position:absolute;top:40px;left:-17px;right:auto;width:59px;height:59px;text-align:center}#overlay-nav ul{margin:0 0 50px}#overlay-nav ul li{padding-top:15px;padding-bottom:15px;border-bottom:1px solid #1a1a1a}#overlay-nav ul li.menu-item-has-children,#overlay-nav ul li.page_item_has_children{padding-bottom:0;border-bottom:none}#overlay-nav ul li a{display:inline-block;padding:0}#overlay-nav ul li.menu-item-has-children a,#overlay-nav ul li.page_item_has_children a{border-bottom:none !important;padding-bottom:0}#overlay-nav ul ul.sub-menu,#overlay-nav ul ul.children{display:block;border-bottom:1px solid #1a1a1a;padding-top:15px;padding-bottom:15px}#overlay-nav ul ul ul.sub-menu,#overlay-nav ul ul ul.children{border-bottom:none;padding-top:0;padding-bottom:0}#overlay-nav ul ul li a{padding-left:0;padding-right:0}#offcanvas-widgets-open{display:none}#sidebar-offcanvas{display:block !important}#sidebar-offcanvas .widget{padding-left:0;padding-right:0}.overlay-show .close-btn-wrap{position:relative;top:0;left:auto;right:auto;background:transparent;height:158px}}.pagination{position:relative;clear:both;padding:18px 20px;border:2px solid #e7e7eb;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem;font-weight:600;letter-spacing:1px;color:#1a1a1a;margin-bottom:25px}.pagination a{color:#672082}.pagination .nav-links{text-align:center}.pagination .nav-links span.page-numbers,.pagination .nav-links a.page-numbers{background:#fff;color:#672082;overflow:hidden;display:inline-block;min-width:25px;height:25px;text-align:center;vertical-align:middle;border-radius:50%;padding-left:2px}.pagination .nav-links span.page-numbers:hover,.pagination .nav-links span.page-numbers:focus,.pagination .nav-links a.page-numbers:hover,.pagination .nav-links a.page-numbers:focus{background-color:#f80;color:#fff}.pagination .nav-links span.page-numbers.prev,.pagination .nav-links span.page-numbers.next,.pagination .nav-links a.page-numbers.prev,.pagination .nav-links a.page-numbers.next{padding:0 5px;border-radius:inherit}.pagination .nav-links span.page-numbers.prev:hover,.pagination .nav-links span.page-numbers.prev:focus,.pagination .nav-links span.page-numbers.next:hover,.pagination .nav-links span.page-numbers.next:focus,.pagination .nav-links a.page-numbers.prev:hover,.pagination .nav-links a.page-numbers.prev:focus,.pagination .nav-links a.page-numbers.next:hover,.pagination .nav-links a.page-numbers.next:focus{color:#fff;background:#f80}.pagination .nav-links span.next.page-numbers:focus,.pagination .nav-links span.prev.page-numbers:focus,.pagination .nav-links span.next.page-numbers:hover,.pagination .nav-links span.prev.page-numbers:hover,.pagination .nav-links a.next.page-numbers:focus,.pagination .nav-links a.prev.page-numbers:focus,.pagination .nav-links a.next.page-numbers:hover,.pagination .nav-links a.prev.page-numbers:hover{text-decoration:none}.single-attachment .post-navigation{overflow:hidden;clear:both;padding-top:60px}.single-attachment .nav-previous{float:left}.single-attachment .nav-next{float:right}.single-attachment .post-navigation a{position:relative;display:block;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem;line-height:1.15;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;border-bottom:2px solid #1a1a1a}#nav-comments{padding:10px 0;clear:both;overflow:hidden}#nav-comments .nav-previous{float:right}.page-links{font-weight:600;letter-spacing:1px;display:inline-block;margin-top:20px}.page-links .post-page-numbers{padding:4px;text-decoration:none}.page-links .post-page-numbers.current{color:#672082}.page-links .post-page-numbers a .number{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.page-links .post-page-numbers a:hover{background-color:#ddd}.single-post .post-navigation{clear:both;display:block;margin:20px 0}.single-post .post-navigation .nav-next,.single-post .post-navigation .nav-previous{display:inline-block}.single-post .pagebreak-links{margin:10px 0}.single-post .post-navigation a,.single-post .pagebreak-links a{padding:5px;margin-right:5px}.single-post .post-navigation .next,.single-post .post-navigation .prev,.single-post .pagebreak-links .next,.single-post .pagebreak-links .prev{padding:2px 4px}.single-post .post-navigation .next:after,.single-post .pagebreak-links .next:after{margin-left:5px;content:""}.single-post .post-navigation .prev:before,.single-post .pagebreak-links .prev:before{margin-right:5px}.page h1.entry-title{display:block;margin:0 0 20px;padding:6px 0 20px;border-bottom:1px solid #1a1a1a}.page a.post-edit-link{text-transform:uppercase;letter-spacing:1px;font-weight:600;margin-top:30px;display:inline-block}.page.has-thumb .content-wrap{padding-top:0}.page.has-thumb .blog-wrap{padding-top:35px}.page.has-thumb .entry-thumbnail img{width:100%}.archive-header .taxonomy-description p{margin:8px 0 0 0}.author .taxonomy-description{display:none}.entry-summary p:last-child{margin-bottom:0}.archive .site-content .post{clear:both;overflow:hidden}.search-results .site-content .post,.search-results .site-content .page{clear:both;overflow:hidden}.search-no-results .searchform{width:420px}.error404 .site-content .entry-wrap{overflow:hidden}.author h3.author-archive-title{margin:0;padding:80px 0 0 0}.page .edit-link{padding-top:30px}#secondary,#sidebar-page{padding-top:40px;padding-bottom:70px}.no-sidebar #secondary,.no-sidebar #sidebar-page{display:none}.widget-area .widget{clear:both;float:none;line-height:1.5;padding-bottom:34px}.widget-area .widget ul{margin:0;padding:0}.widget-area .widget ul ul{display:inline}#secondary .widget:last-of-type,#sidebar-page.widget:last-of-type{padding-bottom:0}.widget .widget-title-wrap{display:block}.widget ul:not(.slick-dots) ul:before,.widget ul:not(.slick-dots) li:after{display:inline;content:' / '}.widget select,.widget iframe{max-width:99%;margin-left:1px;margin-left:0.1rem}.widget-area .widget ul li{list-style:none;display:inline}.widget-area .widget ul li:last-child{padding-bottom:0}.widget-area .widget ul li:last-child::after{content:''}.widget-area .widget img.resize{max-width:100%;height:auto}.wp_widget_tag_cloud div,.widget_tag_cloud div{-ms-word-break:break-all;word-break:break-all;word-break:break-word}.widget_recent_comments a.url,.widget_recent_comments span.comment-author-link{font-weight:600}.widget-area .widget_recent_comments ul li{display:block;padding-bottom:6px}.widget-area .widget_recent_comments ul li:after{display:none;content:' '}.widget-area .widget_rss ul li:after{display:none;content:' '}.tagcloud a{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.widget_search{clear:both;overflow:hidden}@media screen and (min-width: 37.5em){.widget_search input.search-field{width:67.8%}.widget_search input[type="submit"]{width:30%}}.widget ul .dropdown-toggle{display:none}.widget-area .widget_rss ul{margin:0;padding:0}.widget-area .widget_rss ul li{display:block;padding-bottom:20px}.widget-area .widget_rss ul li .rssSummary{padding:0;display:inline-block}.widget-area .widget_rss ul li cite{font-style:normal;font-weight:600}a.rsswidget{font-weight:600}.widget-area .widget_rss ul ul:after{display:none;content:' '}.widget_calendar #calendar_wrap{position:relative}.widget_calendar #calendar_wrap table{width:100%}.widget_calendar #calendar_wrap a{font-weight:bold}.widget_calendar #wp-calendar caption{margin:0 0 15px;text-align:left}.widget_calendar table#wp-calendar tr th{padding:2px;text-align:center}.widget_calendar table#wp-calendar tr td{padding:7px 0 3px;border:1px solid #000;text-align:center}.widget_calendar table#wp-calendar tbody tr td a{display:block}.textwidget p{margin:0 0 20px}.textwidget p:last-child{margin:0}.textwidget img{display:block;line-height:0}.widget.widget_media_gallery ul li{display:inline-block}.widget.widget_media_gallery ul ul:before,.widget.widget_media_gallery ul li:after{display:none}.entry-thumbnail a{max-height:400px;overflow:hidden}@media screen and (min-width: 85em){.entry-thumbnail a{max-height:500px;overflow:hidden}}#colophon{clear:both;overflow:hidden;margin:0 auto;background:#471659;border-top:1px solid #471659;color:#fff;padding-top:40px;padding-bottom:40px}.no-sidebar #colophon{margin-top:60px}#colophon .footer-menu ul a{color:#fff}#colophon p,#colophon #site-info{color:rgba(255,255,255,0.8)}#colophon p a,#colophon #site-info a{color:#fff}#colophon .footer-menu ul a:focus,#colophon #site-info a:focus,#colophon .footer-menu ul a:hover,#colophon #site-info a:hover{color:#f80}#colophon a{color:#fff}#colophon .custom-logo-wrap{text-align:left;display:block;padding-bottom:45px}.page-template-shop-front #colophon{margin-top:0}#site-info{padding-top:10px}#site-info ul{margin:0;padding:0}#site-info ul li{display:block}#site-info ul li.copyright:after,#site-info ul li.wp-credit:after,#site-info ul li.theme-author:after{content:'\002E'}.title-footer{display:block;margin:0;padding-bottom:45px;font-size:24px;font-size:1.5rem;font-weight:bold}.big-footer-feature{display:block;margin-bottom:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,0.2)}#big-footer-feature h2.footer-feature-title,#big-footer-feature h3.footer-feature-title{position:relative;display:block;padding:8px 0 20px}.big-footer-feature p{margin-bottom:0}.big-footer-feature p.text-small{padding:10px 0 0 0}.footer-feature-textwrap{padding:15px 0 0 50px}.footer-feature-image a{display:block;line-height:0}.big-instagram-wrap .widget h2.widget-title{display:none}.big-instagram-wrap .widget-area .widget{position:relative;padding:35px 0 0 0}.widget ul.instagram-pics li a{width:16.66666666666667%}.widget ul.instagram-pics li:after{display:none}.widget ul.instagram-pics li a{display:block;float:left;line-height:0}.null-instagram-feed{position:relative;overflow:hidden}.big-instagram-wrap .null-instagram-feed .clear{position:absolute;top:0;width:100%;text-align:center}.footer-wrap{margin:0 auto}.footer-menus-wrap{border-bottom:1px solid rgba(255,255,255,0.2)}.footer-menu{width:50%;float:left}.footer-menu h3.footer-menu-title{padding:0 0 20px}#footer-menu-one,#footer-menu-three{clear:left}#footer-menu-two,#footer-menu-four{clear:right}.footer-menu ul{margin:0;padding:0 0 60px}.footer-menu ul ul{margin:0;padding:0}.footer-menu ul li{padding:0 0 10px}.footer-menu ul ul li:last-child{padding:0}#footer-search{width:100%;margin:0 auto;text-align:left}#footer-social{padding-top:30px}#footer-social ul{margin:0;padding:0;display:inline-block}#footer-social h3.socialmedia,#footer-social span{color:rgba(255,255,255,0.5)}#footer-social ul li{display:inline-block}@media screen and (min-width: 37.5em){.footer-feature-image{width:47.8134110787172%;float:left;margin-right:2.1865889212828%}.footer-feature-textwrap{width:47.8134110787172%;float:right;padding-top:0;margin-left:2.1865889212828%}}@media screen and (min-width: 48em){#colophon{padding-top:70px}#site-info{font-size:14px;font-size:0.875rem}#site-info ul li{display:inline-block}#footer-social{padding-top:10px}.big-footer-feature{margin-bottom:70px;padding-bottom:70px}.big-footer-feature h3.footer-feature-title{padding:8px 0 35px}.big-instagram-wrap .widget-area .widget{padding:45px 0 0 0}}@media screen and (min-width: 64em){.footer-feature-btn{margin:40px 0 0 0;padding:18px 40px}.big-footer-feature p.text-small{padding:20px 0 0 0}}@media screen and (min-width: 66.25em){.footer-feature-textwrap p.text-big{font-size:1.4rem}.footer-feature-textwrap p.text-small{font-size:.8rem;line-height:1rem}.title-footer{width:31.74603174603175%;margin-right:2.38095238095238%;float:left}#colophon{padding-left:0;padding-right:0}#colophon .custom-logo-wrap{width:31.74603174603175%;margin-right:2.38095238095238%;float:left}#colophon .custom-logo-wrap .custom-logo-link img{max-width:130px;max-height:59px}#footer-menu-one,#footer-menu-two,#footer-menu-three,#footer-menu-four{clear:none}.footer-menu{width:14.68253968253968%;float:left}#footer-menu-one,#footer-menu-two,#footer-menu-three{margin-right:2.38095238095238%}.title-footer{font-size:36px;font-size:2.25rem}#site-info{width:50%;float:left}#footer-social{padding-top:23px;float:right;text-align:right}#footer-social ul{float:left}#footer-social span{display:inline-block;float:left;padding:8px 15px 0px 0px}.footer-feature-image{width:31.74603174603175%;margin-right:0}.footer-feature-textwrap{width:65.87301587301587%;margin-left:0}}.two-columns-one,.three-columns-one,.three-columns-two,.four-columns-one,.four-columns-two,.four-columns-three{width:100%}.entry-content .two-columns-one,.entry-content .three-columns-one,.entry-content .three-columns-two,.entry-content .four-columns-one,.entry-content .four-columns-two,.entry-content .four-columns-three{position:relative;float:left;margin-bottom:30px;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.entry-content .two-columns-one.secondcolor,.entry-content .three-columns-one.secondcolor,.entry-content .three-columns-two.secondcolor,.entry-content .four-columns-one.secondcolor,.entry-content .four-columns-two.secondcolor,.entry-content .four-columns-three.secondcolor{background:#672082;color:#fff;padding:10px}.entry-content .two-columns-one.secondcolor.lighten,.entry-content .three-columns-one.secondcolor.lighten,.entry-content .three-columns-two.secondcolor.lighten,.entry-content .four-columns-one.secondcolor.lighten,.entry-content .four-columns-two.secondcolor.lighten,.entry-content .four-columns-three.secondcolor.lighten{background:#872aab}.entry-content .two-columns-one.maincolor,.entry-content .three-columns-one.maincolor,.entry-content .three-columns-two.maincolor,.entry-content .four-columns-one.maincolor,.entry-content .four-columns-two.maincolor,.entry-content .four-columns-three.maincolor{background:#f80;padding:10px}.entry-content .two-columns-one.maincolor a,.entry-content .three-columns-one.maincolor a,.entry-content .three-columns-two.maincolor a,.entry-content .four-columns-one.maincolor a,.entry-content .four-columns-two.maincolor a,.entry-content .four-columns-three.maincolor a{color:#672082}.entry-content .two-columns-one.maincolor.lighten,.entry-content .three-columns-one.maincolor.lighten,.entry-content .three-columns-two.maincolor.lighten,.entry-content .four-columns-one.maincolor.lighten,.entry-content .four-columns-two.maincolor.lighten,.entry-content .four-columns-three.maincolor.lighten{background:#ffa033}.entry-content .two-columns-one.blue,.entry-content .three-columns-one.blue,.entry-content .three-columns-two.blue,.entry-content .four-columns-one.blue,.entry-content .four-columns-two.blue,.entry-content .four-columns-three.blue{background:#06f;padding:10px}.entry-content .two-columns-one.blue.lighten,.entry-content .three-columns-one.blue.lighten,.entry-content .three-columns-two.blue.lighten,.entry-content .four-columns-one.blue.lighten,.entry-content .four-columns-two.blue.lighten,.entry-content .four-columns-three.blue.lighten{background:#3385ff}.entry-content .two-columns-one.red,.entry-content .three-columns-one.red,.entry-content .three-columns-two.red,.entry-content .four-columns-one.red,.entry-content .four-columns-two.red,.entry-content .four-columns-three.red{background:#d7464d;padding:10px}.entry-content .two-columns-one.red.lighten,.entry-content .three-columns-one.red.lighten,.entry-content .three-columns-two.red.lighten,.entry-content .four-columns-one.red.lighten,.entry-content .four-columns-two.red.lighten,.entry-content .four-columns-three.red.lighten{background:#e07075}.entry-content .two-columns-one.yellow,.entry-content .three-columns-one.yellow,.entry-content .three-columns-two.yellow,.entry-content .four-columns-one.yellow,.entry-content .four-columns-two.yellow,.entry-content .four-columns-three.yellow{background:#e7b547;padding:10px}.entry-content .two-columns-one.yellow.lighten,.entry-content .three-columns-one.yellow.lighten,.entry-content .three-columns-two.yellow.lighten,.entry-content .four-columns-one.yellow.lighten,.entry-content .four-columns-two.yellow.lighten,.entry-content .four-columns-three.yellow.lighten{background:#edc774}.entry-content .two-columns-one.green,.entry-content .three-columns-one.green,.entry-content .three-columns-two.green,.entry-content .four-columns-one.green,.entry-content .four-columns-two.green,.entry-content .four-columns-three.green{background:#85c066;padding:10px}.entry-content .two-columns-one.green.lighten,.entry-content .three-columns-one.green.lighten,.entry-content .three-columns-two.green.lighten,.entry-content .four-columns-one.green.lighten,.entry-content .four-columns-two.green.lighten,.entry-content .four-columns-three.green.lighten{background:#a2cf8a}.entry-content .two-columns-one.lightgrey,.entry-content .three-columns-one.lightgrey,.entry-content .three-columns-two.lightgrey,.entry-content .four-columns-one.lightgrey,.entry-content .four-columns-two.lightgrey,.entry-content .four-columns-three.lightgrey{background:#ececed;padding:10px}.entry-content .two-columns-one.lightgrey.lighten,.entry-content .three-columns-one.lightgrey.lighten,.entry-content .three-columns-two.lightgrey.lighten,.entry-content .four-columns-one.lightgrey.lighten,.entry-content .four-columns-two.lightgrey.lighten,.entry-content .four-columns-three.lightgrey.lighten{background:#fff}.entry-content .two-columns-one.grey,.entry-content .three-columns-one.grey,.entry-content .three-columns-two.grey,.entry-content .four-columns-one.grey,.entry-content .four-columns-two.grey,.entry-content .four-columns-three.grey{background:#a9a9a9;padding:10px}.entry-content .two-columns-one.grey.lighten,.entry-content .three-columns-one.grey.lighten,.entry-content .three-columns-two.grey.lighten,.entry-content .four-columns-one.grey.lighten,.entry-content .four-columns-two.grey.lighten,.entry-content .four-columns-three.grey.lighten{background:#c3c3c3}.entry-content .two-columns-one.black,.entry-content .three-columns-one.black,.entry-content .three-columns-two.black,.entry-content .four-columns-one.black,.entry-content .four-columns-two.black,.entry-content .four-columns-three.black{background:#000;padding:10px;color:#fff}.entry-content .two-columns-one.black.lighten,.entry-content .three-columns-one.black.lighten,.entry-content .three-columns-two.black.lighten,.entry-content .four-columns-one.black.lighten,.entry-content .four-columns-two.black.lighten,.entry-content .four-columns-three.black.lighten{background:#1a1a1a}.entry-content .two-columns-one.dark,.entry-content .three-columns-one.dark,.entry-content .three-columns-two.dark,.entry-content .four-columns-one.dark,.entry-content .four-columns-two.dark,.entry-content .four-columns-three.dark{background:#222;padding:10px;color:#fff}.entry-content .two-columns-one.dark.lighten,.entry-content .three-columns-one.dark.lighten,.entry-content .three-columns-two.dark.lighten,.entry-content .four-columns-one.dark.lighten,.entry-content .four-columns-two.dark.lighten,.entry-content .four-columns-three.dark.lighten{background:#3c3c3c}.entry-content .two-columns-one p,.entry-content .three-columns-one p,.entry-content .three-columns-two p,.entry-content .four-columns-one p,.entry-content .four-columns-two p,.entry-content .four-columns-three p{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.last{clear:right;margin-right:0 !important}.divider{width:100%;margin-bottom:21px;padding-top:21px;display:block;clear:both}#section-fullwidth{padding:0;margin:0}#section-fullwidth img{z-index:1}#section-fullwidth p,#section-fullwidth h1,#section-fullwidth h2,#section-fullwidth h3,#section-fullwidth h4,#section-fullwidth h5,#section-fullwidth h6,#section-fullwidth blockquote,#section-fullwidth em,#section-fullwidth code{position:relative;z-index:2}#section-fullwidth.withbackground{background-size:cover;background-position:center center}#section-fullwidth.withbackground p,#section-fullwidth.withbackground h1,#section-fullwidth.withbackground h2,#section-fullwidth.withbackground h3,#section-fullwidth.withbackground h4,#section-fullwidth.withbackground h5,#section-fullwidth.withbackground h6,#section-fullwidth.withbackground blockquote,#section-fullwidth.withbackground em,#section-fullwidth.withbackground code{background:#000;color:#fff;display:table;padding:2px 5px;margin-left:6.25%;margin-right:6.25%}#section-fullwidth.withbackground.maincolor p,#section-fullwidth.withbackground.maincolor h1,#section-fullwidth.withbackground.maincolor h2,#section-fullwidth.withbackground.maincolor h3,#section-fullwidth.withbackground.maincolor h4,#section-fullwidth.withbackground.maincolor h5,#section-fullwidth.withbackground.maincolor h6,#section-fullwidth.withbackground.maincolor blockquote,#section-fullwidth.withbackground.maincolor em,#section-fullwidth.withbackground.maincolor code{background:#f80;color:#fff}#section-fullwidth.withbackground.secondcolor p,#section-fullwidth.withbackground.secondcolor h1,#section-fullwidth.withbackground.secondcolor h2,#section-fullwidth.withbackground.secondcolor h3,#section-fullwidth.withbackground.secondcolor h4,#section-fullwidth.withbackground.secondcolor h5,#section-fullwidth.withbackground.secondcolor h6,#section-fullwidth.withbackground.secondcolor blockquote,#section-fullwidth.withbackground.secondcolor em,#section-fullwidth.withbackground.secondcolor code{background:#672082;color:#fff}#section-fullwidth.withbackground.red p,#section-fullwidth.withbackground.red h1,#section-fullwidth.withbackground.red h2,#section-fullwidth.withbackground.red h3,#section-fullwidth.withbackground.red h4,#section-fullwidth.withbackground.red h5,#section-fullwidth.withbackground.red h6,#section-fullwidth.withbackground.red blockquote,#section-fullwidth.withbackground.red em,#section-fullwidth.withbackground.red code{background:#d7464d;color:#fff}#section-fullwidth.withbackground.green p,#section-fullwidth.withbackground.green h1,#section-fullwidth.withbackground.green h2,#section-fullwidth.withbackground.green h3,#section-fullwidth.withbackground.green h4,#section-fullwidth.withbackground.green h5,#section-fullwidth.withbackground.green h6,#section-fullwidth.withbackground.green blockquote,#section-fullwidth.withbackground.green em,#section-fullwidth.withbackground.green code{background:#85c066;color:#fff}#section-fullwidth.withbackground.yellow p,#section-fullwidth.withbackground.yellow h1,#section-fullwidth.withbackground.yellow h2,#section-fullwidth.withbackground.yellow h3,#section-fullwidth.withbackground.yellow h4,#section-fullwidth.withbackground.yellow h5,#section-fullwidth.withbackground.yellow h6,#section-fullwidth.withbackground.yellow blockquote,#section-fullwidth.withbackground.yellow em,#section-fullwidth.withbackground.yellow code{background:#e7b547;color:#fff}#section-fullwidth.withbackground.blue p,#section-fullwidth.withbackground.blue h1,#section-fullwidth.withbackground.blue h2,#section-fullwidth.withbackground.blue h3,#section-fullwidth.withbackground.blue h4,#section-fullwidth.withbackground.blue h5,#section-fullwidth.withbackground.blue h6,#section-fullwidth.withbackground.blue blockquote,#section-fullwidth.withbackground.blue em,#section-fullwidth.withbackground.blue code{background:#06f;color:#fff}#section-fullwidth.withbackground.lightgrey p,#section-fullwidth.withbackground.lightgrey h1,#section-fullwidth.withbackground.lightgrey h2,#section-fullwidth.withbackground.lightgrey h3,#section-fullwidth.withbackground.lightgrey h4,#section-fullwidth.withbackground.lightgrey h5,#section-fullwidth.withbackground.lightgrey h6,#section-fullwidth.withbackground.lightgrey blockquote,#section-fullwidth.withbackground.lightgrey em,#section-fullwidth.withbackground.lightgrey code{background:#ececed;color:#fff}#section-fullwidth.withbackground.grey p,#section-fullwidth.withbackground.grey h1,#section-fullwidth.withbackground.grey h2,#section-fullwidth.withbackground.grey h3,#section-fullwidth.withbackground.grey h4,#section-fullwidth.withbackground.grey h5,#section-fullwidth.withbackground.grey h6,#section-fullwidth.withbackground.grey blockquote,#section-fullwidth.withbackground.grey em,#section-fullwidth.withbackground.grey code{background:#a9a9a9;color:#fff}#section-fullwidth p{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}#section-fullwidth.secondcolor{background:#672082;color:#fff}#section-fullwidth.secondcolor.lighten{background:#872aab}#section-fullwidth.maincolor{background:#f80}#section-fullwidth.maincolor a{color:#672082}#section-fullwidth.maincolor.lighten{background:#ffa033}#section-fullwidth.blue{background:#06f}#section-fullwidth.blue.lighten{background:#3385ff}#section-fullwidth.red{background:#d7464d}#section-fullwidth.red.lighten{background:#e07075}#section-fullwidth.yellow{background:#e7b547;padding:10px}#section-fullwidth.yellow.lighten{background:#edc774}#section-fullwidth.green{background:#85c066}#section-fullwidth.green.lighten{background:#a2cf8a}#section-fullwidth.lightgrey{background:#ececed}#section-fullwidth.lightgrey.lighten{background:#fff}#section-fullwidth.grey{background:#a9a9a9}#section-fullwidth.grey.lighten{background:#c3c3c3}#section-fullwidth.black{background:#000;color:#fff}#section-fullwidth.black.lighten{background:#1a1a1a}#section-fullwidth.dark{background:#222;color:#fff}#section-fullwidth.dark.lighten{background:#3c3c3c}@media screen and (min-width: 48em){.two-columns-one{width:48.5%}.three-columns-one{width:30.3%}.three-columns-two{width:65.15%}.four-columns-one{width:22.375%}.four-columns-two{width:48%}.four-columns-three{width:74.5%}.two-columns-one,.three-columns-one,.three-columns-two,.four-columns-one,.four-columns-two,.four-columns-three{position:relative;float:left;margin-bottom:0}.two-columns-one{margin:0 1.5% 0 0}.two-columns-one.last{margin-right:0}.three-columns-two{margin:0 1.5% 0 0}.three-columns-two.last{margin-right:0}.three-columns-one{margin:0 3% 0 0}.three-columns-one.last{margin-right:0}.four-columns-one{margin:0 3.5% 0 0}.four-columns-one.last{margin-right:0}}.shortcode-section a.all-posts-link{color:#1a1a1a;text-decoration:none}.shortcode-section a.all-posts-link:after{content:'\2192';text-align:right;padding-left:3px}.shortcode-section .type-post{position:relative;display:block;margin:0;padding:20px 0 35px;border-top:1px solid #1a1a1a}.shortcode-section .hentry .entry-cats a{display:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:before,.shortcode-section .section-one-column-one .entry-cats a:before,.shortcode-section .section-three-column-one .entry-cats a:before,.shortcode-section #front-section-four .entry-cats a:before{display:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:-5.94405594405594%;margin-right:-5.94405594405594%;margin-bottom:34px;padding:0;border-top:0}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail{width:100%;margin:0;float:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail img{width:100%}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{width:100%;padding:0 5.3125% 28px}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{float:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-summary{display:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a{padding:2px 5px}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-date,.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-comments,.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit,.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{display:inline-block;padding-bottom:0}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-date{padding-right:20px}.blogroll .entry-meta a{color:#1a1a1a;text-decoration:none}.blogroll .entry-cats a:nth-child(n+2):before{content:' / ';padding:0 2px;color:#1a1a1a}@media screen and (min-width: 48em){.entry-content .blogroll .entry-summary p{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}}@media screen and (min-width: 48em){.page #primary .blogroll .hentry{padding:20px 0 40px}.page #primary .blogroll .hentry .entry-meta{width:25.49019607843137%;float:left;display:block}.page #primary .blogroll .hentry .entry-main{width:74.50980392156863%;float:left}.page #primary .blogroll .hentry .entry-thumbnail{width:36.14457831325301%}.page #primary .blogroll .hentry .meta-main-wrap{width:61.44578313253012%;float:left}}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%;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]),[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body,figure{margin:0}img{border:0;-ms-interpolation-mode:bicubic}a:hover,a:active,a:focus{outline:none;-moz-outline-style:none}input{-webkit-border-radius:0;border-radius:0}::-webkit-input-placeholder,:-moz-placeholder,::-moz-placeholder,:-ms-input-placeholder{color:#999}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}::selection,::-moz-selection{background:#d7f4f9}.clearfix:after,.accordion .accordion-group .accordion-body .accordion-inner:after,#main-wrap .sharedaddy:after,.clear:after{clear:both;content:' ';display:block;font-size:0;line-height:0;visibility:hidden;width:0;height:0}.cf:before{content:" ";display:table}.cf:after{content:" ";display:table;clear:both}.front-section-title,.social-front-title,p.text-big,.widget_mc4wp_form_widget p,.jetpack_subscription_widget #subscribe-text p,.single-post .entry-content p.intro{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.section-about-column-one p{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.entry-content p{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.entry-content p.pull-left,.entry-content p.pull-right{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.entry-header p.intro{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}p.site-title{font-weight:bold;padding-right:55px;margin:0;font-size:25px;line-height:35px;font-size:1.5625rem;line-height:2.1875rem}#overlay-nav ul li a,#desktop-navigation ul li a,.comments-toggle{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.section-about-column-one p cite,.footer-feature-btn,.page a.post-edit-link{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.site-content p.nocomments,.site-content div.wpcf7 p input.wpcf7-submit{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.entry-summary,.footer-menu ul li,#overlay-nav ul ul li a,#footer-social span{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;hypens:auto}.widget_rss ul li .rssSummary,.widget_rss ul li cite{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.contact-form label span{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}#site-info,.front-section a.all-posts-link,.single-post .canonical-link,.null-instagram-feed .clear{font-size:12px;font-size:0.75rem}#overlay-nav ul li a,#desktop-navigation ul li a,.site-content p.nocomments{text-transform:uppercase;letter-spacing:1px}.comments-show #comments-toggle,#comments-toggle:focus,#comments-toggle:hover{border:2px solid #0c6ca6}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,.footer-feature-btn:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,.footer-feature-btn:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{border:2px solid #0c6ca6}p{margin-bottom:30px}.entry-summary p{-moz-hyphens:auto;-o-hyphens:auto;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.entry-content p:last-child,.team-text p:last-child{margin-bottom:0}b,strong{font-weight:bold}dfn,em,i{font-style:italic}s,strike,del{text-decoration:line-through}address{margin:0 0 30px}pre{max-width:100%;word-wrap:break-word;margin-bottom:30px;padding:15px;overflow:auto}code,kbd,tt,var,pre{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono","Courier New","Courier 10 Pitch",Courier,monospace;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}abbr,acronym{border-bottom-width:1px;border-bottom-style:dotted;cursor:help}mark,ins{text-decoration:none}sup,sub{position:relative;vertical-align:baseline;height:0;font-size:75%;line-height:0}sup{bottom:1ex}sub{top:.5ex}small{font-size:75%}big{font-size:125%}figure{margin:0}dt{padding-bottom:4px;font-weight:bold}dd{margin:0 0 30px}dl dt{font-weight:bold}dl dd{margin:0 0 30px}@media screen and (min-width: 48em){.front-section-title,.social-front-title{font-size:36px;line-height:50.4px;font-size:2.25rem;line-height:3.15rem}.entry-header p.intro,.section-about-column-one p,p.text-big,.single-post .entry-content p.intro{font-size:26px;line-height:36.4px;font-size:1.625rem;line-height:2.275rem}.entry-content p{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.entry-content p.pull-left,.entry-content p.pull-right{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.entry-content ol,.entry-content ul,.entry-content dl{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.big-thumb .entry-header p.intro,.section-one-column-one .type-post .entry-summary,.section-three-column-one .type-post .entry-summary,p.text-small{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}address{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.entry-summary{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.null-instagram-feed .clear{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.section-fourcolumn-postwrap .type-post .entry-summary,.section-sixcolumn-postwrap .type-post .entry-summary{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}}h1,h2,h3,h4,h5,h6{-moz-hyphens:auto;-o-hyphens:auto;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;font-familiy:"roboto",sans-serif}#section-fullwidth h1,.site-content h1,.entry-content h1{padding:6px 0 9px;font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem;-moz-hyphens:manual;-o-hyphens:manual;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual}#section-fullwidth h2,.site-content h2,.entry-content h2{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem;padding:6px 0 9px;-moz-hyphens:manual;-o-hyphens:manual;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual}#section-fullwidth h3,.site-content h3,.entry-content h3{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem;padding:5px 0 8px}#section-fullwidth h4,.site-content h4,.entry-content h4{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;padding:5px 0 8px}#section-fullwidth h5,.site-content h5,.entry-content h5{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem;padding:3px 0;text-transform:uppercase;letter-spacing:1px}#section-fullwidth h6,.site-content h6,.entry-content h6{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;padding:3px 0}h1,h2,h3,h4,h5,h6,#overlay-nav ul li a,#desktop-navigation ul li a,.authorbox h3.author-title,#comments h3.comments-title{font-weight:600}h1.site-title{font-weight:bold;padding-right:55px;font-size:25px;line-height:35px;font-size:1.5625rem;line-height:2.1875rem}.single-post .entry-header h1.entry-title,.entry-header h1.entry-title,.attachment h1.entry-title,.page h1.entry-title,h1.entry-title,.archive-header h1.archive-title,.site-content h1,.entry-content h1{text-transform:uppercase;border-bottom:7px;border-style:solid;margin-bottom:50px;display:table-cell;padding-bottom:1px}.single-post .entry-header h1.entry-title+*,.entry-header h1.entry-title+*,.attachment h1.entry-title+*,.page h1.entry-title+*,h1.entry-title+*,.archive-header h1.archive-title+*,.site-content h1+*,.entry-content h1+*{margin-top:20px}.single-post .entry-header h1::after.entry-title,.entry-header h1::after.entry-title,.page h1::after.entry-title,.attachment h1::after.entry-title,.archive-header h1::after.archive-title article h1::after,.entry-content h1::after{content:" ";display:table-cell;width:100%}.h1noupper h1,.h1noupper .entry-header h1.entry-title,.h1noupper.page h1.entry-title{text-transform:none}.entry-header h1.entry-title{margin:0}#secondary h2.widget-title,#sidebar-page h2.widget-title{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;text-decoration:none}#footer-social h2.socialmedia{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;hypens:auto;display:inline-block;float:left;padding:8px 15px 0px 0px}.entry-header h2.entry-title{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;-moz-hyphens:manual;-o-hyphens:manual;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;text-decoration:none;padding:4px 0 8px;display:block;margin:0}.entry-header h2.entry-title a{text-decoration:none}.widget h2.widget-title{display:block;margin:0;padding:15px 0 24px;border-top-width:1px;border-top-style:solid}.widget_mc4wp_form_widget h2.widget-title,.jetpack_subscription_widget h2.widget-title{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}h3#reply-title{margin:0 0 10px 0;padding:0;display:block;line-height:1;font-weight:600;text-transform:uppercase;letter-spacing:1.5px}#footer-social h3.socialmedia{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;hypens:auto;display:inline-block;float:left;padding:8px 15px 0px 0px}.footer-menu h3.footer-menu-title{text-transform:uppercase;letter-spacing:1px}.footer-menu h3.footer-menu-title,.authorbox h3.author-title{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}#comments h3.comments-title,#comments #respond h3#reply-title{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}#front-section-three h3.front-section-title{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.single-post .entry-header h1.entry-title,.blog-wrap h3.blog-title,.archive-header h1.archive-title,.attachment h1.entry-title,.page h1.entry-title,.featured-slider .entry-header h2.entry-title,#front-section-four .entry-header h2.entry-title,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-header h2.entry-title,.section-one-column-one .entry-header h2.entry-title,.section-three-column-one .entry-header h2.entry-title,.jetpack_subscription_widget #subscribe-text p,#front-section-three h3.front-section-title,.recommended-posts-wrap #jp-relatedposts h3.jp-relatedposts-headline,#big-footer-feature h2.footer-feature-title,#big-footer-feature h3.footer-feature-title{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.site-content header,.entry-content header{margin-bottom:20px}@media screen and (min-width: 48em){.single-post .entry-header h1.entry-title,.single-attachment .entry-header h1.entry-title,.attachment h1.entry-title,.page h1.entry-title{font-size:48px;line-height:67.2px;font-size:3rem;line-height:4.2rem}.blog-wrap h3.blog-title,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-header h2.entry-title,.section-one-column-one .entry-header h2.entry-title,.section-three-column-one .entry-header h2.entry-title,#front-section-four .entry-header h2.entry-title,.recommended-posts-wrap #jp-relatedposts h3.jp-relatedposts-headline,.archive-header h1.archive-title,.entry-content h1{font-size:36px;line-height:50.4px;font-size:2.25rem;line-height:3.15rem}#section-fullwidth h2,.entry-content h2{font-size:26px;line-height:36.4px;font-size:1.625rem;line-height:2.275rem}#section-fullwidth h3,.entry-content h3{font-size:24px;line-height:33.6px;font-size:1.5rem;line-height:2.1rem}#section-fullwidth h4,.entry-content h4{font-size:22px;line-height:30.8px;font-size:1.375rem;line-height:1.925rem}#section-fullwidth h5,.entry-content h5{font-size:19px;line-height:26.6px;font-size:1.1875rem;line-height:1.6625rem}#section-fullwidth h6,.entry-content h6{font-size:19px;line-height:26.6px;font-size:1.1875rem;line-height:1.6625rem}.entry-header h2.entry-title{font-size:24px;line-height:33.6px;font-size:1.5rem;line-height:2.1rem}.section-one-column-two .type-post:nth-of-type(n+2) .entry-header h2.entry-title,.section-two-column-two .type-post .entry-header h2.entry-title,.section-three-column-two .type-post .entry-header h2.entry-title,#front-section-fourcolumn .type-post .entry-header h2.entry-title,.section-sixcolumn-postwrap .type-post .entry-header h2.entry-title{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.page div.sharedaddy h3.sd-title,.null-instagram-feed .clear{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.attachment h1.entry-title,.page h1.entry-title{margin-bottom:45px}}@media screen and (min-width: 64em){.entry-header h2.entry-title{font-size:28px;line-height:39.2px;font-size:1.75rem;line-height:2.45rem}#front-section-twocolumn .entry-header h2.entry-title{font-size:28px;line-height:39.2px;font-size:1.75rem;line-height:2.45rem}.widget h2.widget-title{border-top:none}}@media screen and (min-width: 66.25em){h1.site-title{font-size:60px;line-height:84px;font-size:3.75rem;line-height:5.25rem;text-align:center;padding-right:0}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-header h2.entry-title,.section-one-column-one .entry-header h2.entry-title,.section-three-column-one .entry-header h2.entry-title,#front-section-four .entry-header h2.entry-title{font-size:48px;line-height:67.2px;font-size:3rem;line-height:4.2rem}#front-section-fourcolumn .type-post .entry-header h2.entry-title,.recommended-posts-wrap #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}#front-section-four entry-header h2.entry-title{padding-top:10px}}@media screen and (min-width: 85em){.single-post .entry-header h1.entry-title,#front-section-four .entry-header h2.entry-title{font-size:58px;line-height:81.2px;font-size:3.625rem;line-height:5.075rem}}@media screen and (min-width: 550px){hr{display:block;border:0px;height:56px;margin:10px 0;color:#ccc;background-image:url("./img/trenner-04-50.png");background-position:center center;background-repeat:no-repeat}}.menu_separator hr{background-image:url("./img/trenner-01-30.png");height:40px}.site-content hr{clear:both}.devider_hideimage hr{background-image:none;border:1px;height:1px;background:#ccc}#overlay-nav .menu_separator hr{display:none}a{text-decoration:none}.entry-content a,.comment-text a{font-weight:bold}.author-bio a,.textwidget a{text-decoration:underline}#secondary h2.widget-title,#sidebar-page h2.widget-title{text-decoration:none}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{border-style:solid;border-width:2px}.comments-show #comments-toggle,#comments-toggle:focus,#comments-toggle:hover{border-style:solid;border-width:2px}.desktop-search input.search-field:active,.desktop-search input.search-field:focus{border-bottom-style:solid;border-bottom-width:1px}.wp-caption-text a{line-height:1.6em}table{line-height:2;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;border-collapse:collapse;border-bottom-width:1px;border-bottom-style:solid;border-spacing:0;border-width:1px;margin:0 0 1.6em;width:100%}table.sorttable thead{cursor:pointer}table.center th,table.center td{text-align:center}table.right td{text-align:right}table thead th{border-bottom-width:2px;border-bottom-style:solid}table.long td,table.border td{border-bottom-width:1px;border-bottom-style:solid}caption,th,td{font-weight:normal;text-align:left;vertical-align:top}caption{padding:3px 5px;font-style:italic;margin:40px 0}caption.right{text-align:right}caption.center{text-align:center}th{font-weight:bold}th,td{padding:0.4em}th.right,td.right{text-align:right}th.center,td.center{text-align:center}@media screen and (max-width: 48em){table,tr,td{padding:0}table{border:none}thead{display:none}tr{float:left;width:100%;margin-bottom:2em}td{float:left;width:100%;padding:1em}}ul,ol{margin:0 0 30px 0;padding-left:40px;list-style-position:inside}ul{list-style:none}ul ul{margin:0}ol{list-style:decimal}ol ol{margin:0;list-style:lower-alpha}ol ol ol{list-style:lower-roman}li>ul,li>ol{margin-bottom:0;margin-left:0}.entry-content ul{padding-left:50px}.entry-content ul li{position:relative;padding:0 0 0 24px;list-style-position:outside;list-style-type:none}.entry-content ul li:before{margin-right:10px;margin-left:-24px}.entry-content ul li ul{padding-left:50px}.entry-content ul li ul li{padding-left:24px}.entry-content ul li ul li li{display:list-item;list-style-type:circle;padding-left:0px}.entry-content ul li ul li li:before{content:"";margin-right:0;margin-left:0}.entry-content ul li ol li:before{display:none}.entry-content ul ul{padding-left:50px}.entry-content ul.default li{display:list-item;padding:0;list-style-type:circle}.entry-content ul.default li:before{content:"";margin-left:0;margin-right:0}.entry-content ul.default li li{list-style-type:square}.entry-content ul.default li li li{list-style-type:disc}.entry-content ul.nolist li,.entry-content ul.textlist li{list-style:none;margin:0;padding:0;background:none}.entry-content ul.nolist li:before,.entry-content ul.textlist li:before{display:none}.entry-content ul.nolist li:before,.entry-content ul.textlist li:before{display:none}.entry-content ul.sign li{list-style-type:none;padding-left:30px;margin-left:20px;background-image:url(../img/signet-maincolor-24.gif);background-repeat:no-repeat;background-position:left 3px;display:list-item}.entry-content ul.sign li:before{content:"";margin:0}.entry-content ul.sign li ul li{background-image:none;list-style-type:circle;list-style-image:none;padding:0;margin:0}.entry-content ul.sign li ul li ul li{list-style-type:square}.entry-content ul.sign li ol li{background-image:none;padding:0;margin:0}.entry-content ul.sign.grau li{background-image:url(../img/signet-grau-24.gif)}.entry-content ul.sign.secondcolor li{background-image:url(../img/signet-secondcolor-24.gif)}.entry-content ul.line li{position:relative;padding:0 0 0 24px;list-style-position:outside;list-style-type:none}.entry-content ul.line li:before{vertical-align:top;position:absolute;top:0;left:0;content:'\2013';padding:0;margin-left:0;margin-right:0}.entry-content ul.line li ul{padding-left:50px}.entry-content ul.line li ul li{padding-left:24px}.entry-content ul.line li ol li:before{display:none}.entry-content ul.textlist{margin-left:0;padding-left:0}.entry-content ul.textlist li{padding-left:0;display:inline}.entry-content ol{padding-left:70px}.entry-content ol li{padding-left:4px;list-style-position:outside}.entry-content ol ol{padding-left:50px}.entry-content ol ul li{padding-left:24px}.comment-text ul,.comment-text ol{margin:0 0 15px;padding-left:20px}.comment-text li{position:relative;padding:0 0 0 24px}.comment-text ul li:before{vertical-align:top;position:absolute;top:0;left:0;content:'\2013';padding:0}.comment-text ul li ul li{padding-left:24px}.comment-text ul li ol li:before{display:none}.comment-text ol ul li{padding:0 0 0 24px}#comments ul ul,#comments ol ol{padding-left:50px}.fontawesome-icon-list a{text-decoration:none}.fontawesome-icon-list a i{color:#1a1a1a;min-width:2em}blockquote{display:block;padding:20px 20px 20px 45px;margin:10px 20px 30px;position:relative;font-family:Georgia,"Times New Roman",Times,serif;border-left-style:solid;border-left-width:15px;border-right-style:solid;border-right-width:2px;font-style:italic;-moz-hyphens:manual;-o-hyphens:manual;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual}blockquote a{text-decoration:none;cursor:pointer;padding:0 3px}blockquote em{font-style:italic}blockquote p{position:relative;font-weight:600;font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}blockquote cite{display:block;padding-top:10px;padding-right:30px;font-style:normal;font-weight:normal;text-align:right;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}blockquote cite::before{content:"\2013 "}blockquote.quotesign{padding:20px 20px 20px 60px}blockquote.quotesign::before{content:"\201C";font-family:Georgia, serif;font-size:70px;font-weight:bold;position:absolute;left:10px;top:0px}blockquote.quotesign::after{content:""}blockquote.smallborder{border-left-width:2px;border-right-width:2px}blockquote.boxborder{border-top-width:2px;border-bottom-width:2px;border-top-style:solid;border-bottom-style:solid}blockquote.small{border-left-width:2px;border-right-width:2px;font-style:normal;padding:10px 10px 10px 25px}blockquote.small p{font-weight:normal;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}blockquote.small cite{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}blockquote.borderless{border:none}.inner-offcanvas-wrap blockquote{background:inherit;margin:10px 5px 30px 20px;border:0}.inner-offcanvas-wrap blockquote::before{content:"\201C";font-family:Georgia, serif;font-size:60px;font-weight:bold;color:#4d4d4d;position:absolute;left:2px;top:-5px}.inner-offcanvas-wrap blockquote::after{content:""}blockquote #comments blockquote{border-left:none;border-right:none}blockquote #comments blockquote p{position:relative;font-weight:600}blockquote #comments blockquote cite{display:block;padding-top:10px;font-style:normal;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}@media screen and (min-width: 48em){.entry-content blockquote:not(.small) p{font-size:24px;line-height:33.6px;font-size:1.5rem;line-height:2.1rem}.entry-content blockquote:not(.small) cite{font-size:19px;line-height:26.6px;font-size:1.1875rem;line-height:1.6625rem}}.entry-meta,.entry-cats{font-size:11px;line-height:15.4px;font-size:.6875rem;line-height:.9625rem;text-transform:uppercase;letter-spacing:1px}.entry-meta a,.entry-cats a{text-decoration:none}.entry-meta{display:block;clear:both}.entry-meta .entry-tags ul{margin:0;padding:0}#primary .hentry .entry-date,#primary .hentry .entry-edit{display:block}#primary .hentry .entry-date{padding-bottom:8px}.featured-slider .entry-cats a,.section-one-column-one .entry-cats a,.section-three-column-one .entry-cats a,#front-section-four .entry-cats a,.single-post .entry-cats a{padding:3px 5px;margin:0 2px 4px 0}.section-one-column-one .entry-cats{position:absolute;top:37px;left:17px}.section-three-column-two .entry-cats{display:none}.search-results .entry-cats a:nth-child(n+2):before,.archive .entry-cats a:nth-child(n+2):before{content:' / ';padding:0 2px}.single-post .entry-header{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.single-post .entry-header .entry-cats{display:block;text-align:right}.single-post .entry-header .entry-cats a{display:inline-block}.single-post .entry-tags{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:before,.blog .section-one-column-one .entry-cats a:before,.blog .section-three-column-one .entry-cats a:before,.blog #front-section-four .entry-cats a:before{display:none}.blog .hentry .entry-cats a{display:none}.blog .hentry .entry-cats a:nth-child(1),.blog .hentry .entry-cats a:nth-child(2),.blog .hentry .entry-cats a:nth-child(3),.blog .hentry .entry-cats a:nth-child(4){display:inline}.blog .entry-cats a:nth-child(n+2):before{content:' / '}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a{padding:2px 5px;display:inline}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-date,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-comments,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{display:inline-block;padding-bottom:0}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-date{padding-right:20px}.front_hidecats .blog .entry-cats{display:none !important}@media screen and (min-width: 48em){.single-post .hentry .entry-meta,.single-attachment .hentry .entry-meta,.shortcode-section a.all-posts-link,.front-section a.all-posts-link{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.single-post .canonical-link,.single-post .entry-tags{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}}.wp-smiley{border:0;margin-bottom:0;margin-top:0;padding:0}.entry-content p.pull-left,.entry-content p.pull-right{margin-bottom:15px;font-weight:600;line-height:1.4 !important}span.dropcap{float:left;padding:3px 4px 0 0;font-size:64px;font-size:4rem;font-weight:600;line-height:0.78}.uppercase{font-weight:600;text-transform:uppercase;letter-spacing:1px}.wide-content{margin-bottom:30px}.justify{text-align:justify}.alignleft,.alignright{display:block}.alignleft{margin-right:35px;float:left}.alignright{margin-left:35px;float:right}.aligncenter{display:block;margin-left:auto;margin-right:auto;clear:both}.unsichtbar,.no-header-text p.site-description,.no-header-subtitle p.site-description,.no-header-text h1.site-title,.no-header-text p.site-title,.no-header-title h1.site-title,.no-header-title p.site-title,.screen-reader-text,.search-open span,#footer-social h3.socialmedia,#footer-social span,.home.page .entry-header h1,.single-post .entry-comments-title{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.unsichtbar:focus,.no-header-text p.site-description:focus,.no-header-subtitle p.site-description:focus,.no-header-text h1.site-title:focus,.no-header-text p.site-title:focus,.no-header-title h1.site-title:focus,.no-header-title p.site-title:focus,.screen-reader-text:focus,.search-open span:focus,#footer-social h3.socialmedia:focus,#footer-social span:focus,.home.page .entry-header h1:focus,.single-post .entry-comments-title:focus{position:relative;left:0;width:auto;height:auto;overflow:auto}.hide-desktop{display:none}.hidden{display:none}.widget_mc4wp_form_widget input[type="submit"],.jetpack_subscription_widget #subscribe-submit input[type="submit"]{background:#f80}.desktop-search input[type="submit"]:hover{background:#0c6ca6}.widget_mc4wp_form_widget input[type="submit"]:hover,.jetpack_subscription_widget #subscribe-submit input[type="submit"]:hover{background:#f80}.desktop-search input[type="submit"]:hover,.widget_search input[type="submit"]:hover,.post-password-form input[type="submit"]:hover,.post-password-form input[type="submit"]:hover .footer-feature-btn:hover{border:2px solid #0c6ca6;color:#fff;background:#0c6ca6}input{padding:12px 15px;background:#fff;border:1px solid #ccc;line-height:normal;outline:none;color:#1a1a1a}input[type="submit"]:hover,input#submit:hover{background:#0c6ca6;border:2px solid #0c6ca6;color:#fff}input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}input[type="button"],input[type="submit"],input#submit{padding:9px 30px;border:2px solid #f80;background-color:#f80;color:#fff;line-height:normal;cursor:pointer;outline:none;-webkit-appearance:none;text-transform:uppercase;font-weight:500;letter-spacing:3px}input[type="button"]:focus,input[type="button"]:hover,input[type="submit"]:focus,input[type="submit"]:hover,input#submit:focus,input#submit:hover{background-color:#672082;border-color:#672082}textarea{padding:12px 15px;background:#fff;border:1px solid #ccc;line-height:normal;outline:none;color:#1a1a1a}textarea:focus,textarea:active{border:1px solid #1a1a1a}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible;text-transform:none}select{text-transform:none}button,html input[type="button"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}#commentform input#submit{border-color:#f80;background-color:#f80;color:#fff}#commentform input#submit:focus,#commentform input#submit:hover{background-color:#672082;border-color:#672082}.post-password-form input[type="password"]{padding:9px 15px}.widget_search .searchform{width:100%;max-width:500px;display:block;overflow:hidden}.widget_search input.search-field{margin-right:6px;padding:12px 2%;float:left;width:58%}.error404 input.search-field{padding:12px 2%}.error404 input[type="submit"]{padding:10px 30px}.widget_search input[type="submit"],.post-password-form input[type="submit"]{padding:11px 0;font-weight:600;line-height:1.65}.widget_search input[type="submit"]{width:40%;float:right}@media screen and (min-width: 48em){input[type="button"],input[type="submit"],input#submit{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}}img{max-width:100%;height:auto}img.wp-post-image{padding:0}img.img-border{border:5px solid #e2e2e2}img.img-border-thin{background:#fff;padding:5px;border:1px solid #ededee}img.shadow{max-width:calc(100% - 10px);box-shadow:2px 2px 4px 0px rgba(0,0,0,0.6)}img.noshadow{max-width:inherit;box-shadow:none}img.rounded{border-radius:50%}img.roundedges{border-radius:10px}img.alignleft,img.alignright{margin-top:8px;margin-bottom:25px}.widget img{max-width:100%;height:auto}.wp-caption{max-width:100%}.wp-caption.alignnone{margin-left:0;margin-right:0}img#wpstats{display:none}.entry-content .wp-caption-text,.entry-content p.wp-caption-text{margin:0;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.shadow-images .entry-content img{max-width:calc(100% - 10px);box-shadow:2px 2px 4px 0px rgba(0,0,0,0.6)}.shadow-images .entry-content img.noshadow{max-width:inherit;box-shadow:none}.type-attachment .entry-content .entry-caption p{margin:0;padding:8px 10px 30px 2px;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.entry-content p.wp-caption-text{text-align:right;padding:0 10px 0 0}.entry-content .alignleft p.wp-caption-text{text-align:left}.entry-content .alignright p.wp-caption-text{text-align:right;margin-right:6px}figure{margin:10px 0 20px 0}figure figcaption{text-align:right;padding:0 10px 0 0;margin:0;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;max-width:100%}figure.entry-thumbnail figcaption{text-align:right}.shadow-images figure img{max-width:calc(100% - 10px);box-shadow:2px 2px 4px 0px rgba(0,0,0,0.6)}@media screen and (min-width: 48em){.single-post .entry-thumbnail{padding-bottom:30px}}.gallery{margin-left:auto;margin-right:auto;padding-top:10px}.gallery .gallery-item{float:left;margin-top:0;width:33.3%}.gallery .gallery-item a{border-bottom:none}.gallery .gallery-item .gallery-caption{margin:0;padding:8px 2px 30px;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.gallery .gallery-item img{width:100%;height:auto}.gallery dl,.gallery dt{margin:0}.gallery br+br{display:none}.shadow-images .entry-content .gallery img{width:100%;box-shadow:2px 0px 10px 0px rgba(0,0,0,0.8)}.tiled-gallery{margin-left:auto;margin-right:auto;padding-top:10px;margin-bottom:30px !important}.gallery-columns-2 .gallery-item{width:50%}.gallery-columns-2 .gallery-item:nth-of-type(odd){padding-right:1.4%}.gallery-columns-3 .gallery-item:nth-of-type(3n+1){padding-right:1.4%}.gallery-columns-2 .gallery-item:nth-of-type(even){padding-left:1.4%}.gallery-columns-3 .gallery-item:nth-of-type(3n+3){padding-left:1.4%}.gallery-columns-3 .gallery-item:nth-of-type(3n+2){padding-left:0.7%;padding-right:0.7%}.gallery-columns-4 .gallery-item{width:25%}.gallery-columns-5 .gallery-item{width:20%}.gallery-columns-6 .gallery-item{width:16.6%}.gallery-columns-7 .gallery-item{width:14%}.gallery-columns-8 .gallery-item{width:12.5%}.gallery-columns-9 .gallery-item{width:11%}.gallery-columns-2 .attachment-medium{max-width:92%;height:auto}.gallery-columns-4 .attachment-thumbnail,.gallery-columns-5 .attachment-thumbnail,.gallery-columns-6 .attachment-thumbnail{max-width:93%;height:auto}.gallery-columns-7 .attachment-thumbnail,.gallery-columns-8 .attachment-thumbnail,.gallery-columns-9 .attachment-thumbnail{max-width:94%;height:auto}.single .gallery .gallery-item .gallery-caption{display:block}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail a:after,.featured-slider .entry-thumbnail a:after,.single-post .big-thumb .entry-thumbnail a:after,.header-image:after,#front-section-four .entry-thumbnail a:after{position:absolute;display:block;top:0;left:0;right:0;bottom:0;content:""}.uku-serif #front-section-four .entry-thumbnail a .thumb-wrap:after,.uku-serif .section-two-column-one .entry-thumbnail a:after{position:absolute;display:block;top:0;left:0;right:0;bottom:0;content:""}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail a:after,.featured-slider .entry-thumbnail a:after,.single-post .big-thumb .entry-thumbnail a:after,.header-image:after{background-color:#000000;opacity:0}#front-section-four .meta-main-wrap,.featured-slider .meta-main-wrap,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{position:absolute;left:0;right:0;bottom:0;z-index:100}.big-thumb .title-wrap{position:absolute}#front-section-four .meta-main-wrap,.featured-slider .meta-main-wrap,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap,.big-thumb .title-wrap{background:-moz-linear-gradient(top, transparent 0%, rgba(0,0,0,0.7) 100%);background:-webkit-linear-gradient(top, transparent 0%, rgba(0,0,0,0.7) 100%);background:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 )}embed,iframe,object,video{max-width:100%}.entry-content .twitter-tweet-rendered{max-width:100% !important}.site-content .type-attachment{padding-top:0 !important}.social-nav ul li{display:inline-block;border:1px solid transparent;border-radius:50%}.social-nav ul li a{background:#fff;color:#1a1a1a;overflow:hidden;display:inline-block;width:25px;height:25px;text-align:center;vertical-align:middle;border-radius:50%}.social-nav ul li :hover{background:#1a1a1a;color:#fff}.social-nav ul li a::before{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem;text-align:center;vertical-align:middle}.social-nav ul li a[href*="diaspora.com"]{background-color:#ccc;border-color:#ccc;color:white}.social-nav ul li a[href*="diaspora.com"]:before{font-size:36px;line-height:32px;font-size:2.25rem;line-height:2rem;content:"*";font-family:'Roboto', 'Helvetica', 'Arial', sans-serif;font-weight:bold}.social-nav ul li a[href*="diaspora.com"]:focus,.social-nav ul li a[href*="diaspora.com"]:hover{background-color:#b3b3b3}.social-nav ul li a[href*="delicious.com"]{background-color:#eeeeee;border-color:#eeeeee;color:white}.social-nav ul li a[href*="delicious.com"]:focus,.social-nav ul li a[href*="delicious.com"]:hover{background-color:#d5d5d5}.social-nav ul li a[href*="facebook.com"]{background-color:#3b5998;border-color:#3b5998;color:white}.social-nav ul li a[href*="facebook.com"]:focus,.social-nav ul li a[href*="facebook.com"]:hover{background-color:#2d4373}.social-nav ul li a[href*="feed"]{background-color:#ff8800;border-color:#ff8800;color:white}.social-nav ul li a[href*="feed"]:focus,.social-nav ul li a[href*="feed"]:hover{background-color:#cc6d00}.social-nav ul li a[href*="flattr.com"]{background-color:#5CB85C;border-color:#5CB85C;color:white}.social-nav ul li a[href*="flattr.com"]:focus,.social-nav ul li a[href*="flattr.com"]:hover{background-color:#449d44}.social-nav ul li a[href*="flickr.com"]{background-color:#ff0084;border-color:#ff0084;color:white}.social-nav ul li a[href*="flickr.com"]:focus,.social-nav ul li a[href*="flickr.com"]:hover{background-color:#cc006a}.social-nav ul li a[href*="google.com"]{background-color:#4285f4;border-color:#4285f4;color:white}.social-nav ul li a[href*="google.com"]:focus,.social-nav ul li a[href*="google.com"]:hover{background-color:#1266f1}.social-nav ul li a[href*="plus.google.com"]{background-color:#dd4b39;border-color:#dd4b39;color:white}.social-nav ul li a[href*="plus.google.com"]:focus,.social-nav ul li a[href*="plus.google.com"]:hover{background-color:#96271a}.social-nav ul li a[href*="github.com"]{background-color:#4078c0;border-color:#4078c0;color:white}.social-nav ul li a[href*="github.com"]:focus,.social-nav ul li a[href*="github.com"]:hover{background-color:#264874}.social-nav ul li a[href*="instagram.com"]{background-color:#c13584;border-color:#c13584;color:white}.social-nav ul li a[href*="instagram.com"]:focus,.social-nav ul li a[href*="instagram.com"]:hover{background-color:#711f4d}.social-nav ul li a[href*="linkedin.com"]{background-color:#0077b5;border-color:#0077b5;color:white}.social-nav ul li a[href*="linkedin.com"]:focus,.social-nav ul li a[href*="linkedin.com"]:hover{background-color:#00344f}.social-nav ul li a[href*="pinterest.com"]{background-color:#bd081c;border-color:#bd081c;color:white}.social-nav ul li a[href*="pinterest.com"]:focus,.social-nav ul li a[href*="pinterest.com"]:hover{background-color:#5b040e}.social-nav ul li a[href*="reddit.com"]{background-color:#ff4500;border-color:#ff4500;color:white}.social-nav ul li a[href*="reddit.com"]:focus,.social-nav ul li a[href*="reddit.com"]:hover{background-color:#992900}.social-nav ul li a[href*="slack.com"]{background-color:#6ecadc;border-color:#6ecadc;color:white}.social-nav ul li a[href*="slack.com"]:focus,.social-nav ul li a[href*="slack.com"]:hover{background-color:#2ca1b8}.social-nav ul li a[href*="snapchat.com"]{background-color:#fffc00;border-color:#fffc00;color:white}.social-nav ul li a[href*="snapchat.com"]:focus,.social-nav ul li a[href*="snapchat.com"]:hover{background-color:#999700}.social-nav ul li a[href*="slideshare.com"]{background-color:#bddfdf;border-color:#bddfdf;color:black}.social-nav ul li a[href*="slideshare.com"]:focus,.social-nav ul li a[href*="slideshare.com"]:hover{background-color:#78bebe}.social-nav ul li a[href*="tumblr.com"]{background-color:#56BC8A;border-color:#56BC8A;color:white}.social-nav ul li a[href*="tumblr.com"]:focus,.social-nav ul li a[href*="tumblr.com"]:hover{background-color:#317b57}.social-nav ul li a[href*="twitter.com"]{background-color:#1da1f2;border-color:#1da1f2;color:white}.social-nav ul li a[href*="twitter.com"]:focus,.social-nav ul li a[href*="twitter.com"]:hover{background-color:#0967a0}.social-nav ul li a[href*="vimeo.com"]{background-color:#162221;border-color:#162221;color:white}.social-nav ul li a[href*="vimeo.com"]:focus,.social-nav ul li a[href*="vimeo.com"]:hover{background-color:#3e605d}.social-nav ul li a[href*="xing.com"]{background-color:#026466;border-color:#026466;color:white}.social-nav ul li a[href*="xing.com"]:focus,.social-nav ul li a[href*="xing.com"]:hover{background-color:#000202}.social-nav ul li a[href*="youtube.com"]{background-color:#cd201f;border-color:#cd201f;color:white}.social-nav ul li a[href*="youtube.com"]:focus,.social-nav ul li a[href*="youtube.com"]:hover{background-color:#000}.social-nav ul li a[href*="lists.piratenpartei.de"]{background-color:#ff8800;border-color:#ff8800;color:white}.social-nav ul li a[href*="lists.piratenpartei.de"]:focus,.social-nav ul li a[href*="lists.piratenpartei.de"]:hover{background-color:#995200}.socialmedia-maincolor .social-nav ul li a{color:#f80;background-color:#fff;border-color:#fff}.socialmedia-maincolor .social-nav ul li a:focus,.socialmedia-maincolor .social-nav ul li a:hover{background:#672082;color:#fff;border-color:#672082}.socialmedia-maincolor .social-nav ul li :focus,.socialmedia-maincolor .social-nav ul li :hover{background:#672082;color:#fff;border-color:#672082}.socialmedia-secondcolor .social-nav ul li a{color:#672082;background-color:#fff;border-color:#fff}.socialmedia-secondcolor .social-nav ul li a:focus,.socialmedia-secondcolor .social-nav ul li a:hover{background:#f80;color:#fff;border-color:#f80}.socialmedia-secondcolor .social-nav ul li :focus,.socialmedia-secondcolor .social-nav ul li :hover{background:#f80;color:#fff;border-color:#f80}#footer-social.social-nav li{border:none}.socialmedia-maincolor #footer-social.social-nav ul li a{color:#f80;background:#471659}.socialmedia-maincolor #footer-social.social-nav ul li a:focus,.socialmedia-maincolor #footer-social.social-nav ul li a:hover{background:#672082;color:#fff;border-color:#672082}.socialmedia-secondcolor #footer-social.social-nav ul li a{color:#f80;background:#471659}.socialmedia-secondcolor #footer-social.social-nav ul li a:focus,.socialmedia-secondcolor #footer-social.social-nav ul li a:hover{background:#f80;color:#fff;border-color:#f80}@media screen and (min-width: 66.25em){.header-social{display:block;position:absolute;right:0;top:40px;height:59px;padding-top:10px}#header-social-sticky{top:7px;right:20px}.header-stick #header-social-sticky{z-index:9999}}.box,#comments .disclaimer,.pirate-crew-error{margin:0 0 30px;padding:20px;overflow:hidden;line-height:1.4}.box a,#comments .disclaimer a,.pirate-crew-error a{font-weight:bold}.site-content .box p,.site-content #comments .disclaimer p,#comments .site-content .disclaimer p,.site-content .pirate-crew-error p{margin:0 0 30px}.white-box{border:3px solid #fff}.white-box.invertbox{background:#e6e6e6}.blue-box{border:3px solid #06f}.blue-box.invertbox{background:#3385ff}.yellow-box{border:3px solid #e7b547}.yellow-box.invertbox{background:#edc774}.red-box,.pirate-crew-error{border:3px solid #d7464d}.red-box.invertbox,.invertbox.pirate-crew-error{background:#e07075}.green-box{border:3px solid #85c066}.green-box.invertbox{background:#a2cf8a}.lightgrey-box{border:3px solid #ececed}.lightgrey-box.invertbox{background:#fff}.grey-box{border:3px solid #a9a9a9}.grey-box.invertbox{background:#c3c3c3}.dark-box{border:3px solid #222}.dark-box.invertbox{background:#3c3c3c;color:#fff}.maincolor-box,#comments .disclaimer{border:3px solid #f80}.maincolor-box a,#comments .disclaimer a{color:#f80}.maincolor-box.invertbox,#comments .invertbox.disclaimer{background:#ffa033}.maincolor-box.invertbox a,#comments .invertbox.disclaimer a{color:#1a1a1a}.secondcolor-box{border:3px solid #672082}.secondcolor-box a{color:#672082}.secondcolor-box.invertbox{background:#872aab;color:#fff}a.standard-btn{display:inline-block;margin:0 0 30px;padding:10px 18px;overflow:hidden;cursor:pointer;background:#1a1a1a;color:#fff;font-size:16px;font-size:1rem;text-align:center;font-weight:normal;text-decoration:none !important;-webkit-transition:0.2s background ease;-moz-transition:0.2s background ease;-o-transition:0.2s background ease;-ms-transition:0.2s background ease;transition:0.2s background ease}a.standard-btn:focus,a.standard-btn:hover{background:#737373}.post .entry-content a.standard-btn,.page .entry-content a.standard-btn,.post .entry-content a.standard-btn:hover,.page .entry-content a.standard-btn:hover{color:#fff;border:none}a.standard-btn.xsmall-btn{padding:5px 10px 3px;font-size:14px;font-size:0.875rem}a.standard-btn.small-btn{padding:7px 12px 5px;font-size:18px;font-size:1.125rem}a.standard-btn.large-btn{padding:14px 20px 13px;font-size:23px;font-size:1.4375rem}a.standard-btn.xlarge-btn{padding:18px 30px 17px;font-size:25px;font-size:1.5625rem}a.standard-btn.red-btn{background:#d7464d}a.standard-btn.red-btn:focus,a.standard-btn.red-btn:hover{background:#ab252c}a.standard-btn.green-btn{background:#85c066}a.standard-btn.green-btn:focus,a.standard-btn.green-btn:hover{background:#5f9a3f}a.standard-btn.blue-btn{background:#06f}a.standard-btn.blue-btn:focus,a.standard-btn.blue-btn:hover{background:#0047b3}a.standard-btn.yellow-btn{background:#e7b547}a.standard-btn.yellow-btn:focus,a.standard-btn.yellow-btn:hover{background:#c7911a}a.standard-btn.grey-btn{background:#a9a9a9}a.standard-btn.grey-btn:focus,a.standard-btn.grey-btn:hover{background:#838383}a.standard-btn.black-btn{background:#000}a.standard-btn.black-btn:focus,a.standard-btn.black-btn:hover{background:#595959}a.standard-btn.maincolor-btn{background:#f80}a.standard-btn.maincolor-btn:focus,a.standard-btn.maincolor-btn:hover{background:#672082}a.standard-btn.secondcolor-btn{background:#672082}a.standard-btn.secondcolor-btn:focus,a.standard-btn.secondcolor-btn:hover{background:#f80}.footer-feature-btn{display:inline-block;margin:20px 0 0 0;padding:18px 30px;background:none;border:2px solid #f80;background:#f80;color:#fff;text-transform:uppercase;letter-spacing:3px;outline:none;font-weight:500}.footer-feature-btn:focus,.footer-feature-btn:hover{border-color:#672082;background:#672082}#comments-toggle{position:relative;display:block;width:100%;padding:18px 20px 18px 60px;border-width:2px;border-style:solid;background:none;font-weight:600;text-transform:uppercase;letter-spacing:3px;text-align:left;outline:none}#comments-toggle:before{display:block;position:absolute;top:0;left:0;width:60px;height:58px;text-align:center;padding-top:16px;background:none}.toggledcomments .comments-content{display:none}.comments-show .comments-content{display:block}#primary .hentry .entry-comments{display:block;padding-bottom:8px}.entry-comments a{position:relative;padding-left:18px}.entry-comments a:before{display:block;position:absolute;top:2px;left:0}#comments{position:relative;padding:20px 0 0 0}#comments ul li,#comments ol li{list-style-position:outside}#comments ul.children{margin:0;padding:0}#comments li.comment,#comments li.pingback{overflow:hidden;margin:0 0 16px;padding:0}#comments li.comment:last-of-type,#comments li.pingback:last-of-type{margin:0}#comments li.comment ul.children{margin:16px 0 0}#comments .children .comment:last-child{margin:0}#comments h3.comments-title{padding:27px 0 0 0;border-top:1px solid #1a1a1a;display:block;font-weight:600;text-transform:uppercase;letter-spacing:3px}#comments .comment-details{position:relative;margin:0 90px 0 0;padding:0}#comments .comment-avatar{margin:0;padding:0;line-height:0;float:left}#comments .comment-avatar img.avatar{width:40px;height:40px;margin:0;-moz-border-radius:50px;-webkit-border-radius:50px;border-radius:50px}#comments .comment-author{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;font-weight:600}#comments .comment-author span{display:none}#comments .comment-text{overflow:hidden;padding:10px 30px 10px 0}#comments .comment-text p{margin:0;padding:0 0 15px}#comments .comment-text p:last-child{padding:0}#comments .comment-meta{overflow:hidden;list-style:none}#comments .comment-meta li{display:inline}#comments .comment-reply{position:relative;padding:0}#comments .comment-reply a{padding-left:20px}#comments .comment-reply a:before{display:block;position:absolute;top:4px;left:0;text-align:left}#comments p.comment-awaiting-moderation{display:inline-block}#comments ol li.pingback p{margin:0}#comments .disclaimer{margin-bottom:10px}#comments #respond{margin:0;padding-top:30px;overflow:hidden;text-align:left}#comments li.comment #respond{padding-top:20px}#comments ol.commentlist #respond{margin:0;padding-left:0;padding-right:0}#comments #respond p.comment-notes{margin:0;padding:0}#comments #respond p.logged-in-as{padding:3px 0 0 0;margin-bottom:0}ol.commentlist{list-style:none;margin:0;padding:40px 0 0}ol.commentlist li{display:block;margin:0;padding:0}ol.commentlist .comment-text li{padding:0 0 0 18px}.comment-wrap{padding:0 0 16px 60px}ol.commentlist li.comment:last-of-type .comment-wrap{padding-bottom:0}ol.commentlist ul.children li.comment:last-of-type .comment-wrap{padding-bottom:16px}.comment-edit:before{content:',';display:inline}.site-content .nopassword,.site-content p.nocomments{position:relative;margin:15px 0 0;padding:0;font-weight:600}#respond a#cancel-comment-reply-link{margin:21px 0 0 0;float:right;font-weight:normal;text-transform:none;letter-spacing:0}#commentform p.comment-form-author,#commentform p.comment-form-email,#commentform p.comment-form-url,#commentform p.comment-form-comment{margin:0;padding:20px 0 0}#commentform p.comment-form-author,#commentform p.comment-form-email,#commentform p.comment-form-url,#commentform p.comment-form-comment{float:none;clear:both;width:100%}.contact-form div{float:none;clear:both;width:100%}#commentform input#author,#commentform input#email,#commentform input#url{display:block;width:100%;margin:0;line-height:normal;-webkit-appearance:none;outline-color:transparent;outline-style:none}#commentform textarea#comment{width:100%;margin:0;line-height:normal;-webkit-appearance:none;outline-color:transparent;outline-style:none}#commentform input#submit{margin:20px 0;width:100%;font-weight:600}#commentform p.form-submit{margin:0;clear:both}#respond small{font-size:100%}.comment-notes{display:none}.externcomments a.standard-btn{width:100%}@media screen and (min-width: 48em){.single-post .entry-comments a{padding-left:22px}ol.commentlist{padding:40px 0 10px}#comments li.comment ul.children{margin-left:60px}#comments li.comment ul.children ul.children ul.children{margin-left:0}}.featured-content{padding-bottom:35px}.no-js .featured-content{display:none}.header-image{display:block;line-height:0;margin-bottom:35px}.header-image img{width:100%}.slider-on.slider-boxed .featured-content{padding-top:20px}.headerimg-on.slider-on.slider-boxed .featured-content{padding-top:0 !important}.headerimg-on.header-boxed .header-image{margin-top:20px}.slider-on.slider-boxed .featured-slider .entry-header,.slider-on.slider-boxed .featured-slider .entry-meta,.slider-on.slider-boxed .featured-slider .credits{padding-left:17px;padding-right:17px}.featured-slider{visibility:hidden;overflow:hidden;position:relative;padding-bottom:35px}.featured-slider article header{margin-bottom:0px}.featured-slider .meta-main-wrap{position:absolute;left:0;right:0;bottom:0;padding-bottom:17px}.featured-slider .entry-author{display:none}.featured-slider .entry-edit{margin-left:20px}.featured-slider button.slick-next{position:absolute;bottom:0;width:50%;height:35px;background:transparent;outline:0;border-top:none;border-left:none;border-bottom:1px solid #ddd;text-indent:-99999px}.featured-slider button.slick-prev{position:absolute;bottom:0;width:50%;height:35px;background:transparent;outline:0;border-top:none;border-left:none;border-bottom:1px solid #ddd;text-indent:-99999px;left:0;border-right:1px solid #ddd}.featured-slider button.slick-next{right:0;border-right:none}.featured-slider .entry-header,.featured-slider .entry-meta,.featured-slider .credits{padding-left:5.3125%;padding-right:5.3125%}.featured-slider .entry-edit,.featured-slider .entry-cats a:before{display:none}.featured-slider .entry-date{padding-right:20px}.featured-slider .entry-date::before{display:none}.featured-slider .entry-thumbnail img{position:relative;width:100%}.featured-slider .credits{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;color:#aaa;text-shadow:1px 2px 2px black;position:absolute;bottom:0px;text-align:right;width:100%}.slick-initialized{visibility:visible !important}.slick-slide{position:relative}.section-one-column-one .entry-author,.section-one-column-one .entry-date:before{display:none}.slider-on.slider-boxed .featured-slider button.slick-prev{border-left:1px solid #ddd}.slider-on.slider-boxed .featured-slider button.slick-next{border-right:1px solid #ddd}.featured-slider button.slick-prev:after,.featured-slider button.slick-next:after{position:absolute;display:block;text-indent:0;color:#1a1a1a;bottom:13px}.featured-slider button.slick-prev:after{left:47%;content:""}.featured-slider button.slick-next:after{right:47%;content:""}.slider-on.slider-fullscreen .featured-content,.headerimg-on.header-fullscreen .featured-content{padding-top:0}.home.blog.slider-on.slider-fullscreen #site-branding,.home.blog.headerimg-on.header-fullscreen #site-branding{background:none;border-bottom:none}.home.blog.slider-on.slider-fullscreen #site-branding{position:absolute}.slider-on.slider-boxed .featured-content{padding-left:5.3125%;padding-right:5.3125%}.featured-slider .entry-thumbnail a{width:130%}.slider-on .front-section:first-of-type{padding-top:0}@media screen and (min-width: 37.5em){.featured-slider .entry-edit{display:inline-block}.featured-slider .format-video .entry-thumbnail a:before{width:60px;height:42px;padding:22px 0 0 24px}}@media screen and (min-width: 48em){.featured-slider{padding-bottom:0}.featured-slider .entry-header h2.entry-title{font-size:36px;line-height:50.4px;font-size:2.25rem;line-height:3.15rem}.featured-slider .entry-header h2.entry-title a{text-shadow:1px 2px 2px black}.featured-slider .credits{bottom:10px;text-align:left}.featured-slider .meta-main-wrap{padding-bottom:35px}.featured-slider button.slick-next,.featured-slider button.slick-prev{position:absolute;bottom:0;outline:0;border-top:none;border-left:none;border-bottom:none;text-indent:-99999px;z-index:1;background:rgba(26,26,26,0.75);width:50px;height:50px}.featured-slider button.slick-next:focus,.featured-slider button.slick-next:hover{background:#1a1a1a}.featured-slider button.slick-prev{left:auto;right:50px;border-right:none}.featured-slider button.slick-prev:focus,.featured-slider button.slick-prev:hover{background:#1a1a1a}.featured-slider button.slick-next{right:0}.featured-slider button.slick-prev:after,.featured-slider button.slick-next:after{color:#fff;position:absolute;bottom:0}.featured-slider button.slick-prev:after{left:13px;bottom:13px}.featured-slider button.slick-next:after{right:13px;bottom:13px}.slider-on.slider-boxed .featured-slider button.slick-prev,.slider-on.slider-boxed .featured-slider button.slick-next{border:none}.slider-on.slider-boxed .featured-slider .entry-header,.slider-on.slider-boxed .featured-slider .entry-meta{padding-left:40px;padding-right:40px}.slider-on .featured-slider .entry-thumbnail a{max-height:400px;overflow:hidden}}@media screen and (min-width: 64em){.featured-slider .entry-thumbnail a{width:100%}.slider-on .featured-slider .entry-thumbnail a{max-height:700px;overflow:hidden}}@media screen and (min-width: 66.25em){.blog.slider-on #masthead{margin-bottom:0;border-bottom:none}.slider-on.slider-boxed #masthead{border-bottom:1px solid #ddd !important}.featured-slider article header{margin-bottom:20px}.featured-slider .entry-header,.featured-slider .entry-meta,.featured-slider .credits{padding-left:0;padding-right:0;width:57.63888888888889%;margin-left:6.25%}.featured-slider .entry-header h2.entry-title{font-size:48px;line-height:67.2px;font-size:3rem;line-height:4.2rem;padding-top:10px}.featured-slider .format-video .entry-thumbnail a:before{left:6.25%;top:40px}.featured-slider .entry-date:before{content:' / ';padding:0 2px;display:inline-block}.no-author .featured-slider .entry-date:before{display:none}.featured-slider .entry-meta{padding-top:20px}.featured-slider .entry-author{display:inline-block}.slider-on.slider-boxed .featured-content{padding-left:0;padding-right:0;margin-left:6.25%;margin-right:6.25%;padding-top:30px;width:87.5%}.slider-on.slider-boxed .featured-slider .entry-header,.slider-on.slider-boxed .featured-slider .entry-meta{margin-left:0}}@media screen and (min-width: 85em){.featured-slider .entry-header h2.entry-title{font-size:58px;line-height:81.2px;font-size:3.625rem;line-height:5.075rem}.slider-on .featured-slider .entry-thumbnail a{max-height:900px;overflow:hidden}}@media screen and (min-width: 112.5em){.slider-on.slider-boxed .featured-content{width:70%;margin-left:auto;margin-right:auto}.featured-slider .entry-header,.featured-slider .entry-meta,.featured-slider .credits{width:70%;margin-left:auto;margin-right:auto}}@media screen and (min-width: 137.5em){.slider-on.slider-boxed .featured-content{width:56%}.featured-slider .entry-header,.featured-slider .entry-meta,.featured-slider .credits{width:56%}}.accordion{margin:10px 0 20px 0}.accordion .accordion-group{border:none;margin-bottom:5px}.accordion .accordion-group .accordion-heading{overflow:hidden}.accordion .accordion-group .accordion-heading .accordion-toggle{border-left:10px solid #f80;background:#e7e7eb;color:#1a1a1a;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;text-decoration:none;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;padding:8px 35px 8px 10px;position:relative;width:100%;display:inline-block}.accordion .accordion-group .accordion-heading .accordion-toggle:before{position:absolute;top:10px;right:10px}.accordion .accordion-group .accordion-heading .accordion-toggle:hover,.accordion .accordion-group .accordion-heading .accordion-toggle:focus{background-color:#ffa033;text-decoration:none}.accordion .accordion-group .accordion-heading .accordion-toggle.active,.accordion .accordion-group .accordion-heading .accordion-toggle.active:hover,.accordion .accordion-group .accordion-heading .accordion-toggle.active:focus{background-color:#ffa033;color:#1a1a1a}.accordion .accordion-group .accordion-heading .accordion-toggle.active:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:hover:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:focus:before{top:8px}.accordion .accordion-group .accordion-body{display:block}.accordion .accordion-group .accordion-body .accordion-inner{border:none;background:#e7e7eb;padding:15px 20px}.accordion .secondcolor .accordion-heading .accordion-toggle,.accordion .second .accordion-heading .accordion-toggle{border-color:#672082}.accordion .secondcolor .accordion-heading .accordion-toggle:hover,.accordion .secondcolor .accordion-heading .accordion-toggle:focus,.accordion .second .accordion-heading .accordion-toggle:hover,.accordion .second .accordion-heading .accordion-toggle:focus{color:#fff;background-color:#872aab}.accordion .secondcolor .accordion-heading .accordion-toggle.active,.accordion .secondcolor .accordion-heading .accordion-toggle.active:hover,.accordion .secondcolor .accordion-heading .accordion-toggle.active:focus,.accordion .second .accordion-heading .accordion-toggle.active,.accordion .second .accordion-heading .accordion-toggle.active:hover,.accordion .second .accordion-heading .accordion-toggle.active:focus{color:#fff;background-color:#872aab}.accordion h1,.accordion h2,.accordion h3,.accordion h4,.accordion h5,.accordion h6{color:#1a1a1a}.accordion hr{border:1px solid #e7e7eb;margin:30px 20px;height:inherit}.accordion hr::after,.accordion hr::before{bottom:inherit;background:inherit;left:inherit;position:relative;right:inherit;top:inherit}.accordion>.accordion .accordion-heading .accordion-toggle{border-left:0}.accordionbox{margin:10px 0 20px 0}.accordionbox header{border-left:10px solid #f80;background:#f80;color:#1a1a1a;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;text-decoration:none;font-size:16px;padding:8px 35px 8px 10px;position:relative}.accordionbox header h2{color:#1a1a1a;padding:0px}.accordionbox header.secondcolor,.accordionbox header.second{border-color:#672082}.accordionbox .body{border:none;background:#fff;padding:15px 20px}#masthead{background:white}.search-open{color:#1a1a1a;background:transparent;border-color:#fff}.search-open :focus,.search-open :hover{background:#1a1a1a;color:#fff;border-color:#1a1a1a}.socialmedia-maincolor .search-open{color:#f80}.socialmedia-maincolor .search-open:focus,.socialmedia-maincolor .search-open:hover{background:#672082;color:#fff;border-color:#672082}.socialmedia-secondcolor .search-open{color:#672082}.socialmedia-secondcolor .search-open:focus,.socialmedia-secondcolor .search-open:hover{background:#f80;color:#fff;border-color:#f80}.blogroll .entry-cats a:nth-child(n+2):before,.blog .entry-cats a:nth-child(n+2):before{color:#1a1a1a;background:#fff}.pagebreak-links a{background:#672082}.pagebreak-links a:hover{background:#f80}#footer-search .search-field{background:rgba(26,26,26,0.25);border-color:rgba(255,255,255,0.2);color:#fff}#footer-search .search-field :focus,#footer-search .search-field :hover{background:#fff;color:#1a1a1a}#footer-search input#submit,#footer-search input[type="submit"]{background:rgba(26,26,26,0.4);border-color:rgba(255,255,255,0.2)}#footer-search input#submit :focus,#footer-search input#submit :hover,#footer-search input[type="submit"] :focus,#footer-search input[type="submit"] :hover{background:#f80;color:#fff}#footer-search input#submit:focus,#footer-search input#submit:hover,#footer-search input[type="submit"]:focus,#footer-search input[type="submit"]:hover{background:#f80;color:#fff}@media screen and (min-width: 66.25em){#masthead{border-bottom-color:#ddd}.desktop-search{background:rgba(26,26,26,0.75);border-top-color:#ddd}.desktop-search input.search-field{background:none;border-bottom-color:#fff;color:#fff}.desktop-search input[type="submit"]{background:#f80;color:#fff;border:2px solid #f80}.desktop-search input[type="submit"]:focus,.desktop-search input[type="submit"]:hover{background:#f80}.searchbar-maincolor .desktop-search{background:rgba(255,136,0,0.95)}.searchbar-maincolor .desktop-search input.search-field{border-bottom-color:#672082;color:#fff}.searchbar-maincolor .desktop-search input.search-field:hover,.searchbar-maincolor .desktop-search input.search-field:focus{background:#995200}.searchbar-maincolor .desktop-search input[type="submit"]{background:#672082;color:#fff;border-color:#672082}.searchbar-maincolor .desktop-search input[type="submit"]:focus,.searchbar-maincolor .desktop-search input[type="submit"]:hover{background:#672082;border-color:#f80}.searchbar-secondcolor .desktop-search{background:rgba(103,32,130,0.95)}.searchbar-secondcolor .desktop-search input.search-field{border-bottom-color:#f80;color:#fff}.searchbar-secondcolor .desktop-search input[type="submit"]{background:#f80;color:#fff;border-color:#f80}.searchbar-secondcolor .desktop-search input[type="submit"]:focus,.searchbar-secondcolor .desktop-search input[type="submit"]:hover{background:#f80;border:2px solid #672082}}#overlay-open,#overlay-open-sticky{color:#1a1a1a}#overlay-close{color:#1a1a1a}.socialmedia-maincolor #overlay-open,.socialmedia-maincolor #overlay-open-sticky,.socialmedia-maincolor #overlay-close{color:#f80}.socialmedia-secondcolor #overlay-open,.socialmedia-secondcolor #overlay-open-sticky,.socialmedia-secondcolor #overlay-close{color:#672082}.single-post .entry-header p.intro,.entry-summary,.front-section-title,.social-front-title,.widget_mc4wp_form_widget p,.jetpack_subscription_widget #subscribe-text p,.section-about-column-one p{color:#1a1a1a}.footer-feature-btn:focus,#comments-toggle:focus,.footer-feature-btn:hover,.comments-show #comments-toggle,#comments-toggle:hover{background:#0c6ca6}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{background:#0c6ca6}.comments-show #comments-toggle,#comments-toggle:focus,#comments-toggle:hover{border-color:#0c6ca6;color:#fff}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,.footer-feature-btn:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,.footer-feature-btn:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{border-color:#0c6ca6;color:#fff}#comments #respond a#cancel-comment-reply-link,#comments .comment-reply a{color:#666}#comments #respond p.comment-notes a,#comments #respond p.logged-in-as a{color:#666}#comments .comment-meta{color:#666}#comments .comment-meta a{color:#666}#comments .disclaimer a{color:#672082}#comments .disclaimer a:hover{color:#f80}#nav-comments a{color:#666}#comments-toggle{border-color:#1a1a1a;background:none}.comments-show #comments-toggle,#comments-toggle:focus,#comments-toggle:hover{border-color:#f80;color:#fff}p.wp-caption-text,.contact-form label span,.gallery .gallery-item .gallery-caption{color:#666}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-header h2.entry-title a,.featured-slider .entry-header h2.entry-title a{color:#fff}#front-section-four .entry-header h2.entry-title a{color:#fff}.big-thumb .entry-header h1.entry-title,.big-thumb .entry-header p.intro{color:#fff}#primary #infinite-handle span:hover button{color:#fff}.blog.headerfont-light h1.site-title a,.blog.headerfont-light #overlay-open,.blog.headerfont-light #site-branding .site-title a,.blog.headerfont-light #overlay-open,.blog.headerfont-light p.site-description{color:#fff}pre{background:#f4f4f4;color:#444}abbr,acronym{border-bottom-color:#1a1a1a}mark,ins{color:#fff;background:#872aab}#section-fullwidth h1,.site-content h1,.entry-content h1{color:#1a1a1a}#section-fullwidth h2,.site-content h2,.entry-content h2{color:#1a1a1a}#section-fullwidth h3,.site-content h3,.entry-content h3{color:#1a1a1a}#section-fullwidth h4,.site-content h4,.entry-content h4{color:#1a1a1a}#section-fullwidth h5,.site-content h5,.entry-content h5{color:#1a1a1a}#section-fullwidth h6,.site-content h6,.entry-content h6{color:#1a1a1a}#sidebar-page h2,#sidebar-page h3{color:#1a1a1a}.single-post .entry-header h1.entry-title,.entry-header h1.entry-title,.attachment h1.entry-title,.page h1.entry-title,h1.entry-title,.archive-header h1.archive-title,.site-content h1,.entry-content h1{border-color:#f80}#secondary h2.widget-title,#sidebar-page h2.widget-title{color:#1a1a1a}#footer-social h2.socialmedia{color:rgba(255,255,255,0.5)}.entry-header h2.entry-title{color:#1a1a1a}.entry-header h2.entry-title a{color:#1a1a1a}.widget h2.widget-title{border-top-color:#1a1a1a;color:#1a1a1a}.featured-slider .entry-header h2.entry-title a{color:#fff}h3 .all-posts-link{color:#1a1a1a}#footer-social h3.socialmedia{color:rgba(255,255,255,0.5)}.footer-menu h3.footer-menu-title{color:#f80}.color-second{color:#672082}.color-main{color:#f80}.color-third{color:#698bc1}.color-four{color:#148f93}a{color:#1a1a1a}a:focus,a:hover{color:#f80}.entry-content a,.comment-text a{color:#f80}.entry-content a:focus,.entry-content a:hover,.comment-text a:focus,.comment-text a:hover{color:#672082}.post-page-numbers a,.author-bio a,.featured-slider button.slick-arrow:focus::after,.featured-slider button.slick-arrow:hover::after,.front-section a.all-posts-link:focus,#overlay-close:focus,.widget-area .widget ul li a:focus,#sidebar-offcanvas .widget a:focus,.textwidget a:focus,#overlay-nav a:focus,.author-links a:focus,.single-attachment .post-navigation a:focus,.single-post .hentry .entry-meta a:focus,.front-section a.all-posts-link:hover,#overlay-close:hover,.widget-area .widget ul li a:hover,#sidebar-offcanvas .widget a:hover,.textwidget a:hover,#overlay-nav a:hover,.author-links a:hover,.single-attachment .post-navigation a:hover,.single-post .hentry .entry-meta a:hover{color:#f80}#secondary h2.widget-title,#sidebar-page h2.widget-title{color:#1a1a1a}#desktop-navigation ul li a:focus,#desktop-navigation ul li a:hover{color:#f80}.entry-header a:focus,.entry-header a:hover,.entry-header h2.entry-title a:focus,.entry-header h2.entry-title a:hover{color:#f80}.blog .entry-meta a:focus,.blog .entry-meta a:hover{color:#f80}#desktop-navigation ul li.menu-item-has-children a:focus::after,#desktop-navigation ul li.menu-item-has-children a:hover::after{border-top-color:#f80}.single-attachment .post-navigation a:focus,.single-attachment .post-navigation a:hover{border-bottom-color:#f80}#desktop-navigation .sub-menu li a:focus,#desktop-navigation .children li a:focus,#desktop-navigation .sub-menu li a:hover,#desktop-navigation .children li a:hover{background:#f80}.single-post .entry-header p.intro,.entry-summary,.front-section-title,.social-front-title,.widget_mc4wp_form_widget p,.jetpack_subscription_widget #subscribe-text p,.section-about-column-one p{color:#1a1a1a}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{background:#f80;border-color:#f80;color:#fff}.desktop-search input.search-field:active,.desktop-search input.search-field:focus{border-bottom-color:#f80}.single-post .entry-tags a,p.wp-caption-text,.contact-form label span,.gallery .gallery-item .gallery-caption{color:#666}table{border-bottom-color:#e7e7eb;background:#fff}table.sorttable thead{background:#e7e7eb}table.sorttable thead tr th.headerSortUp,table.sorttable thead tr th.headerSortDown{background:#cbcbd4}table thead th{border-bottom-color:#e7e7eb}table.long td,table.border td{border-bottom-color:#e7e7eb}table.long tr:nth-child(odd) td{background:#f2f2f2}th a{color:#1a1a1a}td{color:#4d4d4d}.entry-content ul li:before{color:#f80}.entry-content ul li ul li:before{color:#672082}.fontawesome-icon-list a i{color:#1a1a1a}blockquote{background:#fff;border-left-color:#f80;border-right-color:#f80}blockquote a:focus,blockquote a:hover{color:#672082}blockquote.maincolor{border-left-color:#f80;border-right-color:#f80}blockquote.secondcolor{border-left-color:#672082;border-right-color:#672082}blockquote.secondcolor a{color:#672082}blockquote.secondcolor a:focus,blockquote.secondcolor a:hover{color:#f80}blockquote.boxborder{border-top-color:#f80;border-bottom-color:#f80}blockquote.boxborder.secondcolor{border-top-color:#672082;border-bottom-color:#672082}blockquote.quotesign::before{color:#f80}blockquote.quotesign.secondcolor::before{color:#672082}.post-navigation,.pagebreak-links,.entry-meta,.entry-cats{color:#1a1a1a}.post-navigation a,.pagebreak-links a,.entry-meta a,.entry-cats a{color:#1a1a1a}.post-navigation a,.pagebreak-links a,.entry-cats a{color:#fff;background:#672082}.post-navigation a:hover,.pagebreak-links a:hover,.entry-cats a:hover{color:#fff;background:#f80}.section-one-column-one .entry-cats a,.section-three-column-one .entry-cats a,.featured-slider .entry-cats a,.pagebreak-links a,.post-navigation a,.single-post .entry-cats a{color:#fff}#front-section-four .entry-cats a,#front-section-four .pagebreak-links,#front-section-four .post-navigation,#front-section-four .entry-meta{color:#fff}#front-section-four .entry-cats a a,#front-section-four .pagebreak-links a,#front-section-four .post-navigation a,#front-section-four .entry-meta a{color:#fff}.search-results .entry-cats a:nth-child(n+2):before,.archive .entry-cats a:nth-child(n+2):before{color:#2b2b2b;background-color:white}.single-post .entry-header .page-links .number{color:#672082}.single-post .entry-header .page-links a .number{color:#f80}.single-post .entry-tags a{color:#672082}.blog .hentry .entry-cats a{color:#672082;background-color:white}.blog .hentry .entry-cats a:focus,.blog .hentry .entry-cats a:hover{color:#fff;background:#f80}.blog .featured-slider .entry-cats a,.blog .featured-slider .entry-meta a{color:#fff;background:#672082}.blog .featured-slider .entry-cats a:focus,.blog .featured-slider .entry-cats a:hover,.blog .featured-slider .entry-meta a:focus,.blog .featured-slider .entry-meta a:hover{color:#fff;background:#f80}.featured-slider .entry-cats a,.section-one-column-one .entry-cats a,.section-three-column-one .entry-cats a,#front-section-four .entry-cats a,.single-post .entry-cats a,.post-navigation a,.pagebreak-links a,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a{background:#672082;color:#fff}.featured-slider .entry-cats a:focus,.featured-slider .entry-cats a:hover,.section-one-column-one .entry-cats a:focus,.section-one-column-one .entry-cats a:hover,.section-three-column-one .entry-cats a:focus,.section-three-column-one .entry-cats a:hover,#front-section-four .entry-cats a:focus,#front-section-four .entry-cats a:hover,.single-post .entry-cats a:focus,.single-post .entry-cats a:hover,.post-navigation a:focus,.post-navigation a:hover,.pagebreak-links a:focus,.pagebreak-links a:hover,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:focus,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover{background:#f80;color:#fff}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta,.featured-slider .entry-meta{color:#fff}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta a,.featured-slider .entry-meta a{color:#fff}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .post-navigation a,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .pagebreak-links a,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.featured-slider .post-navigation a,.featured-slider .pagebreak-links a,.featured-slider .entry-cats a{color:#fff}body.head-bgcol-main .sticky-header,body.head-bgcol-main #masthead{background-color:#f80;border-bottom-color:rgba(255,136,0,0.7)}body.head-bgcol-main #site-branding{background-color:#f80}body.head-textcol-main .search-open,body.head-textcol-main #overlay-open,body.head-textcol-main #overlay-open-sticky{color:#f80}body.head-textcol-main #masthead #desktop-navigation ul.menu li a,body.head-textcol-main #masthead p.site-title,body.head-textcol-main #masthead p.site-title a,body.head-textcol-main #masthead h1.site-title,body.head-textcol-main #masthead h1.site-title a,body.head-textcol-main #masthead p.site-description{color:#f80}body.head-linkborder-main #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-main #desktop-navigation ul.menu li.focus a,body.head-linkborder-main #desktop-navigation ul.menu li:focus a,body.head-linkborder-main #desktop-navigation ul.menu li:hover a{border-bottom-color:#f80}body.head-linkborder-main #desktop-navigation .sub-menu li a:focus,body.head-linkborder-main #desktop-navigation .children li a:focus,body.head-linkborder-main #desktop-navigation .sub-menu li a:hover,body.head-linkborder-main #desktop-navigation .children li a:hover{background-color:#f80}body.head-linkborder-main button#overlay-open:hover,body.head-linkborder-main button#search-open:hover{color:#f80}body.main-bgcol-main{background-color:#f80}body.main-bgcol-main .site-content header,body.main-bgcol-main .entry-content header,body.main-bgcol-main blockquote,body.main-bgcol-main.blog .hentry .entry-cats,body.main-bgcol-main.blog .hentry .entry-cats a,body.main-bgcol-main.blog .featured-slider .entry-meta a,body.main-bgcol-main.single-post .entry-header .entry-cats a,body.main-bgcol-main main{background-color:#f80}body.main-bgcol-main.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-main .gallery .slick-prev:before,body.actionbutton-main .gallery .slick-next:before,body.actionbutton-main .gallery .slick-dots li.slick-active button:before,body.actionbutton-main .gallery .slick-dots li.slick-active button:before,body.actionbutton-main .gallery .slick-dots li button:hover:before,body.actionbutton-main .gallery .slick-dots li button:focus:before,body.actionbutton-main .desktop-search input.search-field{border-bottom-color:#f80}body.actionbutton-main .comments-show #comments-toggle,body.actionbutton-main #comments-toggle:focus,body.actionbutton-main #comments-toggle:hover,body.actionbutton-main input[type="button"],body.actionbutton-main input[type="submit"],body.actionbutton-main input#submit,body.actionbutton-main #commentform input#submit{border-color:#f80;background-color:#f80}body.head-bgcol-second .sticky-header,body.head-bgcol-second #masthead{background-color:#672082;border-bottom-color:rgba(103,32,130,0.7)}body.head-bgcol-second #site-branding{background-color:#672082}body.head-textcol-second .search-open,body.head-textcol-second #overlay-open,body.head-textcol-second #overlay-open-sticky{color:#672082}body.head-textcol-second #masthead #desktop-navigation ul.menu li a,body.head-textcol-second #masthead p.site-title,body.head-textcol-second #masthead p.site-title a,body.head-textcol-second #masthead h1.site-title,body.head-textcol-second #masthead h1.site-title a,body.head-textcol-second #masthead p.site-description{color:#672082}body.head-linkborder-second #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-second #desktop-navigation ul.menu li.focus a,body.head-linkborder-second #desktop-navigation ul.menu li:focus a,body.head-linkborder-second #desktop-navigation ul.menu li:hover a{border-bottom-color:#672082}body.head-linkborder-second #desktop-navigation .sub-menu li a:focus,body.head-linkborder-second #desktop-navigation .children li a:focus,body.head-linkborder-second #desktop-navigation .sub-menu li a:hover,body.head-linkborder-second #desktop-navigation .children li a:hover{background-color:#672082}body.head-linkborder-second button#overlay-open:hover,body.head-linkborder-second button#search-open:hover{color:#672082}body.main-bgcol-second{background-color:#672082}body.main-bgcol-second .site-content header,body.main-bgcol-second .entry-content header,body.main-bgcol-second blockquote,body.main-bgcol-second.blog .hentry .entry-cats,body.main-bgcol-second.blog .hentry .entry-cats a,body.main-bgcol-second.blog .featured-slider .entry-meta a,body.main-bgcol-second.single-post .entry-header .entry-cats a,body.main-bgcol-second main{background-color:#672082}body.main-bgcol-second.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-second .gallery .slick-prev:before,body.actionbutton-second .gallery .slick-next:before,body.actionbutton-second .gallery .slick-dots li.slick-active button:before,body.actionbutton-second .gallery .slick-dots li.slick-active button:before,body.actionbutton-second .gallery .slick-dots li button:hover:before,body.actionbutton-second .gallery .slick-dots li button:focus:before,body.actionbutton-second .desktop-search input.search-field{border-bottom-color:#672082}body.actionbutton-second .comments-show #comments-toggle,body.actionbutton-second #comments-toggle:focus,body.actionbutton-second #comments-toggle:hover,body.actionbutton-second input[type="button"],body.actionbutton-second input[type="submit"],body.actionbutton-second input#submit,body.actionbutton-second #commentform input#submit{border-color:#672082;background-color:#672082}body.head-bgcol-third .sticky-header,body.head-bgcol-third #masthead{background-color:#698bc1;border-bottom-color:rgba(105,139,193,0.7)}body.head-bgcol-third #site-branding{background-color:#698bc1}body.head-textcol-third .search-open,body.head-textcol-third #overlay-open,body.head-textcol-third #overlay-open-sticky{color:#698bc1}body.head-textcol-third #masthead #desktop-navigation ul.menu li a,body.head-textcol-third #masthead p.site-title,body.head-textcol-third #masthead p.site-title a,body.head-textcol-third #masthead h1.site-title,body.head-textcol-third #masthead h1.site-title a,body.head-textcol-third #masthead p.site-description{color:#698bc1}body.head-linkborder-third #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-third #desktop-navigation ul.menu li.focus a,body.head-linkborder-third #desktop-navigation ul.menu li:focus a,body.head-linkborder-third #desktop-navigation ul.menu li:hover a{border-bottom-color:#698bc1}body.head-linkborder-third #desktop-navigation .sub-menu li a:focus,body.head-linkborder-third #desktop-navigation .children li a:focus,body.head-linkborder-third #desktop-navigation .sub-menu li a:hover,body.head-linkborder-third #desktop-navigation .children li a:hover{background-color:#698bc1}body.head-linkborder-third button#overlay-open:hover,body.head-linkborder-third button#search-open:hover{color:#698bc1}body.main-bgcol-third{background-color:#698bc1}body.main-bgcol-third .site-content header,body.main-bgcol-third .entry-content header,body.main-bgcol-third blockquote,body.main-bgcol-third.blog .hentry .entry-cats,body.main-bgcol-third.blog .hentry .entry-cats a,body.main-bgcol-third.blog .featured-slider .entry-meta a,body.main-bgcol-third.single-post .entry-header .entry-cats a,body.main-bgcol-third main{background-color:#698bc1}body.main-bgcol-third.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-third .gallery .slick-prev:before,body.actionbutton-third .gallery .slick-next:before,body.actionbutton-third .gallery .slick-dots li.slick-active button:before,body.actionbutton-third .gallery .slick-dots li.slick-active button:before,body.actionbutton-third .gallery .slick-dots li button:hover:before,body.actionbutton-third .gallery .slick-dots li button:focus:before,body.actionbutton-third .desktop-search input.search-field{border-bottom-color:#698bc1}body.actionbutton-third .comments-show #comments-toggle,body.actionbutton-third #comments-toggle:focus,body.actionbutton-third #comments-toggle:hover,body.actionbutton-third input[type="button"],body.actionbutton-third input[type="submit"],body.actionbutton-third input#submit,body.actionbutton-third #commentform input#submit{border-color:#698bc1;background-color:#698bc1}body.head-bgcol-four .sticky-header,body.head-bgcol-four #masthead{background-color:#148f93;border-bottom-color:rgba(20,143,147,0.7)}body.head-bgcol-four #site-branding{background-color:#148f93}body.head-textcol-four .search-open,body.head-textcol-four #overlay-open,body.head-textcol-four #overlay-open-sticky{color:#148f93}body.head-textcol-four #masthead #desktop-navigation ul.menu li a,body.head-textcol-four #masthead p.site-title,body.head-textcol-four #masthead p.site-title a,body.head-textcol-four #masthead h1.site-title,body.head-textcol-four #masthead h1.site-title a,body.head-textcol-four #masthead p.site-description{color:#148f93}body.head-linkborder-four #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-four #desktop-navigation ul.menu li.focus a,body.head-linkborder-four #desktop-navigation ul.menu li:focus a,body.head-linkborder-four #desktop-navigation ul.menu li:hover a{border-bottom-color:#148f93}body.head-linkborder-four #desktop-navigation .sub-menu li a:focus,body.head-linkborder-four #desktop-navigation .children li a:focus,body.head-linkborder-four #desktop-navigation .sub-menu li a:hover,body.head-linkborder-four #desktop-navigation .children li a:hover{background-color:#148f93}body.head-linkborder-four button#overlay-open:hover,body.head-linkborder-four button#search-open:hover{color:#148f93}body.main-bgcol-four{background-color:#148f93}body.main-bgcol-four .site-content header,body.main-bgcol-four .entry-content header,body.main-bgcol-four blockquote,body.main-bgcol-four.blog .hentry .entry-cats,body.main-bgcol-four.blog .hentry .entry-cats a,body.main-bgcol-four.blog .featured-slider .entry-meta a,body.main-bgcol-four.single-post .entry-header .entry-cats a,body.main-bgcol-four main{background-color:#148f93}body.main-bgcol-four.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-four .gallery .slick-prev:before,body.actionbutton-four .gallery .slick-next:before,body.actionbutton-four .gallery .slick-dots li.slick-active button:before,body.actionbutton-four .gallery .slick-dots li.slick-active button:before,body.actionbutton-four .gallery .slick-dots li button:hover:before,body.actionbutton-four .gallery .slick-dots li button:focus:before,body.actionbutton-four .desktop-search input.search-field{border-bottom-color:#148f93}body.actionbutton-four .comments-show #comments-toggle,body.actionbutton-four #comments-toggle:focus,body.actionbutton-four #comments-toggle:hover,body.actionbutton-four input[type="button"],body.actionbutton-four input[type="submit"],body.actionbutton-four input#submit,body.actionbutton-four #commentform input#submit{border-color:#148f93;background-color:#148f93}body.head-bgcol-uspirates .sticky-header,body.head-bgcol-uspirates #masthead{background-color:#B127AF;border-bottom-color:rgba(177,39,175,0.7)}body.head-bgcol-uspirates #site-branding{background-color:#B127AF}body.head-textcol-uspirates .search-open,body.head-textcol-uspirates #overlay-open,body.head-textcol-uspirates #overlay-open-sticky{color:#B127AF}body.head-textcol-uspirates #masthead #desktop-navigation ul.menu li a,body.head-textcol-uspirates #masthead p.site-title,body.head-textcol-uspirates #masthead p.site-title a,body.head-textcol-uspirates #masthead h1.site-title,body.head-textcol-uspirates #masthead h1.site-title a,body.head-textcol-uspirates #masthead p.site-description{color:#B127AF}body.head-linkborder-uspirates #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-uspirates #desktop-navigation ul.menu li.focus a,body.head-linkborder-uspirates #desktop-navigation ul.menu li:focus a,body.head-linkborder-uspirates #desktop-navigation ul.menu li:hover a{border-bottom-color:#B127AF}body.head-linkborder-uspirates #desktop-navigation .sub-menu li a:focus,body.head-linkborder-uspirates #desktop-navigation .children li a:focus,body.head-linkborder-uspirates #desktop-navigation .sub-menu li a:hover,body.head-linkborder-uspirates #desktop-navigation .children li a:hover{background-color:#B127AF}body.head-linkborder-uspirates button#overlay-open:hover,body.head-linkborder-uspirates button#search-open:hover{color:#B127AF}body.main-bgcol-uspirates{background-color:#B127AF}body.main-bgcol-uspirates .site-content header,body.main-bgcol-uspirates .entry-content header,body.main-bgcol-uspirates blockquote,body.main-bgcol-uspirates.blog .hentry .entry-cats,body.main-bgcol-uspirates.blog .hentry .entry-cats a,body.main-bgcol-uspirates.blog .featured-slider .entry-meta a,body.main-bgcol-uspirates.single-post .entry-header .entry-cats a,body.main-bgcol-uspirates main{background-color:#B127AF}body.main-bgcol-uspirates.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-uspirates .gallery .slick-prev:before,body.actionbutton-uspirates .gallery .slick-next:before,body.actionbutton-uspirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-uspirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-uspirates .gallery .slick-dots li button:hover:before,body.actionbutton-uspirates .gallery .slick-dots li button:focus:before,body.actionbutton-uspirates .desktop-search input.search-field{border-bottom-color:#B127AF}body.actionbutton-uspirates .comments-show #comments-toggle,body.actionbutton-uspirates #comments-toggle:focus,body.actionbutton-uspirates #comments-toggle:hover,body.actionbutton-uspirates input[type="button"],body.actionbutton-uspirates input[type="submit"],body.actionbutton-uspirates input#submit,body.actionbutton-uspirates #commentform input#submit{border-color:#B127AF;background-color:#B127AF}body.head-bgcol-tkpirates .sticky-header,body.head-bgcol-tkpirates #masthead{background-color:#00B5B1;border-bottom-color:rgba(0,181,177,0.7)}body.head-bgcol-tkpirates #site-branding{background-color:#00B5B1}body.head-textcol-tkpirates .search-open,body.head-textcol-tkpirates #overlay-open,body.head-textcol-tkpirates #overlay-open-sticky{color:#00B5B1}body.head-textcol-tkpirates #masthead #desktop-navigation ul.menu li a,body.head-textcol-tkpirates #masthead p.site-title,body.head-textcol-tkpirates #masthead p.site-title a,body.head-textcol-tkpirates #masthead h1.site-title,body.head-textcol-tkpirates #masthead h1.site-title a,body.head-textcol-tkpirates #masthead p.site-description{color:#00B5B1}body.head-linkborder-tkpirates #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-tkpirates #desktop-navigation ul.menu li.focus a,body.head-linkborder-tkpirates #desktop-navigation ul.menu li:focus a,body.head-linkborder-tkpirates #desktop-navigation ul.menu li:hover a{border-bottom-color:#00B5B1}body.head-linkborder-tkpirates #desktop-navigation .sub-menu li a:focus,body.head-linkborder-tkpirates #desktop-navigation .children li a:focus,body.head-linkborder-tkpirates #desktop-navigation .sub-menu li a:hover,body.head-linkborder-tkpirates #desktop-navigation .children li a:hover{background-color:#00B5B1}body.head-linkborder-tkpirates button#overlay-open:hover,body.head-linkborder-tkpirates button#search-open:hover{color:#00B5B1}body.main-bgcol-tkpirates{background-color:#00B5B1}body.main-bgcol-tkpirates .site-content header,body.main-bgcol-tkpirates .entry-content header,body.main-bgcol-tkpirates blockquote,body.main-bgcol-tkpirates.blog .hentry .entry-cats,body.main-bgcol-tkpirates.blog .hentry .entry-cats a,body.main-bgcol-tkpirates.blog .featured-slider .entry-meta a,body.main-bgcol-tkpirates.single-post .entry-header .entry-cats a,body.main-bgcol-tkpirates main{background-color:#00B5B1}body.main-bgcol-tkpirates.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-tkpirates .gallery .slick-prev:before,body.actionbutton-tkpirates .gallery .slick-next:before,body.actionbutton-tkpirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-tkpirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-tkpirates .gallery .slick-dots li button:hover:before,body.actionbutton-tkpirates .gallery .slick-dots li button:focus:before,body.actionbutton-tkpirates .desktop-search input.search-field{border-bottom-color:#00B5B1}body.actionbutton-tkpirates .comments-show #comments-toggle,body.actionbutton-tkpirates #comments-toggle:focus,body.actionbutton-tkpirates #comments-toggle:hover,body.actionbutton-tkpirates input[type="button"],body.actionbutton-tkpirates input[type="submit"],body.actionbutton-tkpirates input#submit,body.actionbutton-tkpirates #commentform input#submit{border-color:#00B5B1;background-color:#00B5B1}body.head-bgcol-chpirates .sticky-header,body.head-bgcol-chpirates #masthead{background-color:#F9B200;border-bottom-color:rgba(249,178,0,0.7)}body.head-bgcol-chpirates #site-branding{background-color:#F9B200}body.head-textcol-chpirates .search-open,body.head-textcol-chpirates #overlay-open,body.head-textcol-chpirates #overlay-open-sticky{color:#F9B200}body.head-textcol-chpirates #masthead #desktop-navigation ul.menu li a,body.head-textcol-chpirates #masthead p.site-title,body.head-textcol-chpirates #masthead p.site-title a,body.head-textcol-chpirates #masthead h1.site-title,body.head-textcol-chpirates #masthead h1.site-title a,body.head-textcol-chpirates #masthead p.site-description{color:#F9B200}body.head-linkborder-chpirates #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-chpirates #desktop-navigation ul.menu li.focus a,body.head-linkborder-chpirates #desktop-navigation ul.menu li:focus a,body.head-linkborder-chpirates #desktop-navigation ul.menu li:hover a{border-bottom-color:#F9B200}body.head-linkborder-chpirates #desktop-navigation .sub-menu li a:focus,body.head-linkborder-chpirates #desktop-navigation .children li a:focus,body.head-linkborder-chpirates #desktop-navigation .sub-menu li a:hover,body.head-linkborder-chpirates #desktop-navigation .children li a:hover{background-color:#F9B200}body.head-linkborder-chpirates button#overlay-open:hover,body.head-linkborder-chpirates button#search-open:hover{color:#F9B200}body.main-bgcol-chpirates{background-color:#F9B200}body.main-bgcol-chpirates .site-content header,body.main-bgcol-chpirates .entry-content header,body.main-bgcol-chpirates blockquote,body.main-bgcol-chpirates.blog .hentry .entry-cats,body.main-bgcol-chpirates.blog .hentry .entry-cats a,body.main-bgcol-chpirates.blog .featured-slider .entry-meta a,body.main-bgcol-chpirates.single-post .entry-header .entry-cats a,body.main-bgcol-chpirates main{background-color:#F9B200}body.main-bgcol-chpirates.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-chpirates .gallery .slick-prev:before,body.actionbutton-chpirates .gallery .slick-next:before,body.actionbutton-chpirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-chpirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-chpirates .gallery .slick-dots li button:hover:before,body.actionbutton-chpirates .gallery .slick-dots li button:focus:before,body.actionbutton-chpirates .desktop-search input.search-field{border-bottom-color:#F9B200}body.actionbutton-chpirates .comments-show #comments-toggle,body.actionbutton-chpirates #comments-toggle:focus,body.actionbutton-chpirates #comments-toggle:hover,body.actionbutton-chpirates input[type="button"],body.actionbutton-chpirates input[type="submit"],body.actionbutton-chpirates input#submit,body.actionbutton-chpirates #commentform input#submit{border-color:#F9B200;background-color:#F9B200}body.head-bgcol-ispirates .sticky-header,body.head-bgcol-ispirates #masthead{background-color:#51297e;border-bottom-color:rgba(81,41,126,0.7)}body.head-bgcol-ispirates #site-branding{background-color:#51297e}body.head-textcol-ispirates .search-open,body.head-textcol-ispirates #overlay-open,body.head-textcol-ispirates #overlay-open-sticky{color:#51297e}body.head-textcol-ispirates #masthead #desktop-navigation ul.menu li a,body.head-textcol-ispirates #masthead p.site-title,body.head-textcol-ispirates #masthead p.site-title a,body.head-textcol-ispirates #masthead h1.site-title,body.head-textcol-ispirates #masthead h1.site-title a,body.head-textcol-ispirates #masthead p.site-description{color:#51297e}body.head-linkborder-ispirates #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-ispirates #desktop-navigation ul.menu li.focus a,body.head-linkborder-ispirates #desktop-navigation ul.menu li:focus a,body.head-linkborder-ispirates #desktop-navigation ul.menu li:hover a{border-bottom-color:#51297e}body.head-linkborder-ispirates #desktop-navigation .sub-menu li a:focus,body.head-linkborder-ispirates #desktop-navigation .children li a:focus,body.head-linkborder-ispirates #desktop-navigation .sub-menu li a:hover,body.head-linkborder-ispirates #desktop-navigation .children li a:hover{background-color:#51297e}body.head-linkborder-ispirates button#overlay-open:hover,body.head-linkborder-ispirates button#search-open:hover{color:#51297e}body.main-bgcol-ispirates{background-color:#51297e}body.main-bgcol-ispirates .site-content header,body.main-bgcol-ispirates .entry-content header,body.main-bgcol-ispirates blockquote,body.main-bgcol-ispirates.blog .hentry .entry-cats,body.main-bgcol-ispirates.blog .hentry .entry-cats a,body.main-bgcol-ispirates.blog .featured-slider .entry-meta a,body.main-bgcol-ispirates.single-post .entry-header .entry-cats a,body.main-bgcol-ispirates main{background-color:#51297e}body.main-bgcol-ispirates.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-ispirates .gallery .slick-prev:before,body.actionbutton-ispirates .gallery .slick-next:before,body.actionbutton-ispirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-ispirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-ispirates .gallery .slick-dots li button:hover:before,body.actionbutton-ispirates .gallery .slick-dots li button:focus:before,body.actionbutton-ispirates .desktop-search input.search-field{border-bottom-color:#51297e}body.actionbutton-ispirates .comments-show #comments-toggle,body.actionbutton-ispirates #comments-toggle:focus,body.actionbutton-ispirates #comments-toggle:hover,body.actionbutton-ispirates input[type="button"],body.actionbutton-ispirates input[type="submit"],body.actionbutton-ispirates input#submit,body.actionbutton-ispirates #commentform input#submit{border-color:#51297e;background-color:#51297e}body.head-bgcol-black .sticky-header,body.head-bgcol-black #masthead{background-color:#000;border-bottom-color:rgba(0,0,0,0.7)}body.head-bgcol-black #site-branding{background-color:#000}body.head-textcol-black .search-open,body.head-textcol-black #overlay-open,body.head-textcol-black #overlay-open-sticky{color:#000}body.head-textcol-black #masthead #desktop-navigation ul.menu li a,body.head-textcol-black #masthead p.site-title,body.head-textcol-black #masthead p.site-title a,body.head-textcol-black #masthead h1.site-title,body.head-textcol-black #masthead h1.site-title a,body.head-textcol-black #masthead p.site-description{color:#000}body.head-linkborder-black #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-black #desktop-navigation ul.menu li.focus a,body.head-linkborder-black #desktop-navigation ul.menu li:focus a,body.head-linkborder-black #desktop-navigation ul.menu li:hover a{border-bottom-color:#000}body.head-linkborder-black #desktop-navigation .sub-menu li a:focus,body.head-linkborder-black #desktop-navigation .children li a:focus,body.head-linkborder-black #desktop-navigation .sub-menu li a:hover,body.head-linkborder-black #desktop-navigation .children li a:hover{background-color:#000}body.head-linkborder-black button#overlay-open:hover,body.head-linkborder-black button#search-open:hover{color:#000}body.main-bgcol-black{background-color:#000}body.main-bgcol-black .site-content header,body.main-bgcol-black .entry-content header,body.main-bgcol-black blockquote,body.main-bgcol-black.blog .hentry .entry-cats,body.main-bgcol-black.blog .hentry .entry-cats a,body.main-bgcol-black.blog .featured-slider .entry-meta a,body.main-bgcol-black.single-post .entry-header .entry-cats a,body.main-bgcol-black main{background-color:#000}body.main-bgcol-black.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-black .gallery .slick-prev:before,body.actionbutton-black .gallery .slick-next:before,body.actionbutton-black .gallery .slick-dots li.slick-active button:before,body.actionbutton-black .gallery .slick-dots li.slick-active button:before,body.actionbutton-black .gallery .slick-dots li button:hover:before,body.actionbutton-black .gallery .slick-dots li button:focus:before,body.actionbutton-black .desktop-search input.search-field{border-bottom-color:#000}body.actionbutton-black .comments-show #comments-toggle,body.actionbutton-black #comments-toggle:focus,body.actionbutton-black #comments-toggle:hover,body.actionbutton-black input[type="button"],body.actionbutton-black input[type="submit"],body.actionbutton-black input#submit,body.actionbutton-black #commentform input#submit{border-color:#000;background-color:#000}body.head-bgcol-white .sticky-header,body.head-bgcol-white #masthead{background-color:#fff;border-bottom-color:rgba(255,255,255,0.7)}body.head-bgcol-white #site-branding{background-color:#fff}body.head-textcol-white .search-open,body.head-textcol-white #overlay-open,body.head-textcol-white #overlay-open-sticky{color:#fff}body.head-textcol-white #masthead #desktop-navigation ul.menu li a,body.head-textcol-white #masthead p.site-title,body.head-textcol-white #masthead p.site-title a,body.head-textcol-white #masthead h1.site-title,body.head-textcol-white #masthead h1.site-title a,body.head-textcol-white #masthead p.site-description{color:#fff}body.head-linkborder-white #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-white #desktop-navigation ul.menu li.focus a,body.head-linkborder-white #desktop-navigation ul.menu li:focus a,body.head-linkborder-white #desktop-navigation ul.menu li:hover a{border-bottom-color:#fff}body.head-linkborder-white #desktop-navigation .sub-menu li a:focus,body.head-linkborder-white #desktop-navigation .children li a:focus,body.head-linkborder-white #desktop-navigation .sub-menu li a:hover,body.head-linkborder-white #desktop-navigation .children li a:hover{background-color:#fff}body.head-linkborder-white button#overlay-open:hover,body.head-linkborder-white button#search-open:hover{color:#fff}body.main-bgcol-white{background-color:#fff}body.main-bgcol-white .site-content header,body.main-bgcol-white .entry-content header,body.main-bgcol-white blockquote,body.main-bgcol-white.blog .hentry .entry-cats,body.main-bgcol-white.blog .hentry .entry-cats a,body.main-bgcol-white.blog .featured-slider .entry-meta a,body.main-bgcol-white.single-post .entry-header .entry-cats a,body.main-bgcol-white main{background-color:#fff}body.main-bgcol-white.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-white .gallery .slick-prev:before,body.actionbutton-white .gallery .slick-next:before,body.actionbutton-white .gallery .slick-dots li.slick-active button:before,body.actionbutton-white .gallery .slick-dots li.slick-active button:before,body.actionbutton-white .gallery .slick-dots li button:hover:before,body.actionbutton-white .gallery .slick-dots li button:focus:before,body.actionbutton-white .desktop-search input.search-field{border-bottom-color:#fff}body.actionbutton-white .comments-show #comments-toggle,body.actionbutton-white #comments-toggle:focus,body.actionbutton-white #comments-toggle:hover,body.actionbutton-white input[type="button"],body.actionbutton-white input[type="submit"],body.actionbutton-white input#submit,body.actionbutton-white #commentform input#submit{border-color:#fff;background-color:#fff}body.head-bgcol-grey .sticky-header,body.head-bgcol-grey #masthead{background-color:#e7e7eb;border-bottom-color:rgba(231,231,235,0.7)}body.head-bgcol-grey #site-branding{background-color:#e7e7eb}body.head-textcol-grey .search-open,body.head-textcol-grey #overlay-open,body.head-textcol-grey #overlay-open-sticky{color:#e7e7eb}body.head-textcol-grey #masthead #desktop-navigation ul.menu li a,body.head-textcol-grey #masthead p.site-title,body.head-textcol-grey #masthead p.site-title a,body.head-textcol-grey #masthead h1.site-title,body.head-textcol-grey #masthead h1.site-title a,body.head-textcol-grey #masthead p.site-description{color:#e7e7eb}body.head-linkborder-grey #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-grey #desktop-navigation ul.menu li.focus a,body.head-linkborder-grey #desktop-navigation ul.menu li:focus a,body.head-linkborder-grey #desktop-navigation ul.menu li:hover a{border-bottom-color:#e7e7eb}body.head-linkborder-grey #desktop-navigation .sub-menu li a:focus,body.head-linkborder-grey #desktop-navigation .children li a:focus,body.head-linkborder-grey #desktop-navigation .sub-menu li a:hover,body.head-linkborder-grey #desktop-navigation .children li a:hover{background-color:#e7e7eb}body.head-linkborder-grey button#overlay-open:hover,body.head-linkborder-grey button#search-open:hover{color:#e7e7eb}body.main-bgcol-grey{background-color:#e7e7eb}body.main-bgcol-grey .site-content header,body.main-bgcol-grey .entry-content header,body.main-bgcol-grey blockquote,body.main-bgcol-grey.blog .hentry .entry-cats,body.main-bgcol-grey.blog .hentry .entry-cats a,body.main-bgcol-grey.blog .featured-slider .entry-meta a,body.main-bgcol-grey.single-post .entry-header .entry-cats a,body.main-bgcol-grey main{background-color:#e7e7eb}body.main-bgcol-grey.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-grey .gallery .slick-prev:before,body.actionbutton-grey .gallery .slick-next:before,body.actionbutton-grey .gallery .slick-dots li.slick-active button:before,body.actionbutton-grey .gallery .slick-dots li.slick-active button:before,body.actionbutton-grey .gallery .slick-dots li button:hover:before,body.actionbutton-grey .gallery .slick-dots li button:focus:before,body.actionbutton-grey .desktop-search input.search-field{border-bottom-color:#e7e7eb}body.actionbutton-grey .comments-show #comments-toggle,body.actionbutton-grey #comments-toggle:focus,body.actionbutton-grey #comments-toggle:hover,body.actionbutton-grey input[type="button"],body.actionbutton-grey input[type="submit"],body.actionbutton-grey input#submit,body.actionbutton-grey #commentform input#submit{border-color:#e7e7eb;background-color:#e7e7eb}body.head-bgcol-darkgrey .sticky-header,body.head-bgcol-darkgrey #masthead{background-color:#1a1a1a;border-bottom-color:rgba(26,26,26,0.7)}body.head-bgcol-darkgrey #site-branding{background-color:#1a1a1a}body.head-textcol-darkgrey .search-open,body.head-textcol-darkgrey #overlay-open,body.head-textcol-darkgrey #overlay-open-sticky{color:#1a1a1a}body.head-textcol-darkgrey #masthead #desktop-navigation ul.menu li a,body.head-textcol-darkgrey #masthead p.site-title,body.head-textcol-darkgrey #masthead p.site-title a,body.head-textcol-darkgrey #masthead h1.site-title,body.head-textcol-darkgrey #masthead h1.site-title a,body.head-textcol-darkgrey #masthead p.site-description{color:#1a1a1a}body.head-linkborder-darkgrey #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-darkgrey #desktop-navigation ul.menu li.focus a,body.head-linkborder-darkgrey #desktop-navigation ul.menu li:focus a,body.head-linkborder-darkgrey #desktop-navigation ul.menu li:hover a{border-bottom-color:#1a1a1a}body.head-linkborder-darkgrey #desktop-navigation .sub-menu li a:focus,body.head-linkborder-darkgrey #desktop-navigation .children li a:focus,body.head-linkborder-darkgrey #desktop-navigation .sub-menu li a:hover,body.head-linkborder-darkgrey #desktop-navigation .children li a:hover{background-color:#1a1a1a}body.head-linkborder-darkgrey button#overlay-open:hover,body.head-linkborder-darkgrey button#search-open:hover{color:#1a1a1a}body.main-bgcol-darkgrey{background-color:#1a1a1a}body.main-bgcol-darkgrey .site-content header,body.main-bgcol-darkgrey .entry-content header,body.main-bgcol-darkgrey blockquote,body.main-bgcol-darkgrey.blog .hentry .entry-cats,body.main-bgcol-darkgrey.blog .hentry .entry-cats a,body.main-bgcol-darkgrey.blog .featured-slider .entry-meta a,body.main-bgcol-darkgrey.single-post .entry-header .entry-cats a,body.main-bgcol-darkgrey main{background-color:#1a1a1a}body.main-bgcol-darkgrey.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-darkgrey .gallery .slick-prev:before,body.actionbutton-darkgrey .gallery .slick-next:before,body.actionbutton-darkgrey .gallery .slick-dots li.slick-active button:before,body.actionbutton-darkgrey .gallery .slick-dots li.slick-active button:before,body.actionbutton-darkgrey .gallery .slick-dots li button:hover:before,body.actionbutton-darkgrey .gallery .slick-dots li button:focus:before,body.actionbutton-darkgrey .desktop-search input.search-field{border-bottom-color:#1a1a1a}body.actionbutton-darkgrey .comments-show #comments-toggle,body.actionbutton-darkgrey #comments-toggle:focus,body.actionbutton-darkgrey #comments-toggle:hover,body.actionbutton-darkgrey input[type="button"],body.actionbutton-darkgrey input[type="submit"],body.actionbutton-darkgrey input#submit,body.actionbutton-darkgrey #commentform input#submit{border-color:#1a1a1a;background-color:#1a1a1a}body.head-bgcol-blue .sticky-header,body.head-bgcol-blue #masthead{background-color:#06f;border-bottom-color:rgba(0,102,255,0.7)}body.head-bgcol-blue #site-branding{background-color:#06f}body.head-textcol-blue .search-open,body.head-textcol-blue #overlay-open,body.head-textcol-blue #overlay-open-sticky{color:#06f}body.head-textcol-blue #masthead #desktop-navigation ul.menu li a,body.head-textcol-blue #masthead p.site-title,body.head-textcol-blue #masthead p.site-title a,body.head-textcol-blue #masthead h1.site-title,body.head-textcol-blue #masthead h1.site-title a,body.head-textcol-blue #masthead p.site-description{color:#06f}body.head-linkborder-blue #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-blue #desktop-navigation ul.menu li.focus a,body.head-linkborder-blue #desktop-navigation ul.menu li:focus a,body.head-linkborder-blue #desktop-navigation ul.menu li:hover a{border-bottom-color:#06f}body.head-linkborder-blue #desktop-navigation .sub-menu li a:focus,body.head-linkborder-blue #desktop-navigation .children li a:focus,body.head-linkborder-blue #desktop-navigation .sub-menu li a:hover,body.head-linkborder-blue #desktop-navigation .children li a:hover{background-color:#06f}body.head-linkborder-blue button#overlay-open:hover,body.head-linkborder-blue button#search-open:hover{color:#06f}body.main-bgcol-blue{background-color:#06f}body.main-bgcol-blue .site-content header,body.main-bgcol-blue .entry-content header,body.main-bgcol-blue blockquote,body.main-bgcol-blue.blog .hentry .entry-cats,body.main-bgcol-blue.blog .hentry .entry-cats a,body.main-bgcol-blue.blog .featured-slider .entry-meta a,body.main-bgcol-blue.single-post .entry-header .entry-cats a,body.main-bgcol-blue main{background-color:#06f}body.main-bgcol-blue.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-blue .gallery .slick-prev:before,body.actionbutton-blue .gallery .slick-next:before,body.actionbutton-blue .gallery .slick-dots li.slick-active button:before,body.actionbutton-blue .gallery .slick-dots li.slick-active button:before,body.actionbutton-blue .gallery .slick-dots li button:hover:before,body.actionbutton-blue .gallery .slick-dots li button:focus:before,body.actionbutton-blue .desktop-search input.search-field{border-bottom-color:#06f}body.actionbutton-blue .comments-show #comments-toggle,body.actionbutton-blue #comments-toggle:focus,body.actionbutton-blue #comments-toggle:hover,body.actionbutton-blue input[type="button"],body.actionbutton-blue input[type="submit"],body.actionbutton-blue input#submit,body.actionbutton-blue #commentform input#submit{border-color:#06f;background-color:#06f}body.head-bgcol-red .sticky-header,body.head-bgcol-red #masthead{background-color:#d7464d;border-bottom-color:rgba(215,70,77,0.7)}body.head-bgcol-red #site-branding{background-color:#d7464d}body.head-textcol-red .search-open,body.head-textcol-red #overlay-open,body.head-textcol-red #overlay-open-sticky{color:#d7464d}body.head-textcol-red #masthead #desktop-navigation ul.menu li a,body.head-textcol-red #masthead p.site-title,body.head-textcol-red #masthead p.site-title a,body.head-textcol-red #masthead h1.site-title,body.head-textcol-red #masthead h1.site-title a,body.head-textcol-red #masthead p.site-description{color:#d7464d}body.head-linkborder-red #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-red #desktop-navigation ul.menu li.focus a,body.head-linkborder-red #desktop-navigation ul.menu li:focus a,body.head-linkborder-red #desktop-navigation ul.menu li:hover a{border-bottom-color:#d7464d}body.head-linkborder-red #desktop-navigation .sub-menu li a:focus,body.head-linkborder-red #desktop-navigation .children li a:focus,body.head-linkborder-red #desktop-navigation .sub-menu li a:hover,body.head-linkborder-red #desktop-navigation .children li a:hover{background-color:#d7464d}body.head-linkborder-red button#overlay-open:hover,body.head-linkborder-red button#search-open:hover{color:#d7464d}body.main-bgcol-red{background-color:#d7464d}body.main-bgcol-red .site-content header,body.main-bgcol-red .entry-content header,body.main-bgcol-red blockquote,body.main-bgcol-red.blog .hentry .entry-cats,body.main-bgcol-red.blog .hentry .entry-cats a,body.main-bgcol-red.blog .featured-slider .entry-meta a,body.main-bgcol-red.single-post .entry-header .entry-cats a,body.main-bgcol-red main{background-color:#d7464d}body.main-bgcol-red.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-red .gallery .slick-prev:before,body.actionbutton-red .gallery .slick-next:before,body.actionbutton-red .gallery .slick-dots li.slick-active button:before,body.actionbutton-red .gallery .slick-dots li.slick-active button:before,body.actionbutton-red .gallery .slick-dots li button:hover:before,body.actionbutton-red .gallery .slick-dots li button:focus:before,body.actionbutton-red .desktop-search input.search-field{border-bottom-color:#d7464d}body.actionbutton-red .comments-show #comments-toggle,body.actionbutton-red #comments-toggle:focus,body.actionbutton-red #comments-toggle:hover,body.actionbutton-red input[type="button"],body.actionbutton-red input[type="submit"],body.actionbutton-red input#submit,body.actionbutton-red #commentform input#submit{border-color:#d7464d;background-color:#d7464d}body.head-bgcol-yellow .sticky-header,body.head-bgcol-yellow #masthead{background-color:#e7b547;border-bottom-color:rgba(231,181,71,0.7)}body.head-bgcol-yellow #site-branding{background-color:#e7b547}body.head-textcol-yellow .search-open,body.head-textcol-yellow #overlay-open,body.head-textcol-yellow #overlay-open-sticky{color:#e7b547}body.head-textcol-yellow #masthead #desktop-navigation ul.menu li a,body.head-textcol-yellow #masthead p.site-title,body.head-textcol-yellow #masthead p.site-title a,body.head-textcol-yellow #masthead h1.site-title,body.head-textcol-yellow #masthead h1.site-title a,body.head-textcol-yellow #masthead p.site-description{color:#e7b547}body.head-linkborder-yellow #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-yellow #desktop-navigation ul.menu li.focus a,body.head-linkborder-yellow #desktop-navigation ul.menu li:focus a,body.head-linkborder-yellow #desktop-navigation ul.menu li:hover a{border-bottom-color:#e7b547}body.head-linkborder-yellow #desktop-navigation .sub-menu li a:focus,body.head-linkborder-yellow #desktop-navigation .children li a:focus,body.head-linkborder-yellow #desktop-navigation .sub-menu li a:hover,body.head-linkborder-yellow #desktop-navigation .children li a:hover{background-color:#e7b547}body.head-linkborder-yellow button#overlay-open:hover,body.head-linkborder-yellow button#search-open:hover{color:#e7b547}body.main-bgcol-yellow{background-color:#e7b547}body.main-bgcol-yellow .site-content header,body.main-bgcol-yellow .entry-content header,body.main-bgcol-yellow blockquote,body.main-bgcol-yellow.blog .hentry .entry-cats,body.main-bgcol-yellow.blog .hentry .entry-cats a,body.main-bgcol-yellow.blog .featured-slider .entry-meta a,body.main-bgcol-yellow.single-post .entry-header .entry-cats a,body.main-bgcol-yellow main{background-color:#e7b547}body.main-bgcol-yellow.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-yellow .gallery .slick-prev:before,body.actionbutton-yellow .gallery .slick-next:before,body.actionbutton-yellow .gallery .slick-dots li.slick-active button:before,body.actionbutton-yellow .gallery .slick-dots li.slick-active button:before,body.actionbutton-yellow .gallery .slick-dots li button:hover:before,body.actionbutton-yellow .gallery .slick-dots li button:focus:before,body.actionbutton-yellow .desktop-search input.search-field{border-bottom-color:#e7b547}body.actionbutton-yellow .comments-show #comments-toggle,body.actionbutton-yellow #comments-toggle:focus,body.actionbutton-yellow #comments-toggle:hover,body.actionbutton-yellow input[type="button"],body.actionbutton-yellow input[type="submit"],body.actionbutton-yellow input#submit,body.actionbutton-yellow #commentform input#submit{border-color:#e7b547;background-color:#e7b547}body.head-bgcol-green .sticky-header,body.head-bgcol-green #masthead{background-color:#85c066;border-bottom-color:rgba(133,192,102,0.7)}body.head-bgcol-green #site-branding{background-color:#85c066}body.head-textcol-green .search-open,body.head-textcol-green #overlay-open,body.head-textcol-green #overlay-open-sticky{color:#85c066}body.head-textcol-green #masthead #desktop-navigation ul.menu li a,body.head-textcol-green #masthead p.site-title,body.head-textcol-green #masthead p.site-title a,body.head-textcol-green #masthead h1.site-title,body.head-textcol-green #masthead h1.site-title a,body.head-textcol-green #masthead p.site-description{color:#85c066}body.head-linkborder-green #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-green #desktop-navigation ul.menu li.focus a,body.head-linkborder-green #desktop-navigation ul.menu li:focus a,body.head-linkborder-green #desktop-navigation ul.menu li:hover a{border-bottom-color:#85c066}body.head-linkborder-green #desktop-navigation .sub-menu li a:focus,body.head-linkborder-green #desktop-navigation .children li a:focus,body.head-linkborder-green #desktop-navigation .sub-menu li a:hover,body.head-linkborder-green #desktop-navigation .children li a:hover{background-color:#85c066}body.head-linkborder-green button#overlay-open:hover,body.head-linkborder-green button#search-open:hover{color:#85c066}body.main-bgcol-green{background-color:#85c066}body.main-bgcol-green .site-content header,body.main-bgcol-green .entry-content header,body.main-bgcol-green blockquote,body.main-bgcol-green.blog .hentry .entry-cats,body.main-bgcol-green.blog .hentry .entry-cats a,body.main-bgcol-green.blog .featured-slider .entry-meta a,body.main-bgcol-green.single-post .entry-header .entry-cats a,body.main-bgcol-green main{background-color:#85c066}body.main-bgcol-green.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-green .gallery .slick-prev:before,body.actionbutton-green .gallery .slick-next:before,body.actionbutton-green .gallery .slick-dots li.slick-active button:before,body.actionbutton-green .gallery .slick-dots li.slick-active button:before,body.actionbutton-green .gallery .slick-dots li button:hover:before,body.actionbutton-green .gallery .slick-dots li button:focus:before,body.actionbutton-green .desktop-search input.search-field{border-bottom-color:#85c066}body.actionbutton-green .comments-show #comments-toggle,body.actionbutton-green #comments-toggle:focus,body.actionbutton-green #comments-toggle:hover,body.actionbutton-green input[type="button"],body.actionbutton-green input[type="submit"],body.actionbutton-green input#submit,body.actionbutton-green #commentform input#submit{border-color:#85c066;background-color:#85c066}.main-headlinecol-main .entry-header h2.entry-title,.main-headlinecol-main .entry-header h2.entry-title a{color:#f80}.main-headlinecol-main main #secondary h2.widget-title,.main-headlinecol-main main #sidebar-page h2.widget-title,.main-headlinecol-main main h1,.main-headlinecol-main main h2,.main-headlinecol-main main h3,.main-headlinecol-main main h4,.main-headlinecol-main main h5,.main-headlinecol-main main h6{color:#f80}.main-headlinecol-second .entry-header h2.entry-title,.main-headlinecol-second .entry-header h2.entry-title a{color:#672082}.main-headlinecol-second main #secondary h2.widget-title,.main-headlinecol-second main #sidebar-page h2.widget-title,.main-headlinecol-second main h1,.main-headlinecol-second main h2,.main-headlinecol-second main h3,.main-headlinecol-second main h4,.main-headlinecol-second main h5,.main-headlinecol-second main h6{color:#672082}.main-headlinecol-third .entry-header h2.entry-title,.main-headlinecol-third .entry-header h2.entry-title a{color:#698bc1}.main-headlinecol-third main #secondary h2.widget-title,.main-headlinecol-third main #sidebar-page h2.widget-title,.main-headlinecol-third main h1,.main-headlinecol-third main h2,.main-headlinecol-third main h3,.main-headlinecol-third main h4,.main-headlinecol-third main h5,.main-headlinecol-third main h6{color:#698bc1}.main-headlinecol-four .entry-header h2.entry-title,.main-headlinecol-four .entry-header h2.entry-title a{color:#148f93}.main-headlinecol-four main #secondary h2.widget-title,.main-headlinecol-four main #sidebar-page h2.widget-title,.main-headlinecol-four main h1,.main-headlinecol-four main h2,.main-headlinecol-four main h3,.main-headlinecol-four main h4,.main-headlinecol-four main h5,.main-headlinecol-four main h6{color:#148f93}.main-headlinecol-uspirates .entry-header h2.entry-title,.main-headlinecol-uspirates .entry-header h2.entry-title a{color:#B127AF}.main-headlinecol-uspirates main #secondary h2.widget-title,.main-headlinecol-uspirates main #sidebar-page h2.widget-title,.main-headlinecol-uspirates main h1,.main-headlinecol-uspirates main h2,.main-headlinecol-uspirates main h3,.main-headlinecol-uspirates main h4,.main-headlinecol-uspirates main h5,.main-headlinecol-uspirates main h6{color:#B127AF}.main-headlinecol-tkpirates .entry-header h2.entry-title,.main-headlinecol-tkpirates .entry-header h2.entry-title a{color:#00B5B1}.main-headlinecol-tkpirates main #secondary h2.widget-title,.main-headlinecol-tkpirates main #sidebar-page h2.widget-title,.main-headlinecol-tkpirates main h1,.main-headlinecol-tkpirates main h2,.main-headlinecol-tkpirates main h3,.main-headlinecol-tkpirates main h4,.main-headlinecol-tkpirates main h5,.main-headlinecol-tkpirates main h6{color:#00B5B1}.main-headlinecol-chpirates .entry-header h2.entry-title,.main-headlinecol-chpirates .entry-header h2.entry-title a{color:#F9B200}.main-headlinecol-chpirates main #secondary h2.widget-title,.main-headlinecol-chpirates main #sidebar-page h2.widget-title,.main-headlinecol-chpirates main h1,.main-headlinecol-chpirates main h2,.main-headlinecol-chpirates main h3,.main-headlinecol-chpirates main h4,.main-headlinecol-chpirates main h5,.main-headlinecol-chpirates main h6{color:#F9B200}.main-headlinecol-ispirates .entry-header h2.entry-title,.main-headlinecol-ispirates .entry-header h2.entry-title a{color:#51297e}.main-headlinecol-ispirates main #secondary h2.widget-title,.main-headlinecol-ispirates main #sidebar-page h2.widget-title,.main-headlinecol-ispirates main h1,.main-headlinecol-ispirates main h2,.main-headlinecol-ispirates main h3,.main-headlinecol-ispirates main h4,.main-headlinecol-ispirates main h5,.main-headlinecol-ispirates main h6{color:#51297e}.main-headlinecol-black .entry-header h2.entry-title,.main-headlinecol-black .entry-header h2.entry-title a{color:#000}.main-headlinecol-black main #secondary h2.widget-title,.main-headlinecol-black main #sidebar-page h2.widget-title,.main-headlinecol-black main h1,.main-headlinecol-black main h2,.main-headlinecol-black main h3,.main-headlinecol-black main h4,.main-headlinecol-black main h5,.main-headlinecol-black main h6{color:#000}.main-headlinecol-white .entry-header h2.entry-title,.main-headlinecol-white .entry-header h2.entry-title a{color:#fff}.main-headlinecol-white main #secondary h2.widget-title,.main-headlinecol-white main #sidebar-page h2.widget-title,.main-headlinecol-white main h1,.main-headlinecol-white main h2,.main-headlinecol-white main h3,.main-headlinecol-white main h4,.main-headlinecol-white main h5,.main-headlinecol-white main h6{color:#fff}.main-headlinecol-grey .entry-header h2.entry-title,.main-headlinecol-grey .entry-header h2.entry-title a{color:#e7e7eb}.main-headlinecol-grey main #secondary h2.widget-title,.main-headlinecol-grey main #sidebar-page h2.widget-title,.main-headlinecol-grey main h1,.main-headlinecol-grey main h2,.main-headlinecol-grey main h3,.main-headlinecol-grey main h4,.main-headlinecol-grey main h5,.main-headlinecol-grey main h6{color:#e7e7eb}.main-headlinecol-darkgrey .entry-header h2.entry-title,.main-headlinecol-darkgrey .entry-header h2.entry-title a{color:#1a1a1a}.main-headlinecol-darkgrey main #secondary h2.widget-title,.main-headlinecol-darkgrey main #sidebar-page h2.widget-title,.main-headlinecol-darkgrey main h1,.main-headlinecol-darkgrey main h2,.main-headlinecol-darkgrey main h3,.main-headlinecol-darkgrey main h4,.main-headlinecol-darkgrey main h5,.main-headlinecol-darkgrey main h6{color:#1a1a1a}.main-headlinecol-blue .entry-header h2.entry-title,.main-headlinecol-blue .entry-header h2.entry-title a{color:#06f}.main-headlinecol-blue main #secondary h2.widget-title,.main-headlinecol-blue main #sidebar-page h2.widget-title,.main-headlinecol-blue main h1,.main-headlinecol-blue main h2,.main-headlinecol-blue main h3,.main-headlinecol-blue main h4,.main-headlinecol-blue main h5,.main-headlinecol-blue main h6{color:#06f}.main-headlinecol-red .entry-header h2.entry-title,.main-headlinecol-red .entry-header h2.entry-title a{color:#d7464d}.main-headlinecol-red main #secondary h2.widget-title,.main-headlinecol-red main #sidebar-page h2.widget-title,.main-headlinecol-red main h1,.main-headlinecol-red main h2,.main-headlinecol-red main h3,.main-headlinecol-red main h4,.main-headlinecol-red main h5,.main-headlinecol-red main h6{color:#d7464d}.main-headlinecol-yellow .entry-header h2.entry-title,.main-headlinecol-yellow .entry-header h2.entry-title a{color:#e7b547}.main-headlinecol-yellow main #secondary h2.widget-title,.main-headlinecol-yellow main #sidebar-page h2.widget-title,.main-headlinecol-yellow main h1,.main-headlinecol-yellow main h2,.main-headlinecol-yellow main h3,.main-headlinecol-yellow main h4,.main-headlinecol-yellow main h5,.main-headlinecol-yellow main h6{color:#e7b547}.main-headlinecol-green .entry-header h2.entry-title,.main-headlinecol-green .entry-header h2.entry-title a{color:#85c066}.main-headlinecol-green main #secondary h2.widget-title,.main-headlinecol-green main #sidebar-page h2.widget-title,.main-headlinecol-green main h1,.main-headlinecol-green main h2,.main-headlinecol-green main h3,.main-headlinecol-green main h4,.main-headlinecol-green main h5,.main-headlinecol-green main h6{color:#85c066}.main-titleunderline-main main .single-post .entry-header h1.entry-title,.main-titleunderline-main main .entry-header h1.entry-title,.main-titleunderline-main main .attachment h1.entry-title,.main-titleunderline-main main .page h1.entry-title,.main-titleunderline-main main h1.entry-title,.main-titleunderline-main main .archive-header h1.archive-title,.main-titleunderline-main main .site-content h1,.main-titleunderline-main main .entry-content h1{border-color:#f80}.main-titleunderline-second main .single-post .entry-header h1.entry-title,.main-titleunderline-second main .entry-header h1.entry-title,.main-titleunderline-second main .attachment h1.entry-title,.main-titleunderline-second main .page h1.entry-title,.main-titleunderline-second main h1.entry-title,.main-titleunderline-second main .archive-header h1.archive-title,.main-titleunderline-second main .site-content h1,.main-titleunderline-second main .entry-content h1{border-color:#672082}.main-titleunderline-third main .single-post .entry-header h1.entry-title,.main-titleunderline-third main .entry-header h1.entry-title,.main-titleunderline-third main .attachment h1.entry-title,.main-titleunderline-third main .page h1.entry-title,.main-titleunderline-third main h1.entry-title,.main-titleunderline-third main .archive-header h1.archive-title,.main-titleunderline-third main .site-content h1,.main-titleunderline-third main .entry-content h1{border-color:#698bc1}.main-titleunderline-four main .single-post .entry-header h1.entry-title,.main-titleunderline-four main .entry-header h1.entry-title,.main-titleunderline-four main .attachment h1.entry-title,.main-titleunderline-four main .page h1.entry-title,.main-titleunderline-four main h1.entry-title,.main-titleunderline-four main .archive-header h1.archive-title,.main-titleunderline-four main .site-content h1,.main-titleunderline-four main .entry-content h1{border-color:#148f93}.main-titleunderline-uspirates main .single-post .entry-header h1.entry-title,.main-titleunderline-uspirates main .entry-header h1.entry-title,.main-titleunderline-uspirates main .attachment h1.entry-title,.main-titleunderline-uspirates main .page h1.entry-title,.main-titleunderline-uspirates main h1.entry-title,.main-titleunderline-uspirates main .archive-header h1.archive-title,.main-titleunderline-uspirates main .site-content h1,.main-titleunderline-uspirates main .entry-content h1{border-color:#B127AF}.main-titleunderline-tkpirates main .single-post .entry-header h1.entry-title,.main-titleunderline-tkpirates main .entry-header h1.entry-title,.main-titleunderline-tkpirates main .attachment h1.entry-title,.main-titleunderline-tkpirates main .page h1.entry-title,.main-titleunderline-tkpirates main h1.entry-title,.main-titleunderline-tkpirates main .archive-header h1.archive-title,.main-titleunderline-tkpirates main .site-content h1,.main-titleunderline-tkpirates main .entry-content h1{border-color:#00B5B1}.main-titleunderline-chpirates main .single-post .entry-header h1.entry-title,.main-titleunderline-chpirates main .entry-header h1.entry-title,.main-titleunderline-chpirates main .attachment h1.entry-title,.main-titleunderline-chpirates main .page h1.entry-title,.main-titleunderline-chpirates main h1.entry-title,.main-titleunderline-chpirates main .archive-header h1.archive-title,.main-titleunderline-chpirates main .site-content h1,.main-titleunderline-chpirates main .entry-content h1{border-color:#F9B200}.main-titleunderline-ispirates main .single-post .entry-header h1.entry-title,.main-titleunderline-ispirates main .entry-header h1.entry-title,.main-titleunderline-ispirates main .attachment h1.entry-title,.main-titleunderline-ispirates main .page h1.entry-title,.main-titleunderline-ispirates main h1.entry-title,.main-titleunderline-ispirates main .archive-header h1.archive-title,.main-titleunderline-ispirates main .site-content h1,.main-titleunderline-ispirates main .entry-content h1{border-color:#51297e}.main-titleunderline-black main .single-post .entry-header h1.entry-title,.main-titleunderline-black main .entry-header h1.entry-title,.main-titleunderline-black main .attachment h1.entry-title,.main-titleunderline-black main .page h1.entry-title,.main-titleunderline-black main h1.entry-title,.main-titleunderline-black main .archive-header h1.archive-title,.main-titleunderline-black main .site-content h1,.main-titleunderline-black main .entry-content h1{border-color:#000}.main-titleunderline-white main .single-post .entry-header h1.entry-title,.main-titleunderline-white main .entry-header h1.entry-title,.main-titleunderline-white main .attachment h1.entry-title,.main-titleunderline-white main .page h1.entry-title,.main-titleunderline-white main h1.entry-title,.main-titleunderline-white main .archive-header h1.archive-title,.main-titleunderline-white main .site-content h1,.main-titleunderline-white main .entry-content h1{border-color:#fff}.main-titleunderline-grey main .single-post .entry-header h1.entry-title,.main-titleunderline-grey main .entry-header h1.entry-title,.main-titleunderline-grey main .attachment h1.entry-title,.main-titleunderline-grey main .page h1.entry-title,.main-titleunderline-grey main h1.entry-title,.main-titleunderline-grey main .archive-header h1.archive-title,.main-titleunderline-grey main .site-content h1,.main-titleunderline-grey main .entry-content h1{border-color:#e7e7eb}.main-titleunderline-darkgrey main .single-post .entry-header h1.entry-title,.main-titleunderline-darkgrey main .entry-header h1.entry-title,.main-titleunderline-darkgrey main .attachment h1.entry-title,.main-titleunderline-darkgrey main .page h1.entry-title,.main-titleunderline-darkgrey main h1.entry-title,.main-titleunderline-darkgrey main .archive-header h1.archive-title,.main-titleunderline-darkgrey main .site-content h1,.main-titleunderline-darkgrey main .entry-content h1{border-color:#1a1a1a}.main-titleunderline-blue main .single-post .entry-header h1.entry-title,.main-titleunderline-blue main .entry-header h1.entry-title,.main-titleunderline-blue main .attachment h1.entry-title,.main-titleunderline-blue main .page h1.entry-title,.main-titleunderline-blue main h1.entry-title,.main-titleunderline-blue main .archive-header h1.archive-title,.main-titleunderline-blue main .site-content h1,.main-titleunderline-blue main .entry-content h1{border-color:#06f}.main-titleunderline-red main .single-post .entry-header h1.entry-title,.main-titleunderline-red main .entry-header h1.entry-title,.main-titleunderline-red main .attachment h1.entry-title,.main-titleunderline-red main .page h1.entry-title,.main-titleunderline-red main h1.entry-title,.main-titleunderline-red main .archive-header h1.archive-title,.main-titleunderline-red main .site-content h1,.main-titleunderline-red main .entry-content h1{border-color:#d7464d}.main-titleunderline-yellow main .single-post .entry-header h1.entry-title,.main-titleunderline-yellow main .entry-header h1.entry-title,.main-titleunderline-yellow main .attachment h1.entry-title,.main-titleunderline-yellow main .page h1.entry-title,.main-titleunderline-yellow main h1.entry-title,.main-titleunderline-yellow main .archive-header h1.archive-title,.main-titleunderline-yellow main .site-content h1,.main-titleunderline-yellow main .entry-content h1{border-color:#e7b547}.main-titleunderline-green main .single-post .entry-header h1.entry-title,.main-titleunderline-green main .entry-header h1.entry-title,.main-titleunderline-green main .attachment h1.entry-title,.main-titleunderline-green main .page h1.entry-title,.main-titleunderline-green main h1.entry-title,.main-titleunderline-green main .archive-header h1.archive-title,.main-titleunderline-green main .site-content h1,.main-titleunderline-green main .entry-content h1{border-color:#85c066}.main-textcol-main .single-post .entry-header p.intro,.main-textcol-main .entry-summary,.main-textcol-main .front-section-title,.main-textcol-main .social-front-title,.main-textcol-main .widget_mc4wp_form_widget p,.main-textcol-main .jetpack_subscription_widget #subscribe-text p,.main-textcol-main .section-about-column-one p,.main-textcol-main blockquote p,.main-textcol-main main{color:#f80}.main-linkcol-main main a,.main-linkcol-main main blockquote a,.main-linkcol-main main .entry-content a,.main-linkcol-main main .comment-text a{color:#f80}.main-linkhovercol-main.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-main.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-main.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-main.blog .hentry .entry-cats a:hover{color:#f80}.main-linkhovercol-main main a:hover,.main-linkhovercol-main main blockquote a:hover,.main-linkhovercol-main main .entry-content a:hover,.main-linkhovercol-main main .comment-text a:hover{color:#f80}.main-textcol-second .single-post .entry-header p.intro,.main-textcol-second .entry-summary,.main-textcol-second .front-section-title,.main-textcol-second .social-front-title,.main-textcol-second .widget_mc4wp_form_widget p,.main-textcol-second .jetpack_subscription_widget #subscribe-text p,.main-textcol-second .section-about-column-one p,.main-textcol-second blockquote p,.main-textcol-second main{color:#672082}.main-linkcol-second main a,.main-linkcol-second main blockquote a,.main-linkcol-second main .entry-content a,.main-linkcol-second main .comment-text a{color:#672082}.main-linkhovercol-second.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-second.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-second.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-second.blog .hentry .entry-cats a:hover{color:#672082}.main-linkhovercol-second main a:hover,.main-linkhovercol-second main blockquote a:hover,.main-linkhovercol-second main .entry-content a:hover,.main-linkhovercol-second main .comment-text a:hover{color:#672082}.main-textcol-third .single-post .entry-header p.intro,.main-textcol-third .entry-summary,.main-textcol-third .front-section-title,.main-textcol-third .social-front-title,.main-textcol-third .widget_mc4wp_form_widget p,.main-textcol-third .jetpack_subscription_widget #subscribe-text p,.main-textcol-third .section-about-column-one p,.main-textcol-third blockquote p,.main-textcol-third main{color:#698bc1}.main-linkcol-third main a,.main-linkcol-third main blockquote a,.main-linkcol-third main .entry-content a,.main-linkcol-third main .comment-text a{color:#698bc1}.main-linkhovercol-third.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-third.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-third.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-third.blog .hentry .entry-cats a:hover{color:#698bc1}.main-linkhovercol-third main a:hover,.main-linkhovercol-third main blockquote a:hover,.main-linkhovercol-third main .entry-content a:hover,.main-linkhovercol-third main .comment-text a:hover{color:#698bc1}.main-textcol-four .single-post .entry-header p.intro,.main-textcol-four .entry-summary,.main-textcol-four .front-section-title,.main-textcol-four .social-front-title,.main-textcol-four .widget_mc4wp_form_widget p,.main-textcol-four .jetpack_subscription_widget #subscribe-text p,.main-textcol-four .section-about-column-one p,.main-textcol-four blockquote p,.main-textcol-four main{color:#148f93}.main-linkcol-four main a,.main-linkcol-four main blockquote a,.main-linkcol-four main .entry-content a,.main-linkcol-four main .comment-text a{color:#148f93}.main-linkhovercol-four.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-four.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-four.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-four.blog .hentry .entry-cats a:hover{color:#148f93}.main-linkhovercol-four main a:hover,.main-linkhovercol-four main blockquote a:hover,.main-linkhovercol-four main .entry-content a:hover,.main-linkhovercol-four main .comment-text a:hover{color:#148f93}.main-textcol-uspirates .single-post .entry-header p.intro,.main-textcol-uspirates .entry-summary,.main-textcol-uspirates .front-section-title,.main-textcol-uspirates .social-front-title,.main-textcol-uspirates .widget_mc4wp_form_widget p,.main-textcol-uspirates .jetpack_subscription_widget #subscribe-text p,.main-textcol-uspirates .section-about-column-one p,.main-textcol-uspirates blockquote p,.main-textcol-uspirates main{color:#B127AF}.main-linkcol-uspirates main a,.main-linkcol-uspirates main blockquote a,.main-linkcol-uspirates main .entry-content a,.main-linkcol-uspirates main .comment-text a{color:#B127AF}.main-linkhovercol-uspirates.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-uspirates.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-uspirates.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-uspirates.blog .hentry .entry-cats a:hover{color:#B127AF}.main-linkhovercol-uspirates main a:hover,.main-linkhovercol-uspirates main blockquote a:hover,.main-linkhovercol-uspirates main .entry-content a:hover,.main-linkhovercol-uspirates main .comment-text a:hover{color:#B127AF}.main-textcol-tkpirates .single-post .entry-header p.intro,.main-textcol-tkpirates .entry-summary,.main-textcol-tkpirates .front-section-title,.main-textcol-tkpirates .social-front-title,.main-textcol-tkpirates .widget_mc4wp_form_widget p,.main-textcol-tkpirates .jetpack_subscription_widget #subscribe-text p,.main-textcol-tkpirates .section-about-column-one p,.main-textcol-tkpirates blockquote p,.main-textcol-tkpirates main{color:#00B5B1}.main-linkcol-tkpirates main a,.main-linkcol-tkpirates main blockquote a,.main-linkcol-tkpirates main .entry-content a,.main-linkcol-tkpirates main .comment-text a{color:#00B5B1}.main-linkhovercol-tkpirates.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-tkpirates.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-tkpirates.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-tkpirates.blog .hentry .entry-cats a:hover{color:#00B5B1}.main-linkhovercol-tkpirates main a:hover,.main-linkhovercol-tkpirates main blockquote a:hover,.main-linkhovercol-tkpirates main .entry-content a:hover,.main-linkhovercol-tkpirates main .comment-text a:hover{color:#00B5B1}.main-textcol-chpirates .single-post .entry-header p.intro,.main-textcol-chpirates .entry-summary,.main-textcol-chpirates .front-section-title,.main-textcol-chpirates .social-front-title,.main-textcol-chpirates .widget_mc4wp_form_widget p,.main-textcol-chpirates .jetpack_subscription_widget #subscribe-text p,.main-textcol-chpirates .section-about-column-one p,.main-textcol-chpirates blockquote p,.main-textcol-chpirates main{color:#F9B200}.main-linkcol-chpirates main a,.main-linkcol-chpirates main blockquote a,.main-linkcol-chpirates main .entry-content a,.main-linkcol-chpirates main .comment-text a{color:#F9B200}.main-linkhovercol-chpirates.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-chpirates.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-chpirates.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-chpirates.blog .hentry .entry-cats a:hover{color:#F9B200}.main-linkhovercol-chpirates main a:hover,.main-linkhovercol-chpirates main blockquote a:hover,.main-linkhovercol-chpirates main .entry-content a:hover,.main-linkhovercol-chpirates main .comment-text a:hover{color:#F9B200}.main-textcol-ispirates .single-post .entry-header p.intro,.main-textcol-ispirates .entry-summary,.main-textcol-ispirates .front-section-title,.main-textcol-ispirates .social-front-title,.main-textcol-ispirates .widget_mc4wp_form_widget p,.main-textcol-ispirates .jetpack_subscription_widget #subscribe-text p,.main-textcol-ispirates .section-about-column-one p,.main-textcol-ispirates blockquote p,.main-textcol-ispirates main{color:#51297e}.main-linkcol-ispirates main a,.main-linkcol-ispirates main blockquote a,.main-linkcol-ispirates main .entry-content a,.main-linkcol-ispirates main .comment-text a{color:#51297e}.main-linkhovercol-ispirates.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-ispirates.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-ispirates.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-ispirates.blog .hentry .entry-cats a:hover{color:#51297e}.main-linkhovercol-ispirates main a:hover,.main-linkhovercol-ispirates main blockquote a:hover,.main-linkhovercol-ispirates main .entry-content a:hover,.main-linkhovercol-ispirates main .comment-text a:hover{color:#51297e}.main-textcol-black .single-post .entry-header p.intro,.main-textcol-black .entry-summary,.main-textcol-black .front-section-title,.main-textcol-black .social-front-title,.main-textcol-black .widget_mc4wp_form_widget p,.main-textcol-black .jetpack_subscription_widget #subscribe-text p,.main-textcol-black .section-about-column-one p,.main-textcol-black blockquote p,.main-textcol-black main{color:#000}.main-linkcol-black main a,.main-linkcol-black main blockquote a,.main-linkcol-black main .entry-content a,.main-linkcol-black main .comment-text a{color:#000}.main-linkhovercol-black.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-black.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-black.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-black.blog .hentry .entry-cats a:hover{color:#000}.main-linkhovercol-black main a:hover,.main-linkhovercol-black main blockquote a:hover,.main-linkhovercol-black main .entry-content a:hover,.main-linkhovercol-black main .comment-text a:hover{color:#000}.main-textcol-white .single-post .entry-header p.intro,.main-textcol-white .entry-summary,.main-textcol-white .front-section-title,.main-textcol-white .social-front-title,.main-textcol-white .widget_mc4wp_form_widget p,.main-textcol-white .jetpack_subscription_widget #subscribe-text p,.main-textcol-white .section-about-column-one p,.main-textcol-white blockquote p,.main-textcol-white main{color:#fff}.main-linkcol-white main a,.main-linkcol-white main blockquote a,.main-linkcol-white main .entry-content a,.main-linkcol-white main .comment-text a{color:#fff}.main-linkhovercol-white.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-white.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-white.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-white.blog .hentry .entry-cats a:hover{color:#fff}.main-linkhovercol-white main a:hover,.main-linkhovercol-white main blockquote a:hover,.main-linkhovercol-white main .entry-content a:hover,.main-linkhovercol-white main .comment-text a:hover{color:#fff}.main-textcol-grey .single-post .entry-header p.intro,.main-textcol-grey .entry-summary,.main-textcol-grey .front-section-title,.main-textcol-grey .social-front-title,.main-textcol-grey .widget_mc4wp_form_widget p,.main-textcol-grey .jetpack_subscription_widget #subscribe-text p,.main-textcol-grey .section-about-column-one p,.main-textcol-grey blockquote p,.main-textcol-grey main{color:#e7e7eb}.main-linkcol-grey main a,.main-linkcol-grey main blockquote a,.main-linkcol-grey main .entry-content a,.main-linkcol-grey main .comment-text a{color:#e7e7eb}.main-linkhovercol-grey.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-grey.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-grey.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-grey.blog .hentry .entry-cats a:hover{color:#e7e7eb}.main-linkhovercol-grey main a:hover,.main-linkhovercol-grey main blockquote a:hover,.main-linkhovercol-grey main .entry-content a:hover,.main-linkhovercol-grey main .comment-text a:hover{color:#e7e7eb}.main-textcol-darkgrey .single-post .entry-header p.intro,.main-textcol-darkgrey .entry-summary,.main-textcol-darkgrey .front-section-title,.main-textcol-darkgrey .social-front-title,.main-textcol-darkgrey .widget_mc4wp_form_widget p,.main-textcol-darkgrey .jetpack_subscription_widget #subscribe-text p,.main-textcol-darkgrey .section-about-column-one p,.main-textcol-darkgrey blockquote p,.main-textcol-darkgrey main{color:#1a1a1a}.main-linkcol-darkgrey main a,.main-linkcol-darkgrey main blockquote a,.main-linkcol-darkgrey main .entry-content a,.main-linkcol-darkgrey main .comment-text a{color:#1a1a1a}.main-linkhovercol-darkgrey.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-darkgrey.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-darkgrey.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-darkgrey.blog .hentry .entry-cats a:hover{color:#1a1a1a}.main-linkhovercol-darkgrey main a:hover,.main-linkhovercol-darkgrey main blockquote a:hover,.main-linkhovercol-darkgrey main .entry-content a:hover,.main-linkhovercol-darkgrey main .comment-text a:hover{color:#1a1a1a}.main-textcol-blue .single-post .entry-header p.intro,.main-textcol-blue .entry-summary,.main-textcol-blue .front-section-title,.main-textcol-blue .social-front-title,.main-textcol-blue .widget_mc4wp_form_widget p,.main-textcol-blue .jetpack_subscription_widget #subscribe-text p,.main-textcol-blue .section-about-column-one p,.main-textcol-blue blockquote p,.main-textcol-blue main{color:#06f}.main-linkcol-blue main a,.main-linkcol-blue main blockquote a,.main-linkcol-blue main .entry-content a,.main-linkcol-blue main .comment-text a{color:#06f}.main-linkhovercol-blue.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-blue.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-blue.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-blue.blog .hentry .entry-cats a:hover{color:#06f}.main-linkhovercol-blue main a:hover,.main-linkhovercol-blue main blockquote a:hover,.main-linkhovercol-blue main .entry-content a:hover,.main-linkhovercol-blue main .comment-text a:hover{color:#06f}.main-textcol-red .single-post .entry-header p.intro,.main-textcol-red .entry-summary,.main-textcol-red .front-section-title,.main-textcol-red .social-front-title,.main-textcol-red .widget_mc4wp_form_widget p,.main-textcol-red .jetpack_subscription_widget #subscribe-text p,.main-textcol-red .section-about-column-one p,.main-textcol-red blockquote p,.main-textcol-red main{color:#d7464d}.main-linkcol-red main a,.main-linkcol-red main blockquote a,.main-linkcol-red main .entry-content a,.main-linkcol-red main .comment-text a{color:#d7464d}.main-linkhovercol-red.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-red.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-red.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-red.blog .hentry .entry-cats a:hover{color:#d7464d}.main-linkhovercol-red main a:hover,.main-linkhovercol-red main blockquote a:hover,.main-linkhovercol-red main .entry-content a:hover,.main-linkhovercol-red main .comment-text a:hover{color:#d7464d}.main-textcol-yellow .single-post .entry-header p.intro,.main-textcol-yellow .entry-summary,.main-textcol-yellow .front-section-title,.main-textcol-yellow .social-front-title,.main-textcol-yellow .widget_mc4wp_form_widget p,.main-textcol-yellow .jetpack_subscription_widget #subscribe-text p,.main-textcol-yellow .section-about-column-one p,.main-textcol-yellow blockquote p,.main-textcol-yellow main{color:#e7b547}.main-linkcol-yellow main a,.main-linkcol-yellow main blockquote a,.main-linkcol-yellow main .entry-content a,.main-linkcol-yellow main .comment-text a{color:#e7b547}.main-linkhovercol-yellow.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-yellow.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-yellow.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-yellow.blog .hentry .entry-cats a:hover{color:#e7b547}.main-linkhovercol-yellow main a:hover,.main-linkhovercol-yellow main blockquote a:hover,.main-linkhovercol-yellow main .entry-content a:hover,.main-linkhovercol-yellow main .comment-text a:hover{color:#e7b547}.main-textcol-green .single-post .entry-header p.intro,.main-textcol-green .entry-summary,.main-textcol-green .front-section-title,.main-textcol-green .social-front-title,.main-textcol-green .widget_mc4wp_form_widget p,.main-textcol-green .jetpack_subscription_widget #subscribe-text p,.main-textcol-green .section-about-column-one p,.main-textcol-green blockquote p,.main-textcol-green main{color:#85c066}.main-linkcol-green main a,.main-linkcol-green main blockquote a,.main-linkcol-green main .entry-content a,.main-linkcol-green main .comment-text a{color:#85c066}.main-linkhovercol-green.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-green.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-green.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-green.blog .hentry .entry-cats a:hover{color:#85c066}.main-linkhovercol-green main a:hover,.main-linkhovercol-green main blockquote a:hover,.main-linkhovercol-green main .entry-content a:hover,.main-linkhovercol-green main .comment-text a:hover{color:#85c066}.main-meta-textcol-hover-main.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-main.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-main.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-main.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-main main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-main .post-navigation .nav-links a:hover,.main-meta-textcol-hover-main .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-main .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-main .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-main .featured-slider button.slick-arrow:hover::after{color:#f80}.main-meta-textcol-main .entry-meta,.main-meta-textcol-main .entry-cats,.main-meta-textcol-main .slider-text .entry-meta a,.main-meta-textcol-main .slider-text .entry-cats a,.main-meta-textcol-main .section-one-column-one .entry-cats a,.main-meta-textcol-main .section-three-column-one .entry-cats a,.main-meta-textcol-main #front-section-four .entry-cats a,.main-meta-textcol-main #front-section-four .entry-meta a,.main-meta-textcol-main .featured-slider .entry-cats a,.main-meta-textcol-main.single-post .entry-header .entry-cats a,.main-meta-textcol-main.blog .featured-slider .entry-cats a,.main-meta-textcol-main.blog .featured-slider .entry-meta a,.main-meta-textcol-main.blog .hentry .entry-cats a,.main-meta-textcol-main.single-post .entry-cats a,.main-meta-textcol-main.single-post .entry-tags a,.main-meta-textcol-main.single-post .entry-header .page-links a,.main-meta-textcol-main .post-page-numbers.current,.main-meta-textcol-main main .entry-content .pagebreak-links a,.main-meta-textcol-main .post-navigation .nav-links a,.main-meta-textcol-main .pagination .nav-links span.page-numbers,.main-meta-textcol-main .pagination .nav-links a.page-numbers,.main-meta-textcol-main.single-post .entry-header .page-links .number{color:#f80}.main-meta-bgcol-main .entry-cats a,.main-meta-bgcol-main .featured-slider .entry-cats a,.main-meta-bgcol-main .featured-slider .entry-meta a,.main-meta-bgcol-main .section-one-column-one .entry-cats a,.main-meta-bgcol-main .section-three-column-one .entry-cats a,.main-meta-bgcol-main #front-section-four .entry-cats a,.main-meta-bgcol-main.single-post .entry-cats a,.main-meta-bgcol-main.single-post .entry-tags a,.main-meta-bgcol-main.blog .hentry .entry-cats a,.main-meta-bgcol-main.blog .featured-slider .entry-cats a,.main-meta-bgcol-main.blog .featured-slider .entry-meta a,.main-meta-bgcol-main.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-main .post-page-numbers.current,.main-meta-bgcol-main .post-navigation .nav-links a,.main-meta-bgcol-main .pagebreak-links a,.main-meta-bgcol-main .pagination .nav-links span.page-numbers,.main-meta-bgcol-main .pagination .nav-links a.page-numbers{background:#f80}.main-meta-bgcol-main .gallery .slick-prev:before,.main-meta-bgcol-main .gallery .slick-next:before,.main-meta-bgcol-main .gallery .slick-dots li.slick-active button:before{color:#f80}.main-meta-bgcol-hover-main .entry-cats a:hover,.main-meta-bgcol-hover-main .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-main .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-main .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-main .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-main #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-main.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-main.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-main.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-main.single-post .entry-cats a:hover,.main-meta-bgcol-hover-main.single-post .entry-tags a:hover,.main-meta-bgcol-hover-main.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-main .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-main .pagebreak-links a:hover,.main-meta-bgcol-hover-main .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-main .pagination .nav-links a.page-numbers:hover{background:#f80}.main-meta-textcol-hover-second.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-second.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-second.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-second.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-second main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-second .post-navigation .nav-links a:hover,.main-meta-textcol-hover-second .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-second .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-second .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-second .featured-slider button.slick-arrow:hover::after{color:#672082}.main-meta-textcol-second .entry-meta,.main-meta-textcol-second .entry-cats,.main-meta-textcol-second .slider-text .entry-meta a,.main-meta-textcol-second .slider-text .entry-cats a,.main-meta-textcol-second .section-one-column-one .entry-cats a,.main-meta-textcol-second .section-three-column-one .entry-cats a,.main-meta-textcol-second #front-section-four .entry-cats a,.main-meta-textcol-second #front-section-four .entry-meta a,.main-meta-textcol-second .featured-slider .entry-cats a,.main-meta-textcol-second.single-post .entry-header .entry-cats a,.main-meta-textcol-second.blog .featured-slider .entry-cats a,.main-meta-textcol-second.blog .featured-slider .entry-meta a,.main-meta-textcol-second.blog .hentry .entry-cats a,.main-meta-textcol-second.single-post .entry-cats a,.main-meta-textcol-second.single-post .entry-tags a,.main-meta-textcol-second.single-post .entry-header .page-links a,.main-meta-textcol-second .post-page-numbers.current,.main-meta-textcol-second main .entry-content .pagebreak-links a,.main-meta-textcol-second .post-navigation .nav-links a,.main-meta-textcol-second .pagination .nav-links span.page-numbers,.main-meta-textcol-second .pagination .nav-links a.page-numbers,.main-meta-textcol-second.single-post .entry-header .page-links .number{color:#672082}.main-meta-bgcol-second .entry-cats a,.main-meta-bgcol-second .featured-slider .entry-cats a,.main-meta-bgcol-second .featured-slider .entry-meta a,.main-meta-bgcol-second .section-one-column-one .entry-cats a,.main-meta-bgcol-second .section-three-column-one .entry-cats a,.main-meta-bgcol-second #front-section-four .entry-cats a,.main-meta-bgcol-second.single-post .entry-cats a,.main-meta-bgcol-second.single-post .entry-tags a,.main-meta-bgcol-second.blog .hentry .entry-cats a,.main-meta-bgcol-second.blog .featured-slider .entry-cats a,.main-meta-bgcol-second.blog .featured-slider .entry-meta a,.main-meta-bgcol-second.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-second .post-page-numbers.current,.main-meta-bgcol-second .post-navigation .nav-links a,.main-meta-bgcol-second .pagebreak-links a,.main-meta-bgcol-second .pagination .nav-links span.page-numbers,.main-meta-bgcol-second .pagination .nav-links a.page-numbers{background:#672082}.main-meta-bgcol-second .gallery .slick-prev:before,.main-meta-bgcol-second .gallery .slick-next:before,.main-meta-bgcol-second .gallery .slick-dots li.slick-active button:before{color:#672082}.main-meta-bgcol-hover-second .entry-cats a:hover,.main-meta-bgcol-hover-second .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-second .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-second .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-second .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-second #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-second.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-second.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-second.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-second.single-post .entry-cats a:hover,.main-meta-bgcol-hover-second.single-post .entry-tags a:hover,.main-meta-bgcol-hover-second.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-second .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-second .pagebreak-links a:hover,.main-meta-bgcol-hover-second .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-second .pagination .nav-links a.page-numbers:hover{background:#672082}.main-meta-textcol-hover-third.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-third.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-third.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-third.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-third main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-third .post-navigation .nav-links a:hover,.main-meta-textcol-hover-third .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-third .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-third .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-third .featured-slider button.slick-arrow:hover::after{color:#698bc1}.main-meta-textcol-third .entry-meta,.main-meta-textcol-third .entry-cats,.main-meta-textcol-third .slider-text .entry-meta a,.main-meta-textcol-third .slider-text .entry-cats a,.main-meta-textcol-third .section-one-column-one .entry-cats a,.main-meta-textcol-third .section-three-column-one .entry-cats a,.main-meta-textcol-third #front-section-four .entry-cats a,.main-meta-textcol-third #front-section-four .entry-meta a,.main-meta-textcol-third .featured-slider .entry-cats a,.main-meta-textcol-third.single-post .entry-header .entry-cats a,.main-meta-textcol-third.blog .featured-slider .entry-cats a,.main-meta-textcol-third.blog .featured-slider .entry-meta a,.main-meta-textcol-third.blog .hentry .entry-cats a,.main-meta-textcol-third.single-post .entry-cats a,.main-meta-textcol-third.single-post .entry-tags a,.main-meta-textcol-third.single-post .entry-header .page-links a,.main-meta-textcol-third .post-page-numbers.current,.main-meta-textcol-third main .entry-content .pagebreak-links a,.main-meta-textcol-third .post-navigation .nav-links a,.main-meta-textcol-third .pagination .nav-links span.page-numbers,.main-meta-textcol-third .pagination .nav-links a.page-numbers,.main-meta-textcol-third.single-post .entry-header .page-links .number{color:#698bc1}.main-meta-bgcol-third .entry-cats a,.main-meta-bgcol-third .featured-slider .entry-cats a,.main-meta-bgcol-third .featured-slider .entry-meta a,.main-meta-bgcol-third .section-one-column-one .entry-cats a,.main-meta-bgcol-third .section-three-column-one .entry-cats a,.main-meta-bgcol-third #front-section-four .entry-cats a,.main-meta-bgcol-third.single-post .entry-cats a,.main-meta-bgcol-third.single-post .entry-tags a,.main-meta-bgcol-third.blog .hentry .entry-cats a,.main-meta-bgcol-third.blog .featured-slider .entry-cats a,.main-meta-bgcol-third.blog .featured-slider .entry-meta a,.main-meta-bgcol-third.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-third .post-page-numbers.current,.main-meta-bgcol-third .post-navigation .nav-links a,.main-meta-bgcol-third .pagebreak-links a,.main-meta-bgcol-third .pagination .nav-links span.page-numbers,.main-meta-bgcol-third .pagination .nav-links a.page-numbers{background:#698bc1}.main-meta-bgcol-third .gallery .slick-prev:before,.main-meta-bgcol-third .gallery .slick-next:before,.main-meta-bgcol-third .gallery .slick-dots li.slick-active button:before{color:#698bc1}.main-meta-bgcol-hover-third .entry-cats a:hover,.main-meta-bgcol-hover-third .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-third .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-third .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-third .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-third #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-third.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-third.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-third.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-third.single-post .entry-cats a:hover,.main-meta-bgcol-hover-third.single-post .entry-tags a:hover,.main-meta-bgcol-hover-third.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-third .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-third .pagebreak-links a:hover,.main-meta-bgcol-hover-third .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-third .pagination .nav-links a.page-numbers:hover{background:#698bc1}.main-meta-textcol-hover-four.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-four.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-four.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-four.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-four main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-four .post-navigation .nav-links a:hover,.main-meta-textcol-hover-four .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-four .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-four .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-four .featured-slider button.slick-arrow:hover::after{color:#148f93}.main-meta-textcol-four .entry-meta,.main-meta-textcol-four .entry-cats,.main-meta-textcol-four .slider-text .entry-meta a,.main-meta-textcol-four .slider-text .entry-cats a,.main-meta-textcol-four .section-one-column-one .entry-cats a,.main-meta-textcol-four .section-three-column-one .entry-cats a,.main-meta-textcol-four #front-section-four .entry-cats a,.main-meta-textcol-four #front-section-four .entry-meta a,.main-meta-textcol-four .featured-slider .entry-cats a,.main-meta-textcol-four.single-post .entry-header .entry-cats a,.main-meta-textcol-four.blog .featured-slider .entry-cats a,.main-meta-textcol-four.blog .featured-slider .entry-meta a,.main-meta-textcol-four.blog .hentry .entry-cats a,.main-meta-textcol-four.single-post .entry-cats a,.main-meta-textcol-four.single-post .entry-tags a,.main-meta-textcol-four.single-post .entry-header .page-links a,.main-meta-textcol-four .post-page-numbers.current,.main-meta-textcol-four main .entry-content .pagebreak-links a,.main-meta-textcol-four .post-navigation .nav-links a,.main-meta-textcol-four .pagination .nav-links span.page-numbers,.main-meta-textcol-four .pagination .nav-links a.page-numbers,.main-meta-textcol-four.single-post .entry-header .page-links .number{color:#148f93}.main-meta-bgcol-four .entry-cats a,.main-meta-bgcol-four .featured-slider .entry-cats a,.main-meta-bgcol-four .featured-slider .entry-meta a,.main-meta-bgcol-four .section-one-column-one .entry-cats a,.main-meta-bgcol-four .section-three-column-one .entry-cats a,.main-meta-bgcol-four #front-section-four .entry-cats a,.main-meta-bgcol-four.single-post .entry-cats a,.main-meta-bgcol-four.single-post .entry-tags a,.main-meta-bgcol-four.blog .hentry .entry-cats a,.main-meta-bgcol-four.blog .featured-slider .entry-cats a,.main-meta-bgcol-four.blog .featured-slider .entry-meta a,.main-meta-bgcol-four.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-four .post-page-numbers.current,.main-meta-bgcol-four .post-navigation .nav-links a,.main-meta-bgcol-four .pagebreak-links a,.main-meta-bgcol-four .pagination .nav-links span.page-numbers,.main-meta-bgcol-four .pagination .nav-links a.page-numbers{background:#148f93}.main-meta-bgcol-four .gallery .slick-prev:before,.main-meta-bgcol-four .gallery .slick-next:before,.main-meta-bgcol-four .gallery .slick-dots li.slick-active button:before{color:#148f93}.main-meta-bgcol-hover-four .entry-cats a:hover,.main-meta-bgcol-hover-four .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-four .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-four .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-four .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-four #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-four.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-four.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-four.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-four.single-post .entry-cats a:hover,.main-meta-bgcol-hover-four.single-post .entry-tags a:hover,.main-meta-bgcol-hover-four.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-four .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-four .pagebreak-links a:hover,.main-meta-bgcol-hover-four .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-four .pagination .nav-links a.page-numbers:hover{background:#148f93}.main-meta-textcol-hover-uspirates.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-uspirates.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-uspirates.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-uspirates.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-uspirates main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-uspirates .post-navigation .nav-links a:hover,.main-meta-textcol-hover-uspirates .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-uspirates .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-uspirates .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-uspirates .featured-slider button.slick-arrow:hover::after{color:#B127AF}.main-meta-textcol-uspirates .entry-meta,.main-meta-textcol-uspirates .entry-cats,.main-meta-textcol-uspirates .slider-text .entry-meta a,.main-meta-textcol-uspirates .slider-text .entry-cats a,.main-meta-textcol-uspirates .section-one-column-one .entry-cats a,.main-meta-textcol-uspirates .section-three-column-one .entry-cats a,.main-meta-textcol-uspirates #front-section-four .entry-cats a,.main-meta-textcol-uspirates #front-section-four .entry-meta a,.main-meta-textcol-uspirates .featured-slider .entry-cats a,.main-meta-textcol-uspirates.single-post .entry-header .entry-cats a,.main-meta-textcol-uspirates.blog .featured-slider .entry-cats a,.main-meta-textcol-uspirates.blog .featured-slider .entry-meta a,.main-meta-textcol-uspirates.blog .hentry .entry-cats a,.main-meta-textcol-uspirates.single-post .entry-cats a,.main-meta-textcol-uspirates.single-post .entry-tags a,.main-meta-textcol-uspirates.single-post .entry-header .page-links a,.main-meta-textcol-uspirates .post-page-numbers.current,.main-meta-textcol-uspirates main .entry-content .pagebreak-links a,.main-meta-textcol-uspirates .post-navigation .nav-links a,.main-meta-textcol-uspirates .pagination .nav-links span.page-numbers,.main-meta-textcol-uspirates .pagination .nav-links a.page-numbers,.main-meta-textcol-uspirates.single-post .entry-header .page-links .number{color:#B127AF}.main-meta-bgcol-uspirates .entry-cats a,.main-meta-bgcol-uspirates .featured-slider .entry-cats a,.main-meta-bgcol-uspirates .featured-slider .entry-meta a,.main-meta-bgcol-uspirates .section-one-column-one .entry-cats a,.main-meta-bgcol-uspirates .section-three-column-one .entry-cats a,.main-meta-bgcol-uspirates #front-section-four .entry-cats a,.main-meta-bgcol-uspirates.single-post .entry-cats a,.main-meta-bgcol-uspirates.single-post .entry-tags a,.main-meta-bgcol-uspirates.blog .hentry .entry-cats a,.main-meta-bgcol-uspirates.blog .featured-slider .entry-cats a,.main-meta-bgcol-uspirates.blog .featured-slider .entry-meta a,.main-meta-bgcol-uspirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-uspirates .post-page-numbers.current,.main-meta-bgcol-uspirates .post-navigation .nav-links a,.main-meta-bgcol-uspirates .pagebreak-links a,.main-meta-bgcol-uspirates .pagination .nav-links span.page-numbers,.main-meta-bgcol-uspirates .pagination .nav-links a.page-numbers{background:#B127AF}.main-meta-bgcol-uspirates .gallery .slick-prev:before,.main-meta-bgcol-uspirates .gallery .slick-next:before,.main-meta-bgcol-uspirates .gallery .slick-dots li.slick-active button:before{color:#B127AF}.main-meta-bgcol-hover-uspirates .entry-cats a:hover,.main-meta-bgcol-hover-uspirates .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-uspirates .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-uspirates .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-uspirates .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-uspirates #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-uspirates.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-uspirates.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-uspirates.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-uspirates.single-post .entry-cats a:hover,.main-meta-bgcol-hover-uspirates.single-post .entry-tags a:hover,.main-meta-bgcol-hover-uspirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-uspirates .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-uspirates .pagebreak-links a:hover,.main-meta-bgcol-hover-uspirates .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-uspirates .pagination .nav-links a.page-numbers:hover{background:#B127AF}.main-meta-textcol-hover-tkpirates.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-tkpirates.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-tkpirates.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-tkpirates.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-tkpirates main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-tkpirates .post-navigation .nav-links a:hover,.main-meta-textcol-hover-tkpirates .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-tkpirates .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-tkpirates .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-tkpirates .featured-slider button.slick-arrow:hover::after{color:#00B5B1}.main-meta-textcol-tkpirates .entry-meta,.main-meta-textcol-tkpirates .entry-cats,.main-meta-textcol-tkpirates .slider-text .entry-meta a,.main-meta-textcol-tkpirates .slider-text .entry-cats a,.main-meta-textcol-tkpirates .section-one-column-one .entry-cats a,.main-meta-textcol-tkpirates .section-three-column-one .entry-cats a,.main-meta-textcol-tkpirates #front-section-four .entry-cats a,.main-meta-textcol-tkpirates #front-section-four .entry-meta a,.main-meta-textcol-tkpirates .featured-slider .entry-cats a,.main-meta-textcol-tkpirates.single-post .entry-header .entry-cats a,.main-meta-textcol-tkpirates.blog .featured-slider .entry-cats a,.main-meta-textcol-tkpirates.blog .featured-slider .entry-meta a,.main-meta-textcol-tkpirates.blog .hentry .entry-cats a,.main-meta-textcol-tkpirates.single-post .entry-cats a,.main-meta-textcol-tkpirates.single-post .entry-tags a,.main-meta-textcol-tkpirates.single-post .entry-header .page-links a,.main-meta-textcol-tkpirates .post-page-numbers.current,.main-meta-textcol-tkpirates main .entry-content .pagebreak-links a,.main-meta-textcol-tkpirates .post-navigation .nav-links a,.main-meta-textcol-tkpirates .pagination .nav-links span.page-numbers,.main-meta-textcol-tkpirates .pagination .nav-links a.page-numbers,.main-meta-textcol-tkpirates.single-post .entry-header .page-links .number{color:#00B5B1}.main-meta-bgcol-tkpirates .entry-cats a,.main-meta-bgcol-tkpirates .featured-slider .entry-cats a,.main-meta-bgcol-tkpirates .featured-slider .entry-meta a,.main-meta-bgcol-tkpirates .section-one-column-one .entry-cats a,.main-meta-bgcol-tkpirates .section-three-column-one .entry-cats a,.main-meta-bgcol-tkpirates #front-section-four .entry-cats a,.main-meta-bgcol-tkpirates.single-post .entry-cats a,.main-meta-bgcol-tkpirates.single-post .entry-tags a,.main-meta-bgcol-tkpirates.blog .hentry .entry-cats a,.main-meta-bgcol-tkpirates.blog .featured-slider .entry-cats a,.main-meta-bgcol-tkpirates.blog .featured-slider .entry-meta a,.main-meta-bgcol-tkpirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-tkpirates .post-page-numbers.current,.main-meta-bgcol-tkpirates .post-navigation .nav-links a,.main-meta-bgcol-tkpirates .pagebreak-links a,.main-meta-bgcol-tkpirates .pagination .nav-links span.page-numbers,.main-meta-bgcol-tkpirates .pagination .nav-links a.page-numbers{background:#00B5B1}.main-meta-bgcol-tkpirates .gallery .slick-prev:before,.main-meta-bgcol-tkpirates .gallery .slick-next:before,.main-meta-bgcol-tkpirates .gallery .slick-dots li.slick-active button:before{color:#00B5B1}.main-meta-bgcol-hover-tkpirates .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-tkpirates .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-tkpirates.single-post .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates.single-post .entry-tags a:hover,.main-meta-bgcol-hover-tkpirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-tkpirates .pagebreak-links a:hover,.main-meta-bgcol-hover-tkpirates .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-tkpirates .pagination .nav-links a.page-numbers:hover{background:#00B5B1}.main-meta-textcol-hover-chpirates.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-chpirates.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-chpirates.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-chpirates.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-chpirates main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-chpirates .post-navigation .nav-links a:hover,.main-meta-textcol-hover-chpirates .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-chpirates .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-chpirates .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-chpirates .featured-slider button.slick-arrow:hover::after{color:#F9B200}.main-meta-textcol-chpirates .entry-meta,.main-meta-textcol-chpirates .entry-cats,.main-meta-textcol-chpirates .slider-text .entry-meta a,.main-meta-textcol-chpirates .slider-text .entry-cats a,.main-meta-textcol-chpirates .section-one-column-one .entry-cats a,.main-meta-textcol-chpirates .section-three-column-one .entry-cats a,.main-meta-textcol-chpirates #front-section-four .entry-cats a,.main-meta-textcol-chpirates #front-section-four .entry-meta a,.main-meta-textcol-chpirates .featured-slider .entry-cats a,.main-meta-textcol-chpirates.single-post .entry-header .entry-cats a,.main-meta-textcol-chpirates.blog .featured-slider .entry-cats a,.main-meta-textcol-chpirates.blog .featured-slider .entry-meta a,.main-meta-textcol-chpirates.blog .hentry .entry-cats a,.main-meta-textcol-chpirates.single-post .entry-cats a,.main-meta-textcol-chpirates.single-post .entry-tags a,.main-meta-textcol-chpirates.single-post .entry-header .page-links a,.main-meta-textcol-chpirates .post-page-numbers.current,.main-meta-textcol-chpirates main .entry-content .pagebreak-links a,.main-meta-textcol-chpirates .post-navigation .nav-links a,.main-meta-textcol-chpirates .pagination .nav-links span.page-numbers,.main-meta-textcol-chpirates .pagination .nav-links a.page-numbers,.main-meta-textcol-chpirates.single-post .entry-header .page-links .number{color:#F9B200}.main-meta-bgcol-chpirates .entry-cats a,.main-meta-bgcol-chpirates .featured-slider .entry-cats a,.main-meta-bgcol-chpirates .featured-slider .entry-meta a,.main-meta-bgcol-chpirates .section-one-column-one .entry-cats a,.main-meta-bgcol-chpirates .section-three-column-one .entry-cats a,.main-meta-bgcol-chpirates #front-section-four .entry-cats a,.main-meta-bgcol-chpirates.single-post .entry-cats a,.main-meta-bgcol-chpirates.single-post .entry-tags a,.main-meta-bgcol-chpirates.blog .hentry .entry-cats a,.main-meta-bgcol-chpirates.blog .featured-slider .entry-cats a,.main-meta-bgcol-chpirates.blog .featured-slider .entry-meta a,.main-meta-bgcol-chpirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-chpirates .post-page-numbers.current,.main-meta-bgcol-chpirates .post-navigation .nav-links a,.main-meta-bgcol-chpirates .pagebreak-links a,.main-meta-bgcol-chpirates .pagination .nav-links span.page-numbers,.main-meta-bgcol-chpirates .pagination .nav-links a.page-numbers{background:#F9B200}.main-meta-bgcol-chpirates .gallery .slick-prev:before,.main-meta-bgcol-chpirates .gallery .slick-next:before,.main-meta-bgcol-chpirates .gallery .slick-dots li.slick-active button:before{color:#F9B200}.main-meta-bgcol-hover-chpirates .entry-cats a:hover,.main-meta-bgcol-hover-chpirates .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-chpirates .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-chpirates .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-chpirates .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-chpirates #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-chpirates.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-chpirates.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-chpirates.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-chpirates.single-post .entry-cats a:hover,.main-meta-bgcol-hover-chpirates.single-post .entry-tags a:hover,.main-meta-bgcol-hover-chpirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-chpirates .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-chpirates .pagebreak-links a:hover,.main-meta-bgcol-hover-chpirates .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-chpirates .pagination .nav-links a.page-numbers:hover{background:#F9B200}.main-meta-textcol-hover-ispirates.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-ispirates.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-ispirates.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-ispirates.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-ispirates main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-ispirates .post-navigation .nav-links a:hover,.main-meta-textcol-hover-ispirates .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-ispirates .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-ispirates .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-ispirates .featured-slider button.slick-arrow:hover::after{color:#51297e}.main-meta-textcol-ispirates .entry-meta,.main-meta-textcol-ispirates .entry-cats,.main-meta-textcol-ispirates .slider-text .entry-meta a,.main-meta-textcol-ispirates .slider-text .entry-cats a,.main-meta-textcol-ispirates .section-one-column-one .entry-cats a,.main-meta-textcol-ispirates .section-three-column-one .entry-cats a,.main-meta-textcol-ispirates #front-section-four .entry-cats a,.main-meta-textcol-ispirates #front-section-four .entry-meta a,.main-meta-textcol-ispirates .featured-slider .entry-cats a,.main-meta-textcol-ispirates.single-post .entry-header .entry-cats a,.main-meta-textcol-ispirates.blog .featured-slider .entry-cats a,.main-meta-textcol-ispirates.blog .featured-slider .entry-meta a,.main-meta-textcol-ispirates.blog .hentry .entry-cats a,.main-meta-textcol-ispirates.single-post .entry-cats a,.main-meta-textcol-ispirates.single-post .entry-tags a,.main-meta-textcol-ispirates.single-post .entry-header .page-links a,.main-meta-textcol-ispirates .post-page-numbers.current,.main-meta-textcol-ispirates main .entry-content .pagebreak-links a,.main-meta-textcol-ispirates .post-navigation .nav-links a,.main-meta-textcol-ispirates .pagination .nav-links span.page-numbers,.main-meta-textcol-ispirates .pagination .nav-links a.page-numbers,.main-meta-textcol-ispirates.single-post .entry-header .page-links .number{color:#51297e}.main-meta-bgcol-ispirates .entry-cats a,.main-meta-bgcol-ispirates .featured-slider .entry-cats a,.main-meta-bgcol-ispirates .featured-slider .entry-meta a,.main-meta-bgcol-ispirates .section-one-column-one .entry-cats a,.main-meta-bgcol-ispirates .section-three-column-one .entry-cats a,.main-meta-bgcol-ispirates #front-section-four .entry-cats a,.main-meta-bgcol-ispirates.single-post .entry-cats a,.main-meta-bgcol-ispirates.single-post .entry-tags a,.main-meta-bgcol-ispirates.blog .hentry .entry-cats a,.main-meta-bgcol-ispirates.blog .featured-slider .entry-cats a,.main-meta-bgcol-ispirates.blog .featured-slider .entry-meta a,.main-meta-bgcol-ispirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-ispirates .post-page-numbers.current,.main-meta-bgcol-ispirates .post-navigation .nav-links a,.main-meta-bgcol-ispirates .pagebreak-links a,.main-meta-bgcol-ispirates .pagination .nav-links span.page-numbers,.main-meta-bgcol-ispirates .pagination .nav-links a.page-numbers{background:#51297e}.main-meta-bgcol-ispirates .gallery .slick-prev:before,.main-meta-bgcol-ispirates .gallery .slick-next:before,.main-meta-bgcol-ispirates .gallery .slick-dots li.slick-active button:before{color:#51297e}.main-meta-bgcol-hover-ispirates .entry-cats a:hover,.main-meta-bgcol-hover-ispirates .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-ispirates .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-ispirates .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-ispirates .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-ispirates #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-ispirates.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-ispirates.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-ispirates.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-ispirates.single-post .entry-cats a:hover,.main-meta-bgcol-hover-ispirates.single-post .entry-tags a:hover,.main-meta-bgcol-hover-ispirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-ispirates .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-ispirates .pagebreak-links a:hover,.main-meta-bgcol-hover-ispirates .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-ispirates .pagination .nav-links a.page-numbers:hover{background:#51297e}.main-meta-textcol-hover-black.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-black.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-black.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-black.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-black main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-black .post-navigation .nav-links a:hover,.main-meta-textcol-hover-black .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-black .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-black .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-black .featured-slider button.slick-arrow:hover::after{color:#000}.main-meta-textcol-black .entry-meta,.main-meta-textcol-black .entry-cats,.main-meta-textcol-black .slider-text .entry-meta a,.main-meta-textcol-black .slider-text .entry-cats a,.main-meta-textcol-black .section-one-column-one .entry-cats a,.main-meta-textcol-black .section-three-column-one .entry-cats a,.main-meta-textcol-black #front-section-four .entry-cats a,.main-meta-textcol-black #front-section-four .entry-meta a,.main-meta-textcol-black .featured-slider .entry-cats a,.main-meta-textcol-black.single-post .entry-header .entry-cats a,.main-meta-textcol-black.blog .featured-slider .entry-cats a,.main-meta-textcol-black.blog .featured-slider .entry-meta a,.main-meta-textcol-black.blog .hentry .entry-cats a,.main-meta-textcol-black.single-post .entry-cats a,.main-meta-textcol-black.single-post .entry-tags a,.main-meta-textcol-black.single-post .entry-header .page-links a,.main-meta-textcol-black .post-page-numbers.current,.main-meta-textcol-black main .entry-content .pagebreak-links a,.main-meta-textcol-black .post-navigation .nav-links a,.main-meta-textcol-black .pagination .nav-links span.page-numbers,.main-meta-textcol-black .pagination .nav-links a.page-numbers,.main-meta-textcol-black.single-post .entry-header .page-links .number{color:#000}.main-meta-bgcol-black .entry-cats a,.main-meta-bgcol-black .featured-slider .entry-cats a,.main-meta-bgcol-black .featured-slider .entry-meta a,.main-meta-bgcol-black .section-one-column-one .entry-cats a,.main-meta-bgcol-black .section-three-column-one .entry-cats a,.main-meta-bgcol-black #front-section-four .entry-cats a,.main-meta-bgcol-black.single-post .entry-cats a,.main-meta-bgcol-black.single-post .entry-tags a,.main-meta-bgcol-black.blog .hentry .entry-cats a,.main-meta-bgcol-black.blog .featured-slider .entry-cats a,.main-meta-bgcol-black.blog .featured-slider .entry-meta a,.main-meta-bgcol-black.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-black .post-page-numbers.current,.main-meta-bgcol-black .post-navigation .nav-links a,.main-meta-bgcol-black .pagebreak-links a,.main-meta-bgcol-black .pagination .nav-links span.page-numbers,.main-meta-bgcol-black .pagination .nav-links a.page-numbers{background:#000}.main-meta-bgcol-black .gallery .slick-prev:before,.main-meta-bgcol-black .gallery .slick-next:before,.main-meta-bgcol-black .gallery .slick-dots li.slick-active button:before{color:#000}.main-meta-bgcol-hover-black .entry-cats a:hover,.main-meta-bgcol-hover-black .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-black .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-black .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-black .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-black #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-black.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-black.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-black.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-black.single-post .entry-cats a:hover,.main-meta-bgcol-hover-black.single-post .entry-tags a:hover,.main-meta-bgcol-hover-black.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-black .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-black .pagebreak-links a:hover,.main-meta-bgcol-hover-black .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-black .pagination .nav-links a.page-numbers:hover{background:#000}.main-meta-textcol-hover-white.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-white.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-white.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-white.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-white main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-white .post-navigation .nav-links a:hover,.main-meta-textcol-hover-white .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-white .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-white .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-white .featured-slider button.slick-arrow:hover::after{color:#fff}.main-meta-textcol-white .entry-meta,.main-meta-textcol-white .entry-cats,.main-meta-textcol-white .slider-text .entry-meta a,.main-meta-textcol-white .slider-text .entry-cats a,.main-meta-textcol-white .section-one-column-one .entry-cats a,.main-meta-textcol-white .section-three-column-one .entry-cats a,.main-meta-textcol-white #front-section-four .entry-cats a,.main-meta-textcol-white #front-section-four .entry-meta a,.main-meta-textcol-white .featured-slider .entry-cats a,.main-meta-textcol-white.single-post .entry-header .entry-cats a,.main-meta-textcol-white.blog .featured-slider .entry-cats a,.main-meta-textcol-white.blog .featured-slider .entry-meta a,.main-meta-textcol-white.blog .hentry .entry-cats a,.main-meta-textcol-white.single-post .entry-cats a,.main-meta-textcol-white.single-post .entry-tags a,.main-meta-textcol-white.single-post .entry-header .page-links a,.main-meta-textcol-white .post-page-numbers.current,.main-meta-textcol-white main .entry-content .pagebreak-links a,.main-meta-textcol-white .post-navigation .nav-links a,.main-meta-textcol-white .pagination .nav-links span.page-numbers,.main-meta-textcol-white .pagination .nav-links a.page-numbers,.main-meta-textcol-white.single-post .entry-header .page-links .number{color:#fff}.main-meta-bgcol-white .entry-cats a,.main-meta-bgcol-white .featured-slider .entry-cats a,.main-meta-bgcol-white .featured-slider .entry-meta a,.main-meta-bgcol-white .section-one-column-one .entry-cats a,.main-meta-bgcol-white .section-three-column-one .entry-cats a,.main-meta-bgcol-white #front-section-four .entry-cats a,.main-meta-bgcol-white.single-post .entry-cats a,.main-meta-bgcol-white.single-post .entry-tags a,.main-meta-bgcol-white.blog .hentry .entry-cats a,.main-meta-bgcol-white.blog .featured-slider .entry-cats a,.main-meta-bgcol-white.blog .featured-slider .entry-meta a,.main-meta-bgcol-white.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-white .post-page-numbers.current,.main-meta-bgcol-white .post-navigation .nav-links a,.main-meta-bgcol-white .pagebreak-links a,.main-meta-bgcol-white .pagination .nav-links span.page-numbers,.main-meta-bgcol-white .pagination .nav-links a.page-numbers{background:#fff}.main-meta-bgcol-white .gallery .slick-prev:before,.main-meta-bgcol-white .gallery .slick-next:before,.main-meta-bgcol-white .gallery .slick-dots li.slick-active button:before{color:#fff}.main-meta-bgcol-hover-white .entry-cats a:hover,.main-meta-bgcol-hover-white .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-white .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-white .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-white .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-white #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-white.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-white.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-white.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-white.single-post .entry-cats a:hover,.main-meta-bgcol-hover-white.single-post .entry-tags a:hover,.main-meta-bgcol-hover-white.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-white .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-white .pagebreak-links a:hover,.main-meta-bgcol-hover-white .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-white .pagination .nav-links a.page-numbers:hover{background:#fff}.main-meta-textcol-hover-grey.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-grey.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-grey.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-grey.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-grey main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-grey .post-navigation .nav-links a:hover,.main-meta-textcol-hover-grey .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-grey .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-grey .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-grey .featured-slider button.slick-arrow:hover::after{color:#e7e7eb}.main-meta-textcol-grey .entry-meta,.main-meta-textcol-grey .entry-cats,.main-meta-textcol-grey .slider-text .entry-meta a,.main-meta-textcol-grey .slider-text .entry-cats a,.main-meta-textcol-grey .section-one-column-one .entry-cats a,.main-meta-textcol-grey .section-three-column-one .entry-cats a,.main-meta-textcol-grey #front-section-four .entry-cats a,.main-meta-textcol-grey #front-section-four .entry-meta a,.main-meta-textcol-grey .featured-slider .entry-cats a,.main-meta-textcol-grey.single-post .entry-header .entry-cats a,.main-meta-textcol-grey.blog .featured-slider .entry-cats a,.main-meta-textcol-grey.blog .featured-slider .entry-meta a,.main-meta-textcol-grey.blog .hentry .entry-cats a,.main-meta-textcol-grey.single-post .entry-cats a,.main-meta-textcol-grey.single-post .entry-tags a,.main-meta-textcol-grey.single-post .entry-header .page-links a,.main-meta-textcol-grey .post-page-numbers.current,.main-meta-textcol-grey main .entry-content .pagebreak-links a,.main-meta-textcol-grey .post-navigation .nav-links a,.main-meta-textcol-grey .pagination .nav-links span.page-numbers,.main-meta-textcol-grey .pagination .nav-links a.page-numbers,.main-meta-textcol-grey.single-post .entry-header .page-links .number{color:#e7e7eb}.main-meta-bgcol-grey .entry-cats a,.main-meta-bgcol-grey .featured-slider .entry-cats a,.main-meta-bgcol-grey .featured-slider .entry-meta a,.main-meta-bgcol-grey .section-one-column-one .entry-cats a,.main-meta-bgcol-grey .section-three-column-one .entry-cats a,.main-meta-bgcol-grey #front-section-four .entry-cats a,.main-meta-bgcol-grey.single-post .entry-cats a,.main-meta-bgcol-grey.single-post .entry-tags a,.main-meta-bgcol-grey.blog .hentry .entry-cats a,.main-meta-bgcol-grey.blog .featured-slider .entry-cats a,.main-meta-bgcol-grey.blog .featured-slider .entry-meta a,.main-meta-bgcol-grey.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-grey .post-page-numbers.current,.main-meta-bgcol-grey .post-navigation .nav-links a,.main-meta-bgcol-grey .pagebreak-links a,.main-meta-bgcol-grey .pagination .nav-links span.page-numbers,.main-meta-bgcol-grey .pagination .nav-links a.page-numbers{background:#e7e7eb}.main-meta-bgcol-grey .gallery .slick-prev:before,.main-meta-bgcol-grey .gallery .slick-next:before,.main-meta-bgcol-grey .gallery .slick-dots li.slick-active button:before{color:#e7e7eb}.main-meta-bgcol-hover-grey .entry-cats a:hover,.main-meta-bgcol-hover-grey .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-grey .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-grey .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-grey .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-grey #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-grey.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-grey.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-grey.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-grey.single-post .entry-cats a:hover,.main-meta-bgcol-hover-grey.single-post .entry-tags a:hover,.main-meta-bgcol-hover-grey.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-grey .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-grey .pagebreak-links a:hover,.main-meta-bgcol-hover-grey .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-grey .pagination .nav-links a.page-numbers:hover{background:#e7e7eb}.main-meta-textcol-hover-darkgrey.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-darkgrey.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-darkgrey.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-darkgrey.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-darkgrey main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-darkgrey .post-navigation .nav-links a:hover,.main-meta-textcol-hover-darkgrey .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-darkgrey .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-darkgrey .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-darkgrey .featured-slider button.slick-arrow:hover::after{color:#1a1a1a}.main-meta-textcol-darkgrey .entry-meta,.main-meta-textcol-darkgrey .entry-cats,.main-meta-textcol-darkgrey .slider-text .entry-meta a,.main-meta-textcol-darkgrey .slider-text .entry-cats a,.main-meta-textcol-darkgrey .section-one-column-one .entry-cats a,.main-meta-textcol-darkgrey .section-three-column-one .entry-cats a,.main-meta-textcol-darkgrey #front-section-four .entry-cats a,.main-meta-textcol-darkgrey #front-section-four .entry-meta a,.main-meta-textcol-darkgrey .featured-slider .entry-cats a,.main-meta-textcol-darkgrey.single-post .entry-header .entry-cats a,.main-meta-textcol-darkgrey.blog .featured-slider .entry-cats a,.main-meta-textcol-darkgrey.blog .featured-slider .entry-meta a,.main-meta-textcol-darkgrey.blog .hentry .entry-cats a,.main-meta-textcol-darkgrey.single-post .entry-cats a,.main-meta-textcol-darkgrey.single-post .entry-tags a,.main-meta-textcol-darkgrey.single-post .entry-header .page-links a,.main-meta-textcol-darkgrey .post-page-numbers.current,.main-meta-textcol-darkgrey main .entry-content .pagebreak-links a,.main-meta-textcol-darkgrey .post-navigation .nav-links a,.main-meta-textcol-darkgrey .pagination .nav-links span.page-numbers,.main-meta-textcol-darkgrey .pagination .nav-links a.page-numbers,.main-meta-textcol-darkgrey.single-post .entry-header .page-links .number{color:#1a1a1a}.main-meta-bgcol-darkgrey .entry-cats a,.main-meta-bgcol-darkgrey .featured-slider .entry-cats a,.main-meta-bgcol-darkgrey .featured-slider .entry-meta a,.main-meta-bgcol-darkgrey .section-one-column-one .entry-cats a,.main-meta-bgcol-darkgrey .section-three-column-one .entry-cats a,.main-meta-bgcol-darkgrey #front-section-four .entry-cats a,.main-meta-bgcol-darkgrey.single-post .entry-cats a,.main-meta-bgcol-darkgrey.single-post .entry-tags a,.main-meta-bgcol-darkgrey.blog .hentry .entry-cats a,.main-meta-bgcol-darkgrey.blog .featured-slider .entry-cats a,.main-meta-bgcol-darkgrey.blog .featured-slider .entry-meta a,.main-meta-bgcol-darkgrey.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-darkgrey .post-page-numbers.current,.main-meta-bgcol-darkgrey .post-navigation .nav-links a,.main-meta-bgcol-darkgrey .pagebreak-links a,.main-meta-bgcol-darkgrey .pagination .nav-links span.page-numbers,.main-meta-bgcol-darkgrey .pagination .nav-links a.page-numbers{background:#1a1a1a}.main-meta-bgcol-darkgrey .gallery .slick-prev:before,.main-meta-bgcol-darkgrey .gallery .slick-next:before,.main-meta-bgcol-darkgrey .gallery .slick-dots li.slick-active button:before{color:#1a1a1a}.main-meta-bgcol-hover-darkgrey .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-darkgrey .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-darkgrey.single-post .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey.single-post .entry-tags a:hover,.main-meta-bgcol-hover-darkgrey.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-darkgrey .pagebreak-links a:hover,.main-meta-bgcol-hover-darkgrey .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-darkgrey .pagination .nav-links a.page-numbers:hover{background:#1a1a1a}.main-meta-textcol-hover-blue.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-blue.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-blue.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-blue.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-blue main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-blue .post-navigation .nav-links a:hover,.main-meta-textcol-hover-blue .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-blue .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-blue .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-blue .featured-slider button.slick-arrow:hover::after{color:#06f}.main-meta-textcol-blue .entry-meta,.main-meta-textcol-blue .entry-cats,.main-meta-textcol-blue .slider-text .entry-meta a,.main-meta-textcol-blue .slider-text .entry-cats a,.main-meta-textcol-blue .section-one-column-one .entry-cats a,.main-meta-textcol-blue .section-three-column-one .entry-cats a,.main-meta-textcol-blue #front-section-four .entry-cats a,.main-meta-textcol-blue #front-section-four .entry-meta a,.main-meta-textcol-blue .featured-slider .entry-cats a,.main-meta-textcol-blue.single-post .entry-header .entry-cats a,.main-meta-textcol-blue.blog .featured-slider .entry-cats a,.main-meta-textcol-blue.blog .featured-slider .entry-meta a,.main-meta-textcol-blue.blog .hentry .entry-cats a,.main-meta-textcol-blue.single-post .entry-cats a,.main-meta-textcol-blue.single-post .entry-tags a,.main-meta-textcol-blue.single-post .entry-header .page-links a,.main-meta-textcol-blue .post-page-numbers.current,.main-meta-textcol-blue main .entry-content .pagebreak-links a,.main-meta-textcol-blue .post-navigation .nav-links a,.main-meta-textcol-blue .pagination .nav-links span.page-numbers,.main-meta-textcol-blue .pagination .nav-links a.page-numbers,.main-meta-textcol-blue.single-post .entry-header .page-links .number{color:#06f}.main-meta-bgcol-blue .entry-cats a,.main-meta-bgcol-blue .featured-slider .entry-cats a,.main-meta-bgcol-blue .featured-slider .entry-meta a,.main-meta-bgcol-blue .section-one-column-one .entry-cats a,.main-meta-bgcol-blue .section-three-column-one .entry-cats a,.main-meta-bgcol-blue #front-section-four .entry-cats a,.main-meta-bgcol-blue.single-post .entry-cats a,.main-meta-bgcol-blue.single-post .entry-tags a,.main-meta-bgcol-blue.blog .hentry .entry-cats a,.main-meta-bgcol-blue.blog .featured-slider .entry-cats a,.main-meta-bgcol-blue.blog .featured-slider .entry-meta a,.main-meta-bgcol-blue.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-blue .post-page-numbers.current,.main-meta-bgcol-blue .post-navigation .nav-links a,.main-meta-bgcol-blue .pagebreak-links a,.main-meta-bgcol-blue .pagination .nav-links span.page-numbers,.main-meta-bgcol-blue .pagination .nav-links a.page-numbers{background:#06f}.main-meta-bgcol-blue .gallery .slick-prev:before,.main-meta-bgcol-blue .gallery .slick-next:before,.main-meta-bgcol-blue .gallery .slick-dots li.slick-active button:before{color:#06f}.main-meta-bgcol-hover-blue .entry-cats a:hover,.main-meta-bgcol-hover-blue .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-blue .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-blue .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-blue .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-blue #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-blue.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-blue.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-blue.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-blue.single-post .entry-cats a:hover,.main-meta-bgcol-hover-blue.single-post .entry-tags a:hover,.main-meta-bgcol-hover-blue.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-blue .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-blue .pagebreak-links a:hover,.main-meta-bgcol-hover-blue .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-blue .pagination .nav-links a.page-numbers:hover{background:#06f}.main-meta-textcol-hover-red.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-red.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-red.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-red.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-red main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-red .post-navigation .nav-links a:hover,.main-meta-textcol-hover-red .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-red .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-red .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-red .featured-slider button.slick-arrow:hover::after{color:#d7464d}.main-meta-textcol-red .entry-meta,.main-meta-textcol-red .entry-cats,.main-meta-textcol-red .slider-text .entry-meta a,.main-meta-textcol-red .slider-text .entry-cats a,.main-meta-textcol-red .section-one-column-one .entry-cats a,.main-meta-textcol-red .section-three-column-one .entry-cats a,.main-meta-textcol-red #front-section-four .entry-cats a,.main-meta-textcol-red #front-section-four .entry-meta a,.main-meta-textcol-red .featured-slider .entry-cats a,.main-meta-textcol-red.single-post .entry-header .entry-cats a,.main-meta-textcol-red.blog .featured-slider .entry-cats a,.main-meta-textcol-red.blog .featured-slider .entry-meta a,.main-meta-textcol-red.blog .hentry .entry-cats a,.main-meta-textcol-red.single-post .entry-cats a,.main-meta-textcol-red.single-post .entry-tags a,.main-meta-textcol-red.single-post .entry-header .page-links a,.main-meta-textcol-red .post-page-numbers.current,.main-meta-textcol-red main .entry-content .pagebreak-links a,.main-meta-textcol-red .post-navigation .nav-links a,.main-meta-textcol-red .pagination .nav-links span.page-numbers,.main-meta-textcol-red .pagination .nav-links a.page-numbers,.main-meta-textcol-red.single-post .entry-header .page-links .number{color:#d7464d}.main-meta-bgcol-red .entry-cats a,.main-meta-bgcol-red .featured-slider .entry-cats a,.main-meta-bgcol-red .featured-slider .entry-meta a,.main-meta-bgcol-red .section-one-column-one .entry-cats a,.main-meta-bgcol-red .section-three-column-one .entry-cats a,.main-meta-bgcol-red #front-section-four .entry-cats a,.main-meta-bgcol-red.single-post .entry-cats a,.main-meta-bgcol-red.single-post .entry-tags a,.main-meta-bgcol-red.blog .hentry .entry-cats a,.main-meta-bgcol-red.blog .featured-slider .entry-cats a,.main-meta-bgcol-red.blog .featured-slider .entry-meta a,.main-meta-bgcol-red.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-red .post-page-numbers.current,.main-meta-bgcol-red .post-navigation .nav-links a,.main-meta-bgcol-red .pagebreak-links a,.main-meta-bgcol-red .pagination .nav-links span.page-numbers,.main-meta-bgcol-red .pagination .nav-links a.page-numbers{background:#d7464d}.main-meta-bgcol-red .gallery .slick-prev:before,.main-meta-bgcol-red .gallery .slick-next:before,.main-meta-bgcol-red .gallery .slick-dots li.slick-active button:before{color:#d7464d}.main-meta-bgcol-hover-red .entry-cats a:hover,.main-meta-bgcol-hover-red .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-red .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-red .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-red .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-red #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-red.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-red.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-red.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-red.single-post .entry-cats a:hover,.main-meta-bgcol-hover-red.single-post .entry-tags a:hover,.main-meta-bgcol-hover-red.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-red .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-red .pagebreak-links a:hover,.main-meta-bgcol-hover-red .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-red .pagination .nav-links a.page-numbers:hover{background:#d7464d}.main-meta-textcol-hover-yellow.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-yellow.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-yellow.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-yellow.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-yellow main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-yellow .post-navigation .nav-links a:hover,.main-meta-textcol-hover-yellow .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-yellow .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-yellow .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-yellow .featured-slider button.slick-arrow:hover::after{color:#e7b547}.main-meta-textcol-yellow .entry-meta,.main-meta-textcol-yellow .entry-cats,.main-meta-textcol-yellow .slider-text .entry-meta a,.main-meta-textcol-yellow .slider-text .entry-cats a,.main-meta-textcol-yellow .section-one-column-one .entry-cats a,.main-meta-textcol-yellow .section-three-column-one .entry-cats a,.main-meta-textcol-yellow #front-section-four .entry-cats a,.main-meta-textcol-yellow #front-section-four .entry-meta a,.main-meta-textcol-yellow .featured-slider .entry-cats a,.main-meta-textcol-yellow.single-post .entry-header .entry-cats a,.main-meta-textcol-yellow.blog .featured-slider .entry-cats a,.main-meta-textcol-yellow.blog .featured-slider .entry-meta a,.main-meta-textcol-yellow.blog .hentry .entry-cats a,.main-meta-textcol-yellow.single-post .entry-cats a,.main-meta-textcol-yellow.single-post .entry-tags a,.main-meta-textcol-yellow.single-post .entry-header .page-links a,.main-meta-textcol-yellow .post-page-numbers.current,.main-meta-textcol-yellow main .entry-content .pagebreak-links a,.main-meta-textcol-yellow .post-navigation .nav-links a,.main-meta-textcol-yellow .pagination .nav-links span.page-numbers,.main-meta-textcol-yellow .pagination .nav-links a.page-numbers,.main-meta-textcol-yellow.single-post .entry-header .page-links .number{color:#e7b547}.main-meta-bgcol-yellow .entry-cats a,.main-meta-bgcol-yellow .featured-slider .entry-cats a,.main-meta-bgcol-yellow .featured-slider .entry-meta a,.main-meta-bgcol-yellow .section-one-column-one .entry-cats a,.main-meta-bgcol-yellow .section-three-column-one .entry-cats a,.main-meta-bgcol-yellow #front-section-four .entry-cats a,.main-meta-bgcol-yellow.single-post .entry-cats a,.main-meta-bgcol-yellow.single-post .entry-tags a,.main-meta-bgcol-yellow.blog .hentry .entry-cats a,.main-meta-bgcol-yellow.blog .featured-slider .entry-cats a,.main-meta-bgcol-yellow.blog .featured-slider .entry-meta a,.main-meta-bgcol-yellow.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-yellow .post-page-numbers.current,.main-meta-bgcol-yellow .post-navigation .nav-links a,.main-meta-bgcol-yellow .pagebreak-links a,.main-meta-bgcol-yellow .pagination .nav-links span.page-numbers,.main-meta-bgcol-yellow .pagination .nav-links a.page-numbers{background:#e7b547}.main-meta-bgcol-yellow .gallery .slick-prev:before,.main-meta-bgcol-yellow .gallery .slick-next:before,.main-meta-bgcol-yellow .gallery .slick-dots li.slick-active button:before{color:#e7b547}.main-meta-bgcol-hover-yellow .entry-cats a:hover,.main-meta-bgcol-hover-yellow .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-yellow .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-yellow .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-yellow .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-yellow #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-yellow.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-yellow.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-yellow.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-yellow.single-post .entry-cats a:hover,.main-meta-bgcol-hover-yellow.single-post .entry-tags a:hover,.main-meta-bgcol-hover-yellow.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-yellow .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-yellow .pagebreak-links a:hover,.main-meta-bgcol-hover-yellow .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-yellow .pagination .nav-links a.page-numbers:hover{background:#e7b547}.main-meta-textcol-hover-green.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-green.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-green.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-green.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-green main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-green .post-navigation .nav-links a:hover,.main-meta-textcol-hover-green .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-green .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-green .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-green .featured-slider button.slick-arrow:hover::after{color:#85c066}.main-meta-textcol-green .entry-meta,.main-meta-textcol-green .entry-cats,.main-meta-textcol-green .slider-text .entry-meta a,.main-meta-textcol-green .slider-text .entry-cats a,.main-meta-textcol-green .section-one-column-one .entry-cats a,.main-meta-textcol-green .section-three-column-one .entry-cats a,.main-meta-textcol-green #front-section-four .entry-cats a,.main-meta-textcol-green #front-section-four .entry-meta a,.main-meta-textcol-green .featured-slider .entry-cats a,.main-meta-textcol-green.single-post .entry-header .entry-cats a,.main-meta-textcol-green.blog .featured-slider .entry-cats a,.main-meta-textcol-green.blog .featured-slider .entry-meta a,.main-meta-textcol-green.blog .hentry .entry-cats a,.main-meta-textcol-green.single-post .entry-cats a,.main-meta-textcol-green.single-post .entry-tags a,.main-meta-textcol-green.single-post .entry-header .page-links a,.main-meta-textcol-green .post-page-numbers.current,.main-meta-textcol-green main .entry-content .pagebreak-links a,.main-meta-textcol-green .post-navigation .nav-links a,.main-meta-textcol-green .pagination .nav-links span.page-numbers,.main-meta-textcol-green .pagination .nav-links a.page-numbers,.main-meta-textcol-green.single-post .entry-header .page-links .number{color:#85c066}.main-meta-bgcol-green .entry-cats a,.main-meta-bgcol-green .featured-slider .entry-cats a,.main-meta-bgcol-green .featured-slider .entry-meta a,.main-meta-bgcol-green .section-one-column-one .entry-cats a,.main-meta-bgcol-green .section-three-column-one .entry-cats a,.main-meta-bgcol-green #front-section-four .entry-cats a,.main-meta-bgcol-green.single-post .entry-cats a,.main-meta-bgcol-green.single-post .entry-tags a,.main-meta-bgcol-green.blog .hentry .entry-cats a,.main-meta-bgcol-green.blog .featured-slider .entry-cats a,.main-meta-bgcol-green.blog .featured-slider .entry-meta a,.main-meta-bgcol-green.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-green .post-page-numbers.current,.main-meta-bgcol-green .post-navigation .nav-links a,.main-meta-bgcol-green .pagebreak-links a,.main-meta-bgcol-green .pagination .nav-links span.page-numbers,.main-meta-bgcol-green .pagination .nav-links a.page-numbers{background:#85c066}.main-meta-bgcol-green .gallery .slick-prev:before,.main-meta-bgcol-green .gallery .slick-next:before,.main-meta-bgcol-green .gallery .slick-dots li.slick-active button:before{color:#85c066}.main-meta-bgcol-hover-green .entry-cats a:hover,.main-meta-bgcol-hover-green .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-green .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-green .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-green .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-green #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-green.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-green.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-green.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-green.single-post .entry-cats a:hover,.main-meta-bgcol-hover-green.single-post .entry-tags a:hover,.main-meta-bgcol-hover-green.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-green .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-green .pagebreak-links a:hover,.main-meta-bgcol-hover-green .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-green .pagination .nav-links a.page-numbers:hover{background:#85c066}.main-listitem-main main ul li:before{color:#f80}.main-quoteborder-main blockquote{border-color:#f80}.main-listitem-second main ul li:before{color:#672082}.main-quoteborder-second blockquote{border-color:#672082}.main-listitem-third main ul li:before{color:#698bc1}.main-quoteborder-third blockquote{border-color:#698bc1}.main-listitem-four main ul li:before{color:#148f93}.main-quoteborder-four blockquote{border-color:#148f93}.main-listitem-uspirates main ul li:before{color:#B127AF}.main-quoteborder-uspirates blockquote{border-color:#B127AF}.main-listitem-tkpirates main ul li:before{color:#00B5B1}.main-quoteborder-tkpirates blockquote{border-color:#00B5B1}.main-listitem-chpirates main ul li:before{color:#F9B200}.main-quoteborder-chpirates blockquote{border-color:#F9B200}.main-listitem-ispirates main ul li:before{color:#51297e}.main-quoteborder-ispirates blockquote{border-color:#51297e}.main-listitem-black main ul li:before{color:#000}.main-quoteborder-black blockquote{border-color:#000}.main-listitem-white main ul li:before{color:#fff}.main-quoteborder-white blockquote{border-color:#fff}.main-listitem-grey main ul li:before{color:#e7e7eb}.main-quoteborder-grey blockquote{border-color:#e7e7eb}.main-listitem-darkgrey main ul li:before{color:#1a1a1a}.main-quoteborder-darkgrey blockquote{border-color:#1a1a1a}.main-listitem-blue main ul li:before{color:#06f}.main-quoteborder-blue blockquote{border-color:#06f}.main-listitem-red main ul li:before{color:#d7464d}.main-quoteborder-red blockquote{border-color:#d7464d}.main-listitem-yellow main ul li:before{color:#e7b547}.main-quoteborder-yellow blockquote{border-color:#e7b547}.main-listitem-green main ul li:before{color:#85c066}.main-quoteborder-green blockquote{border-color:#85c066}.main-table-textcol-main table,.main-table-textcol-main tr,.main-table-textcol-main th,.main-table-textcol-main td{color:#f80}.main-table-bgcol-main table{background-color:#f80}.main-table-bgcol-head-main table thead,.main-table-bgcol-head-main th{background-color:#f80}.main-table-bgcol-odd-main tr td{background-color:transparent}.main-table-bgcol-odd-main table.long tr:nth-child(odd) td,.main-table-bgcol-odd-main tr:nth-child(odd) td{background-color:#f80}.main-table-textcol-second table,.main-table-textcol-second tr,.main-table-textcol-second th,.main-table-textcol-second td{color:#672082}.main-table-bgcol-second table{background-color:#672082}.main-table-bgcol-head-second table thead,.main-table-bgcol-head-second th{background-color:#672082}.main-table-bgcol-odd-second tr td{background-color:transparent}.main-table-bgcol-odd-second table.long tr:nth-child(odd) td,.main-table-bgcol-odd-second tr:nth-child(odd) td{background-color:#672082}.main-table-textcol-third table,.main-table-textcol-third tr,.main-table-textcol-third th,.main-table-textcol-third td{color:#698bc1}.main-table-bgcol-third table{background-color:#698bc1}.main-table-bgcol-head-third table thead,.main-table-bgcol-head-third th{background-color:#698bc1}.main-table-bgcol-odd-third tr td{background-color:transparent}.main-table-bgcol-odd-third table.long tr:nth-child(odd) td,.main-table-bgcol-odd-third tr:nth-child(odd) td{background-color:#698bc1}.main-table-textcol-four table,.main-table-textcol-four tr,.main-table-textcol-four th,.main-table-textcol-four td{color:#148f93}.main-table-bgcol-four table{background-color:#148f93}.main-table-bgcol-head-four table thead,.main-table-bgcol-head-four th{background-color:#148f93}.main-table-bgcol-odd-four tr td{background-color:transparent}.main-table-bgcol-odd-four table.long tr:nth-child(odd) td,.main-table-bgcol-odd-four tr:nth-child(odd) td{background-color:#148f93}.main-table-textcol-uspirates table,.main-table-textcol-uspirates tr,.main-table-textcol-uspirates th,.main-table-textcol-uspirates td{color:#B127AF}.main-table-bgcol-uspirates table{background-color:#B127AF}.main-table-bgcol-head-uspirates table thead,.main-table-bgcol-head-uspirates th{background-color:#B127AF}.main-table-bgcol-odd-uspirates tr td{background-color:transparent}.main-table-bgcol-odd-uspirates table.long tr:nth-child(odd) td,.main-table-bgcol-odd-uspirates tr:nth-child(odd) td{background-color:#B127AF}.main-table-textcol-tkpirates table,.main-table-textcol-tkpirates tr,.main-table-textcol-tkpirates th,.main-table-textcol-tkpirates td{color:#00B5B1}.main-table-bgcol-tkpirates table{background-color:#00B5B1}.main-table-bgcol-head-tkpirates table thead,.main-table-bgcol-head-tkpirates th{background-color:#00B5B1}.main-table-bgcol-odd-tkpirates tr td{background-color:transparent}.main-table-bgcol-odd-tkpirates table.long tr:nth-child(odd) td,.main-table-bgcol-odd-tkpirates tr:nth-child(odd) td{background-color:#00B5B1}.main-table-textcol-chpirates table,.main-table-textcol-chpirates tr,.main-table-textcol-chpirates th,.main-table-textcol-chpirates td{color:#F9B200}.main-table-bgcol-chpirates table{background-color:#F9B200}.main-table-bgcol-head-chpirates table thead,.main-table-bgcol-head-chpirates th{background-color:#F9B200}.main-table-bgcol-odd-chpirates tr td{background-color:transparent}.main-table-bgcol-odd-chpirates table.long tr:nth-child(odd) td,.main-table-bgcol-odd-chpirates tr:nth-child(odd) td{background-color:#F9B200}.main-table-textcol-ispirates table,.main-table-textcol-ispirates tr,.main-table-textcol-ispirates th,.main-table-textcol-ispirates td{color:#51297e}.main-table-bgcol-ispirates table{background-color:#51297e}.main-table-bgcol-head-ispirates table thead,.main-table-bgcol-head-ispirates th{background-color:#51297e}.main-table-bgcol-odd-ispirates tr td{background-color:transparent}.main-table-bgcol-odd-ispirates table.long tr:nth-child(odd) td,.main-table-bgcol-odd-ispirates tr:nth-child(odd) td{background-color:#51297e}.main-table-textcol-black table,.main-table-textcol-black tr,.main-table-textcol-black th,.main-table-textcol-black td{color:#000}.main-table-bgcol-black table{background-color:#000}.main-table-bgcol-head-black table thead,.main-table-bgcol-head-black th{background-color:#000}.main-table-bgcol-odd-black tr td{background-color:transparent}.main-table-bgcol-odd-black table.long tr:nth-child(odd) td,.main-table-bgcol-odd-black tr:nth-child(odd) td{background-color:#000}.main-table-textcol-white table,.main-table-textcol-white tr,.main-table-textcol-white th,.main-table-textcol-white td{color:#fff}.main-table-bgcol-white table{background-color:#fff}.main-table-bgcol-head-white table thead,.main-table-bgcol-head-white th{background-color:#fff}.main-table-bgcol-odd-white tr td{background-color:transparent}.main-table-bgcol-odd-white table.long tr:nth-child(odd) td,.main-table-bgcol-odd-white tr:nth-child(odd) td{background-color:#fff}.main-table-textcol-grey table,.main-table-textcol-grey tr,.main-table-textcol-grey th,.main-table-textcol-grey td{color:#e7e7eb}.main-table-bgcol-grey table{background-color:#e7e7eb}.main-table-bgcol-head-grey table thead,.main-table-bgcol-head-grey th{background-color:#e7e7eb}.main-table-bgcol-odd-grey tr td{background-color:transparent}.main-table-bgcol-odd-grey table.long tr:nth-child(odd) td,.main-table-bgcol-odd-grey tr:nth-child(odd) td{background-color:#e7e7eb}.main-table-textcol-darkgrey table,.main-table-textcol-darkgrey tr,.main-table-textcol-darkgrey th,.main-table-textcol-darkgrey td{color:#1a1a1a}.main-table-bgcol-darkgrey table{background-color:#1a1a1a}.main-table-bgcol-head-darkgrey table thead,.main-table-bgcol-head-darkgrey th{background-color:#1a1a1a}.main-table-bgcol-odd-darkgrey tr td{background-color:transparent}.main-table-bgcol-odd-darkgrey table.long tr:nth-child(odd) td,.main-table-bgcol-odd-darkgrey tr:nth-child(odd) td{background-color:#1a1a1a}.main-table-textcol-blue table,.main-table-textcol-blue tr,.main-table-textcol-blue th,.main-table-textcol-blue td{color:#06f}.main-table-bgcol-blue table{background-color:#06f}.main-table-bgcol-head-blue table thead,.main-table-bgcol-head-blue th{background-color:#06f}.main-table-bgcol-odd-blue tr td{background-color:transparent}.main-table-bgcol-odd-blue table.long tr:nth-child(odd) td,.main-table-bgcol-odd-blue tr:nth-child(odd) td{background-color:#06f}.main-table-textcol-red table,.main-table-textcol-red tr,.main-table-textcol-red th,.main-table-textcol-red td{color:#d7464d}.main-table-bgcol-red table{background-color:#d7464d}.main-table-bgcol-head-red table thead,.main-table-bgcol-head-red th{background-color:#d7464d}.main-table-bgcol-odd-red tr td{background-color:transparent}.main-table-bgcol-odd-red table.long tr:nth-child(odd) td,.main-table-bgcol-odd-red tr:nth-child(odd) td{background-color:#d7464d}.main-table-textcol-yellow table,.main-table-textcol-yellow tr,.main-table-textcol-yellow th,.main-table-textcol-yellow td{color:#e7b547}.main-table-bgcol-yellow table{background-color:#e7b547}.main-table-bgcol-head-yellow table thead,.main-table-bgcol-head-yellow th{background-color:#e7b547}.main-table-bgcol-odd-yellow tr td{background-color:transparent}.main-table-bgcol-odd-yellow table.long tr:nth-child(odd) td,.main-table-bgcol-odd-yellow tr:nth-child(odd) td{background-color:#e7b547}.main-table-textcol-green table,.main-table-textcol-green tr,.main-table-textcol-green th,.main-table-textcol-green td{color:#85c066}.main-table-bgcol-green table{background-color:#85c066}.main-table-bgcol-head-green table thead,.main-table-bgcol-head-green th{background-color:#85c066}.main-table-bgcol-odd-green tr td{background-color:transparent}.main-table-bgcol-odd-green table.long tr:nth-child(odd) td,.main-table-bgcol-odd-green tr:nth-child(odd) td{background-color:#85c066}.footer-bgcol-main #colophon{background-color:#f80;border-color:#f80}.footer-headlinecol-main #colophon p.title-footer,.footer-headlinecol-main #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-main #colophon #footer-social h2.socialmedia,.footer-headlinecol-main #colophon h1,.footer-headlinecol-main #colophon h2,.footer-headlinecol-main #colophon h3,.footer-headlinecol-main #colophon h4,.footer-headlinecol-main #colophon h5,.footer-headlinecol-main #colophon h6{color:#f80}.footer-textcol-main #colophon,.footer-textcol-main #colophon p,.footer-textcol-main #colophon #site-info{color:#f80}.footer-linkcol-main #colophon p a,.footer-linkcol-main #colophon #site-info a,.footer-linkcol-main #colophon .footer-menu ul a{color:#f80}.footer-linkhovercol-main #colophon p a:hover,.footer-linkhovercol-main #colophon #site-info a:hover,.footer-linkhovercol-main #colophon .footer-menu ul a:hover{color:#f80}.footer-bgcol-second #colophon{background-color:#672082;border-color:#672082}.footer-headlinecol-second #colophon p.title-footer,.footer-headlinecol-second #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-second #colophon #footer-social h2.socialmedia,.footer-headlinecol-second #colophon h1,.footer-headlinecol-second #colophon h2,.footer-headlinecol-second #colophon h3,.footer-headlinecol-second #colophon h4,.footer-headlinecol-second #colophon h5,.footer-headlinecol-second #colophon h6{color:#672082}.footer-textcol-second #colophon,.footer-textcol-second #colophon p,.footer-textcol-second #colophon #site-info{color:#672082}.footer-linkcol-second #colophon p a,.footer-linkcol-second #colophon #site-info a,.footer-linkcol-second #colophon .footer-menu ul a{color:#672082}.footer-linkhovercol-second #colophon p a:hover,.footer-linkhovercol-second #colophon #site-info a:hover,.footer-linkhovercol-second #colophon .footer-menu ul a:hover{color:#672082}.footer-bgcol-third #colophon{background-color:#698bc1;border-color:#698bc1}.footer-headlinecol-third #colophon p.title-footer,.footer-headlinecol-third #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-third #colophon #footer-social h2.socialmedia,.footer-headlinecol-third #colophon h1,.footer-headlinecol-third #colophon h2,.footer-headlinecol-third #colophon h3,.footer-headlinecol-third #colophon h4,.footer-headlinecol-third #colophon h5,.footer-headlinecol-third #colophon h6{color:#698bc1}.footer-textcol-third #colophon,.footer-textcol-third #colophon p,.footer-textcol-third #colophon #site-info{color:#698bc1}.footer-linkcol-third #colophon p a,.footer-linkcol-third #colophon #site-info a,.footer-linkcol-third #colophon .footer-menu ul a{color:#698bc1}.footer-linkhovercol-third #colophon p a:hover,.footer-linkhovercol-third #colophon #site-info a:hover,.footer-linkhovercol-third #colophon .footer-menu ul a:hover{color:#698bc1}.footer-bgcol-four #colophon{background-color:#148f93;border-color:#148f93}.footer-headlinecol-four #colophon p.title-footer,.footer-headlinecol-four #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-four #colophon #footer-social h2.socialmedia,.footer-headlinecol-four #colophon h1,.footer-headlinecol-four #colophon h2,.footer-headlinecol-four #colophon h3,.footer-headlinecol-four #colophon h4,.footer-headlinecol-four #colophon h5,.footer-headlinecol-four #colophon h6{color:#148f93}.footer-textcol-four #colophon,.footer-textcol-four #colophon p,.footer-textcol-four #colophon #site-info{color:#148f93}.footer-linkcol-four #colophon p a,.footer-linkcol-four #colophon #site-info a,.footer-linkcol-four #colophon .footer-menu ul a{color:#148f93}.footer-linkhovercol-four #colophon p a:hover,.footer-linkhovercol-four #colophon #site-info a:hover,.footer-linkhovercol-four #colophon .footer-menu ul a:hover{color:#148f93}.footer-bgcol-uspirates #colophon{background-color:#B127AF;border-color:#B127AF}.footer-headlinecol-uspirates #colophon p.title-footer,.footer-headlinecol-uspirates #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-uspirates #colophon #footer-social h2.socialmedia,.footer-headlinecol-uspirates #colophon h1,.footer-headlinecol-uspirates #colophon h2,.footer-headlinecol-uspirates #colophon h3,.footer-headlinecol-uspirates #colophon h4,.footer-headlinecol-uspirates #colophon h5,.footer-headlinecol-uspirates #colophon h6{color:#B127AF}.footer-textcol-uspirates #colophon,.footer-textcol-uspirates #colophon p,.footer-textcol-uspirates #colophon #site-info{color:#B127AF}.footer-linkcol-uspirates #colophon p a,.footer-linkcol-uspirates #colophon #site-info a,.footer-linkcol-uspirates #colophon .footer-menu ul a{color:#B127AF}.footer-linkhovercol-uspirates #colophon p a:hover,.footer-linkhovercol-uspirates #colophon #site-info a:hover,.footer-linkhovercol-uspirates #colophon .footer-menu ul a:hover{color:#B127AF}.footer-bgcol-tkpirates #colophon{background-color:#00B5B1;border-color:#00B5B1}.footer-headlinecol-tkpirates #colophon p.title-footer,.footer-headlinecol-tkpirates #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-tkpirates #colophon #footer-social h2.socialmedia,.footer-headlinecol-tkpirates #colophon h1,.footer-headlinecol-tkpirates #colophon h2,.footer-headlinecol-tkpirates #colophon h3,.footer-headlinecol-tkpirates #colophon h4,.footer-headlinecol-tkpirates #colophon h5,.footer-headlinecol-tkpirates #colophon h6{color:#00B5B1}.footer-textcol-tkpirates #colophon,.footer-textcol-tkpirates #colophon p,.footer-textcol-tkpirates #colophon #site-info{color:#00B5B1}.footer-linkcol-tkpirates #colophon p a,.footer-linkcol-tkpirates #colophon #site-info a,.footer-linkcol-tkpirates #colophon .footer-menu ul a{color:#00B5B1}.footer-linkhovercol-tkpirates #colophon p a:hover,.footer-linkhovercol-tkpirates #colophon #site-info a:hover,.footer-linkhovercol-tkpirates #colophon .footer-menu ul a:hover{color:#00B5B1}.footer-bgcol-chpirates #colophon{background-color:#F9B200;border-color:#F9B200}.footer-headlinecol-chpirates #colophon p.title-footer,.footer-headlinecol-chpirates #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-chpirates #colophon #footer-social h2.socialmedia,.footer-headlinecol-chpirates #colophon h1,.footer-headlinecol-chpirates #colophon h2,.footer-headlinecol-chpirates #colophon h3,.footer-headlinecol-chpirates #colophon h4,.footer-headlinecol-chpirates #colophon h5,.footer-headlinecol-chpirates #colophon h6{color:#F9B200}.footer-textcol-chpirates #colophon,.footer-textcol-chpirates #colophon p,.footer-textcol-chpirates #colophon #site-info{color:#F9B200}.footer-linkcol-chpirates #colophon p a,.footer-linkcol-chpirates #colophon #site-info a,.footer-linkcol-chpirates #colophon .footer-menu ul a{color:#F9B200}.footer-linkhovercol-chpirates #colophon p a:hover,.footer-linkhovercol-chpirates #colophon #site-info a:hover,.footer-linkhovercol-chpirates #colophon .footer-menu ul a:hover{color:#F9B200}.footer-bgcol-ispirates #colophon{background-color:#51297e;border-color:#51297e}.footer-headlinecol-ispirates #colophon p.title-footer,.footer-headlinecol-ispirates #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-ispirates #colophon #footer-social h2.socialmedia,.footer-headlinecol-ispirates #colophon h1,.footer-headlinecol-ispirates #colophon h2,.footer-headlinecol-ispirates #colophon h3,.footer-headlinecol-ispirates #colophon h4,.footer-headlinecol-ispirates #colophon h5,.footer-headlinecol-ispirates #colophon h6{color:#51297e}.footer-textcol-ispirates #colophon,.footer-textcol-ispirates #colophon p,.footer-textcol-ispirates #colophon #site-info{color:#51297e}.footer-linkcol-ispirates #colophon p a,.footer-linkcol-ispirates #colophon #site-info a,.footer-linkcol-ispirates #colophon .footer-menu ul a{color:#51297e}.footer-linkhovercol-ispirates #colophon p a:hover,.footer-linkhovercol-ispirates #colophon #site-info a:hover,.footer-linkhovercol-ispirates #colophon .footer-menu ul a:hover{color:#51297e}.footer-bgcol-black #colophon{background-color:#000;border-color:#000}.footer-headlinecol-black #colophon p.title-footer,.footer-headlinecol-black #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-black #colophon #footer-social h2.socialmedia,.footer-headlinecol-black #colophon h1,.footer-headlinecol-black #colophon h2,.footer-headlinecol-black #colophon h3,.footer-headlinecol-black #colophon h4,.footer-headlinecol-black #colophon h5,.footer-headlinecol-black #colophon h6{color:#000}.footer-textcol-black #colophon,.footer-textcol-black #colophon p,.footer-textcol-black #colophon #site-info{color:#000}.footer-linkcol-black #colophon p a,.footer-linkcol-black #colophon #site-info a,.footer-linkcol-black #colophon .footer-menu ul a{color:#000}.footer-linkhovercol-black #colophon p a:hover,.footer-linkhovercol-black #colophon #site-info a:hover,.footer-linkhovercol-black #colophon .footer-menu ul a:hover{color:#000}.footer-bgcol-white #colophon{background-color:#fff;border-color:#fff}.footer-headlinecol-white #colophon p.title-footer,.footer-headlinecol-white #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-white #colophon #footer-social h2.socialmedia,.footer-headlinecol-white #colophon h1,.footer-headlinecol-white #colophon h2,.footer-headlinecol-white #colophon h3,.footer-headlinecol-white #colophon h4,.footer-headlinecol-white #colophon h5,.footer-headlinecol-white #colophon h6{color:#fff}.footer-textcol-white #colophon,.footer-textcol-white #colophon p,.footer-textcol-white #colophon #site-info{color:#fff}.footer-linkcol-white #colophon p a,.footer-linkcol-white #colophon #site-info a,.footer-linkcol-white #colophon .footer-menu ul a{color:#fff}.footer-linkhovercol-white #colophon p a:hover,.footer-linkhovercol-white #colophon #site-info a:hover,.footer-linkhovercol-white #colophon .footer-menu ul a:hover{color:#fff}.footer-bgcol-grey #colophon{background-color:#e7e7eb;border-color:#e7e7eb}.footer-headlinecol-grey #colophon p.title-footer,.footer-headlinecol-grey #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-grey #colophon #footer-social h2.socialmedia,.footer-headlinecol-grey #colophon h1,.footer-headlinecol-grey #colophon h2,.footer-headlinecol-grey #colophon h3,.footer-headlinecol-grey #colophon h4,.footer-headlinecol-grey #colophon h5,.footer-headlinecol-grey #colophon h6{color:#e7e7eb}.footer-textcol-grey #colophon,.footer-textcol-grey #colophon p,.footer-textcol-grey #colophon #site-info{color:#e7e7eb}.footer-linkcol-grey #colophon p a,.footer-linkcol-grey #colophon #site-info a,.footer-linkcol-grey #colophon .footer-menu ul a{color:#e7e7eb}.footer-linkhovercol-grey #colophon p a:hover,.footer-linkhovercol-grey #colophon #site-info a:hover,.footer-linkhovercol-grey #colophon .footer-menu ul a:hover{color:#e7e7eb}.footer-bgcol-darkgrey #colophon{background-color:#1a1a1a;border-color:#1a1a1a}.footer-headlinecol-darkgrey #colophon p.title-footer,.footer-headlinecol-darkgrey #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-darkgrey #colophon #footer-social h2.socialmedia,.footer-headlinecol-darkgrey #colophon h1,.footer-headlinecol-darkgrey #colophon h2,.footer-headlinecol-darkgrey #colophon h3,.footer-headlinecol-darkgrey #colophon h4,.footer-headlinecol-darkgrey #colophon h5,.footer-headlinecol-darkgrey #colophon h6{color:#1a1a1a}.footer-textcol-darkgrey #colophon,.footer-textcol-darkgrey #colophon p,.footer-textcol-darkgrey #colophon #site-info{color:#1a1a1a}.footer-linkcol-darkgrey #colophon p a,.footer-linkcol-darkgrey #colophon #site-info a,.footer-linkcol-darkgrey #colophon .footer-menu ul a{color:#1a1a1a}.footer-linkhovercol-darkgrey #colophon p a:hover,.footer-linkhovercol-darkgrey #colophon #site-info a:hover,.footer-linkhovercol-darkgrey #colophon .footer-menu ul a:hover{color:#1a1a1a}.footer-bgcol-blue #colophon{background-color:#06f;border-color:#06f}.footer-headlinecol-blue #colophon p.title-footer,.footer-headlinecol-blue #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-blue #colophon #footer-social h2.socialmedia,.footer-headlinecol-blue #colophon h1,.footer-headlinecol-blue #colophon h2,.footer-headlinecol-blue #colophon h3,.footer-headlinecol-blue #colophon h4,.footer-headlinecol-blue #colophon h5,.footer-headlinecol-blue #colophon h6{color:#06f}.footer-textcol-blue #colophon,.footer-textcol-blue #colophon p,.footer-textcol-blue #colophon #site-info{color:#06f}.footer-linkcol-blue #colophon p a,.footer-linkcol-blue #colophon #site-info a,.footer-linkcol-blue #colophon .footer-menu ul a{color:#06f}.footer-linkhovercol-blue #colophon p a:hover,.footer-linkhovercol-blue #colophon #site-info a:hover,.footer-linkhovercol-blue #colophon .footer-menu ul a:hover{color:#06f}.footer-bgcol-red #colophon{background-color:#d7464d;border-color:#d7464d}.footer-headlinecol-red #colophon p.title-footer,.footer-headlinecol-red #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-red #colophon #footer-social h2.socialmedia,.footer-headlinecol-red #colophon h1,.footer-headlinecol-red #colophon h2,.footer-headlinecol-red #colophon h3,.footer-headlinecol-red #colophon h4,.footer-headlinecol-red #colophon h5,.footer-headlinecol-red #colophon h6{color:#d7464d}.footer-textcol-red #colophon,.footer-textcol-red #colophon p,.footer-textcol-red #colophon #site-info{color:#d7464d}.footer-linkcol-red #colophon p a,.footer-linkcol-red #colophon #site-info a,.footer-linkcol-red #colophon .footer-menu ul a{color:#d7464d}.footer-linkhovercol-red #colophon p a:hover,.footer-linkhovercol-red #colophon #site-info a:hover,.footer-linkhovercol-red #colophon .footer-menu ul a:hover{color:#d7464d}.footer-bgcol-yellow #colophon{background-color:#e7b547;border-color:#e7b547}.footer-headlinecol-yellow #colophon p.title-footer,.footer-headlinecol-yellow #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-yellow #colophon #footer-social h2.socialmedia,.footer-headlinecol-yellow #colophon h1,.footer-headlinecol-yellow #colophon h2,.footer-headlinecol-yellow #colophon h3,.footer-headlinecol-yellow #colophon h4,.footer-headlinecol-yellow #colophon h5,.footer-headlinecol-yellow #colophon h6{color:#e7b547}.footer-textcol-yellow #colophon,.footer-textcol-yellow #colophon p,.footer-textcol-yellow #colophon #site-info{color:#e7b547}.footer-linkcol-yellow #colophon p a,.footer-linkcol-yellow #colophon #site-info a,.footer-linkcol-yellow #colophon .footer-menu ul a{color:#e7b547}.footer-linkhovercol-yellow #colophon p a:hover,.footer-linkhovercol-yellow #colophon #site-info a:hover,.footer-linkhovercol-yellow #colophon .footer-menu ul a:hover{color:#e7b547}.footer-bgcol-green #colophon{background-color:#85c066;border-color:#85c066}.footer-headlinecol-green #colophon p.title-footer,.footer-headlinecol-green #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-green #colophon #footer-social h2.socialmedia,.footer-headlinecol-green #colophon h1,.footer-headlinecol-green #colophon h2,.footer-headlinecol-green #colophon h3,.footer-headlinecol-green #colophon h4,.footer-headlinecol-green #colophon h5,.footer-headlinecol-green #colophon h6{color:#85c066}.footer-textcol-green #colophon,.footer-textcol-green #colophon p,.footer-textcol-green #colophon #site-info{color:#85c066}.footer-linkcol-green #colophon p a,.footer-linkcol-green #colophon #site-info a,.footer-linkcol-green #colophon .footer-menu ul a{color:#85c066}.footer-linkhovercol-green #colophon p a:hover,.footer-linkhovercol-green #colophon #site-info a:hover,.footer-linkhovercol-green #colophon .footer-menu ul a:hover{color:#85c066}.site-content div.wpcf7{clear:both;overflow:hidden;max-width:100%;padding:0 0 30px}.site-content div.wpcf7 input,.site-content div.wpcf7 textarea,.site-content div.wpcf7 p{font-size:16px;font-size:1rem}.site-content div.wpcf7 p{margin:10px 0 0 0;padding:0}.site-content div.wpcf7 p:last-of-type{padding:0}.site-content div.wpcf7 input[type='text'],.site-content div.wpcf7 input[type='email']{width:100%}.site-content div.wpcf7 textarea{width:100%}.site-content input.wpcf7-submit,.site-content div.wpcf7 p input.wpcf7-submit{clear:both;overflow:hidden;width:100%;font-weight:600}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;top:0;left:0;display:block}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.gallery .slick-loading .slick-list{background:#fff url("./img/ajax-loader.gif") center center no-repeat}.gallery .slick-prev,.gallery .slick-next{line-height:0;position:absolute;top:50%;color:transparent;display:block;width:50px;padding:0;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);cursor:pointer;border:none;outline:none;background:transparent;z-index:20}.gallery .slick-prev:hover,.gallery .slick-prev:focus,.gallery .slick-next:hover,.gallery .slick-next:focus{color:transparent;outline:none;background:transparent}.gallery .slick-prev:hover:before,.gallery .slick-prev:focus:before,.gallery .slick-next:hover:before,.gallery .slick-next:focus:before{opacity:1}.gallery .slick-prev.slick-disabled:before,.gallery .slick-next.slick-disabled:before{opacity:.25}.gallery .slick-prev:before,.gallery .slick-next:before{line-height:1;opacity:.75;color:#f80;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gallery .slick-prev{left:30px}.gallery [dir='rtl'] .slick-prev{right:30px;left:auto}.gallery .slick-next{right:30px}.gallery [dir='rtl'] .slick-next{right:auto;left:30px}.gallery .slick-dotted.slick-slider{margin-bottom:40px}.gallery .slick-dots{position:absolute;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.gallery .slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.gallery .slick-dots li button{display:block;width:20px;height:20px;padding:5px;cursor:pointer;border:0;background:transparent;color:transparent}.gallery .slick-dots li button:hover,.gallery .slick-dots li button:focus{outline:none}.gallery .slick-dots li button:hover:before,.gallery .slick-dots li button:focus:before{opacity:0.75;color:#f80}.gallery .slick-dots li button:before{position:absolute;top:0;left:0;opacity:0.25;text-align:center;color:black;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gallery .slick-dots li:after{display:none}.gallery .slick-dots li.slick-active button:before{opacity:1;color:#f80}.gallery .slider img{margin:0 auto}.gallery .slider li::before{content:inherit;display:none;margin:0}.gallery .slider .gallery-image-caption{text-align:center;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}@keyframes "DownMove"{0%{top:50%}5%{top:60%}10%{top:50%}15%{top:60%}20%{top:50%}}@-webkit-keyframes "DownMove"{0%{top:50%}5%{top:60%}10%{top:50%}15%{top:60%}20%{top:50%}}@-moz-keyframes "DownMove"{0%{top:50%}5%{top:60%}10%{top:50%}15%{top:60%}20%{top:50%}}ul.picrew-social-icons li{list-style:none;margin:0;padding:0;background:none}ul.picrew-social-icons li:before{vertical-align:top;position:relative;content:'';padding:0}.picrew-social-icons{border:1px solid #fff}.picrew-social-icons span{display:inline-block;padding:0 5px;margin-bottom:2px}.picrew-social-icons a{display:block;-webkit-transition:-webkit-transform 0.3s;-moz-transition:-moz-transform 0.3s;transition:transform 0.3s;width:25px;height:25px;text-align:center;vertical-align:middle;border-radius:50%;color:#672082}.picrew-social-icons a:hover{color:#fff;background-color:#f80}.picrew-icon-yelp:before{content:""}.picrew-icon-xing:before{content:""}.picrew-icon-xing2:before{content:""}.picrew-icon-stumbleupon:before{content:""}.picrew-icon-stumbleupon2:before{content:""}.picrew-icon-delicious:before{content:""}.picrew-icon-lastfm:before{content:""}.picrew-icon-lastfm2:before{content:""}.picrew-icon-hackernews:before{content:""}.picrew-icon-reddit:before{content:""}.picrew-icon-soundcloud:before{content:""}.picrew-icon-yahoo:before{content:""}.picrew-icon-wordpress2:before{content:""}.picrew-icon-steam:before{content:""}.picrew-icon-steam2:before{content:""}.picrew-icon-500px:before{content:""}.picrew-icon-deviantart:before{content:""}.picrew-icon-twitch:before{content:""}.picrew-icon-feed:before{content:""}.picrew-icon-sina-weibo:before{content:""}.picrew-icon-renren:before{content:""}.picrew-icon-vk:before{content:""}.picrew-icon-vine:before{content:""}.picrew-icon-telegram:before{content:""}.picrew-icon-spotify:before{content:""}.picrew-icon-mail2:before{content:""}.picrew-icon-mail3:before{content:""}.picrew-icon-arrow-down:before{content:""}.picrew-icon-arrow-left:before{content:""}.picrew-icon-arrow-right:before{content:""}.picrew-icon-close:before{content:""}.picrew-icon-github:before{content:""}.picrew-icon-mail:before{content:""}.picrew-icon-link:before{content:""}.picrew-icon-google-plus:before{content:""}.picrew-icon-google-plus2:before{content:""}.picrew-icon-facebook:before{content:""}.picrew-icon-facebook2:before{content:""}.picrew-icon-instagram:before{content:""}.picrew-icon-whatsapp:before{content:""}.picrew-icon-twitter:before{content:""}.picrew-icon-youtube:before{content:""}.picrew-icon-vimeo:before{content:""}.picrew-icon-vimeo2:before{content:""}.picrew-icon-flickr:before{content:""}.picrew-icon-wordpress:before{content:""}.picrew-icon-tumblr:before{content:""}.picrew-icon-skype:before{content:""}.picrew-icon-linkedin2:before{content:""}.picrew-icon-linkedin:before{content:""}.picrew-icon-pinterest2:before{content:""}.picrew-icon-pinterest:before{content:""}.picrew-icon-foursquare:before{content:""}.picrew-grid-wrapper,.pirate-crew-single{font-family:"DejaWeb",sans-serif;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.picrew-grid-wrapper *,.pirate-crew-single *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.picrew-grid-wrapper::before,.pirate-crew-single::before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.picrew-grid-wrapper::after,.pirate-crew-single::after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.picrew-grid-wrapper figcaption,.pirate-crew-single figcaption{display:block}.picrew-grid-wrapper figure,.pirate-crew-single figure{display:block;margin:0;-webkit-margin-before:0;-webkit-margin-after:0;-webkit-margin-start:0;-webkit-margin-end:0}.picrew-grid-wrapper a,.pirate-crew-single a{text-decoration:none;text-decoration:none;box-shadow:none;border-bottom:0;outline:none}.picrew-grid-wrapper .picrew-grid,.pirate-crew-single .picrew-grid{font-family:"DejaWeb",sans-serif;list-style:none;padding:30px 0;margin:0 -15px}@media (max-width: 700px){.picrew-grid-wrapper .picrew-grid,.pirate-crew-single .picrew-grid{margin:0 auto}}.picrew-grid-wrapper .picrew-grid>.picrew-grid-card,.pirate-crew-single .picrew-grid>.picrew-grid-card{float:left;width:25%;padding:0 15px;margin:0 0 30px;clear:none}@media (max-width: 700px){.picrew-grid-wrapper .picrew-grid>.picrew-grid-card,.pirate-crew-single .picrew-grid>.picrew-grid-card{float:none;width:100%;margin:0}}.picrew-grid-wrapper .picrew-grid h3,.pirate-crew-single .picrew-grid h3{margin:0 0 3px;padding:0}.picrew-grid-wrapper .picrew-grid.drawer-style,.pirate-crew-single .picrew-grid.drawer-style{margin:0}.picrew-grid-wrapper .grid-full-col>.picrew-grid-card,.pirate-crew-single .grid-full-col>.picrew-grid-card{width:100%}.picrew-grid-wrapper .grid-2-col>.picrew-grid-card,.pirate-crew-single .grid-2-col>.picrew-grid-card{width:50%}.picrew-grid-wrapper .grid-3-col>.picrew-grid-card,.pirate-crew-single .grid-3-col>.picrew-grid-card{width:33.33%}.picrew-grid-wrapper .grid-4-col>.picrew-grid-card,.pirate-crew-single .grid-4-col>.picrew-grid-card{width:25%}.picrew-grid-wrapper .grid-5-col>.picrew-grid-card,.pirate-crew-single .grid-5-col>.picrew-grid-card{width:20%}.picrew-grid-wrapper p,.pirate-crew-single p{line-height:1.4}.picrew-grid-wrapper ul,.pirate-crew-single ul{list-style:none;line-height:normal}.picrew-grid-wrapper .picrew-social-icons,.pirate-crew-single .picrew-social-icons{padding:0;margin:0 -5px}.picrew-grid-wrapper .picrew-social-icons a,.pirate-crew-single .picrew-social-icons a{text-decoration:none;border:none}.picrew-grid-wrapper .picrew-contact-details,.pirate-crew-single .picrew-contact-details{margin-bottom:20px}.picrew-grid-wrapper .picrew-contact-details a,.pirate-crew-single .picrew-contact-details a{text-decoration:none;border:none}.picrew-grid-wrapper a.picrew-nav-item,.pirate-crew-single a.picrew-nav-item{text-decoration:none;border:none}.picrew-grid-wrapper a.picrew-modal-close,.pirate-crew-single a.picrew-modal-close{text-decoration:none;border:none}.picrew-grid-wrapper .picrew-grid.list-style,.pirate-crew-single .picrew-grid.list-style{margin:0;padding:0}html.picrew-popup-on{height:100%;overflow:hidden}.picrew-personal-info{display:block;position:relative;margin-bottom:15px}.picrew-personal-info p,.picrew-personal-info span{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;display:block}.picrew-contact-info{display:block}.picrew-contact-info p{margin:0 0 15px;line-height:normal}.picrew-flip-front{display:block}.picrew-flip-back-inner{display:block}.grid-style{line-height:1.2}.circles-style{line-height:1.2}.clearfix::after,.accordion .accordion-group .accordion-body .accordion-inner::after{content:"";clear:both;display:block}.picrew-grid::after{content:"";clear:both;display:block}.picrew-grid figure{position:relative;margin:0}.picrew-grid figure img{width:100%;display:block;position:relative;margin:0;border:none}figure{overflow:hidden}figure figcaption a{box-shadow:none;border-bottom:0}.picrew-contact-details>p{padding:10px 0;margin:0 !important;border-bottom:1px dotted rgba(35,35,35,0.2)}.picrew-contact-details span{min-width:100px;margin-right:6px}figcaption p{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.picrew-popup-details a{box-shadow:none;border-bottom:0}.picrew-popup-items a{box-shadow:none;border-bottom:0}.drawer-style a{box-shadow:none;border-bottom:0}.picrew-grid-nav{display:none !important}.picrew-content-scrollbar{padding-right:30px}.picrew-personal-details{max-height:293px;overflow:hidden}.picrew-coming-soon{text-align:center;color:#ececed}.cards-style.style-1 figure{overflow:hidden;padding:30px 0 100px;background:#fff;border:1px solid rgba(0,0,0,0.1)}.cards-style.style-1 figure::before{content:"";background:rgba(255,255,255,0.9);background:-moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 37%, #fff 78%, #fff 100%);background:-webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 37%, #fff 78%, #fff 100%);background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 37%, #fff 78%, #fff 100%);position:absolute;top:0;right:0;bottom:0;left:0;-moz-transform:translateY(100%) translateY(-90px);-webkit-transform:translateY(100%) translateY(-90px);-o-transform:translateY(100%) translateY(-90px);-ms-transform:translateY(100%) translateY(-90px);transform:translateY(100%) translateY(-90px);-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;z-index:1}.cards-style.style-1 figure img{-webkit-transition:-webkit-transform 0.8s;-moz-transition:-moz-transform 0.8s;transition:transform 0.8s;border-radius:50%;-webkit-border-radius:50%;max-width:160px;margin:0 auto;display:block}.cards-style.style-1 figcaption{bottom:0;left:0;right:0;position:absolute;padding:30px 20px;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-moz-transform:translateY(calc(100% - 100px));-webkit-transform:translateY(calc(100% - 100px));-o-transform:translateY(calc(100% - 100px));-ms-transform:translateY(calc(100% - 100px));transform:translateY(calc(100% - 100px));-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;text-align:center;z-index:2}.cards-style.style-1 figcaption p{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.cards-style.style-1 .picrew-contact-info{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;opacity:0;visibility:hidden}.cards-style.style-1 figure.cs-hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.cards-style.style-1 figure.cs-hover figcaption{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.cards-style.style-1 figure.cs-hover::before{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.cards-style.style-1 figure.cs-hover .picrew-contact-info{-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-1 figure:hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.no-touchevents .cards-style.style-1 figure:hover figcaption{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.no-touchevents .cards-style.style-1 figure:hover::before{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.no-touchevents .cards-style.style-1 figure:hover .picrew-contact-info{-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-2 figure:hover .picrew-flip-front{-moz-transform:rotateY(180deg);-webkit-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg)}.no-touchevents .cards-style.style-2 figure:hover figcaption{-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg)}.no-touchevents .cards-style.style-3 figure:hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.no-touchevents .cards-style.style-3 figure:hover figcaption{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.no-touchevents .cards-style.style-3 figure:hover::before{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.no-touchevents .cards-style.style-3 figure:hover .picrew-contact-info{-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-4 figure:hover img{-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}.cards-style .picrew-flip-back{font-size:0}.cards-style figcaption::after{content:"";height:100%;display:inline-block;vertical-align:middle;width:1px}.cards-style .picrew-flip-back-inner{display:inline-block;width:calc(100% - 1px);vertical-align:middle;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.cards-style.style-2 figure{overflow:hidden;text-align:center;transform-style:preserve-3d}.cards-style.style-2 figure img{border-radius:50%;-webkit-border-radius:50%;max-width:160px;margin:0 auto;display:block}.cards-style.style-2 .picrew-flip-front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;padding:30px 20px;background:#fff;border:1px solid rgba(0,0,0,0.1);color:#672082;-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);position:relative}.cards-style.style-2 .picrew-flip-front .picrew-personal-info{padding-top:20px}.cards-style.style-2 figcaption{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;padding:30px 20px;background:#fff;border:1px solid rgba(0,0,0,0.1);color:#1a1a1a;-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-moz-transform:rotateY(180deg);-webkit-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg);position:absolute;left:0;top:0;right:0;bottom:0}.cards-style.style-2 figure.cs-hover .picrew-flip-front{-moz-transform:rotateY(180deg);-webkit-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg)}.cards-style.style-2 figure.cs-hover figcaption{-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg)}.cards-style.style-3 figure{overflow:hidden;padding:20px 20px 100px;background:#fff;border:1px solid rgba(0,0,0,0.1)}.cards-style.style-3 figure::before{content:"";background:rgba(255,255,255,0.9);background:-moz-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 20%, #fff 78%, #fff 100%);background:-webkit-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 20%, #fff 78%, #fff 100%);background:linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 20%, #fff 78%, #fff 100%);position:absolute;top:0;right:0;bottom:0;left:0;-moz-transform:translateY(100%) translateY(-90px);-webkit-transform:translateY(100%) translateY(-90px);-o-transform:translateY(100%) translateY(-90px);-ms-transform:translateY(100%) translateY(-90px);transform:translateY(100%) translateY(-90px);-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;z-index:1}.cards-style.style-3 figure img{-webkit-transition:-webkit-transform 0.8s;-moz-transition:-moz-transform 0.8s;transition:transform 0.8s}.cards-style.style-3 figcaption{bottom:0;left:0;right:0;position:absolute;padding:30px 20px;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-moz-transform:translateY(100%) translateY(-100px);-webkit-transform:translateY(100%) translateY(-100px);-o-transform:translateY(100%) translateY(-100px);-ms-transform:translateY(100%) translateY(-100px);transform:translateY(100%) translateY(-100px);-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;text-align:center;z-index:2;color:#1a1a1a}.cards-style.style-3 figcaption p{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.cards-style.style-3 .picrew-contact-info{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;opacity:0;visibility:hidden}.cards-style.style-3 figure.cs-hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.cards-style.style-3 figure.cs-hover figcaption{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.cards-style.style-3 figure.cs-hover::before{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.cards-style.style-3 figure.cs-hover .picrew-contact-info{-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.cards-style.style-4{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;-webkit-flex-flow:row wrap}.cards-style.style-4::after{display:none}.cards-style.style-4 figure{padding:20px 20px 0;background:#fff;border:1px solid rgba(0,0,0,0.1);position:relative}.cards-style.style-4 figure img{-webkit-transition:-webkit-transform 0.5s;-moz-transition:-moz-transform 0.5s;transition:transform 0.5s}.cards-style.style-4 figcaption{padding:20px;text-align:center;z-index:2;color:#1a1a1a}.cards-style.style-4 figcaption p{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.cards-style.style-4 figure.cs-hover img{-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}.drawer-style.style-1 figcaption{position:absolute;left:25px;right:25px;top:25px;bottom:25px;padding:30px;background:rgba(35,35,35,0.8);color:#1a1a1a;text-align:center;opacity:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;transform:scale(0.6);-webkit-transform:scale(0.6);-moz-transform:scale(0.6);-webkit-transition:-webkit-transform 0.2s, opacity 0.2s;-moz-transition:-moz-transform 0.2s, opacity 0.2s;transition:transform 0.2s, opacity 0.2s;font-size:0}.list-style figure{color:#1a1a1a}.list-style figure img{max-width:300px}.list-style .picrew-personal-info{text-align:left}.list-style .picrew-personal-info h3{margin:0 0 5px}.list-style figcaption p{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.list-style .picrew-social-icons{margin-bottom:15px}.list-style .picrew-social-icons span{margin:0 1px 2px 1px;text-align:center;padding:0}.list-style .picrew-contact-info{text-align:left}.list-style .picrew-contact-info a{margin-left:10px}.picrew-grid.list-style figcaption{overflow:hidden}.picrew-grid.list-style>.picrew-grid-card{width:100%;float:none;border-bottom:1px solid rgba(35,35,35,0.2);padding:0 0 40px 0;margin-bottom:40px}.picrew-grid.list-style>li:last-child{border-bottom:0;margin-bottom:0}.picrew-grid.list-style h3{margin:0 0 10px}.picrew-grid.list-style .picrew-personal-info span{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.entry-content .picrew-grid.style-1 ul li::before{margin-left:0}.list-style.style-1 .picrew-contact-info{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.list-style.style-1 figure img{float:left;margin-right:30px}.list-style.style-2 figure img{float:right;margin-left:30px}.picrew-table{display:table;width:100%;color:#1a1a1a}.picrew-table-row{display:table-row}.picrew-table-cell{display:table-cell;padding:10px;vertical-align:middle}.picrew-table-cell .picrew-table-cell-inner{max-width:400px}.picrew-table-cell .picrew-social-icons a{color:#672082}.picrew-table-cell .picrew-social-icons a:hover{color:#fff;background-color:#f80}.picrew-table-row.picrew-table-head .picrew-table-cell{border:none}.table-style .picrew-table-img-holder{max-width:75px}.table-style .picrew-table-cell h3,.table-style .picrew-table-cell h2{margin:0;padding:0}.table-style .picrew-table-cell p{margin-bottom:10px}.picrew-table-description .picrew-table-cell-inner{min-width:240px}.picrew-table.style-1 .picrew-table-row.picrew-table-head .picrew-table-cell{border-bottom:2px solid #ccc}.picrew-table.style-1 .picrew-table-cell{border-bottom:1px solid #ccc}.picrew-table.style-2 .picrew-table-row.picrew-table-head .picrew-table-cell{border-bottom:none}.picrew-table.style-2 .picrew-table-cell{border-bottom:none}.picrew-table.style-3 .picrew-table-cell{border-bottom:1px solid #ddd}.picrew-table.style-3 .picrew-table-row:first-child .picrew-table-cell{border-top:1px solid #ddd}.picrew-table.style-3 .picrew-table-row .picrew-table-cell:first-child{border-left:1px solid #ddd}.picrew-table.style-3 .picrew-table-row .picrew-table-cell:last-child{border-right:1px solid #ddd}:root .cards-style.style-2 figcaption{z-index:1}:root .cards-style.style-2 .picrew-flip-front{z-index:2}:root .cards-style.style-2 figure:hover figcaption{z-index:3}.pirate-crew-single.list{width:100%}.pirate-crew-single .picrew-grid{min-width:260px}.pirate-crew-single .cards-style.picrew-grid{max-width:300px}@media (max-width: 700px){.pirate-crew-single .cards-style.picrew-grid{max-width:100%}}.pirate-crew-single.aligncenter .cards-style.picrew-grid{margin:0 auto}@media (max-width: 700px){.pirate-crew-single{width:100%}.pirate-crew-single.alignleft,.pirate-crew-single.alignright{float:none}}@media (max-width: 1230px){.picrew-grid-wrapper .grid-5-col>.picrew-grid-card,.pirate-crew-single .grid-5-col>.picrew-grid-card{width:25%}}@media (max-width: 830px){.picrew-popup-on body{overflow:auto}}@media (max-width: 678px){.picrew-grid-wrapper .picrew-grid>.picrew-grid-card,.pirate-crew-single .picrew-grid>.picrew-grid-card{width:100%}}@media screen and (max-width: 830px){.picrew-table-description .picrew-table-cell-inner{min-width:unset}}@media screen and (max-width: 700px){.picrew-grid.list-style figcaption{overflow:visible}.list-style.style-1 figure img,.list-style.style-2 figure img{float:none;margin:0 auto 30px}.picrew-table{display:block}.picrew-table .picrew-table-cell h2{margin-bottom:10px}.picrew-table .picrew-table-cell h3{margin-top:0}.picrew-table-row{display:block}.picrew-table-cell{display:block;padding:0;border:none}.picrew-table-cell .picrew-table-cell-inner{max-width:none}.picrew-table.style-1 .picrew-table-row{padding-bottom:20px;border-bottom:1px solid #ccc;margin-bottom:20px}.picrew-table.style-1 .picrew-table-cell{border:none}.picrew-table-row.picrew-table-head{display:none}.table-style .picrew-table-img-holder{float:left;margin-right:20px;margin-bottom:20px}.picrew-table-designation{overflow:hidden}.picrew-table-name{overflow:hidden}.picrew-table-description{clear:both}.picrew-table.style-2 .picrew-table-row{padding:20px 15px}.picrew-table.style-3{border:1px solid #ccc}.picrew-table.style-3 .picrew-table-row{padding:20px 15px;border-bottom:1px solid #ccc}.picrew-table.style-3 .picrew-table-row:last-child{border-bottom:none}.picrew-table.style-3 .picrew-table-cell{border:none !important}}@media screen and (max-width: 650px){.picrew-personal-details{max-height:100%;overflow:visible}}@media screen and (-ms-high-contrast: active){.cards-style.style-1 figure::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:0;visibility:hidden;transition:opacity 0.4s, visibility 0.4s}.cards-style.style-1 figure.cs-hover::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-1 figure:hover::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-2 figure:hover figcaption{z-index:3}.cards-style.style-2 .picrew-flip-front{-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:2}.cards-style.style-2 figcaption{-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:1}.cards-style.style-2 figure.cs-hover figcaption{z-index:3}}@media (-ms-high-contrast: none){.cards-style.style-1 figure::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:0;visibility:hidden;transition:opacity 0.4s, visibility 0.4s}.cards-style.style-1 figure.cs-hover::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-1 figure:hover::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-2 figure:hover figcaption{z-index:3}.cards-style.style-2 .picrew-flip-front{-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:2}.cards-style.style-2 figcaption{-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:1}.cards-style.style-2 figure.cs-hover figcaption{z-index:3}}@media screen and (min-width: 64em){p.text-big{font-size:32px;font-size:2rem}.front-about-img{width:32.8%;padding-right:1.6%}}@media screen and (min-width: 66.25em){.headerimg-on.header-boxed #masthead{border-bottom:1px solid #ddd !important}.front-section:first-of-type{padding-top:0}.content-wrap{margin-top:0}.js .imgfade-on .fadein{opacity:0;transition:opacity 0.7s ease-in-out;-webkit-transition:opacity 0.7s ease-in-out;-webkit-transform:translateZ(0)}.js .imgfade-on .fadein.inview{opacity:1}.singlepost-wrap,.recommended-posts-wrap,.front-section,.headerimg-on.header-boxed .header-image{padding-left:0;padding-right:0}.blog-wrap,.front-section,.singlepost-wrap,.recommended-posts-wrap,.footer-wrap,.big-footer-feature,.headerimg-on.header-boxed .header-image{margin-left:6.25%;margin-right:6.25%}#front-section-four{margin-left:auto;margin-right:auto}.page .site-content,#primary{width:65.87301587301587%;float:left}#secondary,#sidebar-page{width:31.74603174603175%;float:right;padding-top:0}.sidebar-left #primary,.single-post.sidebar-left .contentwrap{float:right}.sidebar-left #secondary,.sidebar-left #sidebar-page{float:left;padding-top:0}.no-sidebar.page .site-content,.no-sidebar #primary{width:90%;max-width:1260px;float:none;margin-left:auto;margin-right:auto}.page-fullwidth .site-content,.page-fullwidth #primary{width:100% !important;max-width:none;float:none;margin-left:auto;margin-right:auto}p.site-title{font-size:60px;font-size:3.75rem;line-height:1.35;text-align:center;padding-right:0}p.text-big{font-size:48px;font-size:3rem}.section-one-column-one .entry-author,.section-one-column-one .entry-date:before{display:inline-block}.headerimg-on.header-boxed .header-image{margin-top:30px}.page-template-shop-front .entry-text-wrap{width:48.80952380952381%;float:left;clear:left}.page-template-shop-front .section-three-column-one .entry-header,.page-template-shop-front .section-three-column-one .entry-summary,.page-template-shop-front .section-three-column-one .entry-meta{width:100%}}@media screen and (min-width: 85em){.blog-wrap,.front-section,.headerimg-on.header-boxed .header-image{margin-left:auto;margin-right:auto;width:80%}.entry-content p.pull-left,.entry-content p.pull-right{margin-bottom:20px}.no-sidebar.page .site-content,.no-sidebar #primary{width:80%}.headerimg-on.header-fullscreen a.header-image{max-height:900px !important;overflow:hidden}}@media screen and (min-width: 112.5em){#page-start,.content-wrap,.singlepost-wrap,.blog-wrap{min-width:1560px;margin-left:auto;margin-right:auto}.footer-wrap,.blog-wrap,.big-footer-feature,.headerimg-on.header-boxed .header-image{width:70%;margin-left:auto;margin-right:auto}}@media screen and (min-width: 137.5em){.footer-wrap,.big-footer-feature,.headerimg-on.header-boxed .header-image{width:56%}}@media print{#printhead{color:black;content:"Print"}}@media print{.sticky-header,.header-social,#overlay-open,#search-open,.inner-offcanvas-wrap,.shariff,.shariff li,.shariff-main,.footer-menus-wrap nav,.footer-search{display:none !important}#masthead{position:relative}#masthead .site-header-content{position:relative;display:block;border:none !important;height:auto;margin:0 auto}#masthead .site-header-content #site-branding{height:auto;margin:0 auto;width:auto;border:none;text-align:center;padding:0;position:relative;display:block}#masthead .site-header-content #site-branding img{width:auto;max-width:inherit;height:inherit;max-height:100px}h1{page-break-before:always}h1,h2,h3,h4,h5{page-break-after:avoid}header#masthead{position:relative;border:none}.front-section:first-of-type,.page .content-wrap,.singlepost-wrap,.error404 .content-wrap{padding-top:10px}main{position:relative;display:block}main table,main figure{page-break-inside:avoid}main p a[href]::after{content:" (" attr(href) ")";color:#f80;background-color:inherit;font-style:italic;size:80%}main p a[href^="#"]:after{display:none}main p a{text-transform:inherit;word-wrap:break-word;color:#000}#colophon{background:none;color:black}#colophon h2,#colophon h3,#colophon ul,#colophon p,#colophon li,#colophon a,#colophon td,#colophon tr,#colophon span{color:black;background:none}.socialmedia-secondcolor #footer-social.social-nav ul li a{color:black;background:none}#footer-social h2.socialmedia{float:none;display:block;color:black;font-weight:bold}#footer-social.social-nav ul{display:block}#footer-social.social-nav ul li{display:list-item;border-radius:initial;background:none}#footer-social.social-nav ul li a::before{width:25px}#footer-social.social-nav ul li a{overflow:auto;color:#000;width:auto;text-align:left;height:auto;background:none;border:none;border-radius:initial;text-transform:inherit;word-wrap:break-word}#footer-social.social-nav ul li a[href]::after{content:" (" attr(href) ")";color:#f80;background-color:inherit;font-style:italic;size:80%}#footer-social.social-nav ul li a[href^="#"]::after{display:none}} +*/@font-face{font-family:'roboto';src:url("./fonts/roboto/Roboto-Bold-webfont.eot");src:url("./fonts/roboto/Roboto-Bold-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-Bold-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-Bold-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-Bold-webfont.svg#robotobold") format("svg");font-weight:bold;font-style:normal}@font-face{font-family:'roboto';src:url("./fonts/roboto/Roboto-BoldItalic-webfont.eot");src:url("./fonts/roboto/Roboto-BoldItalic-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-BoldItalic-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-BoldItalic-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-BoldItalic-webfont.svg#robotobold_italic") format("svg");font-weight:bold;font-style:italic}@font-face{font-family:'roboto';src:url("./fonts/roboto/Roboto-Italic-webfont.eot");src:url("./fonts/roboto/Roboto-Italic-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-Italic-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-Italic-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-Italic-webfont.svg#robotoitalic") format("svg");font-weight:normal;font-style:italic}@font-face{font-family:'roboto';src:url("./fonts/roboto/Roboto-Regular-webfont.eot");src:url("./fonts/roboto/Roboto-Regular-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-Regular-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-Regular-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-Regular-webfont.svg#robotoregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'roboto-light';src:url("./fonts/roboto/Roboto-Light-webfont.eot");src:url("./fonts/roboto/Roboto-Light-webfont.eot?#iefix") format("embedded-opentype"),url("./fonts/roboto/Roboto-Light-webfont.woff") format("woff"),url("./fonts/roboto/Roboto-Light-webfont.ttf") format("truetype"),url("./fonts/roboto/Roboto-Light-webfont.svg#robotolight") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'DejaWeb';src:url("./fonts/dejaweb/DejaWeb-Bold.ttf");src:url("./fonts/dejaweb/DejaWeb-Bold.ttf") format("truetype");font-weight:bold;font-style:normal}@font-face{font-family:'DejaWeb';src:url("./fonts/dejaweb/DejaWeb-BoldItalic.ttf");src:url("./fonts/dejaweb/DejaWeb-BoldItalic.ttf") format("truetype");font-weight:bold;font-style:italic}@font-face{font-family:'DejaWeb';src:url("./fonts/dejaweb/DejaWeb-Italic.ttf");src:url("./fonts/dejaweb/DejaWeb-Italic.ttf") format("truetype");font-weight:normal;font-style:italic}@font-face{font-family:'DejaWeb';src:url("./fonts/dejaweb/DejaWeb.ttf");src:url("./fonts/dejaweb/DejaWeb.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'FontAwesome';src:url("./fonts/fontawesome/fontawesome-webfont.eot?v=4.7.0");src:url("./fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("./fonts/fontawesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("./fonts/fontawesome/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("./fonts/fontawesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("./fonts/fontawesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa,.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a::after,#desktop-navigation ul.menu li .external a::after,.search-open:before,#overlay-open:before,#overlay-open-sticky:before,#overlay-close:before,.single-post .post-navigation .next:after,.single-post .pagebreak-links .next:after,.single-post .post-navigation .prev:before,.single-post .pagebreak-links .prev:before,.entry-content ul li:before,.entry-content ul li ul li:before,.social-nav ul li a::before,#comments-toggle:before,.entry-comments a:before,#comments .comment-reply a:before,.featured-slider button.slick-prev:after,.featured-slider button.slick-next:after,.accordion .accordion-group .accordion-heading .accordion-toggle:before,.gallery .slick-prev:before,.gallery .slick-next:before,.gallery [dir='rtl'] .slick-next:before,.gallery .slick-dots li button:before,[class^="picrew-icon-"],[class*=" picrew-icon-"]{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x,#overlay-open:before,#overlay-open-sticky:before,#overlay-close:before{font-size:2em}.fa-3x,.gallery .slick-prev:before,.gallery .slick-next:before{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul,.social-nav ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li,.social-nav ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fa-pull-left.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a.fa-pull-left::after,#desktop-navigation ul.menu li .external a.fa-pull-left::after,.fa-pull-left.search-open:before,.fa-pull-left#overlay-open:before,.fa-pull-left#overlay-open-sticky:before,.fa-pull-left#overlay-close:before,.single-post .post-navigation .fa-pull-left.next:after,.single-post .pagebreak-links .fa-pull-left.next:after,.single-post .post-navigation .fa-pull-left.prev:before,.single-post .pagebreak-links .fa-pull-left.prev:before,.entry-content ul li.fa-pull-left:before,.social-nav ul li a.fa-pull-left::before,.fa-pull-left#comments-toggle:before,.entry-comments a.fa-pull-left:before,#comments .comment-reply a.fa-pull-left:before,.featured-slider button.fa-pull-left.slick-prev:after,.featured-slider button.fa-pull-left.slick-next:after,.accordion .accordion-group .accordion-heading .fa-pull-left.accordion-toggle:before,.gallery .fa-pull-left.slick-prev:before,.gallery .fa-pull-left.slick-next:before,.gallery .slick-dots li button.fa-pull-left:before,.fa-pull-left[class^="picrew-icon-"],.fa-pull-left[class*=" picrew-icon-"]{margin-right:.3em}.fa.fa-pull-right,.fa-pull-right.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a.fa-pull-right::after,#desktop-navigation ul.menu li .external a.fa-pull-right::after,.fa-pull-right.search-open:before,.fa-pull-right#overlay-open:before,.fa-pull-right#overlay-open-sticky:before,.fa-pull-right#overlay-close:before,.single-post .post-navigation .fa-pull-right.next:after,.single-post .pagebreak-links .fa-pull-right.next:after,.single-post .post-navigation .fa-pull-right.prev:before,.single-post .pagebreak-links .fa-pull-right.prev:before,.entry-content ul li.fa-pull-right:before,.social-nav ul li a.fa-pull-right::before,.fa-pull-right#comments-toggle:before,.entry-comments a.fa-pull-right:before,#comments .comment-reply a.fa-pull-right:before,.featured-slider button.fa-pull-right.slick-prev:after,.featured-slider button.fa-pull-right.slick-next:after,.accordion .accordion-group .accordion-heading .fa-pull-right.accordion-toggle:before,.gallery .fa-pull-right.slick-prev:before,.gallery .fa-pull-right.slick-next:before,.gallery .slick-dots li button.fa-pull-right:before,.fa-pull-right[class^="picrew-icon-"],.fa-pull-right[class*=" picrew-icon-"]{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a.pull-left::after,#desktop-navigation ul.menu li .external a.pull-left::after,.pull-left.search-open:before,.pull-left#overlay-open:before,.pull-left#overlay-open-sticky:before,.pull-left#overlay-close:before,.single-post .post-navigation .pull-left.next:after,.single-post .pagebreak-links .pull-left.next:after,.single-post .post-navigation .pull-left.prev:before,.single-post .pagebreak-links .pull-left.prev:before,.entry-content ul li.pull-left:before,.social-nav ul li a.pull-left::before,.pull-left#comments-toggle:before,.entry-comments a.pull-left:before,#comments .comment-reply a.pull-left:before,.featured-slider button.pull-left.slick-prev:after,.featured-slider button.pull-left.slick-next:after,.accordion .accordion-group .accordion-heading .pull-left.accordion-toggle:before,.gallery .pull-left.slick-prev:before,.gallery .pull-left.slick-next:before,.gallery .slick-dots li button.pull-left:before,.pull-left[class^="picrew-icon-"],.pull-left[class*=" picrew-icon-"]{margin-right:.3em}.fa.pull-right,.pull-right.dropdown-toggle:after,#desktop-navigation ul.menu li.menu-item-has-children>a.pull-right::after,#desktop-navigation ul.menu li .external a.pull-right::after,.pull-right.search-open:before,.pull-right#overlay-open:before,.pull-right#overlay-open-sticky:before,.pull-right#overlay-close:before,.single-post .post-navigation .pull-right.next:after,.single-post .pagebreak-links .pull-right.next:after,.single-post .post-navigation .pull-right.prev:before,.single-post .pagebreak-links .pull-right.prev:before,.entry-content ul li.pull-right:before,.social-nav ul li a.pull-right::before,.pull-right#comments-toggle:before,.entry-comments a.pull-right:before,#comments .comment-reply a.pull-right:before,.featured-slider button.pull-right.slick-prev:after,.featured-slider button.pull-right.slick-next:after,.accordion .accordion-group .accordion-heading .pull-right.accordion-toggle:before,.gallery .pull-right.slick-prev:before,.gallery .pull-right.slick-next:before,.gallery .slick-dots li button.pull-right:before,.pull-right[class^="picrew-icon-"],.pull-right[class*=" picrew-icon-"]{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.search-open:before{content:""}.fa-envelope-o:before,.social-nav ul li a[href^="mailto"]:before{content:""}.fa-heart:before{content:""}.fa-star:before,.social-nav ul li a:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,#overlay-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before,.social-nav ul li a[href*="flattr.com"]:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before,.gallery .slick-prev:before,.gallery [dir='rtl'] .slick-next:before{content:""}.fa-chevron-right:before,.gallery [dir='rtl'] .slick-prev:before,.gallery .slick-next:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before,.social-nav ul li a[href*="twitter.com"]:before{content:""}.fa-facebook-f:before,.fa-facebook:before,.social-nav ul li a[href*="facebook.com"]:before{content:""}.fa-github:before,.social-nav ul li a[href*="github.com"]:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before,.social-nav ul li a[href*="feed"]:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before,#overlay-open:before,#overlay-open-sticky:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before,.social-nav ul li a[href*="pinterest.com"]:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.accordion .accordion-group .accordion-heading .accordion-toggle:before{content:""}.fa-caret-up:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:hover:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:focus:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before,.social-nav ul li a[href*="lists.piratenpartei.de"]:before{content:""}.fa-linkedin:before,.social-nav ul li a[href*="linkedin.com"]:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before,#comments-toggle:before,.entry-comments a:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before,.gallery .slick-dots li button:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before,.single-post .post-navigation .prev:before,.single-post .pagebreak-links .prev:before{content:""}.fa-chevron-circle-right:before,.entry-content ul li:before,.entry-content ul li ul li:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before,.social-nav ul li a[href*="youtube.com"]:before{content:""}.fa-xing:before,.social-nav ul li a[href*="xing.com"]:before{content:"\f168"}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before,.social-nav ul li a[href*="instagram.com"]:before{content:""}.fa-flickr:before,.social-nav ul li a[href*="flickr.com"]:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before,.social-nav ul li a[href*="tumblr.com"]:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before,.social-nav ul li a[href*="skype.com"]:before,.social-nav ul li a[href*="skype:"]:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before,.social-nav ul li a[href*="slack.com"]:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before,.social-nav ul li a[href*="wordpress.org"]:before,.social-nav ul li a[href*="wordpress.com"]:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before,.social-nav ul li a[href*="google.com"]:before{content:""}.fa-reddit:before,.social-nav ul li a[href*="reddit.com"]:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before,.social-nav ul li a[href*="stumbleupon.com"]:before{content:""}.fa-delicious:before,.social-nav ul li a[href*="delicious.com"]:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before,.social-nav ul li a[href*="spotify.com"]:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before,.social-nav ul li a[href*="slideshare.com"]:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before,.social-nav ul li a[href*="whatsapp.com"]:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before,.comments-show #comments-toggle:before,#comments .comment-reply a:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before,.social-nav ul li a[href*="vimeo.com"]:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before,.social-nav ul li a[href*="snapchat.com"]:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}p.site-title,.entry-summary,.widget,.title-footer,.entry-header p.intro,.entry-content,.entry-content p,.entry-content table,.entry-content dl,.entry-content ul,.entry-content ol,p.section-about-text,p.text-big,p.text-small{font-family:"DejaWeb",sans-serif}.entry-content blockquote p,.entry-content p span.uppercase,.section-about-column-two .social-nav ul li a,.section-about-column-one p cite,.widget_mc4wp_form_widget input[type="email"],.widget_mc4wp_form_widget input[type="submit"],.jetpack_subscription_widget #subscribe-email input[type="email"],.jetpack_subscription_widget #subscribe-submit input[type="submit"],.contact-form input[type="submit"],input,textarea,.site-content div.wpcf7 input,.site-content div.wpcf7 textarea,.site-content div.wpcf7 p,a.standard-btn,.big-instagram-wrap .clear,.single-product .entry-summary h1{font-family:"DejaWeb",sans-serif}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:0;padding-right:0}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0%}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0%}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width: 979px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0%}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0%}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{font-family:"DejaWeb",sans-serif;display:block;color:#1a1a1a;background:#ffffff;font-size:16px;font-size:1rem;line-height:1.35}body.overlay-show{overflow:hidden}body.blog.slider-on.slider-fullscreen,body.blog.headerimg-on.header-fullscreen{padding-top:0}html.overlay-show{overflow:hidden}#site-branding,.blog-wrap,.singlepost-wrap,.recommended-posts-wrap,#colophon{padding-left:5.3125%;padding-right:5.3125%}.mobile-search{padding-left:5.3125%;padding-right:5.3125%}#overlay-nav ul li a,#overlay-nav ul ul li a{padding-left:5.3125%;padding-right:5.3125%}#mobile-social,#sidebar-offcanvas .widget,.front-section{padding-left:5.3125%;padding-right:5.3125%}#offcanvas-widgets-open,.headerimg-on.header-boxed .header-image{margin-left:5.3125%;margin-right:5.3125%}#front-section-four .entry-thumbnail a{width:130%}.featured-content,#front-section-four .type-post{width:100%;overflow:hidden}.headerimg-on .front-section:first-of-type{padding-top:0}.front_section_twocolumn_excerpt #front-section-twocolumn .entry-summary{display:block}.front_section_threecolumn_excerpt #front-section-threecolumn .entry-summary{display:block}.front_section_fourcolumn_excerpt #front-section-fourcolumn .entry-summary{display:block}.front_section_sixcolumn_excerpt #front-section-sixcolumn .entry-summary{display:block}.front_hidedate .blog .entry-date{display:none !important}.front_hidecomments .blog .entry-comments{display:none !important}@media screen and (min-width: 64em){.page .content-wrap,.front-section:first-of-type,.page.has-thumb .blog-wrap,.search .blog-wrap,.archive .blog-wrap,.error404 .content-wrap{padding-top:40px}.singlepost-wrap{padding-top:20px}}#desktop-navigation,.header-social,.search-open,.desktop-search,.sticky-header{display:none}#site-branding{position:fixed;top:0;left:0;right:0;display:block;padding-top:5px;padding-bottom:5px;border-bottom:1px solid #ddd;z-index:21;background:#fff}@media screen and (min-width: 48em){#site-branding{min-height:46px}}@media screen and (min-width: 66.25em){#site-branding{position:relative;width:87.5%;margin-left:auto;margin-right:auto;padding:17px 0 0;border-bottom:none;background:none}}.admin-bar #site-branding{position:absolute;top:46px}@media screen and (min-width: 783px){.admin-bar #site-branding{top:32px;position:fixed}}@media screen and (min-width: 66.25em){.admin-bar #site-branding{top:0;position:relative}}.home.blog.headerimg-on.header-fullscreen #site-branding{position:absolute}a.site-logo{display:none;line-height:0}.home a.site-logo{display:inline-block}p.site-description{display:none}@media screen and (min-width: 66.25em){p.site-description{display:block;text-align:center;margin:0;padding:4px 0 0 0;font-size:12px;font-size:0.75rem;text-transform:uppercase;letter-spacing:1px}.hide-tagline p.site-description{display:none !important}}.header-image{display:block;position:relative}.custom-logo-wrap{margin-left:auto;margin-right:auto;text-align:left;display:block}.custom-logo-wrap a.custom-logo-link img{vertical-align:middle;width:auto;max-width:300px;height:49px}@media screen and (min-width: 66.25em){.sticky-header{display:block;position:fixed;top:0;left:0;width:100%;background:#fff;min-height:59px;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-shadow:0 0 8px rgba(0,0,0,0.25);z-index:100000}.sticky-header.hidden{-webkit-transform:translateY(-100%);transform:translateY(-100%);box-shadow:none}.sticky-header p{display:none;font-size:30px;font-size:1.875rem}.hide-header-sticky .sticky-header{display:none !important}.header-stick .sticky-header p{display:block;padding:8px 0 0 0}.header-stick #overlay-open-sticky{top:0px;z-index:9999}.header-stick #overlay-open-sticky{width:60px}.custom-logo-wrap{text-align:center}.custom-logo-wrap a.custom-logo-link img{width:auto;height:100px;max-width:360px}.sticky-header .custom-logo-wrap{text-align:center;margin-left:auto;margin-right:auto}.sticky-header .custom-logo-wrap .custom-logo-link img{max-width:400px;width:auto;height:59px}}#overlay-nav{display:block}#overlay-nav ul{list-style:none;margin:0;padding:0}#overlay-nav ul li{display:block;margin:0;padding:0;border-bottom:1px solid #ddd}#overlay-nav ul ul li{margin:0;padding:5px 0;border-bottom:none}#overlay-nav ul li a{display:block;padding-top:15px;padding-bottom:15px}#overlay-nav ul ul.sub-menu,#overlay-nav ul ul.children{display:none;overflow:hidden;margin:0;padding:0 0 10px}#overlay-nav ul ul ul.sub-menu,#overlay-nav ul ul ul.children{margin:0;border-top:none}#overlay-nav ul ul li a{border-bottom:none;padding-top:0;padding-bottom:0;font-weight:normal;line-height:1.5;text-transform:none;letter-spacing:0}.dropdown-toggle{border:none;outline:none}#secondary .dropdown-toggle,#sidebar-offcanvas .widget-area .dropdown-toggle,#colophon .dropdown-toggle{display:none}.menu-item-has-children,.page_item_has_children{position:relative}.dropdown-toggle{position:absolute;top:0;right:5.3125%;width:50px;height:50px;background:transparent}.dropdown-toggle:after{vertical-align:top;position:absolute;content:"";top:0;right:5.3125%;width:50px;height:50px;padding:13px 0 0 0;text-align:inherit;margin-right:-10px}.dropdown-toggle.toggle-on:after{content:""}.sub-menu .menu-item-has-children .dropdown-toggle,.children .page_item_has_childrenn .dropdown-toggle:after{width:30px;height:30px}.sub-menu .menu-item-has-children .dropdown-toggle:after,.children .page_item_has_children .dropdown-toggle:after{padding:4px 0 0 0}#overlay-nav ul.sub-menu.toggled-on,#overlay-nav ul.children.toggled-on{display:block !important}.single-attachment .post-navigation a:focus,.single-attachment .post-navigation a:hover{border-bottom:2px solid #51a8dd}#desktop-navigation ul.menu{font-family:"roboto",sans-serif}#desktop-navigation ul.menu li.menu-item-has-children>a{margin-right:0px}#desktop-navigation ul.menu li.menu-item-has-children>a::after{margin-left:5px;content:""}#desktop-navigation ul.menu li a{color:#1a1a1a}#desktop-navigation ul.menu li .external a::after{margin-left:5px;content:""}#desktop-navigation ul.menu li.current-menu-ancestor a,#desktop-navigation ul.menu li.focus a,#desktop-navigation ul.menu li:focus a,#desktop-navigation ul.menu li:hover a{border-bottom:3px solid #f80;color:#1a1a1a}#desktop-navigation ul.menu li.current-menu-ancestor li a,#desktop-navigation ul.menu li.focus li a,#desktop-navigation ul.menu li:focus li a,#desktop-navigation ul.menu li:hover li a{border-bottom:none}#mobile-social{border-bottom:1px solid #ddd}#mobile-social li{padding:10px 0}@media screen and (min-width: 64em){#desktop-navigation{display:block;padding:0}#desktop-navigation ul{margin:0;padding:0;text-align:center}#desktop-navigation ul li{position:relative;display:inline-block;padding:20px 15px 18px}#desktop-navigation .sub-menu,#desktop-navigation .children,#desktop-navigation .dropdown-toggle{position:absolute;left:-9999px}#desktop-navigation .sub-menu:hover,#desktop-navigation .sub-menu:focus,#desktop-navigation .sub-menu.focus,#desktop-navigation .children:hover,#desktop-navigation .children:focus,#desktop-navigation .children.focus,#desktop-navigation .dropdown-toggle:hover,#desktop-navigation .dropdown-toggle:focus,#desktop-navigation .dropdown-toggle.focus{display:block !important}#desktop-navigation .sub-menu .sub-menu{border-top:1px solid #ccc;border-left:1px solid #ccc;border-bottom:1px solid #ccc}#desktop-navigation ul li>ul.focus.sub-menu,#desktop-navigation ul li>ul.focus.children,#desktop-navigation ul li.focus>ul.sub-menu,#desktop-navigation ul li.focus>ul.children,#desktop-navigation ul li:focus>ul.sub-menu,#desktop-navigation ul li:focus>ul.children,#desktop-navigation ul li:hover>ul.sub-menu,#desktop-navigation ul li:hover>ul.children{display:block;left:0}#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul,#desktop-navigation ul li>ul.focus.children li>ul.focus,#desktop-navigation ul li>ul.focus.children li.focus>ul,#desktop-navigation ul li>ul.focus.children li:focus>ul,#desktop-navigation ul li>ul.focus.children li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul,#desktop-navigation ul li.focus>ul.children li>ul.focus,#desktop-navigation ul li.focus>ul.children li.focus>ul,#desktop-navigation ul li.focus>ul.children li:focus>ul,#desktop-navigation ul li.focus>ul.children li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul,#desktop-navigation ul li:focus>ul.children li>ul.focus,#desktop-navigation ul li:focus>ul.children li.focus>ul,#desktop-navigation ul li:focus>ul.children li:focus>ul,#desktop-navigation ul li:focus>ul.children li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul,#desktop-navigation ul li:hover>ul.children li>ul.focus,#desktop-navigation ul li:hover>ul.children li.focus>ul,#desktop-navigation ul li:hover>ul.children li:focus>ul,#desktop-navigation ul li:hover>ul.children li:hover>ul{top:15px;left:75px}#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li>ul.focus li:hover>ul,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li.focus>ul li:hover>ul,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:focus>ul li:hover>ul,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul li>ul.focus,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul li.focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul li:focus>ul,#desktop-navigation ul li>ul.focus.sub-menu li:hover>ul li:hover>ul,#desktop-navigation ul li>ul.focus.children li>ul.focus li>ul.focus,#desktop-navigation ul li>ul.focus.children li>ul.focus li.focus>ul,#desktop-navigation ul li>ul.focus.children li>ul.focus li:focus>ul,#desktop-navigation ul li>ul.focus.children li>ul.focus li:hover>ul,#desktop-navigation ul li>ul.focus.children li.focus>ul li>ul.focus,#desktop-navigation ul li>ul.focus.children li.focus>ul li.focus>ul,#desktop-navigation ul li>ul.focus.children li.focus>ul li:focus>ul,#desktop-navigation ul li>ul.focus.children li.focus>ul li:hover>ul,#desktop-navigation ul li>ul.focus.children li:focus>ul li>ul.focus,#desktop-navigation ul li>ul.focus.children li:focus>ul li.focus>ul,#desktop-navigation ul li>ul.focus.children li:focus>ul li:focus>ul,#desktop-navigation ul li>ul.focus.children li:focus>ul li:hover>ul,#desktop-navigation ul li>ul.focus.children li:hover>ul li>ul.focus,#desktop-navigation ul li>ul.focus.children li:hover>ul li.focus>ul,#desktop-navigation ul li>ul.focus.children li:hover>ul li:focus>ul,#desktop-navigation ul li>ul.focus.children li:hover>ul li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li>ul.focus li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li.focus>ul li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:focus>ul li:hover>ul,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul li>ul.focus,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul li.focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul li:focus>ul,#desktop-navigation ul li.focus>ul.sub-menu li:hover>ul li:hover>ul,#desktop-navigation ul li.focus>ul.children li>ul.focus li>ul.focus,#desktop-navigation ul li.focus>ul.children li>ul.focus li.focus>ul,#desktop-navigation ul li.focus>ul.children li>ul.focus li:focus>ul,#desktop-navigation ul li.focus>ul.children li>ul.focus li:hover>ul,#desktop-navigation ul li.focus>ul.children li.focus>ul li>ul.focus,#desktop-navigation ul li.focus>ul.children li.focus>ul li.focus>ul,#desktop-navigation ul li.focus>ul.children li.focus>ul li:focus>ul,#desktop-navigation ul li.focus>ul.children li.focus>ul li:hover>ul,#desktop-navigation ul li.focus>ul.children li:focus>ul li>ul.focus,#desktop-navigation ul li.focus>ul.children li:focus>ul li.focus>ul,#desktop-navigation ul li.focus>ul.children li:focus>ul li:focus>ul,#desktop-navigation ul li.focus>ul.children li:focus>ul li:hover>ul,#desktop-navigation ul li.focus>ul.children li:hover>ul li>ul.focus,#desktop-navigation ul li.focus>ul.children li:hover>ul li.focus>ul,#desktop-navigation ul li.focus>ul.children li:hover>ul li:focus>ul,#desktop-navigation ul li.focus>ul.children li:hover>ul li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li>ul.focus li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li.focus>ul li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:focus>ul li:hover>ul,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul li>ul.focus,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul li.focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul li:focus>ul,#desktop-navigation ul li:focus>ul.sub-menu li:hover>ul li:hover>ul,#desktop-navigation ul li:focus>ul.children li>ul.focus li>ul.focus,#desktop-navigation ul li:focus>ul.children li>ul.focus li.focus>ul,#desktop-navigation ul li:focus>ul.children li>ul.focus li:focus>ul,#desktop-navigation ul li:focus>ul.children li>ul.focus li:hover>ul,#desktop-navigation ul li:focus>ul.children li.focus>ul li>ul.focus,#desktop-navigation ul li:focus>ul.children li.focus>ul li.focus>ul,#desktop-navigation ul li:focus>ul.children li.focus>ul li:focus>ul,#desktop-navigation ul li:focus>ul.children li.focus>ul li:hover>ul,#desktop-navigation ul li:focus>ul.children li:focus>ul li>ul.focus,#desktop-navigation ul li:focus>ul.children li:focus>ul li.focus>ul,#desktop-navigation ul li:focus>ul.children li:focus>ul li:focus>ul,#desktop-navigation ul li:focus>ul.children li:focus>ul li:hover>ul,#desktop-navigation ul li:focus>ul.children li:hover>ul li>ul.focus,#desktop-navigation ul li:focus>ul.children li:hover>ul li.focus>ul,#desktop-navigation ul li:focus>ul.children li:hover>ul li:focus>ul,#desktop-navigation ul li:focus>ul.children li:hover>ul li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li>ul.focus li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li.focus>ul li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:focus>ul li:hover>ul,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul li>ul.focus,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul li.focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul li:focus>ul,#desktop-navigation ul li:hover>ul.sub-menu li:hover>ul li:hover>ul,#desktop-navigation ul li:hover>ul.children li>ul.focus li>ul.focus,#desktop-navigation ul li:hover>ul.children li>ul.focus li.focus>ul,#desktop-navigation ul li:hover>ul.children li>ul.focus li:focus>ul,#desktop-navigation ul li:hover>ul.children li>ul.focus li:hover>ul,#desktop-navigation ul li:hover>ul.children li.focus>ul li>ul.focus,#desktop-navigation ul li:hover>ul.children li.focus>ul li.focus>ul,#desktop-navigation ul li:hover>ul.children li.focus>ul li:focus>ul,#desktop-navigation ul li:hover>ul.children li.focus>ul li:hover>ul,#desktop-navigation ul li:hover>ul.children li:focus>ul li>ul.focus,#desktop-navigation ul li:hover>ul.children li:focus>ul li.focus>ul,#desktop-navigation ul li:hover>ul.children li:focus>ul li:focus>ul,#desktop-navigation ul li:hover>ul.children li:focus>ul li:hover>ul,#desktop-navigation ul li:hover>ul.children li:hover>ul li>ul.focus,#desktop-navigation ul li:hover>ul.children li:hover>ul li.focus>ul,#desktop-navigation ul li:hover>ul.children li:hover>ul li:focus>ul,#desktop-navigation ul li:hover>ul.children li:hover>ul li:hover>ul{top:15px;left:75px}#desktop-navigation ul ul.sub-menu,#desktop-navigation ul ul.children{position:absolute;margin:18px 0 0 0;min-width:230px;max-width:300px;padding:0;text-align:left;color:#fff;background:#1a1a1a;z-index:100000}#desktop-navigation .sub-menu li a,#desktop-navigation .children li a{display:block;padding:10px 15px;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;color:#fff !important;text-transform:none;font-weight:normal;letter-spacing:0}#desktop-navigation .sub-menu li,#desktop-navigation .children li{padding:0;display:block}}#skiplinks{position:relative;left:0;width:100%;margin-left:0;text-align:center;list-style:outside none}#skiplinks ul{margin:0}#skiplinks li{list-style-type:none}#skiplinks a{position:absolute;left:-99999px;top:150px}#skiplinks a:focus,#skiplinks a:active{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;position:relative;display:block;z-index:9999;height:auto;margin:0 auto;text-align:center;text-decoration:none;color:#fff;background:#672082;left:0;top:0}.search-open{border-width:1px;border-style:solid;border-radius:50%}.search-open :focus,.search-open :hover{border-radius:50%}.search-open:before{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.no-js .search-open{display:none}#footer-search{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}#footer-search .search-field{border-width:1px;border-style:solid;padding:5px;letter-spacing:0.5px;font-weight:bolder}#footer-search input#submit,#footer-search input[type="submit"]{border-width:1px;border-style:solid;padding:5px}@media screen and (min-width: 66.25em){#masthead{position:relative;border-bottom-width:1px;border-bottom-style:solid}.search-open,.desktop-search{display:block}.search-open{position:absolute;top:50px;left:9.23611111111111%;right:auto;border:none;z-index:1000;padding:0;overflow:hidden;display:inline-block;width:25px;height:25px;text-align:center;vertical-align:middle;border-radius:50%}.search-open:before{vertical-align:middle;text-align:center}.desktop-search{position:absolute;top:100%;width:100%;opacity:0;height:0;z-index:10000;text-align:center;border-top-width:1px;border-top-style:solid;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.desktop-search input.search-field{width:33%;border-top:0;border-left:0;border-right:0;border-bottom-width:1px;border-bottom-style:solid;padding:9px 0;letter-spacing:0.5px;font-weight:bolder}.desktop-search input[type="submit"]{margin-left:10px;padding:8px 20px;border-width:2px;border-style:solid;font-size:15px;font-size:0.9375rem;text-transform:uppercase;letter-spacing:3px}.desktop-search .searchform{height:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.searchbar-maincolor .desktop-search input.search-field:hover,.searchbar-maincolor .desktop-search input.search-field:focus{padding-left:10px}.searchbar-maincolor .desktop-search input[type="submit"]{font-weight:bold}.searchbar-maincolor .desktop-search input[type="submit"]:focus,.searchbar-maincolor .desktop-search input[type="submit"]:hover{font-weight:bolder}.desktop-search-show .desktop-search{position:absolute;top:100%;opacity:1;height:118px;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.desktop-search-show .desktop-search .searchform{height:118px;padding-top:35px;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.desktop-search .header-stick #search-open-sticky{z-index:9999}.desktop-search .header-stick .desktop-search{position:fixed;top:59px;border-top:none;height:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.desktop-search .header-stick.desktop-search-show .desktop-search{height:118px}#overlay-open-sticky{position:absolute;height:59px;text-align:center;top:0px;left:10px;width:59px}#search-open-sticky{top:17px;left:69px}}main{position:relative;top:59px}@media screen and (min-width: 1024px){main{top:0}}.front-section{margin:0 auto;padding-bottom:70px}.front-section-title{position:relative;display:block;padding:3px 130px 20px 0}.social-front-title{position:relative;display:block;padding:3px 130px 20px 0;padding-right:0}.shortcode-section a.all-posts-link,.front-section a.all-posts-link,.big-instagram-wrap .null-instagram-feed .clear{position:absolute;top:11px;right:-2px;display:block;text-transform:uppercase;letter-spacing:3px;font-weight:600}.sidebar-offcanvas .null-instagram-feed .clear,.sidebar .null-instagram-feed .clear{position:absolute;top:16px;right:0;display:block;margin:0}.front-section a.all-posts-link:after{content:'\2192';text-align:right;padding-left:3px}.front-section .type-post{position:relative;display:block;margin:0;padding:20px 0 35px;border-top:1px solid #1a1a1a}.section-two-column-one .entry-author,.section-three-column-one .entry-author{font-weight:600}.section-two-column-one .entry-date:before,.section-three-column-one .entry-date:before{content:' / ';padding:0 2px}.section-one-column-one .entry-header{padding:15px 0 0px}.section-one-column-one .entry-author{font-weight:600}.section-one-column-one .entry-date:before{content:' / ';padding:0 2px}.section-one-column-one .entry-comments,.section-one-column-one .entry-edit{margin-left:20px}.section-one-column-one .entry-summary{padding:0 0 20px;line-height:1.35}.section-one-column-one .entry-cats{top:60px;left:40px}.section-one-column-one .entry-meta{margin-bottom:15px}.section-two-column-one .entry-comments,.section-two-column-one .entry-edit{margin-left:20px}.section-three-column-one .entry-comments,.section-three-column-one .entry-edit{margin-left:20px}.section-one-column-two,.section-two-column-two{display:block;overflow:hidden}.section-one-column-two .type-post:nth-of-type(n+2),.section-two-column-two .type-post,.section-fourcolumn-postwrap .type-post,.section-sixcolumn-postwrap .type-post{width:47.8134110787172%}.section-one-column-two .type-post:nth-of-type(2),.section-one-column-two .type-post:nth-of-type(4){float:left;margin-right:2.1865889212828%;clear:left}.section-two-column-two .type-post:nth-of-type(1),.section-two-column-two .type-post:nth-of-type(3),.section-two-column-two .type-post:nth-of-type(5),.section-two-column-two .type-post:nth-of-type(7){float:left;margin-right:2.1865889212828%;clear:left}.section-fourcolumn-postwrap .type-post:nth-of-type(odd),.section-sixcolumn-postwrap .type-post:nth-of-type(odd){float:left;margin-right:2.1865889212828%;clear:left}.section-one-column-two .type-post:nth-of-type(3),.section-one-column-two .type-post:nth-of-type(5){float:right;margin-left:2.1865889212828%;clear:right}.section-two-column-two .type-post:nth-of-type(2),.section-two-column-two .type-post:nth-of-type(4),.section-two-column-two .type-post:nth-of-type(6),.section-two-column-two .type-post:nth-of-type(8){float:right;margin-left:2.1865889212828%;clear:right}.section-fourcolumn-postwrap .type-post:nth-of-type(even),.section-sixcolumn-postwrap .type-post:nth-of-type(even){float:right;margin-left:2.1865889212828%;clear:right}#front-section-one .section-one-column-two .type-post:nth-of-type(4),#front-section-one .section-one-column-two .type-post:nth-of-type(5){padding-bottom:0}#front-section-two .section-two-column-two .type-post:nth-of-type(7),#front-section-two .section-two-column-two .type-post:nth-of-type(8){padding-bottom:0}.section-fourcolumn-postwrap .type-post:last-child,.section-fourcolumn-postwrap .type-post:nth-last-child(2){padding-bottom:0}.section-sixcolumn-postwrap .type-post:last-child,.section-sixcolumn-postwrap .type-post:nth-last-child(2){padding-bottom:0}.section-two-column-one .entry-header,.section-three-column-one .entry-header{padding:15px 0 10px}.section-two-column-one .entry-summary,.section-three-column-one .entry-summary{padding:0 0 20px;line-height:1.35}.columns-wrap .entry-header{padding:8px 0 0 0}.columns-wrap .entry-header h2.entry-title{padding:8px 0 0 0}.columns-wrap .entry-summary{padding:8px 0 0 0}#front-section-three{width:100%;background:#f4f4f4;margin-left:0;margin-right:0;margin-bottom:70px;padding-top:35px;padding-bottom:35px}#front-section-three h3.front-section-title{position:relative;display:block;padding:8px 0 20px;border-top:none}#front-section-three h3.front-section-title:before{content:" ";border-top:4px solid #1a1a1a;width:50px;position:absolute;top:0;left:0}#big-footer-feature h3.footer-feature-title:before{content:" ";border-top:4px solid #1a1a1a;width:50px;position:absolute;top:0;left:0;border-top:4px solid #fff}#front-section-three a.all-posts-link{border:2px solid #2b2b2b;padding:4px 6px;top:2px}#front-section-three a.all-posts-link:after{display:none}#front-section-three .section-three-column-one .type-post{border-top:none;padding-top:0}.section-three-column-two .entry-thumbnail{width:50%;float:left;padding-right:4.6875%;padding-bottom:35px}.section-three-column-two .entry-header{width:50%;float:left}.section-three-column-two .type-post{clear:both}.section-three-column-two .type-post .entry-header h2.entry-title{padding:0}.section-three-column-two .type-post:last-of-type .entry-thumbnail{padding-bottom:0}#front-section-four{padding-left:0;padding-right:0}#front-section-four .type-post{position:relative;padding:0;border-top:none}#front-section-four .type-post .entry-summary,#front-section-four .type-post .entry-author{display:none}#front-section-four .type-post .entry-thumbnail img{width:100%}#front-section-four .meta-main-wrap{display:block;padding-left:5.3125%;padding-right:5.3125%;padding-bottom:17px}.section-about-column-one{padding:0;overflow:hidden}.section-about-column-one .front-section-title{border-bottom:1px solid #1a1a1a;margin-bottom:20px}.front-about-img{width:50%;float:left;clear:left;padding-right:2.34375%}.section-about-column-one p{display:block;margin:0;clear:right;float:left;width:50%;padding-left:2.34375%}.section-about-column-one p cite{display:block;padding:20px 0 0 0;font-weight:600;letter-spacing:3px;text-transform:uppercase;font-style:normal}.section-about-column-two{padding-top:60px}#front-section-twocolumn .type-post:last-of-type,#front-section-threecolumn .type-post:last-of-type{padding-bottom:0}#front-section-twocolumn .entry-summary,#front-section-threecolumn .entry-summary,#front-section-fourcolumn .entry-summary,#front-section-sixcolumn .entry-summary{display:none}.blog-wrap h3.blog-title,.archive-header h1.archive-title{display:block;padding:3px 0 20px}.site-content .hentry{position:relative}.site-content .hentry .entry-meta,.site-content .hentry .entry-author{display:none}.blog-wrap:last-child .hentry{padding-bottom:34px}.comment-name{display:none}.entry-author span{padding-right:4px}.page #primary .blogroll .hentry .entry-thumbnail,.blog #primary .hentry .entry-thumbnail,.archive #primary .hentry .entry-thumbnail,.search-results #primary .hentry .entry-thumbnail{width:32.1875%;margin:0 0 0 10px;float:right}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:-5.94405594405594%;margin-right:-5.94405594405594%;margin-bottom:34px;padding:0;border-top:0}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail{width:100%;margin:0;float:none}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail img{width:100%}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{width:100%;padding:0 5.3125% 28px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{float:none}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-summary{display:none}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-title a{text-shadow:1px 2px 2px black}#front-section-four .entry-date{padding-right:20px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{font-weight:600}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{display:block;position:absolute;width:80.43478260869566%;left:5.3125%;bottom:17px}#front-section-four .entry-edit{display:none}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{display:none}@media screen and (min-width: 37.5em){#front-section-twocolumn .entry-summary,#front-section-threecolumn .entry-summary,#front-section-fourcolumn .entry-summary,#front-section-sixcolumn .entry-summary{display:inline-block}#front-section-four .entry-edit{display:inline-block}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{display:inline-block}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit:after,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author:after{content:' / '}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit{padding-left:20px}.no-author .entry-date:before{content:'';padding:0}#front-section-four .entry-edit{padding-left:20px}.entry-content p.pull-left,.entry-content p.pull-right{width:48%}.entry-content p.pull-left{float:left;margin-right:20px}.entry-content p.pull-right{float:right;margin-left:20px;text-align:right}#front-section-twocolumn .type-post{width:47.8134110787172%;float:left}#front-section-twocolumn .type-post:nth-of-type(odd){margin-right:2.1865889212828%;clear:left}#front-section-twocolumn .type-post:nth-of-type(even){margin-left:2.1865889212828%;clear:right}#front-section-twocolumn .type-post:nth-last-of-type(2){padding-bottom:0}}@media screen and (min-width: 48em){#front-section-four .format-video .entry-thumbnail a:before,.section-three-column-one .format-video .entry-thumbnail a:before{width:60px;height:42px;padding:22px 0 0 24px;font-size:16px}.featured-content{padding-bottom:60px;min-height:400px}.header-image{margin-bottom:60px}#front-section-four .meta-main-wrap{padding-bottom:35px}.front-section{padding-bottom:75px}.front-section a.all-posts-link{top:25px}.section-two-column-two .type-post{width:22.28915662650602%}.section-two-column-two .type-post:nth-of-type(1),.section-two-column-two .type-post:nth-of-type(2),.section-two-column-two .type-post:nth-of-type(3),.section-two-column-two .type-post:nth-of-type(5),.section-two-column-two .type-post:nth-of-type(6),.section-two-column-two .type-post:nth-of-type(7){float:left;margin-right:3.6144578313253%;margin-left:0;clear:none}.section-two-column-two .type-post:nth-of-type(1),.section-two-column-two .type-post:nth-of-type(5){clear:left}.section-two-column-two .type-post:nth-of-type(4),.section-two-column-two .type-post:nth-of-type(8){float:right;margin:0;clear:right}.front-section .section-two-column-two .type-post:nth-of-type(5),.front-section .section-two-column-two .type-post:nth-of-type(6),.front-section .section-two-column-two .type-post:nth-of-type(7),.front-section .section-two-column-two .type-post:nth-of-type(8){padding-bottom:0}#front-section-three{padding-top:75px;padding-bottom:75px}#front-section-three h3.front-section-title{padding-bottom:40px}#front-section-three a.all-posts-link{padding:8px 20px;top:0}.section-three-column-two .entry-thumbnail{padding-bottom:0}.section-three-column-two .type-post:nth-of-type(1),.section-three-column-two .type-post:nth-of-type(3){width:47.81021897810219%;float:left;clear:left}.section-three-column-two .type-post:nth-of-type(2),.section-three-column-two .type-post:nth-of-type(4){width:47.81021897810219%;float:right;clear:right}.section-three-column-two .type-post:nth-of-type(3),.section-three-column-two .type-post:nth-of-type(4){padding-bottom:0}#front-section-threecolumn .type-post{width:30.42333333333333%;float:left}.section-sixcolumn-postwrap .type-post{width:30.42333333333333%;float:left}.section-sixcolumn-postwrap .type-post:nth-of-type(even){float:left;clear:none;margin-left:0}.section-sixcolumn-postwrap .type-post:nth-of-type(odd){clear:none;margin-right:0}#front-section-threecolumn .type-post:nth-of-type(3n+1),.section-sixcolumn-postwrap .type-post:nth-of-type(3n+1){margin-right:2.9%;clear:left}#front-section-threecolumn .type-post:nth-of-type(3n+2),.section-sixcolumn-postwrap .type-post:nth-of-type(3n+2){margin-left:1.455%;margin-right:1.455%}#front-section-threecolumn .type-post:nth-of-type(3n+3),.section-sixcolumn-postwrap .type-post:nth-of-type(3n+3){margin-left:2.915%;clear:right}.section-fourcolumn-postwrap .type-post{width:22.28915662650602%;margin-right:3.6144578313253%;float:left;clear:none}.section-fourcolumn-postwrap .type-post:nth-of-type(odd),.section-fourcolumn-postwrap .type-post:nth-of-type(even){clear:none;margin-left:0;margin-right:3.6144578313253%;float:left}.section-fourcolumn-postwrap .type-post:nth-of-type(4n+1){clear:left}.section-fourcolumn-postwrap .type-post:nth-of-type(4n+4){margin-right:0;clear:right}#front-section-threecolumn .type-post:last-child,#front-section-threecolumn .type-post:nth-last-child(2),#front-section-threecolumn .type-post:nth-last-child(3){padding-bottom:0}.section-fourcolumn-postwrap .type-post:last-child,.section-fourcolumn-postwrap .type-post:nth-last-child(2),.section-fourcolumn-postwrap .type-post:nth-last-child(3),.section-fourcolumn-postwrap .type-post:nth-last-child(4){padding-bottom:0}.section-sixcolumn-postwrap .type-post:nth-last-child(3){padding-bottom:0}.blog-wrap:last-child .hentry{padding-bottom:40px}.blog #primary .hentry .entry-meta,.archive #primary .hentry .entry-meta,.search-results #primary .hentry .entry-meta{width:25.49019607843137%;float:left;display:block}.blog #primary .hentry .entry-main,.archive #primary .hentry .entry-main,.search-results #primary .hentry .entry-main{width:74.50980392156863%;float:left;margin-bottom:20px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-main{width:100%;float:none}.blog #primary .hentry .entry-thumbnail{width:36.14457831325301%}.archive #primary .hentry .entry-thumbnail,.search-results #primary .hentry .entry-thumbnail{width:36.14457831325301%}.blog #primary .hentry .meta-main-wrap,.archive #primary .hentry .meta-main-wrap,.search-results #primary .hentry .meta-main-wrap{width:61.44578313253012%;float:left}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-top:40px;margin-bottom:80px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{padding:0 5.3125% 64px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{width:80.43478260869566%;left:5.3125%;bottom:35px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats{padding-bottom:8px}}@media screen and (min-width: 64em){#front-section-four .entry-thumbnail a{width:100%}.section-about-column-one p{padding-left:1.6%;width:67.2%}}@media screen and (min-width: 66.25em){body,.inner-offcanvas-wrap,.featured-content{padding-top:0}.blog.headerimg-on #masthead{margin-bottom:0;border-bottom:none}.blog #masthead{margin-bottom:60px}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:-10.8433734939759%;margin-right:0}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) img.wp-post-image{width:100%}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{padding-left:9.78260869565217%}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{left:9.78260869565217%}.blog #primary .hentry.has-post-thumbnail.format-video:nth-child(4n+1) .entry-thumbnail a:before{left:9.78260869565217%;top:35px}.blog.sidebar-left #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-right:-10.8433734939759%;margin-left:0}.blog.sidebar-left #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{padding-left:40px;padding-right:9.78260869565217%}.blog.sidebar-left #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta,.blog.no-sidebar #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{left:40px}.blog.no-sidebar #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:auto}.blog.no-sidebar #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{padding-left:40px}.home.blog.slider-on.slider-fullscreen #site-branding,.home.blog.headerimg-on.header-fullscreen #site-branding{position:relative}.home.blog.headerimg-on.header-fullscreen #masthead .site-header-content,.home.blog.slider-on.slider-fullscreen #masthead .site-header-content{position:absolute;top:0;left:0;right:0;border-bottom:none;z-index:1000000}.blog-wrap{padding-left:0;padding-right:0}.section-one-column-one .type-post .entry-summary,.section-about-column-one p{font-size:32px;font-size:2rem;line-height:1.25}.section-one-column-one{width:65.87301587301587%;float:left}.section-one-column-one .type-post{padding-bottom:0}.section-one-column-two{width:31.74603174603175%;float:right}.section-one-column-one .entry-header{padding:25px 0 0}.section-one-column-one .entry-summary{padding:0 0 35px}.section-three-column-one .entry-summary{padding:0 0 35px}.columns-wrap .entry-header{padding:12px 0 0 0}.section-two-column-one{width:31.74603174603175%;float:left}.section-two-column-two{width:65.87301587301587%;float:right}.section-two-column-one .entry-header{padding:20px 0 0 0}.section-two-column-one .entry-header h2.entry-title{padding:10px 0 20px}.shortcode-section .section-two-column-one .type-post,.front-section .section-two-column-one .type-post{padding-bottom:0}#front-section-three{padding-left:6.25%;padding-right:6.25%}.section-three-column-one{padding-bottom:50px;clear:both;overflow:hidden}.section-three-column-one .entry-thumbnail{width:48.80952380952381%;float:right}.section-three-column-one .entry-cats{top:30px;left:53.57142857142857%}.section-three-column-one .entry-header,.section-three-column-one .entry-summary,.section-three-column-one .entry-meta{width:48.80952380952381%;float:left;clear:left}.section-three-column-one .entry-header{padding-top:0}.section-three-column-one .entry-header h2.entry-title{padding-top:0}.section-three-column-two .type-post{width:23.21428571428571% !important;float:left !important;padding-bottom:0 !important}.section-three-column-two .type-post .entry-header h2.entry-title{padding-bottom:0}.section-three-column-two .type-post:nth-of-type(2),.section-three-column-two .type-post:nth-of-type(3){clear:none;margin-right:2.38095238095238%}.section-three-column-two .type-post:nth-of-type(1){clear:left;margin-right:2.38095238095238%}.section-three-column-two .type-post:nth-of-type(4){clear:right}#front-section-four .meta-main-wrap{padding-left:6.25%;padding-right:6.25%}#front-section-four .format-video .entry-thumbnail a:before{left:6.25%;top:40px}#front-section-four .meta-main-wrap .entry-header{width:65.87301587301587%}#front-section-four .meta-main-wrap .entry-meta{padding-top:20px}.section-about-column-one{width:74.4047619047619%;float:left}.section-about-column-two{width:23.21428571428571%;float:right;padding:0}#front-section-twocolumn .type-post{width:48.80952380952381%}#front-section-twocolumn .type-post:nth-of-type(odd){margin-right:1.19047619047619%}#front-section-twocolumn .type-post:nth-of-type(even){margin-left:1.19047619047619%}#front-section-threecolumn .type-post{width:31.74603333333333%}#front-section-threecolumn .type-post:nth-of-type(3n+1){margin-right:1.5873%}#front-section-threecolumn .type-post:nth-of-type(3n+2){margin-left:0.79365%;margin-right:0.79365%}#front-section-threecolumn .type-post:nth-of-type(3n+3){margin-left:1.5873%}.section-fourcolumn-postwrap .type-post{width:23.21428571428572%;margin-right:2.38095238095238%;float:left;clear:none}.section-fourcolumn-postwrap .type-post:nth-of-type(odd),.section-fourcolumn-postwrap .type-post:nth-of-type(even){margin-right:2.38095238095238%}.section-fourcolumn-postwrap .type-post:nth-of-type(4n+1){clear:left}.section-fourcolumn-postwrap .type-post:nth-of-type(4n+4){margin-right:0;clear:right}.section-sixcolumn-postwrap .type-post{width:14.68253968253968%;margin-right:2.38095238095238% !important;margin-left:0;float:left;clear:none}.section-sixcolumn-postwrap .type-post:nth-of-type(3n+1){clear:none}.section-sixcolumn-postwrap .type-post:nth-of-type(3n+2){margin-left:0}.section-sixcolumn-postwrap .type-post:nth-of-type(3n+3){margin-left:0;clear:none}.section-sixcolumn-postwrap .type-post:nth-of-type(6n+1){clear:left}.section-sixcolumn-postwrap .type-post:nth-of-type(6n+6){clear:right;margin-right:0 !important}.section-sixcolumn-postwrap .type-post:nth-last-child(4),.section-sixcolumn-postwrap .type-post:nth-last-child(5),.section-sixcolumn-postwrap .type-post:nth-last-child(6){padding-bottom:0}#front-section-twocolumn .entry-header,#front-section-threecolumn .entry-header,#front-section-fourcolumn .entry-header{padding:20px 0 0 0}#front-section-twocolumn .entry-summary,#front-section-threecolumn .entry-summary,#front-section-fourcolumn .entry-summary{padding:12px 0 0 0}}@media screen and (min-width: 85em){.section-three-column-one .type-post .entry-summary,.section-about-column-one p{font-size:34px;font-size:2.125rem;line-height:1.3}.section-about-column-one p cite{padding:30px 0 0 0}.section-one-column-one .format-video .entry-thumbnail a:before,.section-two-column-one .format-video .entry-thumbnail a:before,#front-section-four .format-video .entry-thumbnail a:before{width:70px;height:52px;padding:29px 0 0 28px;font-size:19px}#front-section-fourcolumn .format-video .entry-thumbnail a:before{width:60px;height:42px;padding:22px 0 0 24px;font-size:16px}}@media screen and (min-width: 112.5em){.blog-wrap,.front-section{width:70%;margin-left:auto;margin-right:auto}#front-section-three .front-section-title,#front-section-three .section-three-column-one,#front-section-three .section-three-column-two{width:70%;margin-left:auto;margin-right:auto}#front-section-three{padding-left:0;padding-right:0}#front-section-four{width:100%;margin-left:0}#front-section-four .meta-main-wrap{padding-left:15%;padding-right:15%}#front-section-four .format-video .entry-thumbnail a:before{left:15%}}@media screen and (min-width: 137.5em){.blog-wrap,.front-section{width:56%}#front-section-three .front-section-title,#front-section-three .section-three-column-one,#front-section-three .section-three-column-two{width:56%}#front-section-four .meta-main-wrap{padding-left:22%;padding-right:22%}#front-section-four .format-video .entry-thumbnail a:before{left:22%}}.entry-thumbnail a{max-height:900px;overflow:hidden}.single-post .format-video .entry-thumbnail a:before,.featured-slider .entry-date:before{display:none}.entry-thumbnail a{position:relative;line-height:0;display:block}.format-video .entry-thumbnail{position:relative}.format-video .entry-thumbnail a:before{content:'\25b6';position:absolute;display:block;width:40px;height:28px;padding:15px 0 0 16px;font-size:12px;color:#1a1a1a;background:#fff;z-index:1;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}#front-section-twocolumn .format-video .entry-thumbnail a:before,#front-section-threecolumn .format-video .entry-thumbnail a:before,.section-one-column-one .format-video .entry-thumbnail a:before,.blog #primary .hentry.format-video:nth-child(4n+1) .entry-thumbnail a:before,.section-two-column-one .format-video .entry-thumbnail a:before{width:60px;height:42px;padding:22px 0 0 24px;font-size:16px}.blog #primary .hentry.format-video:nth-child(4n+1) .entry-thumbnail a:before,#front-section-four .format-video .entry-thumbnail a:before{top:30px;left:5.3125%;-webkit-transform:translate(0, 0);-moz-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.featured-slider .format-video .entry-thumbnail a:before{display:none}.attachment .entry-header .entry-meta{margin-top:20px}.singlepost-wrap,.recommended-posts-wrap{margin-left:auto;margin-right:auto}.single-post .hentry{position:relative;padding:0}.single-post .entry-header{display:block;margin:0 0 35px;padding:25px 0 0}.single-attachment .entry-header{display:block;margin:0 0 35px;padding:25px 0 0;padding-top:40px}.single-post .entry-header h1.entry-title{position:relative;display:block;padding-top:5px}.single-post .hentry .entry-meta{display:block;margin-top:20px;padding-top:15px;border-top:3px solid #1a1a1a;line-height:1.6}.single-attachment .entry-meta{display:block;margin-top:20px;padding-top:15px;border-top:3px solid #1a1a1a;line-height:1.6}.entry-header p.intro{display:none;margin:0;padding:10px 0 0}.meta-columnone{width:60%;float:left}.meta-columntwo,.meta-columthree{width:40%;float:left}.single-post .entry-comments-title{font-weight:600}.author-pic{width:35px;float:left;margin:0 10px 0 0;display:block;line-height:0}.author-pic img{width:35px;height:35px;-moz-border-radius:50px;-webkit-border-radius:50px;border-radius:50px}.single-post .entry-author,.single-post .entry-tags span{font-weight:600}.single-post .entry-thumbnail{padding-bottom:35px}.single-post .canonical-link{padding:5px 0 0 0;letter-spacing:1px}.single-post .canonical-link span{text-transform:uppercase;font-weight:600}.single-post .canonical-link span:after{content:'\2022';padding:0 7px}.single-post .entry-tags{padding:30px 0 0 0;letter-spacing:1px;text-transform:uppercase}.single-post .entry-tags span:after{content:'\2022';padding:0 7px}.single-post .authorbox{position:relative;margin:40px 0 0 0;padding:30px 0 0 0;clear:both;border-top:1px solid #1a1a1a}.big-thumb .entry-thumbnail{margin-left:-5.94405594405594%;margin-right:-5.94405594405594%;padding-bottom:35px}.big-thumb .entry-thumbnail img{width:100%}.big-thumb .entry-meta{margin-top:0}.big-thumb .entry-header{position:relative;padding:0}.big-thumb .title-wrap{bottom:88px;width:111.88811188811188%;margin-left:-5.94405594405594%;margin-right:-5.94405594405594%;padding-bottom:17px}.big-thumb .title-wrap .entry-cats{padding-left:5.3125%;padding-right:5.3125%}.big-thumb .entry-header h1.entry-title,.big-thumb .entry-header p.intro{padding-left:5.3125%;padding-right:5.3125%}.authorbox .author-pic{width:40px;height:40px;float:left}.authorbox .author-pic img{width:40px;height:40px}.authorbox .author-heading{padding:0 0 0 60px}.authorbox h3.author-title{margin:0;padding:0;text-transform:uppercase;letter-spacing:1px}.authorbox h3.author-title span{padding:0 5px 0 0;display:inline-block;font-style:normal}.authorbox h3.author-title:after{content:':';padding-left:1px}.authorbox p.author-bio{margin:0;padding:15px 0 0 60px}.authorbox .author-links{padding:16px 0 0 60px}.author-links a.author-website{position:relative;padding:0 0 0 20px;display:block}.author-links a.author-twitter{position:relative;display:block;margin:4px 0 0 0;padding:0 0 0 18px}.author-links a.author-website:before,.author-links a.author-twitter:before{display:block;position:absolute;top:2px;left:-4px;text-align:left}.single-post .hentry .entry-meta,.single-attachment .entry-meta{border-top:none !important}article header{margin-bottom:20px}@media screen and (min-width: 48em){.single-post .entry-header{margin:0 0 20px;padding:25px 0 0}.big-thumb .single-post .entry-header{padding:0}.single-post .entry-tags{padding:30px 0 0 0}.single-post .big-thumb .entry-thumbnail{padding-bottom:60px;margin-left:-7.14285714285714%;margin-right:-7.14285714285714%;padding-bottom:60px}.big-thumb .title-wrap{margin-left:-7.14285714285714%;margin-right:-7.14285714285714%;bottom:128px;padding-bottom:35px;width:114.28571428571428%}.big-thumb .title-wrap .entry-cats{padding-left:6.25%;padding-right:6.25%}.big-thumb .title-wrap h1.entry-title,.big-thumb .title-wrap p.intro{padding-left:6.25%;padding-right:6.25%}.meta-columnone{display:block;width:320px}.meta-columntwo{display:block;width:320px;width:200px}.author-pic{width:50px}.author-pic img{width:50px;height:50px}.authorbox .author-pic{width:70px;height:70px}.authorbox .author-pic img{width:70px;height:70px}.authorbox .author-heading,.authorbox p.author-bio,.authorbox .author-links{padding-left:90px}.author-links a.author-website{display:inline-block;margin:0 30px 0 0}.author-links a.author-twitter{display:inline-block}}@media screen and (min-width: 66.25em){.single-post.no-sidebar .contentwrap{width:100%;max-width:1260px;float:none;margin-left:0}.single-post.no-sidebar .entry-content,.single-post.no-sidebar .entry-footer,.single-post.no-sidebar #comments{margin-left:auto;margin-right:auto;width:80%}.single-post.no-sidebar .entry-content .wide-content{margin-left:-12.5%;margin-right:-12.5%}.big-thumb .entry-header p.intro{font-size:26px;font-size:1.625rem}.entry-meta,.entry-cats,.search-results a.post-edit-link,.archive a.post-edit-link{font-size:12px;font-size:0.75rem;font-weight:normal}.singlepost-wrap{margin-top:0}.single-post .contentwrap,.single-attachment .contentwrap{width:65.87301587301587%;float:left}.single-post #colophon,.single-attachment #colophon{margin-top:80px}.entry-header p.intro{display:block}}@media screen and (min-width: 85em){.single-post #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:0}.big-thumb .title-wrap{width:114.28571428571428%}.single-post .entry-content{margin-top:-8px}.single-post.no-sidebar .contentwrap{width:100%;float:none;margin-left:0}.single-post.no-sidebar .entry-content,.single-post.no-sidebar .entry-footer,.single-post.no-sidebar #comments{width:70%;margin-left:100px;margin-right:auto}.single-post.no-sidebar .entry-content .wide-content{margin-left:0;margin-right:-31.5%}.single-post #socialicons-sticky{position:relative}.single-post .sharedaddy .sd-social-icon{display:block;position:absolute;top:8px;left:0;z-index:10000}.single-post .sd-social-icon .sd-content ul{margin:0 !important}.single-post .sd-social-icon .sd-content ul li{display:block}}@media screen and (min-width: 112.5em){.singlepost-wrap,.recommended-posts-wrap{width:70%;margin-left:auto;margin-right:auto}.big-instagram-wrap{width:70%;margin-left:auto;margin-right:auto}.big-thumb .title-wrap .entry-cats{padding-left:15%;padding-right:15%}.big-thumb .entry-header h1.entry-title,.big-thumb .entry-header p.intro{padding-left:15%;padding-right:15%}.single-post .big-thumb .entry-thumbnail{width:142.85714285714286%;margin-left:-21.42857142857143%}.single-post .big-thumb .title-wrap{width:142.85714285714286%;margin-left:-21.42857142857143%;margin-right:-21.42857142857143%}}@media screen and (min-width: 137.5em){.singlepost-wrap,.recommended-posts-wrap{width:56%}.big-instagram-wrap{width:56%}.big-thumb .title-wrap .entry-cats{padding-left:22%;padding-right:22%}.big-thumb .entry-header h1.entry-title,.big-thumb .entry-header p.intro{padding-left:22%;padding-right:22%}.single-post .big-thumb .entry-thumbnail{width:178.86178861788618%;margin-left:-39.43089430894309%}.single-post .big-thumb .title-wrap{width:178.86178861788618%;margin-left:-39.43089430894309%;margin-right:-39.43089430894309%}}#overlay-open,#overlay-close{position:absolute;top:0;right:5.3125%;width:30px;height:40px}.no-js #overlay-open,.no-js #overlay-close{display:none}@media screen and (min-width: 48em){#overlay-open,#overlay-close{top:8px}}#overlay-open{z-index:100}#overlay-close{z-index:1000}.overlay-btn{border:none;outline:none;display:block;margin:0;padding:0;z-index:9999;background:transparent;line-height:1;opacity:1}.overlay-btn span{display:none}.overlay-btn:before{display:block}#overlay-open:before,#overlay-open-sticky:before{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}#overlay-close:before{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.close-btn-wrap{height:51px;border-bottom:1px solid #ddd;background:#fff}.menu-item-has-children,.page_item_has_children{position:relative}.overlay-title-wrap{padding:15px 5.3125%;background:#f5f5f6}.inner-offcanvas-wrap{width:100%;display:block;position:fixed;left:-100%;top:0;height:100%;overflow:auto;z-index:1000;background:#fff;-webkit-transition:left,.35s,ease-in-out;-moz-transition:left,.35s,ease-in-out;-o-transition:left,.35s,ease-in-out;transition:left,.35s,ease-in-out}.admin-bar .inner-offcanvas-wrap{top:46px}.overlay-show .inner-offcanvas-wrap{left:0}#offcanvas-wrap{padding-top:20px}#offcanvas-widgets-open{margin-bottom:20px;outline:none;width:89.375%;background:transparent;display:block;padding:14px 0;border:2px solid #2b2b2b;font-size:15px;font-size:0.9375rem;font-weight:600;text-transform:uppercase;letter-spacing:3px;text-align:center}.sidebar-offcanvas{display:none;padding:0 0 30px}.offcanvas-widgets-show .sidebar-offcanvas,.mobilewidgets-show .sidebar-offcanvas{display:block}.mobile-search{padding-top:20px;padding-bottom:20px;background:#f5f5f6;border-bottom:1px solid #ddd}.mobile-search .searchform #s{width:100%;line-height:1.4}.mobile-search .submit{display:none}@media screen and (min-width: 49.375em){.admin-bar .inner-offcanvas-wrap{top:32px}}@media screen and (min-width: 66.25em){#overlay-nav .dropdown-toggle{display:none !important}.overlay-show #overlay-wrap{width:100%;background:transparent;position:fixed;top:0;left:0;right:0;bottom:-20px;z-index:90000000;cursor:pointer}.inner-offcanvas-wrap{position:fixed;left:-100%;top:0;height:100%;overflow:auto;display:block;background:#f4f4f4;width:70.13888888888889%;padding-left:6.25%;padding-right:6.25%;z-index:100000000;pointer-events:auto;padding-bottom:100px;-webkit-transition:left,.35s,ease-in-out;-moz-transition:left,.35s,ease-in-out;-o-transition:left,.35s,ease-in-out;transition:left,.35s,ease-in-out}.offcanvas-widgets-off .inner-offcanvas-wrap{width:40.27777777777778%}.overlay-show .inner-offcanvas-wrap{left:0}#overlay-open{position:absolute;top:34px;left:-17px;right:auto;width:4.76190476190476%;height:59px;text-align:center}.close-btn-wrap{border:none}.mobile-search,#mobile-social{display:none}#overlay-nav{width:48.19277108433735%;float:left;border-top:1px solid #1a1a1a}#sidebar-offcanvas{width:48.19277108433735%;float:right}.offcanvas-widgets-off #overlay-nav{width:100%}.close-btn-wrap{position:relative;height:160px}#overlay-close{position:absolute;top:40px;left:-17px;right:auto;width:59px;height:59px;text-align:center}#overlay-nav ul{margin:0 0 50px}#overlay-nav ul li{padding-top:15px;padding-bottom:15px;border-bottom:1px solid #1a1a1a}#overlay-nav ul li.menu-item-has-children,#overlay-nav ul li.page_item_has_children{padding-bottom:0;border-bottom:none}#overlay-nav ul li a{display:inline-block;padding:0}#overlay-nav ul li.menu-item-has-children a,#overlay-nav ul li.page_item_has_children a{border-bottom:none !important;padding-bottom:0}#overlay-nav ul ul.sub-menu,#overlay-nav ul ul.children{display:block;border-bottom:1px solid #1a1a1a;padding-top:15px;padding-bottom:15px}#overlay-nav ul ul ul.sub-menu,#overlay-nav ul ul ul.children{border-bottom:none;padding-top:0;padding-bottom:0}#overlay-nav ul ul li a{padding-left:0;padding-right:0}#offcanvas-widgets-open{display:none}#sidebar-offcanvas{display:block !important}#sidebar-offcanvas .widget{padding-left:0;padding-right:0}.overlay-show .close-btn-wrap{position:relative;top:0;left:auto;right:auto;background:transparent;height:158px}}.pagination{position:relative;clear:both;padding:18px 20px;border:2px solid #e7e7eb;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem;font-weight:600;letter-spacing:1px;color:#1a1a1a;margin-bottom:25px}.pagination a{color:#672082}.pagination .nav-links{text-align:center}.pagination .nav-links span.page-numbers,.pagination .nav-links a.page-numbers{background:#fff;color:#672082;overflow:hidden;display:inline-block;min-width:25px;height:25px;text-align:center;vertical-align:middle;border-radius:50%;padding-left:2px}.pagination .nav-links span.page-numbers:hover,.pagination .nav-links span.page-numbers:focus,.pagination .nav-links a.page-numbers:hover,.pagination .nav-links a.page-numbers:focus{background-color:#f80;color:#fff}.pagination .nav-links span.page-numbers.prev,.pagination .nav-links span.page-numbers.next,.pagination .nav-links a.page-numbers.prev,.pagination .nav-links a.page-numbers.next{padding:0 5px;border-radius:inherit}.pagination .nav-links span.page-numbers.prev:hover,.pagination .nav-links span.page-numbers.prev:focus,.pagination .nav-links span.page-numbers.next:hover,.pagination .nav-links span.page-numbers.next:focus,.pagination .nav-links a.page-numbers.prev:hover,.pagination .nav-links a.page-numbers.prev:focus,.pagination .nav-links a.page-numbers.next:hover,.pagination .nav-links a.page-numbers.next:focus{color:#fff;background:#f80}.pagination .nav-links span.next.page-numbers:focus,.pagination .nav-links span.prev.page-numbers:focus,.pagination .nav-links span.next.page-numbers:hover,.pagination .nav-links span.prev.page-numbers:hover,.pagination .nav-links a.next.page-numbers:focus,.pagination .nav-links a.prev.page-numbers:focus,.pagination .nav-links a.next.page-numbers:hover,.pagination .nav-links a.prev.page-numbers:hover{text-decoration:none}.single-attachment .post-navigation{overflow:hidden;clear:both;padding-top:60px}.single-attachment .nav-previous{float:left}.single-attachment .nav-next{float:right}.single-attachment .post-navigation a{position:relative;display:block;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem;line-height:1.15;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;border-bottom:2px solid #1a1a1a}#nav-comments{padding:10px 0;clear:both;overflow:hidden}#nav-comments .nav-previous{float:right}.page-links{font-weight:600;letter-spacing:1px;display:inline-block;margin-top:20px}.page-links .post-page-numbers{padding:4px;text-decoration:none}.page-links .post-page-numbers.current{color:#672082}.page-links .post-page-numbers a .number{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.page-links .post-page-numbers a:hover{background-color:#ddd}.single-post .post-navigation{clear:both;display:block;margin:20px 0}.single-post .post-navigation .nav-next,.single-post .post-navigation .nav-previous{display:inline}.single-post .post-navigation .nav-next{text-align:right}@media screen and (min-width: 48em){.single-post .post-navigation .nav-next{text-align:left}}.single-post .pagebreak-links{margin:10px 0}.single-post .post-navigation a,.single-post .pagebreak-links a{padding:5px;margin-right:5px;margin-top:5px;width:100%;display:block}@media screen and (min-width: 48em){.single-post .post-navigation a,.single-post .pagebreak-links a{width:inherit;display:inline}}.single-post .post-navigation .next,.single-post .post-navigation .prev,.single-post .pagebreak-links .next,.single-post .pagebreak-links .prev{padding:2px 4px}.single-post .post-navigation .next,.single-post .pagebreak-links .next{text-align:right}@media screen and (min-width: 48em){.single-post .post-navigation .next,.single-post .pagebreak-links .next{text-align:left}}.single-post .post-navigation .next:after,.single-post .pagebreak-links .next:after{margin-left:5px;content:""}.single-post .post-navigation .prev:before,.single-post .pagebreak-links .prev:before{margin-right:5px}.page h1.entry-title{display:block;margin:0 0 20px;padding:6px 0 20px;border-bottom:1px solid #1a1a1a}.page a.post-edit-link{text-transform:uppercase;letter-spacing:1px;font-weight:600;margin-top:30px;display:inline-block}.page.has-thumb .content-wrap{padding-top:0}.page.has-thumb .blog-wrap{padding-top:35px}.page.has-thumb .entry-thumbnail img{width:100%}.archive-header .taxonomy-description p{margin:8px 0 0 0}.author .taxonomy-description{display:none}.entry-summary p:last-child{margin-bottom:0}.archive .site-content .post{clear:both;overflow:hidden}.search-results .site-content .post,.search-results .site-content .page{clear:both;overflow:hidden}.search-no-results .searchform{width:420px}.error404 .site-content .entry-wrap{overflow:hidden}.author h3.author-archive-title{margin:0;padding:80px 0 0 0}.page .edit-link{padding-top:30px}#secondary,#sidebar-page{padding-top:40px;padding-bottom:70px}.no-sidebar #secondary,.no-sidebar #sidebar-page{display:none}.widget-area .widget{clear:both;float:none;line-height:1.5;padding-bottom:34px}.widget-area .widget ul{margin:0;padding:0}.widget-area .widget ul ul{display:inline}#secondary .widget:last-of-type,#sidebar-page.widget:last-of-type{padding-bottom:0}.widget .widget-title-wrap{display:block}.widget ul:not(.slick-dots) ul:before,.widget ul:not(.slick-dots) li:after{display:inline;content:' / '}.widget select,.widget iframe{max-width:99%;margin-left:1px;margin-left:0.1rem}.widget-area .widget ul li{list-style:none;display:inline}.widget-area .widget ul li:last-child{padding-bottom:0}.widget-area .widget ul li:last-child::after{content:''}.widget-area .widget img.resize{max-width:100%;height:auto}.wp_widget_tag_cloud div,.widget_tag_cloud div{-ms-word-break:break-all;word-break:break-all;word-break:break-word}.widget_recent_comments a.url,.widget_recent_comments span.comment-author-link{font-weight:600}.widget-area .widget_recent_comments ul li{display:block;padding-bottom:6px}.widget-area .widget_recent_comments ul li:after{display:none;content:' '}.widget-area .widget_rss ul li:after{display:none;content:' '}.tagcloud a{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.widget_search{clear:both;overflow:hidden}@media screen and (min-width: 37.5em){.widget_search input.search-field{width:67.8%}.widget_search input[type="submit"]{width:30%}}.widget ul .dropdown-toggle{display:none}.widget-area .widget_rss ul{margin:0;padding:0}.widget-area .widget_rss ul li{display:block;padding-bottom:20px}.widget-area .widget_rss ul li .rssSummary{padding:0;display:inline-block}.widget-area .widget_rss ul li cite{font-style:normal;font-weight:600}a.rsswidget{font-weight:600}.widget-area .widget_rss ul ul:after{display:none;content:' '}.widget_calendar #calendar_wrap{position:relative}.widget_calendar #calendar_wrap table{width:100%}.widget_calendar #calendar_wrap a{font-weight:bold}.widget_calendar #wp-calendar caption{margin:0 0 15px;text-align:left}.widget_calendar table#wp-calendar tr th{padding:2px;text-align:center}.widget_calendar table#wp-calendar tr td{padding:7px 0 3px;border:1px solid #000;text-align:center}.widget_calendar table#wp-calendar tbody tr td a{display:block}.textwidget p{margin:0 0 20px}.textwidget p:last-child{margin:0}.textwidget img{display:block;line-height:0}.widget.widget_media_gallery ul li{display:inline-block}.widget.widget_media_gallery ul ul:before,.widget.widget_media_gallery ul li:after{display:none}.entry-thumbnail a{max-height:400px;overflow:hidden}@media screen and (min-width: 85em){.entry-thumbnail a{max-height:500px;overflow:hidden}}#colophon{clear:both;overflow:hidden;margin:0 auto;background:#471659;border-top:1px solid #471659;color:#fff;padding-top:40px;padding-bottom:40px}.no-sidebar #colophon{margin-top:60px}#colophon .footer-menu ul a{color:#fff}#colophon p,#colophon #site-info{color:rgba(255,255,255,0.8)}#colophon p a,#colophon #site-info a{color:#fff}#colophon .footer-menu ul a:focus,#colophon #site-info a:focus,#colophon .footer-menu ul a:hover,#colophon #site-info a:hover{color:#f80}#colophon a{color:#fff}#colophon .custom-logo-wrap{text-align:left;display:block;padding-bottom:45px}.page-template-shop-front #colophon{margin-top:0}#site-info{padding-top:10px}#site-info ul{margin:0;padding:0}#site-info ul li{display:block}#site-info ul li.copyright:after,#site-info ul li.wp-credit:after,#site-info ul li.theme-author:after{content:'\002E'}.title-footer{display:block;margin:0;padding-bottom:45px;font-size:24px;font-size:1.5rem;font-weight:bold}.big-footer-feature{display:block;margin-bottom:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,0.2)}#big-footer-feature h2.footer-feature-title,#big-footer-feature h3.footer-feature-title{position:relative;display:block;padding:8px 0 20px}.big-footer-feature p{margin-bottom:0}.big-footer-feature p.text-small{padding:10px 0 0 0}.footer-feature-textwrap{padding:15px 0 0 50px}.footer-feature-image a{display:block;line-height:0}.big-instagram-wrap .widget h2.widget-title{display:none}.big-instagram-wrap .widget-area .widget{position:relative;padding:35px 0 0 0}.widget ul.instagram-pics li a{width:16.66666666666667%}.widget ul.instagram-pics li:after{display:none}.widget ul.instagram-pics li a{display:block;float:left;line-height:0}.null-instagram-feed{position:relative;overflow:hidden}.big-instagram-wrap .null-instagram-feed .clear{position:absolute;top:0;width:100%;text-align:center}.footer-wrap{margin:0 auto}.footer-menus-wrap{border-bottom:1px solid rgba(255,255,255,0.2)}.footer-menu{width:50%;float:left}.footer-menu h3.footer-menu-title{padding:0 0 20px}#footer-menu-one,#footer-menu-three{clear:left}#footer-menu-two,#footer-menu-four{clear:right}.footer-menu ul{margin:0;padding:0 0 60px}.footer-menu ul ul{margin:0;padding:0}.footer-menu ul li{padding:0 0 10px}.footer-menu ul ul li:last-child{padding:0}#footer-search{width:100%;margin:0 auto;text-align:left}#footer-social{padding-top:30px}#footer-social ul{margin:0;padding:0;display:inline-block}#footer-social h3.socialmedia,#footer-social span{color:rgba(255,255,255,0.5)}#footer-social ul li{display:inline-block}@media screen and (min-width: 37.5em){.footer-feature-image{width:47.8134110787172%;float:left;margin-right:2.1865889212828%}.footer-feature-textwrap{width:47.8134110787172%;float:right;padding-top:0;margin-left:2.1865889212828%}}@media screen and (min-width: 48em){#colophon{padding-top:70px}#site-info{font-size:14px;font-size:0.875rem}#site-info ul li{display:inline-block}#footer-social{padding-top:10px}.big-footer-feature{margin-bottom:70px;padding-bottom:70px}.big-footer-feature h3.footer-feature-title{padding:8px 0 35px}.big-instagram-wrap .widget-area .widget{padding:45px 0 0 0}}@media screen and (min-width: 64em){.footer-feature-btn{margin:40px 0 0 0;padding:18px 40px}.big-footer-feature p.text-small{padding:20px 0 0 0}}@media screen and (min-width: 66.25em){.footer-feature-textwrap p.text-big{font-size:1.4rem}.footer-feature-textwrap p.text-small{font-size:.8rem;line-height:1rem}.title-footer{width:31.74603174603175%;margin-right:2.38095238095238%;float:left}#colophon{padding-left:0;padding-right:0}#colophon .custom-logo-wrap{width:31.74603174603175%;margin-right:2.38095238095238%;float:left}#colophon .custom-logo-wrap .custom-logo-link img{max-width:130px;max-height:59px}#footer-menu-one,#footer-menu-two,#footer-menu-three,#footer-menu-four{clear:none}.footer-menu{width:14.68253968253968%;float:left}#footer-menu-one,#footer-menu-two,#footer-menu-three{margin-right:2.38095238095238%}.title-footer{font-size:36px;font-size:2.25rem}#site-info{width:50%;float:left}#footer-social{padding-top:23px;float:right;text-align:right}#footer-social ul{float:left}#footer-social span{display:inline-block;float:left;padding:8px 15px 0px 0px}.footer-feature-image{width:31.74603174603175%;margin-right:0}.footer-feature-textwrap{width:65.87301587301587%;margin-left:0}}.two-columns-one,.three-columns-one,.three-columns-two,.four-columns-one,.four-columns-two,.four-columns-three{width:100%}.entry-content .two-columns-one,.entry-content .three-columns-one,.entry-content .three-columns-two,.entry-content .four-columns-one,.entry-content .four-columns-two,.entry-content .four-columns-three{position:relative;float:left;margin-bottom:30px;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.entry-content .two-columns-one.secondcolor,.entry-content .three-columns-one.secondcolor,.entry-content .three-columns-two.secondcolor,.entry-content .four-columns-one.secondcolor,.entry-content .four-columns-two.secondcolor,.entry-content .four-columns-three.secondcolor{background:#672082;color:#fff;padding:10px}.entry-content .two-columns-one.secondcolor.lighten,.entry-content .three-columns-one.secondcolor.lighten,.entry-content .three-columns-two.secondcolor.lighten,.entry-content .four-columns-one.secondcolor.lighten,.entry-content .four-columns-two.secondcolor.lighten,.entry-content .four-columns-three.secondcolor.lighten{background:#872aab}.entry-content .two-columns-one.maincolor,.entry-content .three-columns-one.maincolor,.entry-content .three-columns-two.maincolor,.entry-content .four-columns-one.maincolor,.entry-content .four-columns-two.maincolor,.entry-content .four-columns-three.maincolor{background:#f80;padding:10px}.entry-content .two-columns-one.maincolor a,.entry-content .three-columns-one.maincolor a,.entry-content .three-columns-two.maincolor a,.entry-content .four-columns-one.maincolor a,.entry-content .four-columns-two.maincolor a,.entry-content .four-columns-three.maincolor a{color:#672082}.entry-content .two-columns-one.maincolor.lighten,.entry-content .three-columns-one.maincolor.lighten,.entry-content .three-columns-two.maincolor.lighten,.entry-content .four-columns-one.maincolor.lighten,.entry-content .four-columns-two.maincolor.lighten,.entry-content .four-columns-three.maincolor.lighten{background:#ffa033}.entry-content .two-columns-one.blue,.entry-content .three-columns-one.blue,.entry-content .three-columns-two.blue,.entry-content .four-columns-one.blue,.entry-content .four-columns-two.blue,.entry-content .four-columns-three.blue{background:#06f;padding:10px}.entry-content .two-columns-one.blue.lighten,.entry-content .three-columns-one.blue.lighten,.entry-content .three-columns-two.blue.lighten,.entry-content .four-columns-one.blue.lighten,.entry-content .four-columns-two.blue.lighten,.entry-content .four-columns-three.blue.lighten{background:#3385ff}.entry-content .two-columns-one.red,.entry-content .three-columns-one.red,.entry-content .three-columns-two.red,.entry-content .four-columns-one.red,.entry-content .four-columns-two.red,.entry-content .four-columns-three.red{background:#d7464d;padding:10px}.entry-content .two-columns-one.red.lighten,.entry-content .three-columns-one.red.lighten,.entry-content .three-columns-two.red.lighten,.entry-content .four-columns-one.red.lighten,.entry-content .four-columns-two.red.lighten,.entry-content .four-columns-three.red.lighten{background:#e07075}.entry-content .two-columns-one.yellow,.entry-content .three-columns-one.yellow,.entry-content .three-columns-two.yellow,.entry-content .four-columns-one.yellow,.entry-content .four-columns-two.yellow,.entry-content .four-columns-three.yellow{background:#e7b547;padding:10px}.entry-content .two-columns-one.yellow.lighten,.entry-content .three-columns-one.yellow.lighten,.entry-content .three-columns-two.yellow.lighten,.entry-content .four-columns-one.yellow.lighten,.entry-content .four-columns-two.yellow.lighten,.entry-content .four-columns-three.yellow.lighten{background:#edc774}.entry-content .two-columns-one.green,.entry-content .three-columns-one.green,.entry-content .three-columns-two.green,.entry-content .four-columns-one.green,.entry-content .four-columns-two.green,.entry-content .four-columns-three.green{background:#85c066;padding:10px}.entry-content .two-columns-one.green.lighten,.entry-content .three-columns-one.green.lighten,.entry-content .three-columns-two.green.lighten,.entry-content .four-columns-one.green.lighten,.entry-content .four-columns-two.green.lighten,.entry-content .four-columns-three.green.lighten{background:#a2cf8a}.entry-content .two-columns-one.lightgrey,.entry-content .three-columns-one.lightgrey,.entry-content .three-columns-two.lightgrey,.entry-content .four-columns-one.lightgrey,.entry-content .four-columns-two.lightgrey,.entry-content .four-columns-three.lightgrey{background:#ececed;padding:10px}.entry-content .two-columns-one.lightgrey.lighten,.entry-content .three-columns-one.lightgrey.lighten,.entry-content .three-columns-two.lightgrey.lighten,.entry-content .four-columns-one.lightgrey.lighten,.entry-content .four-columns-two.lightgrey.lighten,.entry-content .four-columns-three.lightgrey.lighten{background:#fff}.entry-content .two-columns-one.grey,.entry-content .three-columns-one.grey,.entry-content .three-columns-two.grey,.entry-content .four-columns-one.grey,.entry-content .four-columns-two.grey,.entry-content .four-columns-three.grey{background:#a9a9a9;padding:10px}.entry-content .two-columns-one.grey.lighten,.entry-content .three-columns-one.grey.lighten,.entry-content .three-columns-two.grey.lighten,.entry-content .four-columns-one.grey.lighten,.entry-content .four-columns-two.grey.lighten,.entry-content .four-columns-three.grey.lighten{background:#c3c3c3}.entry-content .two-columns-one.black,.entry-content .three-columns-one.black,.entry-content .three-columns-two.black,.entry-content .four-columns-one.black,.entry-content .four-columns-two.black,.entry-content .four-columns-three.black{background:#000;padding:10px;color:#fff}.entry-content .two-columns-one.black.lighten,.entry-content .three-columns-one.black.lighten,.entry-content .three-columns-two.black.lighten,.entry-content .four-columns-one.black.lighten,.entry-content .four-columns-two.black.lighten,.entry-content .four-columns-three.black.lighten{background:#1a1a1a}.entry-content .two-columns-one.dark,.entry-content .three-columns-one.dark,.entry-content .three-columns-two.dark,.entry-content .four-columns-one.dark,.entry-content .four-columns-two.dark,.entry-content .four-columns-three.dark{background:#222;padding:10px;color:#fff}.entry-content .two-columns-one.dark.lighten,.entry-content .three-columns-one.dark.lighten,.entry-content .three-columns-two.dark.lighten,.entry-content .four-columns-one.dark.lighten,.entry-content .four-columns-two.dark.lighten,.entry-content .four-columns-three.dark.lighten{background:#3c3c3c}.entry-content .two-columns-one p,.entry-content .three-columns-one p,.entry-content .three-columns-two p,.entry-content .four-columns-one p,.entry-content .four-columns-two p,.entry-content .four-columns-three p{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.last{clear:right;margin-right:0 !important}.divider{width:100%;margin-bottom:21px;padding-top:21px;display:block;clear:both}#section-fullwidth{padding:0;margin:0}#section-fullwidth img{z-index:1}#section-fullwidth p,#section-fullwidth h1,#section-fullwidth h2,#section-fullwidth h3,#section-fullwidth h4,#section-fullwidth h5,#section-fullwidth h6,#section-fullwidth blockquote,#section-fullwidth em,#section-fullwidth code{position:relative;z-index:2}#section-fullwidth.withbackground{background-size:cover;background-position:center center}#section-fullwidth.withbackground p,#section-fullwidth.withbackground h1,#section-fullwidth.withbackground h2,#section-fullwidth.withbackground h3,#section-fullwidth.withbackground h4,#section-fullwidth.withbackground h5,#section-fullwidth.withbackground h6,#section-fullwidth.withbackground blockquote,#section-fullwidth.withbackground em,#section-fullwidth.withbackground code{background:#000;color:#fff;display:table;padding:2px 5px;margin-left:6.25%;margin-right:6.25%}#section-fullwidth.withbackground.maincolor p,#section-fullwidth.withbackground.maincolor h1,#section-fullwidth.withbackground.maincolor h2,#section-fullwidth.withbackground.maincolor h3,#section-fullwidth.withbackground.maincolor h4,#section-fullwidth.withbackground.maincolor h5,#section-fullwidth.withbackground.maincolor h6,#section-fullwidth.withbackground.maincolor blockquote,#section-fullwidth.withbackground.maincolor em,#section-fullwidth.withbackground.maincolor code{background:#f80;color:#fff}#section-fullwidth.withbackground.secondcolor p,#section-fullwidth.withbackground.secondcolor h1,#section-fullwidth.withbackground.secondcolor h2,#section-fullwidth.withbackground.secondcolor h3,#section-fullwidth.withbackground.secondcolor h4,#section-fullwidth.withbackground.secondcolor h5,#section-fullwidth.withbackground.secondcolor h6,#section-fullwidth.withbackground.secondcolor blockquote,#section-fullwidth.withbackground.secondcolor em,#section-fullwidth.withbackground.secondcolor code{background:#672082;color:#fff}#section-fullwidth.withbackground.red p,#section-fullwidth.withbackground.red h1,#section-fullwidth.withbackground.red h2,#section-fullwidth.withbackground.red h3,#section-fullwidth.withbackground.red h4,#section-fullwidth.withbackground.red h5,#section-fullwidth.withbackground.red h6,#section-fullwidth.withbackground.red blockquote,#section-fullwidth.withbackground.red em,#section-fullwidth.withbackground.red code{background:#d7464d;color:#fff}#section-fullwidth.withbackground.green p,#section-fullwidth.withbackground.green h1,#section-fullwidth.withbackground.green h2,#section-fullwidth.withbackground.green h3,#section-fullwidth.withbackground.green h4,#section-fullwidth.withbackground.green h5,#section-fullwidth.withbackground.green h6,#section-fullwidth.withbackground.green blockquote,#section-fullwidth.withbackground.green em,#section-fullwidth.withbackground.green code{background:#85c066;color:#fff}#section-fullwidth.withbackground.yellow p,#section-fullwidth.withbackground.yellow h1,#section-fullwidth.withbackground.yellow h2,#section-fullwidth.withbackground.yellow h3,#section-fullwidth.withbackground.yellow h4,#section-fullwidth.withbackground.yellow h5,#section-fullwidth.withbackground.yellow h6,#section-fullwidth.withbackground.yellow blockquote,#section-fullwidth.withbackground.yellow em,#section-fullwidth.withbackground.yellow code{background:#e7b547;color:#fff}#section-fullwidth.withbackground.blue p,#section-fullwidth.withbackground.blue h1,#section-fullwidth.withbackground.blue h2,#section-fullwidth.withbackground.blue h3,#section-fullwidth.withbackground.blue h4,#section-fullwidth.withbackground.blue h5,#section-fullwidth.withbackground.blue h6,#section-fullwidth.withbackground.blue blockquote,#section-fullwidth.withbackground.blue em,#section-fullwidth.withbackground.blue code{background:#06f;color:#fff}#section-fullwidth.withbackground.lightgrey p,#section-fullwidth.withbackground.lightgrey h1,#section-fullwidth.withbackground.lightgrey h2,#section-fullwidth.withbackground.lightgrey h3,#section-fullwidth.withbackground.lightgrey h4,#section-fullwidth.withbackground.lightgrey h5,#section-fullwidth.withbackground.lightgrey h6,#section-fullwidth.withbackground.lightgrey blockquote,#section-fullwidth.withbackground.lightgrey em,#section-fullwidth.withbackground.lightgrey code{background:#ececed;color:#fff}#section-fullwidth.withbackground.grey p,#section-fullwidth.withbackground.grey h1,#section-fullwidth.withbackground.grey h2,#section-fullwidth.withbackground.grey h3,#section-fullwidth.withbackground.grey h4,#section-fullwidth.withbackground.grey h5,#section-fullwidth.withbackground.grey h6,#section-fullwidth.withbackground.grey blockquote,#section-fullwidth.withbackground.grey em,#section-fullwidth.withbackground.grey code{background:#a9a9a9;color:#fff}#section-fullwidth p{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}#section-fullwidth.secondcolor{background:#672082;color:#fff}#section-fullwidth.secondcolor.lighten{background:#872aab}#section-fullwidth.maincolor{background:#f80}#section-fullwidth.maincolor a{color:#672082}#section-fullwidth.maincolor.lighten{background:#ffa033}#section-fullwidth.blue{background:#06f}#section-fullwidth.blue.lighten{background:#3385ff}#section-fullwidth.red{background:#d7464d}#section-fullwidth.red.lighten{background:#e07075}#section-fullwidth.yellow{background:#e7b547;padding:10px}#section-fullwidth.yellow.lighten{background:#edc774}#section-fullwidth.green{background:#85c066}#section-fullwidth.green.lighten{background:#a2cf8a}#section-fullwidth.lightgrey{background:#ececed}#section-fullwidth.lightgrey.lighten{background:#fff}#section-fullwidth.grey{background:#a9a9a9}#section-fullwidth.grey.lighten{background:#c3c3c3}#section-fullwidth.black{background:#000;color:#fff}#section-fullwidth.black.lighten{background:#1a1a1a}#section-fullwidth.dark{background:#222;color:#fff}#section-fullwidth.dark.lighten{background:#3c3c3c}@media screen and (min-width: 48em){.two-columns-one{width:48.5%}.three-columns-one{width:30.3%}.three-columns-two{width:65.15%}.four-columns-one{width:22.375%}.four-columns-two{width:48%}.four-columns-three{width:74.5%}.two-columns-one,.three-columns-one,.three-columns-two,.four-columns-one,.four-columns-two,.four-columns-three{position:relative;float:left;margin-bottom:0}.two-columns-one{margin:0 1.5% 0 0}.two-columns-one.last{margin-right:0}.three-columns-two{margin:0 1.5% 0 0}.three-columns-two.last{margin-right:0}.three-columns-one{margin:0 3% 0 0}.three-columns-one.last{margin-right:0}.four-columns-one{margin:0 3.5% 0 0}.four-columns-one.last{margin-right:0}}.shortcode-section a.all-posts-link{color:#1a1a1a;text-decoration:none}.shortcode-section a.all-posts-link:after{content:'\2192';text-align:right;padding-left:3px}.shortcode-section .type-post{position:relative;display:block;margin:0;padding:20px 0 35px;border-top:1px solid #1a1a1a}.shortcode-section .hentry .entry-cats a{display:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:before,.shortcode-section .section-one-column-one .entry-cats a:before,.shortcode-section .section-three-column-one .entry-cats a:before,.shortcode-section #front-section-four .entry-cats a:before{display:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1){margin-left:-5.94405594405594%;margin-right:-5.94405594405594%;margin-bottom:34px;padding:0;border-top:0}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail{width:100%;margin:0;float:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail img{width:100%}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{width:100%;padding:0 5.3125% 28px}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta{float:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-summary{display:none}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a{padding:2px 5px}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-date,.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-comments,.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit,.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{display:inline-block;padding-bottom:0}.shortcode-section #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-date{padding-right:20px}.blogroll .entry-meta a{color:#1a1a1a;text-decoration:none}.blogroll .entry-cats a:nth-child(n+2):before{content:' / ';padding:0 2px;color:#1a1a1a}@media screen and (min-width: 48em){.entry-content .blogroll .entry-summary p{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}}@media screen and (min-width: 48em){.page #primary .blogroll .hentry{padding:20px 0 40px}.page #primary .blogroll .hentry .entry-meta{width:25.49019607843137%;float:left;display:block}.page #primary .blogroll .hentry .entry-main{width:74.50980392156863%;float:left}.page #primary .blogroll .hentry .entry-thumbnail{width:36.14457831325301%}.page #primary .blogroll .hentry .meta-main-wrap{width:61.44578313253012%;float:left}}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%;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]),[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body,figure{margin:0}img{border:0;-ms-interpolation-mode:bicubic}a:hover,a:active,a:focus{outline:none;-moz-outline-style:none}input{-webkit-border-radius:0;border-radius:0}::-webkit-input-placeholder,:-moz-placeholder,::-moz-placeholder,:-ms-input-placeholder{color:#999}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}::selection,::-moz-selection{background:#d7f4f9}.clearfix:after,.accordion .accordion-group .accordion-body .accordion-inner:after,#main-wrap .sharedaddy:after,.clear:after{clear:both;content:' ';display:block;font-size:0;line-height:0;visibility:hidden;width:0;height:0}.cf:before{content:" ";display:table}.cf:after{content:" ";display:table;clear:both}.front-section-title,.social-front-title,p.text-big,.widget_mc4wp_form_widget p,.jetpack_subscription_widget #subscribe-text p,.single-post .entry-content p.intro{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.section-about-column-one p{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.entry-content p{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.entry-content p.pull-left,.entry-content p.pull-right{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.entry-header p.intro{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}p.site-title{font-weight:bold;padding-right:55px;margin:0;font-size:25px;line-height:35px;font-size:1.5625rem;line-height:2.1875rem}#overlay-nav ul li a,#desktop-navigation ul li a,.comments-toggle{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.section-about-column-one p cite,.footer-feature-btn,.page a.post-edit-link{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.site-content p.nocomments,.site-content div.wpcf7 p input.wpcf7-submit{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.entry-summary,.footer-menu ul li,#overlay-nav ul ul li a,#footer-social span{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;hypens:auto}.widget_rss ul li .rssSummary,.widget_rss ul li cite{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.contact-form label span{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}#site-info,.front-section a.all-posts-link,.single-post .canonical-link,.null-instagram-feed .clear{font-size:12px;font-size:0.75rem}#overlay-nav ul li a,#desktop-navigation ul li a,.site-content p.nocomments{text-transform:uppercase;letter-spacing:1px}.comments-show #comments-toggle,#comments-toggle:focus,#comments-toggle:hover{border:2px solid #0c6ca6}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,.footer-feature-btn:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,.footer-feature-btn:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{border:2px solid #0c6ca6}p{margin-bottom:30px}.entry-summary p{-moz-hyphens:auto;-o-hyphens:auto;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.entry-content p:last-child,.team-text p:last-child{margin-bottom:0}b,strong{font-weight:bold}dfn,em,i{font-style:italic}s,strike,del{text-decoration:line-through}address{margin:0 0 30px}pre{max-width:100%;word-wrap:break-word;margin-bottom:30px;padding:15px;overflow:auto}code,kbd,tt,var,pre{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono","Courier New","Courier 10 Pitch",Courier,monospace;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}abbr,acronym{border-bottom-width:1px;border-bottom-style:dotted;cursor:help}mark,ins{text-decoration:none}sup,sub{position:relative;vertical-align:baseline;height:0;font-size:75%;line-height:0}sup{bottom:1ex}sub{top:.5ex}small{font-size:75%}big{font-size:125%}figure{margin:0}dt{padding-bottom:4px;font-weight:bold}dd{margin:0 0 30px}dl dt{font-weight:bold}dl dd{margin:0 0 30px}@media screen and (min-width: 48em){.front-section-title,.social-front-title{font-size:36px;line-height:50.4px;font-size:2.25rem;line-height:3.15rem}.entry-header p.intro,.section-about-column-one p,p.text-big,.single-post .entry-content p.intro{font-size:26px;line-height:36.4px;font-size:1.625rem;line-height:2.275rem}.entry-content p{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.entry-content p.pull-left,.entry-content p.pull-right{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.entry-content ol,.entry-content ul,.entry-content dl{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.big-thumb .entry-header p.intro,.section-one-column-one .type-post .entry-summary,.section-three-column-one .type-post .entry-summary,p.text-small{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}address{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.entry-summary{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.null-instagram-feed .clear{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.section-fourcolumn-postwrap .type-post .entry-summary,.section-sixcolumn-postwrap .type-post .entry-summary{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}}h1,h2,h3,h4,h5,h6{-moz-hyphens:auto;-o-hyphens:auto;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;font-familiy:"roboto",sans-serif}#section-fullwidth h1,.site-content h1,.entry-content h1{padding:6px 0 9px;font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem;-moz-hyphens:manual;-o-hyphens:manual;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual}#section-fullwidth h2,.site-content h2,.entry-content h2{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem;padding:6px 0 9px;-moz-hyphens:manual;-o-hyphens:manual;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual}#section-fullwidth h3,.site-content h3,.entry-content h3{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem;padding:5px 0 8px}#section-fullwidth h4,.site-content h4,.entry-content h4{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;padding:5px 0 8px}#section-fullwidth h5,.site-content h5,.entry-content h5{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem;padding:3px 0;text-transform:uppercase;letter-spacing:1px}#section-fullwidth h6,.site-content h6,.entry-content h6{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;padding:3px 0}h1,h2,h3,h4,h5,h6,#overlay-nav ul li a,#desktop-navigation ul li a,.authorbox h3.author-title,#comments h3.comments-title{font-weight:600}p.site-title,h1.site-title{font-weight:bold;padding-right:25px;font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}.single-post .entry-header h1.entry-title,.entry-header h1.entry-title,.attachment h1.entry-title,.page h1.entry-title,h1.entry-title,.archive-header h1.archive-title,.site-content h1,.entry-content h1{text-transform:uppercase;border-bottom:7px;border-style:solid;margin-bottom:50px;display:table-cell;padding-bottom:1px}.single-post .entry-header h1.entry-title+*,.entry-header h1.entry-title+*,.attachment h1.entry-title+*,.page h1.entry-title+*,h1.entry-title+*,.archive-header h1.archive-title+*,.site-content h1+*,.entry-content h1+*{margin-top:20px}.single-post .entry-header h1::after.entry-title,.entry-header h1::after.entry-title,.page h1::after.entry-title,.attachment h1::after.entry-title,.archive-header h1::after.archive-title article h1::after,.entry-content h1::after{content:" ";display:table-cell;width:100%}.h1noupper h1,.h1noupper .entry-header h1.entry-title,.h1noupper.page h1.entry-title{text-transform:none}.entry-header h1.entry-title{margin:0}#secondary h2.widget-title,#sidebar-page h2.widget-title{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;text-decoration:none}#footer-social h2.socialmedia{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;hypens:auto;display:inline-block;float:left;padding:8px 15px 0px 0px}.entry-header h2.entry-title{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;-moz-hyphens:manual;-o-hyphens:manual;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;text-decoration:none;padding:4px 0 8px;display:block;margin:0}.entry-header h2.entry-title a{text-decoration:none}.widget h2.widget-title{display:block;margin:0;padding:15px 0 24px;border-top-width:1px;border-top-style:solid}.widget_mc4wp_form_widget h2.widget-title,.jetpack_subscription_widget h2.widget-title{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}h3#reply-title{margin:0 0 10px 0;padding:0;display:block;line-height:1;font-weight:600;text-transform:uppercase;letter-spacing:1.5px}#footer-social h3.socialmedia{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;hypens:auto;display:inline-block;float:left;padding:8px 15px 0px 0px}.footer-menu h3.footer-menu-title{text-transform:uppercase;letter-spacing:1px}.footer-menu h3.footer-menu-title,.authorbox h3.author-title{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}#comments h3.comments-title,#comments #respond h3#reply-title{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}#front-section-three h3.front-section-title{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.single-post .entry-header h1.entry-title,.blog-wrap h3.blog-title,.archive-header h1.archive-title,.attachment h1.entry-title,.page h1.entry-title,.featured-slider .entry-header h2.entry-title,#front-section-four .entry-header h2.entry-title,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-header h2.entry-title,.section-one-column-one .entry-header h2.entry-title,.section-three-column-one .entry-header h2.entry-title,.jetpack_subscription_widget #subscribe-text p,#front-section-three h3.front-section-title,.recommended-posts-wrap #jp-relatedposts h3.jp-relatedposts-headline,#big-footer-feature h2.footer-feature-title,#big-footer-feature h3.footer-feature-title{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}.site-content header,.entry-content header{margin-bottom:20px}@media screen and (min-width: 48em){p.site-title,h1.site-title{padding-top:5px}.single-post .entry-header h1.entry-title,.single-attachment .entry-header h1.entry-title,.attachment h1.entry-title,h1.entry-title{font-size:48px;line-height:67.2px;font-size:3rem;line-height:4.2rem}.blog-wrap h3.blog-title,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-header h2.entry-title,.section-one-column-one .entry-header h2.entry-title,.section-three-column-one .entry-header h2.entry-title,#front-section-four .entry-header h2.entry-title,.recommended-posts-wrap #jp-relatedposts h3.jp-relatedposts-headline,.archive-header h1.archive-title,.entry-content h1{font-size:36px;line-height:50.4px;font-size:2.25rem;line-height:3.15rem}#section-fullwidth h2,.entry-content h2{font-size:26px;line-height:36.4px;font-size:1.625rem;line-height:2.275rem}#section-fullwidth h3,.entry-content h3{font-size:24px;line-height:33.6px;font-size:1.5rem;line-height:2.1rem}#section-fullwidth h4,.entry-content h4{font-size:22px;line-height:30.8px;font-size:1.375rem;line-height:1.925rem}#section-fullwidth h5,.entry-content h5{font-size:19px;line-height:26.6px;font-size:1.1875rem;line-height:1.6625rem}#section-fullwidth h6,.entry-content h6{font-size:19px;line-height:26.6px;font-size:1.1875rem;line-height:1.6625rem}.entry-header h2.entry-title{font-size:24px;line-height:33.6px;font-size:1.5rem;line-height:2.1rem}.section-one-column-two .type-post:nth-of-type(n+2) .entry-header h2.entry-title,.section-two-column-two .type-post .entry-header h2.entry-title,.section-three-column-two .type-post .entry-header h2.entry-title,#front-section-fourcolumn .type-post .entry-header h2.entry-title,.section-sixcolumn-postwrap .type-post .entry-header h2.entry-title{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.page div.sharedaddy h3.sd-title,.null-instagram-feed .clear{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.attachment h1.entry-title,.page h1.entry-title{margin-bottom:45px}}@media screen and (min-width: 64em){.entry-header h2.entry-title{font-size:28px;line-height:39.2px;font-size:1.75rem;line-height:2.45rem}#front-section-twocolumn .entry-header h2.entry-title{font-size:28px;line-height:39.2px;font-size:1.75rem;line-height:2.45rem}.widget h2.widget-title{border-top:none}}@media screen and (min-width: 66.25em){h1.site-title{font-size:60px;line-height:84px;font-size:3.75rem;line-height:5.25rem;text-align:center;padding-right:0}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-header h2.entry-title,.section-one-column-one .entry-header h2.entry-title,.section-three-column-one .entry-header h2.entry-title,#front-section-four .entry-header h2.entry-title{font-size:48px;line-height:67.2px;font-size:3rem;line-height:4.2rem}#front-section-fourcolumn .type-post .entry-header h2.entry-title,.recommended-posts-wrap #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}#front-section-four entry-header h2.entry-title{padding-top:10px}}@media screen and (min-width: 85em){.single-post .entry-header h1.entry-title,#front-section-four .entry-header h2.entry-title{font-size:58px;line-height:81.2px;font-size:3.625rem;line-height:5.075rem}}@media screen and (min-width: 550px){hr{display:block;border:0px;height:56px;margin:10px 0;color:#ccc;background-image:url("./img/trenner-04-50.png");background-position:center center;background-repeat:no-repeat}}.menu_separator hr{background-image:url("./img/trenner-01-30.png");height:40px}.site-content hr{clear:both}.devider_hideimage hr{background-image:none;border:1px;height:1px;background:#ccc}#overlay-nav .menu_separator hr{display:none}a{text-decoration:none}.entry-content a,.comment-text a{font-weight:bold}.author-bio a,.textwidget a{text-decoration:underline}#secondary h2.widget-title,#sidebar-page h2.widget-title{text-decoration:none}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{border-style:solid;border-width:2px}.comments-show #comments-toggle,#comments-toggle:focus,#comments-toggle:hover{border-style:solid;border-width:2px}.desktop-search input.search-field:active,.desktop-search input.search-field:focus{border-bottom-style:solid;border-bottom-width:1px}.wp-caption-text a{line-height:1.6em}table{line-height:2;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;border-collapse:collapse;border-bottom-width:1px;border-bottom-style:solid;border-spacing:0;border-width:1px;margin:0 0 1.6em;width:100%}table.sorttable thead{cursor:pointer}table.center th,table.center td{text-align:center}table.right td{text-align:right}table thead th{border-bottom-width:2px;border-bottom-style:solid}table.long td,table.border td{border-bottom-width:1px;border-bottom-style:solid}caption,th,td{font-weight:normal;text-align:left;vertical-align:top}caption{padding:3px 5px;font-style:italic;margin:40px 0}caption.right{text-align:right}caption.center{text-align:center}th{font-weight:bold}th,td{padding:0.4em}th.right,td.right{text-align:right}th.center,td.center{text-align:center}@media screen and (max-width: 48em){table,tr,td{padding:0}table{border:none}thead{display:none}tr{float:left;width:100%;margin-bottom:2em}td{float:left;width:100%;padding:1em}}ul,ol{margin:0 0 30px 0;padding-left:40px;list-style-position:inside}ul{list-style:none}ul ul{margin:0}ol{list-style:decimal}ol ol{margin:0;list-style:lower-alpha}ol ol ol{list-style:lower-roman}li>ul,li>ol{margin-bottom:0;margin-left:0}.entry-content ul{padding-left:50px}.entry-content ul li{position:relative;padding:0 0 0 24px;list-style-position:outside;list-style-type:none}.entry-content ul li:before{margin-right:10px;margin-left:-24px}.entry-content ul li ul{padding-left:50px}.entry-content ul li ul li{padding-left:24px}.entry-content ul li ul li li{display:list-item;list-style-type:circle;padding-left:0px}.entry-content ul li ul li li:before{content:"";margin-right:0;margin-left:0}.entry-content ul li ol li:before{display:none}.entry-content ul ul{padding-left:50px}.entry-content ul.default li{display:list-item;padding:0;list-style-type:circle}.entry-content ul.default li:before{content:"";margin-left:0;margin-right:0}.entry-content ul.default li li{list-style-type:square}.entry-content ul.default li li li{list-style-type:disc}.entry-content ul.nolist li,.entry-content ul.textlist li{list-style:none;margin:0;padding:0;background:none}.entry-content ul.nolist li:before,.entry-content ul.textlist li:before{display:none}.entry-content ul.nolist li:before,.entry-content ul.textlist li:before{display:none}.entry-content ul.sign li{list-style-type:none;padding-left:30px;margin-left:20px;background-image:url(../img/signet-maincolor-24.gif);background-repeat:no-repeat;background-position:left 3px;display:list-item}.entry-content ul.sign li:before{content:"";margin:0}.entry-content ul.sign li ul li{background-image:none;list-style-type:circle;list-style-image:none;padding:0;margin:0}.entry-content ul.sign li ul li ul li{list-style-type:square}.entry-content ul.sign li ol li{background-image:none;padding:0;margin:0}.entry-content ul.sign.grau li{background-image:url(../img/signet-grau-24.gif)}.entry-content ul.sign.secondcolor li{background-image:url(../img/signet-secondcolor-24.gif)}.entry-content ul.line li{position:relative;padding:0 0 0 24px;list-style-position:outside;list-style-type:none}.entry-content ul.line li:before{vertical-align:top;position:absolute;top:0;left:0;content:'\2013';padding:0;margin-left:0;margin-right:0}.entry-content ul.line li ul{padding-left:50px}.entry-content ul.line li ul li{padding-left:24px}.entry-content ul.line li ol li:before{display:none}.entry-content ul.textlist{margin-left:0;padding-left:0}.entry-content ul.textlist li{padding-left:0;display:inline}.entry-content ol{padding-left:70px}.entry-content ol li{padding-left:4px;list-style-position:outside}.entry-content ol ol{padding-left:50px}.entry-content ol ul li{padding-left:24px}.comment-text ul,.comment-text ol{margin:0 0 15px;padding-left:20px}.comment-text li{position:relative;padding:0 0 0 24px}.comment-text ul li:before{vertical-align:top;position:absolute;top:0;left:0;content:'\2013';padding:0}.comment-text ul li ul li{padding-left:24px}.comment-text ul li ol li:before{display:none}.comment-text ol ul li{padding:0 0 0 24px}#comments ul ul,#comments ol ol{padding-left:50px}.fontawesome-icon-list a{text-decoration:none}.fontawesome-icon-list a i{color:#1a1a1a;min-width:2em}blockquote{display:block;padding:20px 20px 20px 45px;margin:10px 20px 30px;position:relative;font-family:Georgia,"Times New Roman",Times,serif;border-left-style:solid;border-left-width:15px;border-right-style:solid;border-right-width:2px;font-style:italic;-moz-hyphens:manual;-o-hyphens:manual;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual}blockquote a{text-decoration:none;cursor:pointer;padding:0 3px}blockquote em{font-style:italic}blockquote p{position:relative;font-weight:600;font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem}blockquote cite{display:block;padding-top:10px;padding-right:30px;font-style:normal;font-weight:normal;text-align:right;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}blockquote cite::before{content:"\2013 "}blockquote.quotesign{padding:20px 20px 20px 60px}blockquote.quotesign::before{content:"\201C";font-family:Georgia, serif;font-size:70px;font-weight:bold;position:absolute;left:10px;top:0px}blockquote.quotesign::after{content:""}blockquote.smallborder{border-left-width:2px;border-right-width:2px}blockquote.boxborder{border-top-width:2px;border-bottom-width:2px;border-top-style:solid;border-bottom-style:solid}blockquote.small{border-left-width:2px;border-right-width:2px;font-style:normal;padding:10px 10px 10px 25px}blockquote.small p{font-weight:normal;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}blockquote.small cite{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}blockquote.borderless{border:none}.inner-offcanvas-wrap blockquote{background:inherit;margin:10px 5px 30px 20px;border:0}.inner-offcanvas-wrap blockquote::before{content:"\201C";font-family:Georgia, serif;font-size:60px;font-weight:bold;color:#4d4d4d;position:absolute;left:2px;top:-5px}.inner-offcanvas-wrap blockquote::after{content:""}blockquote #comments blockquote{border-left:none;border-right:none}blockquote #comments blockquote p{position:relative;font-weight:600}blockquote #comments blockquote cite{display:block;padding-top:10px;font-style:normal;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}@media screen and (min-width: 48em){.entry-content blockquote:not(.small) p{font-size:24px;line-height:33.6px;font-size:1.5rem;line-height:2.1rem}.entry-content blockquote:not(.small) cite{font-size:19px;line-height:26.6px;font-size:1.1875rem;line-height:1.6625rem}}.entry-meta,.entry-cats{font-size:11px;line-height:15.4px;font-size:.6875rem;line-height:.9625rem;text-transform:uppercase;letter-spacing:1px}.entry-meta a,.entry-cats a{text-decoration:none}.entry-meta{display:block;clear:both}.entry-meta .entry-tags ul{margin:0;padding:0}#primary .hentry .entry-date,#primary .hentry .entry-edit{display:block}#primary .hentry .entry-date{padding-bottom:8px}.featured-slider .entry-cats a,.section-one-column-one .entry-cats a,.section-three-column-one .entry-cats a,#front-section-four .entry-cats a,.single-post .entry-cats a{padding:3px 5px;margin:0 2px 4px 0}.section-one-column-one .entry-cats{position:absolute;top:37px;left:17px}.section-three-column-two .entry-cats{display:none}.search-results .entry-cats a:nth-child(n+2):before,.archive .entry-cats a:nth-child(n+2):before{content:' / ';padding:0 2px}.single-post .entry-header{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.single-post .entry-header .entry-cats{display:block;text-align:right}.single-post .entry-header .entry-cats a{display:inline-block}.single-post .entry-tags{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:before,.blog .section-one-column-one .entry-cats a:before,.blog .section-three-column-one .entry-cats a:before,.blog #front-section-four .entry-cats a:before{display:none}.blog .hentry .entry-cats a{display:none}.blog .hentry .entry-cats a:nth-child(1),.blog .hentry .entry-cats a:nth-child(2),.blog .hentry .entry-cats a:nth-child(3),.blog .hentry .entry-cats a:nth-child(4){display:inline}.blog .entry-cats a:nth-child(n+2):before{content:' / '}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a{padding:2px 5px;display:inline}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-date,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-comments,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-edit,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-author{display:inline-block;padding-bottom:0}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-date{padding-right:20px}.front_hidecats .blog .entry-cats{display:none !important}@media screen and (min-width: 48em){.single-post .hentry .entry-meta,.single-attachment .hentry .entry-meta,.shortcode-section a.all-posts-link,.front-section a.all-posts-link{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.single-post .canonical-link,.single-post .entry-tags{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}}.wp-smiley{border:0;margin-bottom:0;margin-top:0;padding:0}.entry-content p.pull-left,.entry-content p.pull-right{margin-bottom:15px;font-weight:600;line-height:1.4 !important}span.dropcap{float:left;padding:3px 4px 0 0;font-size:64px;font-size:4rem;font-weight:600;line-height:0.78}.uppercase{font-weight:600;text-transform:uppercase;letter-spacing:1px}.wide-content{margin-bottom:30px}.justify{text-align:justify}.alignleft,.alignright{display:block}.alignleft{margin-right:35px;float:left}.alignright{margin-left:35px;float:right}.aligncenter{display:block;margin-left:auto;margin-right:auto;clear:both}.unsichtbar,.no-header-text p.site-description,.no-header-subtitle p.site-description,.no-header-text h1.site-title,.no-header-text p.site-title,.no-header-title h1.site-title,.no-header-title p.site-title,.screen-reader-text,.search-open span,#footer-social h3.socialmedia,#footer-social span,.home.page .entry-header h1,.single-post .entry-comments-title{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.unsichtbar:focus,.no-header-text p.site-description:focus,.no-header-subtitle p.site-description:focus,.no-header-text h1.site-title:focus,.no-header-text p.site-title:focus,.no-header-title h1.site-title:focus,.no-header-title p.site-title:focus,.screen-reader-text:focus,.search-open span:focus,#footer-social h3.socialmedia:focus,#footer-social span:focus,.home.page .entry-header h1:focus,.single-post .entry-comments-title:focus{position:relative;left:0;width:auto;height:auto;overflow:auto}.hide-desktop{display:none}.hidden{display:none}.widget_mc4wp_form_widget input[type="submit"],.jetpack_subscription_widget #subscribe-submit input[type="submit"]{background:#f80}.desktop-search input[type="submit"]:hover{background:#0c6ca6}.widget_mc4wp_form_widget input[type="submit"]:hover,.jetpack_subscription_widget #subscribe-submit input[type="submit"]:hover{background:#f80}.desktop-search input[type="submit"]:hover,.widget_search input[type="submit"]:hover,.post-password-form input[type="submit"]:hover,.post-password-form input[type="submit"]:hover .footer-feature-btn:hover{border:2px solid #0c6ca6;color:#fff;background:#0c6ca6}input{padding:12px 15px;background:#fff;border:1px solid #ccc;line-height:normal;outline:none;color:#1a1a1a}input[type="submit"]:hover,input#submit:hover{background:#0c6ca6;border:2px solid #0c6ca6;color:#fff}input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}input[type="button"],input[type="submit"],input#submit{padding:9px 30px;border:2px solid #f80;background-color:#f80;color:#fff;line-height:normal;cursor:pointer;outline:none;-webkit-appearance:none;text-transform:uppercase;font-weight:500;letter-spacing:3px}input[type="button"]:focus,input[type="button"]:hover,input[type="submit"]:focus,input[type="submit"]:hover,input#submit:focus,input#submit:hover{background-color:#672082;border-color:#672082}textarea{padding:12px 15px;background:#fff;border:1px solid #ccc;line-height:normal;outline:none;color:#1a1a1a}textarea:focus,textarea:active{border:1px solid #1a1a1a}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible;text-transform:none}select{text-transform:none}button,html input[type="button"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}#commentform input#submit{border-color:#f80;background-color:#f80;color:#fff}#commentform input#submit:focus,#commentform input#submit:hover{background-color:#672082;border-color:#672082}.post-password-form input[type="password"]{padding:9px 15px}.widget_search .searchform{width:100%;max-width:500px;display:block;overflow:hidden}.widget_search input.search-field{margin-right:6px;padding:12px 2%;float:left;width:58%}.error404 input.search-field{padding:12px 2%}.error404 input[type="submit"]{padding:10px 30px}.widget_search input[type="submit"],.post-password-form input[type="submit"]{padding:11px 0;font-weight:600;line-height:1.65}.widget_search input[type="submit"]{width:40%;float:right}@media screen and (min-width: 48em){input[type="button"],input[type="submit"],input#submit{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}}img{max-width:100%;height:auto}img.wp-post-image{padding:0}img.img-border{border:5px solid #e2e2e2}img.img-border-thin{background:#fff;padding:5px;border:1px solid #ededee}img.shadow{max-width:calc(100% - 10px);box-shadow:2px 2px 4px 0px rgba(0,0,0,0.6)}img.noshadow{max-width:inherit;box-shadow:none}img.rounded{border-radius:50%}img.roundedges{border-radius:10px}img.alignleft,img.alignright{margin-top:8px;margin-bottom:25px}.widget img{max-width:100%;height:auto}.wp-caption{max-width:100%}.wp-caption.alignnone{margin-left:0;margin-right:0}img#wpstats{display:none}.entry-content .wp-caption-text,.entry-content p.wp-caption-text{margin:0;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.shadow-images .entry-content img{max-width:calc(100% - 10px);box-shadow:2px 2px 4px 0px rgba(0,0,0,0.6)}.shadow-images .entry-content img.noshadow{max-width:inherit;box-shadow:none}.type-attachment .entry-content .entry-caption p{margin:0;padding:8px 10px 30px 2px;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.entry-content p.wp-caption-text{text-align:right;padding:0 10px 0 0}.entry-content .alignleft p.wp-caption-text{text-align:left}.entry-content .alignright p.wp-caption-text{text-align:right;margin-right:6px}figure{margin:10px 0 20px 0}figure figcaption{text-align:right;padding:0 10px 0 0;margin:0;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;max-width:100%}figure.entry-thumbnail figcaption{text-align:right}.shadow-images figure img{max-width:calc(100% - 10px);box-shadow:2px 2px 4px 0px rgba(0,0,0,0.6)}@media screen and (min-width: 48em){.single-post .entry-thumbnail{padding-bottom:30px}}.gallery{margin-left:auto;margin-right:auto;padding-top:10px}.gallery .gallery-item{float:left;margin-top:0;width:33.3%}.gallery .gallery-item a{border-bottom:none}.gallery .gallery-item .gallery-caption{margin:0;padding:8px 2px 30px;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}.gallery .gallery-item img{width:100%;height:auto}.gallery dl,.gallery dt{margin:0}.gallery br+br{display:none}.shadow-images .entry-content .gallery img{width:100%;box-shadow:2px 0px 10px 0px rgba(0,0,0,0.8)}.tiled-gallery{margin-left:auto;margin-right:auto;padding-top:10px;margin-bottom:30px !important}.gallery-columns-2 .gallery-item{width:50%}.gallery-columns-2 .gallery-item:nth-of-type(odd){padding-right:1.4%}.gallery-columns-3 .gallery-item:nth-of-type(3n+1){padding-right:1.4%}.gallery-columns-2 .gallery-item:nth-of-type(even){padding-left:1.4%}.gallery-columns-3 .gallery-item:nth-of-type(3n+3){padding-left:1.4%}.gallery-columns-3 .gallery-item:nth-of-type(3n+2){padding-left:0.7%;padding-right:0.7%}.gallery-columns-4 .gallery-item{width:25%}.gallery-columns-5 .gallery-item{width:20%}.gallery-columns-6 .gallery-item{width:16.6%}.gallery-columns-7 .gallery-item{width:14%}.gallery-columns-8 .gallery-item{width:12.5%}.gallery-columns-9 .gallery-item{width:11%}.gallery-columns-2 .attachment-medium{max-width:92%;height:auto}.gallery-columns-4 .attachment-thumbnail,.gallery-columns-5 .attachment-thumbnail,.gallery-columns-6 .attachment-thumbnail{max-width:93%;height:auto}.gallery-columns-7 .attachment-thumbnail,.gallery-columns-8 .attachment-thumbnail,.gallery-columns-9 .attachment-thumbnail{max-width:94%;height:auto}.single .gallery .gallery-item .gallery-caption{display:block}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail a:after,.featured-slider .entry-thumbnail a:after,.single-post .big-thumb .entry-thumbnail a:after,.header-image:after,#front-section-four .entry-thumbnail a:after{position:absolute;display:block;top:0;left:0;right:0;bottom:0;content:""}.uku-serif #front-section-four .entry-thumbnail a .thumb-wrap:after,.uku-serif .section-two-column-one .entry-thumbnail a:after{position:absolute;display:block;top:0;left:0;right:0;bottom:0;content:""}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-thumbnail a:after,.featured-slider .entry-thumbnail a:after,.single-post .big-thumb .entry-thumbnail a:after,.header-image:after{background-color:#000000;opacity:0}#front-section-four .meta-main-wrap,.featured-slider .meta-main-wrap,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap{position:absolute;left:0;right:0;bottom:0;z-index:100}.big-thumb .title-wrap{position:absolute}#front-section-four .meta-main-wrap,.featured-slider .meta-main-wrap,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .meta-main-wrap,.big-thumb .title-wrap{background:-moz-linear-gradient(top, transparent 0%, rgba(0,0,0,0.7) 100%);background:-webkit-linear-gradient(top, transparent 0%, rgba(0,0,0,0.7) 100%);background:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 )}embed,iframe,object,video{max-width:100%}.entry-content .twitter-tweet-rendered{max-width:100% !important}.site-content .type-attachment{padding-top:0 !important}.social-nav ul li{display:inline-block;border:1px solid transparent;border-radius:50%}.social-nav ul li a{background:#fff;color:#1a1a1a;overflow:hidden;display:inline-block;width:25px;height:25px;text-align:center;vertical-align:middle;border-radius:50%}.social-nav ul li :hover{background:#1a1a1a;color:#fff}.social-nav ul li a::before{font-size:18px;line-height:25.2px;font-size:1.125rem;line-height:1.575rem;text-align:center;vertical-align:middle;padding-top:1px}.social-nav ul li a[href*="diaspora.com"]{background-color:#ccc;border-color:#ccc;color:white}.social-nav ul li a[href*="diaspora.com"]:before{font-size:36px;line-height:32px;font-size:2.25rem;line-height:2rem;content:"*";font-family:'Roboto', 'Helvetica', 'Arial', sans-serif;font-weight:bold}.social-nav ul li a[href*="diaspora.com"]:focus,.social-nav ul li a[href*="diaspora.com"]:hover{background-color:#b3b3b3}.social-nav ul li a[href*="delicious.com"]{background-color:#eeeeee;border-color:#eeeeee;color:white}.social-nav ul li a[href*="delicious.com"]:focus,.social-nav ul li a[href*="delicious.com"]:hover{background-color:#d5d5d5}.social-nav ul li a[href*="facebook.com"]{background-color:#3b5998;border-color:#3b5998;color:white}.social-nav ul li a[href*="facebook.com"]:focus,.social-nav ul li a[href*="facebook.com"]:hover{background-color:#2d4373}.social-nav ul li a[href*="feed"]{background-color:#ff8800;border-color:#ff8800;color:white}.social-nav ul li a[href*="feed"]:focus,.social-nav ul li a[href*="feed"]:hover{background-color:#cc6d00}.social-nav ul li a[href*="flattr.com"]{background-color:#5CB85C;border-color:#5CB85C;color:white}.social-nav ul li a[href*="flattr.com"]:focus,.social-nav ul li a[href*="flattr.com"]:hover{background-color:#449d44}.social-nav ul li a[href*="flickr.com"]{background-color:#ff0084;border-color:#ff0084;color:white}.social-nav ul li a[href*="flickr.com"]:focus,.social-nav ul li a[href*="flickr.com"]:hover{background-color:#cc006a}.social-nav ul li a[href*="google.com"]{background-color:#4285f4;border-color:#4285f4;color:white}.social-nav ul li a[href*="google.com"]:focus,.social-nav ul li a[href*="google.com"]:hover{background-color:#1266f1}.social-nav ul li a[href*="github.com"]{background-color:#4078c0;border-color:#4078c0;color:white}.social-nav ul li a[href*="github.com"]:focus,.social-nav ul li a[href*="github.com"]:hover{background-color:#264874}.social-nav ul li a[href*="instagram.com"]{background-color:#c13584;border-color:#c13584;color:white}.social-nav ul li a[href*="instagram.com"]:focus,.social-nav ul li a[href*="instagram.com"]:hover{background-color:#711f4d}.social-nav ul li a[href*="linkedin.com"]{background-color:#0077b5;border-color:#0077b5;color:white}.social-nav ul li a[href*="linkedin.com"]:focus,.social-nav ul li a[href*="linkedin.com"]:hover{background-color:#00344f}.social-nav ul li a[href*="pinterest.com"]{background-color:#bd081c;border-color:#bd081c;color:white}.social-nav ul li a[href*="pinterest.com"]:focus,.social-nav ul li a[href*="pinterest.com"]:hover{background-color:#5b040e}.social-nav ul li a[href*="reddit.com"]{background-color:#ff4500;border-color:#ff4500;color:white}.social-nav ul li a[href*="reddit.com"]:focus,.social-nav ul li a[href*="reddit.com"]:hover{background-color:#992900}.social-nav ul li a[href*="slack.com"]{background-color:#6ecadc;border-color:#6ecadc;color:white}.social-nav ul li a[href*="slack.com"]:focus,.social-nav ul li a[href*="slack.com"]:hover{background-color:#2ca1b8}.social-nav ul li a[href*="snapchat.com"]{background-color:#fffc00;border-color:#fffc00;color:white}.social-nav ul li a[href*="snapchat.com"]:focus,.social-nav ul li a[href*="snapchat.com"]:hover{background-color:#999700}.social-nav ul li a[href*="slideshare.com"]{background-color:#bddfdf;border-color:#bddfdf;color:black}.social-nav ul li a[href*="slideshare.com"]:focus,.social-nav ul li a[href*="slideshare.com"]:hover{background-color:#78bebe}.social-nav ul li a[href*="tumblr.com"]{background-color:#56BC8A;border-color:#56BC8A;color:white}.social-nav ul li a[href*="tumblr.com"]:focus,.social-nav ul li a[href*="tumblr.com"]:hover{background-color:#317b57}.social-nav ul li a[href*="twitter.com"]{background-color:#1da1f2;border-color:#1da1f2;color:white}.social-nav ul li a[href*="twitter.com"]:focus,.social-nav ul li a[href*="twitter.com"]:hover{background-color:#0967a0}.social-nav ul li a[href*="vimeo.com"]{background-color:#162221;border-color:#162221;color:white}.social-nav ul li a[href*="vimeo.com"]:focus,.social-nav ul li a[href*="vimeo.com"]:hover{background-color:#3e605d}.social-nav ul li a[href*="xing.com"]{background-color:#026466;border-color:#026466;color:white}.social-nav ul li a[href*="xing.com"]:focus,.social-nav ul li a[href*="xing.com"]:hover{background-color:#000202}.social-nav ul li a[href*="youtube.com"]{background-color:#cd201f;border-color:#cd201f;color:white}.social-nav ul li a[href*="youtube.com"]:focus,.social-nav ul li a[href*="youtube.com"]:hover{background-color:#000}.social-nav ul li a[href*="lists.piratenpartei.de"]{background-color:#ff8800;border-color:#ff8800;color:white}.social-nav ul li a[href*="lists.piratenpartei.de"]:focus,.social-nav ul li a[href*="lists.piratenpartei.de"]:hover{background-color:#995200}.socialmedia-maincolor .social-nav ul li a{color:#f80;background-color:#fff;border-color:#fff}.socialmedia-maincolor .social-nav ul li a:focus,.socialmedia-maincolor .social-nav ul li a:hover{background:#672082;color:#fff;border-color:#672082}.socialmedia-maincolor .social-nav ul li :focus,.socialmedia-maincolor .social-nav ul li :hover{background:#672082;color:#fff;border-color:#672082}.socialmedia-secondcolor .social-nav ul li a{color:#672082;background-color:#fff;border-color:#fff}.socialmedia-secondcolor .social-nav ul li a:focus,.socialmedia-secondcolor .social-nav ul li a:hover{background:#f80;color:#fff;border-color:#f80}.socialmedia-secondcolor .social-nav ul li :focus,.socialmedia-secondcolor .social-nav ul li :hover{background:#f80;color:#fff;border-color:#f80}#footer-social.social-nav li{border:none}.socialmedia-maincolor #footer-social.social-nav ul li a{color:#f80;background:#471659}.socialmedia-maincolor #footer-social.social-nav ul li a:focus,.socialmedia-maincolor #footer-social.social-nav ul li a:hover{background:#672082;color:#fff;border-color:#672082}.socialmedia-secondcolor #footer-social.social-nav ul li a{color:#f80;background:#471659}.socialmedia-secondcolor #footer-social.social-nav ul li a:focus,.socialmedia-secondcolor #footer-social.social-nav ul li a:hover{background:#f80;color:#fff;border-color:#f80}@media screen and (min-width: 66.25em){.header-social{display:block;position:absolute;right:0;top:40px;height:59px;padding-top:10px}#header-social-sticky{top:7px;right:20px}.header-stick #header-social-sticky{z-index:9999}}.box,#comments .disclaimer,.pirate-crew-error{margin:0 0 30px;padding:20px;overflow:hidden;line-height:1.4}.box a,#comments .disclaimer a,.pirate-crew-error a{font-weight:bold}.site-content .box p,.site-content #comments .disclaimer p,#comments .site-content .disclaimer p,.site-content .pirate-crew-error p{margin:0 0 30px}.white-box{border:3px solid #fff}.white-box.invertbox{background:#e6e6e6}.blue-box{border:3px solid #06f}.blue-box.invertbox{background:#3385ff}.yellow-box{border:3px solid #e7b547}.yellow-box.invertbox{background:#edc774}.red-box,.pirate-crew-error{border:3px solid #d7464d}.red-box.invertbox,.invertbox.pirate-crew-error{background:#e07075}.green-box{border:3px solid #85c066}.green-box.invertbox{background:#a2cf8a}.lightgrey-box{border:3px solid #ececed}.lightgrey-box.invertbox{background:#fff}.grey-box{border:3px solid #a9a9a9}.grey-box.invertbox{background:#c3c3c3}.dark-box{border:3px solid #222}.dark-box.invertbox{background:#3c3c3c;color:#fff}.maincolor-box,#comments .disclaimer{border:3px solid #f80}.maincolor-box a,#comments .disclaimer a{color:#f80}.maincolor-box.invertbox,#comments .invertbox.disclaimer{background:#ffa033}.maincolor-box.invertbox a,#comments .invertbox.disclaimer a{color:#1a1a1a}.secondcolor-box{border:3px solid #672082}.secondcolor-box a{color:#672082}.secondcolor-box.invertbox{background:#872aab;color:#fff}a.standard-btn{display:inline-block;margin:0 0 30px;padding:10px 18px;overflow:hidden;cursor:pointer;background:#1a1a1a;color:#fff;font-size:16px;font-size:1rem;text-align:center;font-weight:normal;text-decoration:none !important;-webkit-transition:0.2s background ease;-moz-transition:0.2s background ease;-o-transition:0.2s background ease;-ms-transition:0.2s background ease;transition:0.2s background ease}a.standard-btn:focus,a.standard-btn:hover{background:#737373}.post .entry-content a.standard-btn,.page .entry-content a.standard-btn,.post .entry-content a.standard-btn:hover,.page .entry-content a.standard-btn:hover{color:#fff;border:none}a.standard-btn.xsmall-btn{padding:5px 10px 3px;font-size:14px;font-size:0.875rem}a.standard-btn.small-btn{padding:7px 12px 5px;font-size:18px;font-size:1.125rem}a.standard-btn.large-btn{padding:14px 20px 13px;font-size:23px;font-size:1.4375rem}a.standard-btn.xlarge-btn{padding:18px 30px 17px;font-size:25px;font-size:1.5625rem}a.standard-btn.red-btn{background:#d7464d}a.standard-btn.red-btn:focus,a.standard-btn.red-btn:hover{background:#ab252c}a.standard-btn.green-btn{background:#85c066}a.standard-btn.green-btn:focus,a.standard-btn.green-btn:hover{background:#5f9a3f}a.standard-btn.blue-btn{background:#06f}a.standard-btn.blue-btn:focus,a.standard-btn.blue-btn:hover{background:#0047b3}a.standard-btn.yellow-btn{background:#e7b547}a.standard-btn.yellow-btn:focus,a.standard-btn.yellow-btn:hover{background:#c7911a}a.standard-btn.grey-btn{background:#a9a9a9}a.standard-btn.grey-btn:focus,a.standard-btn.grey-btn:hover{background:#838383}a.standard-btn.black-btn{background:#000}a.standard-btn.black-btn:focus,a.standard-btn.black-btn:hover{background:#595959}a.standard-btn.maincolor-btn{background:#f80}a.standard-btn.maincolor-btn:focus,a.standard-btn.maincolor-btn:hover{background:#672082}a.standard-btn.secondcolor-btn{background:#672082}a.standard-btn.secondcolor-btn:focus,a.standard-btn.secondcolor-btn:hover{background:#f80}.footer-feature-btn{display:inline-block;margin:20px 0 0 0;padding:18px 30px;background:none;border:2px solid #f80;background:#f80;color:#fff;text-transform:uppercase;letter-spacing:3px;outline:none;font-weight:500}.footer-feature-btn:focus,.footer-feature-btn:hover{border-color:#672082;background:#672082}#comments-toggle{position:relative;display:block;width:100%;padding:18px 20px 18px 60px;border-width:2px;border-style:solid;background:none;font-weight:600;text-transform:uppercase;letter-spacing:3px;text-align:left;outline:none}#comments-toggle:before{display:block;position:absolute;top:0;left:0;width:60px;height:58px;text-align:center;padding-top:16px;background:none}.toggledcomments .comments-content{display:none}.comments-show .comments-content{display:block}#primary .hentry .entry-comments{display:block;padding-bottom:8px}.entry-comments a{position:relative;padding-left:18px}.entry-comments a:before{display:block;position:absolute;top:2px;left:0}#comments{position:relative;padding:20px 0 0 0}#comments ul li,#comments ol li{list-style-position:outside}#comments ul.children{margin:0;padding:0}#comments li.comment,#comments li.pingback{overflow:hidden;margin:0 0 16px;padding:0}#comments li.comment:last-of-type,#comments li.pingback:last-of-type{margin:0}#comments li.comment ul.children{margin:16px 0 0}#comments .children .comment:last-child{margin:0}#comments h3.comments-title{padding:27px 0 0 0;border-top:1px solid #1a1a1a;display:block;font-weight:600;text-transform:uppercase;letter-spacing:3px}#comments .comment-details{position:relative;margin:0 90px 0 0;padding:0}#comments .comment-avatar{margin:0;padding:0;line-height:0;float:left}#comments .comment-avatar img.avatar{width:40px;height:40px;margin:0;-moz-border-radius:50px;-webkit-border-radius:50px;border-radius:50px}#comments .comment-author{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;font-weight:600}#comments .comment-author span{display:none}#comments .comment-text{overflow:hidden;padding:10px 30px 10px 0}#comments .comment-text p{margin:0;padding:0 0 15px}#comments .comment-text p:last-child{padding:0}#comments .comment-meta{overflow:hidden;list-style:none}#comments .comment-meta li{display:inline}#comments .comment-reply{position:relative;padding:0}#comments .comment-reply a{padding-left:20px}#comments .comment-reply a:before{display:block;position:absolute;top:4px;left:0;text-align:left}#comments p.comment-awaiting-moderation{display:inline-block}#comments ol li.pingback p{margin:0}#comments .disclaimer{margin-bottom:10px}#comments #respond{margin:0;padding-top:30px;overflow:hidden;text-align:left}#comments li.comment #respond{padding-top:20px}#comments ol.commentlist #respond{margin:0;padding-left:0;padding-right:0}#comments #respond p.comment-notes{margin:0;padding:0}#comments #respond p.logged-in-as{padding:3px 0 0 0;margin-bottom:0}ol.commentlist{list-style:none;margin:0;padding:40px 0 0}ol.commentlist li{display:block;margin:0;padding:0}ol.commentlist .comment-text li{padding:0 0 0 18px}.comment-wrap{padding:0 0 16px 60px}ol.commentlist li.comment:last-of-type .comment-wrap{padding-bottom:0}ol.commentlist ul.children li.comment:last-of-type .comment-wrap{padding-bottom:16px}.comment-edit:before{content:',';display:inline}.site-content .nopassword,.site-content p.nocomments{position:relative;margin:15px 0 0;padding:0;font-weight:600}#respond a#cancel-comment-reply-link{margin:21px 0 0 0;float:right;font-weight:normal;text-transform:none;letter-spacing:0}#commentform p.comment-form-author,#commentform p.comment-form-email,#commentform p.comment-form-url,#commentform p.comment-form-comment{margin:0;padding:20px 0 0}#commentform p.comment-form-author,#commentform p.comment-form-email,#commentform p.comment-form-url,#commentform p.comment-form-comment{float:none;clear:both;width:100%}.contact-form div{float:none;clear:both;width:100%}#commentform input#author,#commentform input#email,#commentform input#url{display:block;width:100%;margin:0;line-height:normal;-webkit-appearance:none;outline-color:transparent;outline-style:none}#commentform textarea#comment{width:100%;margin:0;line-height:normal;-webkit-appearance:none;outline-color:transparent;outline-style:none}#commentform input#submit{margin:20px 0;width:100%;font-weight:600}#commentform p.form-submit{margin:0;clear:both}#respond small{font-size:100%}.comment-notes{display:none}.externcomments a.standard-btn{width:100%}@media screen and (min-width: 48em){.single-post .entry-comments a{padding-left:22px}ol.commentlist{padding:40px 0 10px}#comments li.comment ul.children{margin-left:60px}#comments li.comment ul.children ul.children ul.children{margin-left:0}}.featured-content{padding-bottom:35px}.no-js .featured-content{display:none}.header-image{display:block;line-height:0;margin-bottom:35px}.header-image img{width:100%}.slider-on.slider-boxed .featured-content{padding-top:20px}.headerimg-on.slider-on.slider-boxed .featured-content{padding-top:0 !important}.headerimg-on.header-boxed .header-image{margin-top:20px}.slider-on.slider-boxed .featured-slider .entry-header,.slider-on.slider-boxed .featured-slider .entry-meta,.slider-on.slider-boxed .featured-slider .credits{padding-left:17px;padding-right:17px}.featured-slider{visibility:hidden;overflow:hidden;position:relative;padding-bottom:35px}.featured-slider article header{margin-bottom:0px}.featured-slider .meta-main-wrap{position:absolute;left:0;right:0;bottom:0;padding-bottom:17px}.featured-slider .entry-author{display:none}.featured-slider .entry-edit{margin-left:20px}.featured-slider button.slick-next{position:absolute;bottom:0;width:50%;height:35px;background:transparent;outline:0;border-top:none;border-left:none;border-bottom:1px solid #ddd;text-indent:-99999px}.featured-slider button.slick-prev{position:absolute;bottom:0;width:50%;height:35px;background:transparent;outline:0;border-top:none;border-left:none;border-bottom:1px solid #ddd;text-indent:-99999px;left:0;border-right:1px solid #ddd}.featured-slider button.slick-next{right:0;border-right:none}.featured-slider .entry-header,.featured-slider .entry-meta,.featured-slider .credits{padding-left:5.3125%;padding-right:5.3125%}.featured-slider .entry-edit,.featured-slider .entry-cats a:before{display:none}.featured-slider .entry-date{padding-right:20px}.featured-slider .entry-date::before{display:none}.featured-slider .entry-thumbnail img{position:relative;width:100%}.featured-slider .credits{font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem;color:#aaa;text-shadow:1px 2px 2px black;position:absolute;bottom:0px;text-align:right;width:100%}.slick-initialized{visibility:visible !important}.slick-slide{position:relative}.section-one-column-one .entry-author,.section-one-column-one .entry-date:before{display:none}.slider-on.slider-boxed .featured-slider button.slick-prev{border-left:1px solid #ddd}.slider-on.slider-boxed .featured-slider button.slick-next{border-right:1px solid #ddd}.featured-slider button.slick-prev:after,.featured-slider button.slick-next:after{position:absolute;display:block;text-indent:0;color:#1a1a1a;bottom:13px}.featured-slider button.slick-prev:after{left:47%;content:""}.featured-slider button.slick-next:after{right:47%;content:""}.slider-on.slider-fullscreen .featured-content,.headerimg-on.header-fullscreen .featured-content{padding-top:0}.home.blog.slider-on.slider-fullscreen #site-branding,.home.blog.headerimg-on.header-fullscreen #site-branding{background:none;border-bottom:none}.home.blog.slider-on.slider-fullscreen #site-branding{position:absolute}.slider-on.slider-boxed .featured-content{padding-left:5.3125%;padding-right:5.3125%}.featured-slider .entry-thumbnail a{width:130%}.slider-on .front-section:first-of-type{padding-top:0}@media screen and (min-width: 37.5em){.featured-slider .entry-edit{display:inline-block}.featured-slider .format-video .entry-thumbnail a:before{width:60px;height:42px;padding:22px 0 0 24px}}@media screen and (min-width: 48em){.featured-slider{padding-bottom:0}.featured-slider .entry-header h2.entry-title{font-size:36px;line-height:50.4px;font-size:2.25rem;line-height:3.15rem}.featured-slider .entry-header h2.entry-title a{text-shadow:1px 2px 2px black}.featured-slider .credits{bottom:10px;text-align:left}.featured-slider .meta-main-wrap{padding-bottom:35px}.featured-slider button.slick-next,.featured-slider button.slick-prev{position:absolute;bottom:0;outline:0;border-top:none;border-left:none;border-bottom:none;text-indent:-99999px;z-index:1;background:rgba(26,26,26,0.75);width:50px;height:50px}.featured-slider button.slick-next:focus,.featured-slider button.slick-next:hover{background:#1a1a1a}.featured-slider button.slick-prev{left:auto;right:50px;border-right:none}.featured-slider button.slick-prev:focus,.featured-slider button.slick-prev:hover{background:#1a1a1a}.featured-slider button.slick-next{right:0}.featured-slider button.slick-prev:after,.featured-slider button.slick-next:after{color:#fff;position:absolute;bottom:0}.featured-slider button.slick-prev:after{left:13px;bottom:13px}.featured-slider button.slick-next:after{right:13px;bottom:13px}.slider-on.slider-boxed .featured-slider button.slick-prev,.slider-on.slider-boxed .featured-slider button.slick-next{border:none}.slider-on.slider-boxed .featured-slider .entry-header,.slider-on.slider-boxed .featured-slider .entry-meta{padding-left:40px;padding-right:40px}.slider-on .featured-slider .entry-thumbnail a{max-height:400px;overflow:hidden}}@media screen and (min-width: 64em){.featured-slider .entry-thumbnail a{width:100%}.slider-on .featured-slider .entry-thumbnail a{max-height:700px;overflow:hidden}}@media screen and (min-width: 66.25em){.blog.slider-on #masthead{margin-bottom:0;border-bottom:none}.slider-on.slider-boxed #masthead{border-bottom:1px solid #ddd !important}.featured-slider article header{margin-bottom:20px}.featured-slider .entry-header,.featured-slider .entry-meta,.featured-slider .credits{padding-left:0;padding-right:0;width:57.63888888888889%;margin-left:6.25%}.featured-slider .entry-header h2.entry-title{font-size:48px;line-height:67.2px;font-size:3rem;line-height:4.2rem;padding-top:10px}.featured-slider .format-video .entry-thumbnail a:before{left:6.25%;top:40px}.featured-slider .entry-date:before{content:' / ';padding:0 2px;display:inline-block}.no-author .featured-slider .entry-date:before{display:none}.featured-slider .entry-meta{padding-top:20px}.featured-slider .entry-author{display:inline-block}.slider-on.slider-boxed .featured-content{padding-left:0;padding-right:0;margin-left:6.25%;margin-right:6.25%;padding-top:30px;width:87.5%}.slider-on.slider-boxed .featured-slider .entry-header,.slider-on.slider-boxed .featured-slider .entry-meta{margin-left:0}}@media screen and (min-width: 85em){.featured-slider .entry-header h2.entry-title{font-size:58px;line-height:81.2px;font-size:3.625rem;line-height:5.075rem}.slider-on .featured-slider .entry-thumbnail a{max-height:900px;overflow:hidden}}@media screen and (min-width: 112.5em){.slider-on.slider-boxed .featured-content{width:70%;margin-left:auto;margin-right:auto}.featured-slider .entry-header,.featured-slider .entry-meta,.featured-slider .credits{width:70%;margin-left:auto;margin-right:auto}}@media screen and (min-width: 137.5em){.slider-on.slider-boxed .featured-content{width:56%}.featured-slider .entry-header,.featured-slider .entry-meta,.featured-slider .credits{width:56%}}.accordion{margin:10px 0 20px 0}.accordion .accordion-group{border:none;margin-bottom:5px}.accordion .accordion-group .accordion-heading{overflow:hidden}.accordion .accordion-group .accordion-heading .accordion-toggle{border-left:10px solid #f80;background:#e7e7eb;color:#1a1a1a;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;text-decoration:none;font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;padding:8px 35px 8px 10px;position:relative;width:100%;display:inline-block}.accordion .accordion-group .accordion-heading .accordion-toggle:before{position:absolute;top:10px;right:10px}.accordion .accordion-group .accordion-heading .accordion-toggle:hover,.accordion .accordion-group .accordion-heading .accordion-toggle:focus{background-color:#ffa033;text-decoration:none}.accordion .accordion-group .accordion-heading .accordion-toggle.active,.accordion .accordion-group .accordion-heading .accordion-toggle.active:hover,.accordion .accordion-group .accordion-heading .accordion-toggle.active:focus{background-color:#ffa033;color:#1a1a1a}.accordion .accordion-group .accordion-heading .accordion-toggle.active:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:hover:before,.accordion .accordion-group .accordion-heading .accordion-toggle.active:focus:before{top:8px}.accordion .accordion-group .accordion-body{display:block}.accordion .accordion-group .accordion-body .accordion-inner{border:none;background:#e7e7eb;padding:15px 20px}.accordion .secondcolor .accordion-heading .accordion-toggle,.accordion .second .accordion-heading .accordion-toggle{border-color:#672082}.accordion .secondcolor .accordion-heading .accordion-toggle:hover,.accordion .secondcolor .accordion-heading .accordion-toggle:focus,.accordion .second .accordion-heading .accordion-toggle:hover,.accordion .second .accordion-heading .accordion-toggle:focus{color:#fff;background-color:#872aab}.accordion .secondcolor .accordion-heading .accordion-toggle.active,.accordion .secondcolor .accordion-heading .accordion-toggle.active:hover,.accordion .secondcolor .accordion-heading .accordion-toggle.active:focus,.accordion .second .accordion-heading .accordion-toggle.active,.accordion .second .accordion-heading .accordion-toggle.active:hover,.accordion .second .accordion-heading .accordion-toggle.active:focus{color:#fff;background-color:#872aab}.accordion h1,.accordion h2,.accordion h3,.accordion h4,.accordion h5,.accordion h6{color:#1a1a1a}.accordion hr{border:1px solid #e7e7eb;margin:30px 20px;height:inherit}.accordion hr::after,.accordion hr::before{bottom:inherit;background:inherit;left:inherit;position:relative;right:inherit;top:inherit}.accordion>.accordion .accordion-heading .accordion-toggle{border-left:0}.accordionbox{margin:10px 0 20px 0}.accordionbox header{border-left:10px solid #f80;background:#f80;color:#1a1a1a;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;text-decoration:none;font-size:16px;padding:8px 35px 8px 10px;position:relative}.accordionbox header h2{color:#1a1a1a;padding:0px}.accordionbox header.secondcolor,.accordionbox header.second{border-color:#672082}.accordionbox .body{border:none;background:#fff;padding:15px 20px}#masthead{background:white}.search-open{color:#1a1a1a;background:transparent;border-color:#fff}.search-open :focus,.search-open :hover{background:#1a1a1a;color:#fff;border-color:#1a1a1a}.socialmedia-maincolor .search-open{color:#f80}.socialmedia-maincolor .search-open:focus,.socialmedia-maincolor .search-open:hover{background:#672082;color:#fff;border-color:#672082}.socialmedia-secondcolor .search-open{color:#672082}.socialmedia-secondcolor .search-open:focus,.socialmedia-secondcolor .search-open:hover{background:#f80;color:#fff;border-color:#f80}.blogroll .entry-cats a:nth-child(n+2):before,.blog .entry-cats a:nth-child(n+2):before{color:#1a1a1a;background:#fff}.pagebreak-links a{background:#672082}.pagebreak-links a:hover{background:#f80}#footer-search .search-field{background:rgba(26,26,26,0.25);border-color:rgba(255,255,255,0.2);color:#fff}#footer-search .search-field :focus,#footer-search .search-field :hover{background:#fff;color:#1a1a1a}#footer-search input#submit,#footer-search input[type="submit"]{background:rgba(26,26,26,0.4);border-color:rgba(255,255,255,0.2)}#footer-search input#submit :focus,#footer-search input#submit :hover,#footer-search input[type="submit"] :focus,#footer-search input[type="submit"] :hover{background:#f80;color:#fff}#footer-search input#submit:focus,#footer-search input#submit:hover,#footer-search input[type="submit"]:focus,#footer-search input[type="submit"]:hover{background:#f80;color:#fff}@media screen and (min-width: 66.25em){#masthead{border-bottom-color:#ddd}.desktop-search{background:rgba(26,26,26,0.75);border-top-color:#ddd}.desktop-search input.search-field{background:none;border-bottom-color:#fff;color:#fff}.desktop-search input[type="submit"]{background:#f80;color:#fff;border:2px solid #f80}.desktop-search input[type="submit"]:focus,.desktop-search input[type="submit"]:hover{background:#f80}.searchbar-maincolor .desktop-search{background:rgba(255,136,0,0.95)}.searchbar-maincolor .desktop-search input.search-field{border-bottom-color:#672082;color:#fff}.searchbar-maincolor .desktop-search input.search-field:hover,.searchbar-maincolor .desktop-search input.search-field:focus{background:#995200}.searchbar-maincolor .desktop-search input[type="submit"]{background:#672082;color:#fff;border-color:#672082}.searchbar-maincolor .desktop-search input[type="submit"]:focus,.searchbar-maincolor .desktop-search input[type="submit"]:hover{background:#672082;border-color:#f80}.searchbar-secondcolor .desktop-search{background:rgba(103,32,130,0.95)}.searchbar-secondcolor .desktop-search input.search-field{border-bottom-color:#f80;color:#fff}.searchbar-secondcolor .desktop-search input[type="submit"]{background:#f80;color:#fff;border-color:#f80}.searchbar-secondcolor .desktop-search input[type="submit"]:focus,.searchbar-secondcolor .desktop-search input[type="submit"]:hover{background:#f80;border:2px solid #672082}}#overlay-open,#overlay-open-sticky{color:#1a1a1a}#overlay-close{color:#1a1a1a}.socialmedia-maincolor #overlay-open,.socialmedia-maincolor #overlay-open-sticky,.socialmedia-maincolor #overlay-close{color:#f80}.socialmedia-secondcolor #overlay-open,.socialmedia-secondcolor #overlay-open-sticky,.socialmedia-secondcolor #overlay-close{color:#672082}.single-post .entry-header p.intro,.entry-summary,.front-section-title,.social-front-title,.widget_mc4wp_form_widget p,.jetpack_subscription_widget #subscribe-text p,.section-about-column-one p{color:#1a1a1a}.footer-feature-btn:focus,.footer-feature-btn:hover{background:#0c6ca6}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{background:#0c6ca6}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,.footer-feature-btn:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,.footer-feature-btn:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{border-color:#0c6ca6;color:#fff}#comments #respond a#cancel-comment-reply-link,#comments .comment-reply a{color:#666}#comments #respond p.comment-notes a,#comments #respond p.logged-in-as a{color:#666}#comments .comment-meta{color:#666}#comments .comment-meta a{color:#666}#comments .disclaimer a{color:#672082}#comments .disclaimer a:hover{color:#f80}#nav-comments a{color:#666}#comments-toggle{border-color:#1a1a1a;background:none}.comments-show #comments-toggle,#comments-toggle:focus,#comments-toggle:hover{border-color:#f80;color:#fff;background:#f80}p.wp-caption-text,.contact-form label span,.gallery .gallery-item .gallery-caption{color:#666}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-header h2.entry-title a,.featured-slider .entry-header h2.entry-title a{color:#fff}#front-section-four .entry-header h2.entry-title a{color:#fff}.big-thumb .entry-header h1.entry-title,.big-thumb .entry-header p.intro{color:#fff}#primary #infinite-handle span:hover button{color:#fff}.blog.headerfont-light h1.site-title a,.blog.headerfont-light #overlay-open,.blog.headerfont-light #site-branding .site-title a,.blog.headerfont-light #overlay-open,.blog.headerfont-light p.site-description{color:#fff}pre{background:#f4f4f4;color:#444}abbr,acronym{border-bottom-color:#1a1a1a}mark,ins{color:#fff;background:#872aab}#section-fullwidth h1,.site-content h1,.entry-content h1{color:#1a1a1a}#section-fullwidth h2,.site-content h2,.entry-content h2{color:#1a1a1a}#section-fullwidth h3,.site-content h3,.entry-content h3{color:#1a1a1a}#section-fullwidth h4,.site-content h4,.entry-content h4{color:#1a1a1a}#section-fullwidth h5,.site-content h5,.entry-content h5{color:#1a1a1a}#section-fullwidth h6,.site-content h6,.entry-content h6{color:#1a1a1a}#sidebar-page h2,#sidebar-page h3{color:#1a1a1a}.single-post .entry-header h1.entry-title,.entry-header h1.entry-title,.attachment h1.entry-title,.page h1.entry-title,h1.entry-title,.archive-header h1.archive-title,.site-content h1,.entry-content h1{border-color:#f80}#secondary h2.widget-title,#sidebar-page h2.widget-title{color:#1a1a1a}#footer-social h2.socialmedia{color:rgba(255,255,255,0.5)}.entry-header h2.entry-title{color:#1a1a1a}.entry-header h2.entry-title a{color:#1a1a1a}.widget h2.widget-title{border-top-color:#1a1a1a;color:#1a1a1a}.featured-slider .entry-header h2.entry-title a{color:#fff}h3 .all-posts-link{color:#1a1a1a}#footer-social h3.socialmedia{color:rgba(255,255,255,0.5)}.footer-menu h3.footer-menu-title{color:#f80}.color-second{color:#672082}.color-main{color:#f80}.color-third{color:#698bc1}.color-four{color:#148f93}a{color:#1a1a1a}a:focus,a:hover{color:#f80}.entry-content a,.comment-text a{color:#f80}.entry-content a:focus,.entry-content a:hover,.comment-text a:focus,.comment-text a:hover{color:#672082}.post-page-numbers a,.author-bio a,.featured-slider button.slick-arrow:focus::after,.featured-slider button.slick-arrow:hover::after,.front-section a.all-posts-link:focus,#overlay-close:focus,.widget-area .widget ul li a:focus,#sidebar-offcanvas .widget a:focus,.textwidget a:focus,#overlay-nav a:focus,.author-links a:focus,.single-attachment .post-navigation a:focus,.single-post .hentry .entry-meta a:focus,.front-section a.all-posts-link:hover,#overlay-close:hover,.widget-area .widget ul li a:hover,#sidebar-offcanvas .widget a:hover,.textwidget a:hover,#overlay-nav a:hover,.author-links a:hover,.single-attachment .post-navigation a:hover,.single-post .hentry .entry-meta a:hover{color:#f80}#secondary h2.widget-title,#sidebar-page h2.widget-title{color:#1a1a1a}#desktop-navigation ul li a:focus,#desktop-navigation ul li a:hover{color:#f80}.entry-header a:focus,.entry-header a:hover,.entry-header h2.entry-title a:focus,.entry-header h2.entry-title a:hover{color:#f80}.blog .entry-meta a:focus,.blog .entry-meta a:hover{color:#f80}#desktop-navigation ul li.menu-item-has-children a:focus::after,#desktop-navigation ul li.menu-item-has-children a:hover::after{border-top-color:#f80}.single-attachment .post-navigation a:focus,.single-attachment .post-navigation a:hover{border-bottom-color:#f80}#desktop-navigation .sub-menu li a:focus,#desktop-navigation .children li a:focus,#desktop-navigation .sub-menu li a:hover,#desktop-navigation .children li a:hover{background:#f80}.single-post .entry-header p.intro,.entry-summary,.front-section-title,.social-front-title,.widget_mc4wp_form_widget p,.jetpack_subscription_widget #subscribe-text p,.section-about-column-one p{color:#1a1a1a}#primary #infinite-handle span:focus,#front-section-three a.all-posts-link:focus,#offcanvas-widgets-open:focus,#primary #infinite-handle span:hover,#front-section-three a.all-posts-link:hover,#offcanvas-widgets-open:hover,.offcanvas-widgets-show #offcanvas-widgets-open{background:#f80;border-color:#f80;color:#fff}.desktop-search input.search-field:active,.desktop-search input.search-field:focus{border-bottom-color:#f80}.single-post .entry-tags a,p.wp-caption-text,.contact-form label span,.gallery .gallery-item .gallery-caption{color:#666}table{border-bottom-color:#e7e7eb;background:#fff}table.sorttable thead{background:#e7e7eb}table.sorttable thead tr th.headerSortUp,table.sorttable thead tr th.headerSortDown{background:#cbcbd4}table thead th{border-bottom-color:#e7e7eb}table.long td,table.border td{border-bottom-color:#e7e7eb}table.long tr:nth-child(odd) td{background:#f2f2f2}th a{color:#1a1a1a}td{color:#4d4d4d}.entry-content ul li:before{color:#f80}.entry-content ul li ul li:before{color:#672082}.fontawesome-icon-list a i{color:#1a1a1a}blockquote{background:#fff;border-left-color:#f80;border-right-color:#f80}blockquote a:focus,blockquote a:hover{color:#672082}blockquote.maincolor{border-left-color:#f80;border-right-color:#f80}blockquote.secondcolor{border-left-color:#672082;border-right-color:#672082}blockquote.secondcolor a{color:#672082}blockquote.secondcolor a:focus,blockquote.secondcolor a:hover{color:#f80}blockquote.boxborder{border-top-color:#f80;border-bottom-color:#f80}blockquote.boxborder.secondcolor{border-top-color:#672082;border-bottom-color:#672082}blockquote.quotesign::before{color:#f80}blockquote.quotesign.secondcolor::before{color:#672082}.post-navigation,.pagebreak-links,.entry-meta,.entry-cats{color:#1a1a1a}.post-navigation a,.pagebreak-links a,.entry-meta a,.entry-cats a{color:#1a1a1a}.post-navigation a,.pagebreak-links a,.entry-cats a{color:#fff;background:#672082}.post-navigation a:hover,.pagebreak-links a:hover,.entry-cats a:hover{color:#fff;background:#f80}.section-one-column-one .entry-cats a,.section-three-column-one .entry-cats a,.featured-slider .entry-cats a,.pagebreak-links a,.post-navigation a,.single-post .entry-cats a{color:#fff}#front-section-four .entry-cats a,#front-section-four .pagebreak-links,#front-section-four .post-navigation,#front-section-four .entry-meta{color:#fff}#front-section-four .entry-cats a a,#front-section-four .pagebreak-links a,#front-section-four .post-navigation a,#front-section-four .entry-meta a{color:#fff}.search-results .entry-cats a:nth-child(n+2):before,.archive .entry-cats a:nth-child(n+2):before{color:#2b2b2b;background-color:white}.single-post .entry-header .page-links .number{color:#672082}.single-post .entry-header .page-links a .number{color:#f80}.single-post .entry-tags a{color:#672082}.blog .hentry .entry-cats a{color:#672082;background-color:white}.blog .hentry .entry-cats a:focus,.blog .hentry .entry-cats a:hover{color:#fff;background:#f80}.blog .featured-slider .entry-cats a,.blog .featured-slider .entry-meta a{color:#fff;background:#672082}.blog .featured-slider .entry-cats a:focus,.blog .featured-slider .entry-cats a:hover,.blog .featured-slider .entry-meta a:focus,.blog .featured-slider .entry-meta a:hover{color:#fff;background:#f80}.featured-slider .entry-cats a,.section-one-column-one .entry-cats a,.section-three-column-one .entry-cats a,#front-section-four .entry-cats a,.single-post .entry-cats a,.post-navigation a,.pagebreak-links a,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a{background:#672082;color:#fff}.featured-slider .entry-cats a:focus,.featured-slider .entry-cats a:hover,.section-one-column-one .entry-cats a:focus,.section-one-column-one .entry-cats a:hover,.section-three-column-one .entry-cats a:focus,.section-three-column-one .entry-cats a:hover,#front-section-four .entry-cats a:focus,#front-section-four .entry-cats a:hover,.single-post .entry-cats a:focus,.single-post .entry-cats a:hover,.post-navigation a:focus,.post-navigation a:hover,.pagebreak-links a:focus,.pagebreak-links a:hover,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:focus,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover{background:#f80;color:#fff}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta,.featured-slider .entry-meta{color:#fff}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-meta a,.featured-slider .entry-meta a{color:#fff}.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .post-navigation a,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .pagebreak-links a,.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.featured-slider .post-navigation a,.featured-slider .pagebreak-links a,.featured-slider .entry-cats a{color:#fff}body.head-bgcol-main .sticky-header,body.head-bgcol-main #masthead{background-color:#f80;border-bottom-color:rgba(255,136,0,0.7)}body.head-bgcol-main #site-branding{background-color:#f80}body.head-textcol-main .search-open,body.head-textcol-main #overlay-open,body.head-textcol-main #overlay-open-sticky{color:#f80}body.head-textcol-main #masthead #desktop-navigation ul.menu li a,body.head-textcol-main #masthead p.site-title,body.head-textcol-main #masthead p.site-title a,body.head-textcol-main #masthead h1.site-title,body.head-textcol-main #masthead h1.site-title a,body.head-textcol-main #masthead p.site-description{color:#f80}body.head-linkborder-main #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-main #desktop-navigation ul.menu li.focus a,body.head-linkborder-main #desktop-navigation ul.menu li:focus a,body.head-linkborder-main #desktop-navigation ul.menu li:hover a{border-bottom-color:#f80}body.head-linkborder-main #desktop-navigation .sub-menu li a:focus,body.head-linkborder-main #desktop-navigation .children li a:focus,body.head-linkborder-main #desktop-navigation .sub-menu li a:hover,body.head-linkborder-main #desktop-navigation .children li a:hover{background-color:#f80}body.head-linkborder-main button#overlay-open:hover,body.head-linkborder-main button#search-open:hover{color:#f80}body.main-bgcol-main{background-color:#f80}body.main-bgcol-main .site-content header,body.main-bgcol-main .entry-content header,body.main-bgcol-main blockquote,body.main-bgcol-main.blog .hentry .entry-cats,body.main-bgcol-main.blog .hentry .entry-cats a,body.main-bgcol-main.blog .featured-slider .entry-meta a,body.main-bgcol-main.single-post .entry-header .entry-cats a,body.main-bgcol-main main{background-color:#f80}body.main-bgcol-main.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-main .gallery .slick-prev:before,body.actionbutton-main .gallery .slick-next:before,body.actionbutton-main .gallery .slick-dots li.slick-active button:before,body.actionbutton-main .gallery .slick-dots li.slick-active button:before,body.actionbutton-main .gallery .slick-dots li button:hover:before,body.actionbutton-main .gallery .slick-dots li button:focus:before,body.actionbutton-main .desktop-search input.search-field{border-bottom-color:#f80}body.actionbutton-main .comments-show #comments-toggle,body.actionbutton-main #comments-toggle:focus,body.actionbutton-main #comments-toggle:hover,body.actionbutton-main input[type="button"],body.actionbutton-main input[type="submit"],body.actionbutton-main input#submit,body.actionbutton-main #commentform input#submit{border-color:#f80;background-color:#f80}body.head-bgcol-second .sticky-header,body.head-bgcol-second #masthead{background-color:#672082;border-bottom-color:rgba(103,32,130,0.7)}body.head-bgcol-second #site-branding{background-color:#672082}body.head-textcol-second .search-open,body.head-textcol-second #overlay-open,body.head-textcol-second #overlay-open-sticky{color:#672082}body.head-textcol-second #masthead #desktop-navigation ul.menu li a,body.head-textcol-second #masthead p.site-title,body.head-textcol-second #masthead p.site-title a,body.head-textcol-second #masthead h1.site-title,body.head-textcol-second #masthead h1.site-title a,body.head-textcol-second #masthead p.site-description{color:#672082}body.head-linkborder-second #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-second #desktop-navigation ul.menu li.focus a,body.head-linkborder-second #desktop-navigation ul.menu li:focus a,body.head-linkborder-second #desktop-navigation ul.menu li:hover a{border-bottom-color:#672082}body.head-linkborder-second #desktop-navigation .sub-menu li a:focus,body.head-linkborder-second #desktop-navigation .children li a:focus,body.head-linkborder-second #desktop-navigation .sub-menu li a:hover,body.head-linkborder-second #desktop-navigation .children li a:hover{background-color:#672082}body.head-linkborder-second button#overlay-open:hover,body.head-linkborder-second button#search-open:hover{color:#672082}body.main-bgcol-second{background-color:#672082}body.main-bgcol-second .site-content header,body.main-bgcol-second .entry-content header,body.main-bgcol-second blockquote,body.main-bgcol-second.blog .hentry .entry-cats,body.main-bgcol-second.blog .hentry .entry-cats a,body.main-bgcol-second.blog .featured-slider .entry-meta a,body.main-bgcol-second.single-post .entry-header .entry-cats a,body.main-bgcol-second main{background-color:#672082}body.main-bgcol-second.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-second .gallery .slick-prev:before,body.actionbutton-second .gallery .slick-next:before,body.actionbutton-second .gallery .slick-dots li.slick-active button:before,body.actionbutton-second .gallery .slick-dots li.slick-active button:before,body.actionbutton-second .gallery .slick-dots li button:hover:before,body.actionbutton-second .gallery .slick-dots li button:focus:before,body.actionbutton-second .desktop-search input.search-field{border-bottom-color:#672082}body.actionbutton-second .comments-show #comments-toggle,body.actionbutton-second #comments-toggle:focus,body.actionbutton-second #comments-toggle:hover,body.actionbutton-second input[type="button"],body.actionbutton-second input[type="submit"],body.actionbutton-second input#submit,body.actionbutton-second #commentform input#submit{border-color:#672082;background-color:#672082}body.head-bgcol-third .sticky-header,body.head-bgcol-third #masthead{background-color:#698bc1;border-bottom-color:rgba(105,139,193,0.7)}body.head-bgcol-third #site-branding{background-color:#698bc1}body.head-textcol-third .search-open,body.head-textcol-third #overlay-open,body.head-textcol-third #overlay-open-sticky{color:#698bc1}body.head-textcol-third #masthead #desktop-navigation ul.menu li a,body.head-textcol-third #masthead p.site-title,body.head-textcol-third #masthead p.site-title a,body.head-textcol-third #masthead h1.site-title,body.head-textcol-third #masthead h1.site-title a,body.head-textcol-third #masthead p.site-description{color:#698bc1}body.head-linkborder-third #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-third #desktop-navigation ul.menu li.focus a,body.head-linkborder-third #desktop-navigation ul.menu li:focus a,body.head-linkborder-third #desktop-navigation ul.menu li:hover a{border-bottom-color:#698bc1}body.head-linkborder-third #desktop-navigation .sub-menu li a:focus,body.head-linkborder-third #desktop-navigation .children li a:focus,body.head-linkborder-third #desktop-navigation .sub-menu li a:hover,body.head-linkborder-third #desktop-navigation .children li a:hover{background-color:#698bc1}body.head-linkborder-third button#overlay-open:hover,body.head-linkborder-third button#search-open:hover{color:#698bc1}body.main-bgcol-third{background-color:#698bc1}body.main-bgcol-third .site-content header,body.main-bgcol-third .entry-content header,body.main-bgcol-third blockquote,body.main-bgcol-third.blog .hentry .entry-cats,body.main-bgcol-third.blog .hentry .entry-cats a,body.main-bgcol-third.blog .featured-slider .entry-meta a,body.main-bgcol-third.single-post .entry-header .entry-cats a,body.main-bgcol-third main{background-color:#698bc1}body.main-bgcol-third.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-third .gallery .slick-prev:before,body.actionbutton-third .gallery .slick-next:before,body.actionbutton-third .gallery .slick-dots li.slick-active button:before,body.actionbutton-third .gallery .slick-dots li.slick-active button:before,body.actionbutton-third .gallery .slick-dots li button:hover:before,body.actionbutton-third .gallery .slick-dots li button:focus:before,body.actionbutton-third .desktop-search input.search-field{border-bottom-color:#698bc1}body.actionbutton-third .comments-show #comments-toggle,body.actionbutton-third #comments-toggle:focus,body.actionbutton-third #comments-toggle:hover,body.actionbutton-third input[type="button"],body.actionbutton-third input[type="submit"],body.actionbutton-third input#submit,body.actionbutton-third #commentform input#submit{border-color:#698bc1;background-color:#698bc1}body.head-bgcol-four .sticky-header,body.head-bgcol-four #masthead{background-color:#148f93;border-bottom-color:rgba(20,143,147,0.7)}body.head-bgcol-four #site-branding{background-color:#148f93}body.head-textcol-four .search-open,body.head-textcol-four #overlay-open,body.head-textcol-four #overlay-open-sticky{color:#148f93}body.head-textcol-four #masthead #desktop-navigation ul.menu li a,body.head-textcol-four #masthead p.site-title,body.head-textcol-four #masthead p.site-title a,body.head-textcol-four #masthead h1.site-title,body.head-textcol-four #masthead h1.site-title a,body.head-textcol-four #masthead p.site-description{color:#148f93}body.head-linkborder-four #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-four #desktop-navigation ul.menu li.focus a,body.head-linkborder-four #desktop-navigation ul.menu li:focus a,body.head-linkborder-four #desktop-navigation ul.menu li:hover a{border-bottom-color:#148f93}body.head-linkborder-four #desktop-navigation .sub-menu li a:focus,body.head-linkborder-four #desktop-navigation .children li a:focus,body.head-linkborder-four #desktop-navigation .sub-menu li a:hover,body.head-linkborder-four #desktop-navigation .children li a:hover{background-color:#148f93}body.head-linkborder-four button#overlay-open:hover,body.head-linkborder-four button#search-open:hover{color:#148f93}body.main-bgcol-four{background-color:#148f93}body.main-bgcol-four .site-content header,body.main-bgcol-four .entry-content header,body.main-bgcol-four blockquote,body.main-bgcol-four.blog .hentry .entry-cats,body.main-bgcol-four.blog .hentry .entry-cats a,body.main-bgcol-four.blog .featured-slider .entry-meta a,body.main-bgcol-four.single-post .entry-header .entry-cats a,body.main-bgcol-four main{background-color:#148f93}body.main-bgcol-four.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-four .gallery .slick-prev:before,body.actionbutton-four .gallery .slick-next:before,body.actionbutton-four .gallery .slick-dots li.slick-active button:before,body.actionbutton-four .gallery .slick-dots li.slick-active button:before,body.actionbutton-four .gallery .slick-dots li button:hover:before,body.actionbutton-four .gallery .slick-dots li button:focus:before,body.actionbutton-four .desktop-search input.search-field{border-bottom-color:#148f93}body.actionbutton-four .comments-show #comments-toggle,body.actionbutton-four #comments-toggle:focus,body.actionbutton-four #comments-toggle:hover,body.actionbutton-four input[type="button"],body.actionbutton-four input[type="submit"],body.actionbutton-four input#submit,body.actionbutton-four #commentform input#submit{border-color:#148f93;background-color:#148f93}body.head-bgcol-uspirates .sticky-header,body.head-bgcol-uspirates #masthead{background-color:#B127AF;border-bottom-color:rgba(177,39,175,0.7)}body.head-bgcol-uspirates #site-branding{background-color:#B127AF}body.head-textcol-uspirates .search-open,body.head-textcol-uspirates #overlay-open,body.head-textcol-uspirates #overlay-open-sticky{color:#B127AF}body.head-textcol-uspirates #masthead #desktop-navigation ul.menu li a,body.head-textcol-uspirates #masthead p.site-title,body.head-textcol-uspirates #masthead p.site-title a,body.head-textcol-uspirates #masthead h1.site-title,body.head-textcol-uspirates #masthead h1.site-title a,body.head-textcol-uspirates #masthead p.site-description{color:#B127AF}body.head-linkborder-uspirates #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-uspirates #desktop-navigation ul.menu li.focus a,body.head-linkborder-uspirates #desktop-navigation ul.menu li:focus a,body.head-linkborder-uspirates #desktop-navigation ul.menu li:hover a{border-bottom-color:#B127AF}body.head-linkborder-uspirates #desktop-navigation .sub-menu li a:focus,body.head-linkborder-uspirates #desktop-navigation .children li a:focus,body.head-linkborder-uspirates #desktop-navigation .sub-menu li a:hover,body.head-linkborder-uspirates #desktop-navigation .children li a:hover{background-color:#B127AF}body.head-linkborder-uspirates button#overlay-open:hover,body.head-linkborder-uspirates button#search-open:hover{color:#B127AF}body.main-bgcol-uspirates{background-color:#B127AF}body.main-bgcol-uspirates .site-content header,body.main-bgcol-uspirates .entry-content header,body.main-bgcol-uspirates blockquote,body.main-bgcol-uspirates.blog .hentry .entry-cats,body.main-bgcol-uspirates.blog .hentry .entry-cats a,body.main-bgcol-uspirates.blog .featured-slider .entry-meta a,body.main-bgcol-uspirates.single-post .entry-header .entry-cats a,body.main-bgcol-uspirates main{background-color:#B127AF}body.main-bgcol-uspirates.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-uspirates .gallery .slick-prev:before,body.actionbutton-uspirates .gallery .slick-next:before,body.actionbutton-uspirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-uspirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-uspirates .gallery .slick-dots li button:hover:before,body.actionbutton-uspirates .gallery .slick-dots li button:focus:before,body.actionbutton-uspirates .desktop-search input.search-field{border-bottom-color:#B127AF}body.actionbutton-uspirates .comments-show #comments-toggle,body.actionbutton-uspirates #comments-toggle:focus,body.actionbutton-uspirates #comments-toggle:hover,body.actionbutton-uspirates input[type="button"],body.actionbutton-uspirates input[type="submit"],body.actionbutton-uspirates input#submit,body.actionbutton-uspirates #commentform input#submit{border-color:#B127AF;background-color:#B127AF}body.head-bgcol-tkpirates .sticky-header,body.head-bgcol-tkpirates #masthead{background-color:#00B5B1;border-bottom-color:rgba(0,181,177,0.7)}body.head-bgcol-tkpirates #site-branding{background-color:#00B5B1}body.head-textcol-tkpirates .search-open,body.head-textcol-tkpirates #overlay-open,body.head-textcol-tkpirates #overlay-open-sticky{color:#00B5B1}body.head-textcol-tkpirates #masthead #desktop-navigation ul.menu li a,body.head-textcol-tkpirates #masthead p.site-title,body.head-textcol-tkpirates #masthead p.site-title a,body.head-textcol-tkpirates #masthead h1.site-title,body.head-textcol-tkpirates #masthead h1.site-title a,body.head-textcol-tkpirates #masthead p.site-description{color:#00B5B1}body.head-linkborder-tkpirates #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-tkpirates #desktop-navigation ul.menu li.focus a,body.head-linkborder-tkpirates #desktop-navigation ul.menu li:focus a,body.head-linkborder-tkpirates #desktop-navigation ul.menu li:hover a{border-bottom-color:#00B5B1}body.head-linkborder-tkpirates #desktop-navigation .sub-menu li a:focus,body.head-linkborder-tkpirates #desktop-navigation .children li a:focus,body.head-linkborder-tkpirates #desktop-navigation .sub-menu li a:hover,body.head-linkborder-tkpirates #desktop-navigation .children li a:hover{background-color:#00B5B1}body.head-linkborder-tkpirates button#overlay-open:hover,body.head-linkborder-tkpirates button#search-open:hover{color:#00B5B1}body.main-bgcol-tkpirates{background-color:#00B5B1}body.main-bgcol-tkpirates .site-content header,body.main-bgcol-tkpirates .entry-content header,body.main-bgcol-tkpirates blockquote,body.main-bgcol-tkpirates.blog .hentry .entry-cats,body.main-bgcol-tkpirates.blog .hentry .entry-cats a,body.main-bgcol-tkpirates.blog .featured-slider .entry-meta a,body.main-bgcol-tkpirates.single-post .entry-header .entry-cats a,body.main-bgcol-tkpirates main{background-color:#00B5B1}body.main-bgcol-tkpirates.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-tkpirates .gallery .slick-prev:before,body.actionbutton-tkpirates .gallery .slick-next:before,body.actionbutton-tkpirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-tkpirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-tkpirates .gallery .slick-dots li button:hover:before,body.actionbutton-tkpirates .gallery .slick-dots li button:focus:before,body.actionbutton-tkpirates .desktop-search input.search-field{border-bottom-color:#00B5B1}body.actionbutton-tkpirates .comments-show #comments-toggle,body.actionbutton-tkpirates #comments-toggle:focus,body.actionbutton-tkpirates #comments-toggle:hover,body.actionbutton-tkpirates input[type="button"],body.actionbutton-tkpirates input[type="submit"],body.actionbutton-tkpirates input#submit,body.actionbutton-tkpirates #commentform input#submit{border-color:#00B5B1;background-color:#00B5B1}body.head-bgcol-chpirates .sticky-header,body.head-bgcol-chpirates #masthead{background-color:#F9B200;border-bottom-color:rgba(249,178,0,0.7)}body.head-bgcol-chpirates #site-branding{background-color:#F9B200}body.head-textcol-chpirates .search-open,body.head-textcol-chpirates #overlay-open,body.head-textcol-chpirates #overlay-open-sticky{color:#F9B200}body.head-textcol-chpirates #masthead #desktop-navigation ul.menu li a,body.head-textcol-chpirates #masthead p.site-title,body.head-textcol-chpirates #masthead p.site-title a,body.head-textcol-chpirates #masthead h1.site-title,body.head-textcol-chpirates #masthead h1.site-title a,body.head-textcol-chpirates #masthead p.site-description{color:#F9B200}body.head-linkborder-chpirates #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-chpirates #desktop-navigation ul.menu li.focus a,body.head-linkborder-chpirates #desktop-navigation ul.menu li:focus a,body.head-linkborder-chpirates #desktop-navigation ul.menu li:hover a{border-bottom-color:#F9B200}body.head-linkborder-chpirates #desktop-navigation .sub-menu li a:focus,body.head-linkborder-chpirates #desktop-navigation .children li a:focus,body.head-linkborder-chpirates #desktop-navigation .sub-menu li a:hover,body.head-linkborder-chpirates #desktop-navigation .children li a:hover{background-color:#F9B200}body.head-linkborder-chpirates button#overlay-open:hover,body.head-linkborder-chpirates button#search-open:hover{color:#F9B200}body.main-bgcol-chpirates{background-color:#F9B200}body.main-bgcol-chpirates .site-content header,body.main-bgcol-chpirates .entry-content header,body.main-bgcol-chpirates blockquote,body.main-bgcol-chpirates.blog .hentry .entry-cats,body.main-bgcol-chpirates.blog .hentry .entry-cats a,body.main-bgcol-chpirates.blog .featured-slider .entry-meta a,body.main-bgcol-chpirates.single-post .entry-header .entry-cats a,body.main-bgcol-chpirates main{background-color:#F9B200}body.main-bgcol-chpirates.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-chpirates .gallery .slick-prev:before,body.actionbutton-chpirates .gallery .slick-next:before,body.actionbutton-chpirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-chpirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-chpirates .gallery .slick-dots li button:hover:before,body.actionbutton-chpirates .gallery .slick-dots li button:focus:before,body.actionbutton-chpirates .desktop-search input.search-field{border-bottom-color:#F9B200}body.actionbutton-chpirates .comments-show #comments-toggle,body.actionbutton-chpirates #comments-toggle:focus,body.actionbutton-chpirates #comments-toggle:hover,body.actionbutton-chpirates input[type="button"],body.actionbutton-chpirates input[type="submit"],body.actionbutton-chpirates input#submit,body.actionbutton-chpirates #commentform input#submit{border-color:#F9B200;background-color:#F9B200}body.head-bgcol-ispirates .sticky-header,body.head-bgcol-ispirates #masthead{background-color:#51297e;border-bottom-color:rgba(81,41,126,0.7)}body.head-bgcol-ispirates #site-branding{background-color:#51297e}body.head-textcol-ispirates .search-open,body.head-textcol-ispirates #overlay-open,body.head-textcol-ispirates #overlay-open-sticky{color:#51297e}body.head-textcol-ispirates #masthead #desktop-navigation ul.menu li a,body.head-textcol-ispirates #masthead p.site-title,body.head-textcol-ispirates #masthead p.site-title a,body.head-textcol-ispirates #masthead h1.site-title,body.head-textcol-ispirates #masthead h1.site-title a,body.head-textcol-ispirates #masthead p.site-description{color:#51297e}body.head-linkborder-ispirates #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-ispirates #desktop-navigation ul.menu li.focus a,body.head-linkborder-ispirates #desktop-navigation ul.menu li:focus a,body.head-linkborder-ispirates #desktop-navigation ul.menu li:hover a{border-bottom-color:#51297e}body.head-linkborder-ispirates #desktop-navigation .sub-menu li a:focus,body.head-linkborder-ispirates #desktop-navigation .children li a:focus,body.head-linkborder-ispirates #desktop-navigation .sub-menu li a:hover,body.head-linkborder-ispirates #desktop-navigation .children li a:hover{background-color:#51297e}body.head-linkborder-ispirates button#overlay-open:hover,body.head-linkborder-ispirates button#search-open:hover{color:#51297e}body.main-bgcol-ispirates{background-color:#51297e}body.main-bgcol-ispirates .site-content header,body.main-bgcol-ispirates .entry-content header,body.main-bgcol-ispirates blockquote,body.main-bgcol-ispirates.blog .hentry .entry-cats,body.main-bgcol-ispirates.blog .hentry .entry-cats a,body.main-bgcol-ispirates.blog .featured-slider .entry-meta a,body.main-bgcol-ispirates.single-post .entry-header .entry-cats a,body.main-bgcol-ispirates main{background-color:#51297e}body.main-bgcol-ispirates.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-ispirates .gallery .slick-prev:before,body.actionbutton-ispirates .gallery .slick-next:before,body.actionbutton-ispirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-ispirates .gallery .slick-dots li.slick-active button:before,body.actionbutton-ispirates .gallery .slick-dots li button:hover:before,body.actionbutton-ispirates .gallery .slick-dots li button:focus:before,body.actionbutton-ispirates .desktop-search input.search-field{border-bottom-color:#51297e}body.actionbutton-ispirates .comments-show #comments-toggle,body.actionbutton-ispirates #comments-toggle:focus,body.actionbutton-ispirates #comments-toggle:hover,body.actionbutton-ispirates input[type="button"],body.actionbutton-ispirates input[type="submit"],body.actionbutton-ispirates input#submit,body.actionbutton-ispirates #commentform input#submit{border-color:#51297e;background-color:#51297e}body.head-bgcol-black .sticky-header,body.head-bgcol-black #masthead{background-color:#000;border-bottom-color:rgba(0,0,0,0.7)}body.head-bgcol-black #site-branding{background-color:#000}body.head-textcol-black .search-open,body.head-textcol-black #overlay-open,body.head-textcol-black #overlay-open-sticky{color:#000}body.head-textcol-black #masthead #desktop-navigation ul.menu li a,body.head-textcol-black #masthead p.site-title,body.head-textcol-black #masthead p.site-title a,body.head-textcol-black #masthead h1.site-title,body.head-textcol-black #masthead h1.site-title a,body.head-textcol-black #masthead p.site-description{color:#000}body.head-linkborder-black #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-black #desktop-navigation ul.menu li.focus a,body.head-linkborder-black #desktop-navigation ul.menu li:focus a,body.head-linkborder-black #desktop-navigation ul.menu li:hover a{border-bottom-color:#000}body.head-linkborder-black #desktop-navigation .sub-menu li a:focus,body.head-linkborder-black #desktop-navigation .children li a:focus,body.head-linkborder-black #desktop-navigation .sub-menu li a:hover,body.head-linkborder-black #desktop-navigation .children li a:hover{background-color:#000}body.head-linkborder-black button#overlay-open:hover,body.head-linkborder-black button#search-open:hover{color:#000}body.main-bgcol-black{background-color:#000}body.main-bgcol-black .site-content header,body.main-bgcol-black .entry-content header,body.main-bgcol-black blockquote,body.main-bgcol-black.blog .hentry .entry-cats,body.main-bgcol-black.blog .hentry .entry-cats a,body.main-bgcol-black.blog .featured-slider .entry-meta a,body.main-bgcol-black.single-post .entry-header .entry-cats a,body.main-bgcol-black main{background-color:#000}body.main-bgcol-black.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-black .gallery .slick-prev:before,body.actionbutton-black .gallery .slick-next:before,body.actionbutton-black .gallery .slick-dots li.slick-active button:before,body.actionbutton-black .gallery .slick-dots li.slick-active button:before,body.actionbutton-black .gallery .slick-dots li button:hover:before,body.actionbutton-black .gallery .slick-dots li button:focus:before,body.actionbutton-black .desktop-search input.search-field{border-bottom-color:#000}body.actionbutton-black .comments-show #comments-toggle,body.actionbutton-black #comments-toggle:focus,body.actionbutton-black #comments-toggle:hover,body.actionbutton-black input[type="button"],body.actionbutton-black input[type="submit"],body.actionbutton-black input#submit,body.actionbutton-black #commentform input#submit{border-color:#000;background-color:#000}body.head-bgcol-white .sticky-header,body.head-bgcol-white #masthead{background-color:#fff;border-bottom-color:rgba(255,255,255,0.7)}body.head-bgcol-white #site-branding{background-color:#fff}body.head-textcol-white .search-open,body.head-textcol-white #overlay-open,body.head-textcol-white #overlay-open-sticky{color:#fff}body.head-textcol-white #masthead #desktop-navigation ul.menu li a,body.head-textcol-white #masthead p.site-title,body.head-textcol-white #masthead p.site-title a,body.head-textcol-white #masthead h1.site-title,body.head-textcol-white #masthead h1.site-title a,body.head-textcol-white #masthead p.site-description{color:#fff}body.head-linkborder-white #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-white #desktop-navigation ul.menu li.focus a,body.head-linkborder-white #desktop-navigation ul.menu li:focus a,body.head-linkborder-white #desktop-navigation ul.menu li:hover a{border-bottom-color:#fff}body.head-linkborder-white #desktop-navigation .sub-menu li a:focus,body.head-linkborder-white #desktop-navigation .children li a:focus,body.head-linkborder-white #desktop-navigation .sub-menu li a:hover,body.head-linkborder-white #desktop-navigation .children li a:hover{background-color:#fff}body.head-linkborder-white button#overlay-open:hover,body.head-linkborder-white button#search-open:hover{color:#fff}body.main-bgcol-white{background-color:#fff}body.main-bgcol-white .site-content header,body.main-bgcol-white .entry-content header,body.main-bgcol-white blockquote,body.main-bgcol-white.blog .hentry .entry-cats,body.main-bgcol-white.blog .hentry .entry-cats a,body.main-bgcol-white.blog .featured-slider .entry-meta a,body.main-bgcol-white.single-post .entry-header .entry-cats a,body.main-bgcol-white main{background-color:#fff}body.main-bgcol-white.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-white .gallery .slick-prev:before,body.actionbutton-white .gallery .slick-next:before,body.actionbutton-white .gallery .slick-dots li.slick-active button:before,body.actionbutton-white .gallery .slick-dots li.slick-active button:before,body.actionbutton-white .gallery .slick-dots li button:hover:before,body.actionbutton-white .gallery .slick-dots li button:focus:before,body.actionbutton-white .desktop-search input.search-field{border-bottom-color:#fff}body.actionbutton-white .comments-show #comments-toggle,body.actionbutton-white #comments-toggle:focus,body.actionbutton-white #comments-toggle:hover,body.actionbutton-white input[type="button"],body.actionbutton-white input[type="submit"],body.actionbutton-white input#submit,body.actionbutton-white #commentform input#submit{border-color:#fff;background-color:#fff}body.head-bgcol-grey .sticky-header,body.head-bgcol-grey #masthead{background-color:#e7e7eb;border-bottom-color:rgba(231,231,235,0.7)}body.head-bgcol-grey #site-branding{background-color:#e7e7eb}body.head-textcol-grey .search-open,body.head-textcol-grey #overlay-open,body.head-textcol-grey #overlay-open-sticky{color:#e7e7eb}body.head-textcol-grey #masthead #desktop-navigation ul.menu li a,body.head-textcol-grey #masthead p.site-title,body.head-textcol-grey #masthead p.site-title a,body.head-textcol-grey #masthead h1.site-title,body.head-textcol-grey #masthead h1.site-title a,body.head-textcol-grey #masthead p.site-description{color:#e7e7eb}body.head-linkborder-grey #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-grey #desktop-navigation ul.menu li.focus a,body.head-linkborder-grey #desktop-navigation ul.menu li:focus a,body.head-linkborder-grey #desktop-navigation ul.menu li:hover a{border-bottom-color:#e7e7eb}body.head-linkborder-grey #desktop-navigation .sub-menu li a:focus,body.head-linkborder-grey #desktop-navigation .children li a:focus,body.head-linkborder-grey #desktop-navigation .sub-menu li a:hover,body.head-linkborder-grey #desktop-navigation .children li a:hover{background-color:#e7e7eb}body.head-linkborder-grey button#overlay-open:hover,body.head-linkborder-grey button#search-open:hover{color:#e7e7eb}body.main-bgcol-grey{background-color:#e7e7eb}body.main-bgcol-grey .site-content header,body.main-bgcol-grey .entry-content header,body.main-bgcol-grey blockquote,body.main-bgcol-grey.blog .hentry .entry-cats,body.main-bgcol-grey.blog .hentry .entry-cats a,body.main-bgcol-grey.blog .featured-slider .entry-meta a,body.main-bgcol-grey.single-post .entry-header .entry-cats a,body.main-bgcol-grey main{background-color:#e7e7eb}body.main-bgcol-grey.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-grey .gallery .slick-prev:before,body.actionbutton-grey .gallery .slick-next:before,body.actionbutton-grey .gallery .slick-dots li.slick-active button:before,body.actionbutton-grey .gallery .slick-dots li.slick-active button:before,body.actionbutton-grey .gallery .slick-dots li button:hover:before,body.actionbutton-grey .gallery .slick-dots li button:focus:before,body.actionbutton-grey .desktop-search input.search-field{border-bottom-color:#e7e7eb}body.actionbutton-grey .comments-show #comments-toggle,body.actionbutton-grey #comments-toggle:focus,body.actionbutton-grey #comments-toggle:hover,body.actionbutton-grey input[type="button"],body.actionbutton-grey input[type="submit"],body.actionbutton-grey input#submit,body.actionbutton-grey #commentform input#submit{border-color:#e7e7eb;background-color:#e7e7eb}body.head-bgcol-darkgrey .sticky-header,body.head-bgcol-darkgrey #masthead{background-color:#1a1a1a;border-bottom-color:rgba(26,26,26,0.7)}body.head-bgcol-darkgrey #site-branding{background-color:#1a1a1a}body.head-textcol-darkgrey .search-open,body.head-textcol-darkgrey #overlay-open,body.head-textcol-darkgrey #overlay-open-sticky{color:#1a1a1a}body.head-textcol-darkgrey #masthead #desktop-navigation ul.menu li a,body.head-textcol-darkgrey #masthead p.site-title,body.head-textcol-darkgrey #masthead p.site-title a,body.head-textcol-darkgrey #masthead h1.site-title,body.head-textcol-darkgrey #masthead h1.site-title a,body.head-textcol-darkgrey #masthead p.site-description{color:#1a1a1a}body.head-linkborder-darkgrey #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-darkgrey #desktop-navigation ul.menu li.focus a,body.head-linkborder-darkgrey #desktop-navigation ul.menu li:focus a,body.head-linkborder-darkgrey #desktop-navigation ul.menu li:hover a{border-bottom-color:#1a1a1a}body.head-linkborder-darkgrey #desktop-navigation .sub-menu li a:focus,body.head-linkborder-darkgrey #desktop-navigation .children li a:focus,body.head-linkborder-darkgrey #desktop-navigation .sub-menu li a:hover,body.head-linkborder-darkgrey #desktop-navigation .children li a:hover{background-color:#1a1a1a}body.head-linkborder-darkgrey button#overlay-open:hover,body.head-linkborder-darkgrey button#search-open:hover{color:#1a1a1a}body.main-bgcol-darkgrey{background-color:#1a1a1a}body.main-bgcol-darkgrey .site-content header,body.main-bgcol-darkgrey .entry-content header,body.main-bgcol-darkgrey blockquote,body.main-bgcol-darkgrey.blog .hentry .entry-cats,body.main-bgcol-darkgrey.blog .hentry .entry-cats a,body.main-bgcol-darkgrey.blog .featured-slider .entry-meta a,body.main-bgcol-darkgrey.single-post .entry-header .entry-cats a,body.main-bgcol-darkgrey main{background-color:#1a1a1a}body.main-bgcol-darkgrey.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-darkgrey .gallery .slick-prev:before,body.actionbutton-darkgrey .gallery .slick-next:before,body.actionbutton-darkgrey .gallery .slick-dots li.slick-active button:before,body.actionbutton-darkgrey .gallery .slick-dots li.slick-active button:before,body.actionbutton-darkgrey .gallery .slick-dots li button:hover:before,body.actionbutton-darkgrey .gallery .slick-dots li button:focus:before,body.actionbutton-darkgrey .desktop-search input.search-field{border-bottom-color:#1a1a1a}body.actionbutton-darkgrey .comments-show #comments-toggle,body.actionbutton-darkgrey #comments-toggle:focus,body.actionbutton-darkgrey #comments-toggle:hover,body.actionbutton-darkgrey input[type="button"],body.actionbutton-darkgrey input[type="submit"],body.actionbutton-darkgrey input#submit,body.actionbutton-darkgrey #commentform input#submit{border-color:#1a1a1a;background-color:#1a1a1a}body.head-bgcol-blue .sticky-header,body.head-bgcol-blue #masthead{background-color:#06f;border-bottom-color:rgba(0,102,255,0.7)}body.head-bgcol-blue #site-branding{background-color:#06f}body.head-textcol-blue .search-open,body.head-textcol-blue #overlay-open,body.head-textcol-blue #overlay-open-sticky{color:#06f}body.head-textcol-blue #masthead #desktop-navigation ul.menu li a,body.head-textcol-blue #masthead p.site-title,body.head-textcol-blue #masthead p.site-title a,body.head-textcol-blue #masthead h1.site-title,body.head-textcol-blue #masthead h1.site-title a,body.head-textcol-blue #masthead p.site-description{color:#06f}body.head-linkborder-blue #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-blue #desktop-navigation ul.menu li.focus a,body.head-linkborder-blue #desktop-navigation ul.menu li:focus a,body.head-linkborder-blue #desktop-navigation ul.menu li:hover a{border-bottom-color:#06f}body.head-linkborder-blue #desktop-navigation .sub-menu li a:focus,body.head-linkborder-blue #desktop-navigation .children li a:focus,body.head-linkborder-blue #desktop-navigation .sub-menu li a:hover,body.head-linkborder-blue #desktop-navigation .children li a:hover{background-color:#06f}body.head-linkborder-blue button#overlay-open:hover,body.head-linkborder-blue button#search-open:hover{color:#06f}body.main-bgcol-blue{background-color:#06f}body.main-bgcol-blue .site-content header,body.main-bgcol-blue .entry-content header,body.main-bgcol-blue blockquote,body.main-bgcol-blue.blog .hentry .entry-cats,body.main-bgcol-blue.blog .hentry .entry-cats a,body.main-bgcol-blue.blog .featured-slider .entry-meta a,body.main-bgcol-blue.single-post .entry-header .entry-cats a,body.main-bgcol-blue main{background-color:#06f}body.main-bgcol-blue.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-blue .gallery .slick-prev:before,body.actionbutton-blue .gallery .slick-next:before,body.actionbutton-blue .gallery .slick-dots li.slick-active button:before,body.actionbutton-blue .gallery .slick-dots li.slick-active button:before,body.actionbutton-blue .gallery .slick-dots li button:hover:before,body.actionbutton-blue .gallery .slick-dots li button:focus:before,body.actionbutton-blue .desktop-search input.search-field{border-bottom-color:#06f}body.actionbutton-blue .comments-show #comments-toggle,body.actionbutton-blue #comments-toggle:focus,body.actionbutton-blue #comments-toggle:hover,body.actionbutton-blue input[type="button"],body.actionbutton-blue input[type="submit"],body.actionbutton-blue input#submit,body.actionbutton-blue #commentform input#submit{border-color:#06f;background-color:#06f}body.head-bgcol-red .sticky-header,body.head-bgcol-red #masthead{background-color:#d7464d;border-bottom-color:rgba(215,70,77,0.7)}body.head-bgcol-red #site-branding{background-color:#d7464d}body.head-textcol-red .search-open,body.head-textcol-red #overlay-open,body.head-textcol-red #overlay-open-sticky{color:#d7464d}body.head-textcol-red #masthead #desktop-navigation ul.menu li a,body.head-textcol-red #masthead p.site-title,body.head-textcol-red #masthead p.site-title a,body.head-textcol-red #masthead h1.site-title,body.head-textcol-red #masthead h1.site-title a,body.head-textcol-red #masthead p.site-description{color:#d7464d}body.head-linkborder-red #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-red #desktop-navigation ul.menu li.focus a,body.head-linkborder-red #desktop-navigation ul.menu li:focus a,body.head-linkborder-red #desktop-navigation ul.menu li:hover a{border-bottom-color:#d7464d}body.head-linkborder-red #desktop-navigation .sub-menu li a:focus,body.head-linkborder-red #desktop-navigation .children li a:focus,body.head-linkborder-red #desktop-navigation .sub-menu li a:hover,body.head-linkborder-red #desktop-navigation .children li a:hover{background-color:#d7464d}body.head-linkborder-red button#overlay-open:hover,body.head-linkborder-red button#search-open:hover{color:#d7464d}body.main-bgcol-red{background-color:#d7464d}body.main-bgcol-red .site-content header,body.main-bgcol-red .entry-content header,body.main-bgcol-red blockquote,body.main-bgcol-red.blog .hentry .entry-cats,body.main-bgcol-red.blog .hentry .entry-cats a,body.main-bgcol-red.blog .featured-slider .entry-meta a,body.main-bgcol-red.single-post .entry-header .entry-cats a,body.main-bgcol-red main{background-color:#d7464d}body.main-bgcol-red.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-red .gallery .slick-prev:before,body.actionbutton-red .gallery .slick-next:before,body.actionbutton-red .gallery .slick-dots li.slick-active button:before,body.actionbutton-red .gallery .slick-dots li.slick-active button:before,body.actionbutton-red .gallery .slick-dots li button:hover:before,body.actionbutton-red .gallery .slick-dots li button:focus:before,body.actionbutton-red .desktop-search input.search-field{border-bottom-color:#d7464d}body.actionbutton-red .comments-show #comments-toggle,body.actionbutton-red #comments-toggle:focus,body.actionbutton-red #comments-toggle:hover,body.actionbutton-red input[type="button"],body.actionbutton-red input[type="submit"],body.actionbutton-red input#submit,body.actionbutton-red #commentform input#submit{border-color:#d7464d;background-color:#d7464d}body.head-bgcol-yellow .sticky-header,body.head-bgcol-yellow #masthead{background-color:#e7b547;border-bottom-color:rgba(231,181,71,0.7)}body.head-bgcol-yellow #site-branding{background-color:#e7b547}body.head-textcol-yellow .search-open,body.head-textcol-yellow #overlay-open,body.head-textcol-yellow #overlay-open-sticky{color:#e7b547}body.head-textcol-yellow #masthead #desktop-navigation ul.menu li a,body.head-textcol-yellow #masthead p.site-title,body.head-textcol-yellow #masthead p.site-title a,body.head-textcol-yellow #masthead h1.site-title,body.head-textcol-yellow #masthead h1.site-title a,body.head-textcol-yellow #masthead p.site-description{color:#e7b547}body.head-linkborder-yellow #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-yellow #desktop-navigation ul.menu li.focus a,body.head-linkborder-yellow #desktop-navigation ul.menu li:focus a,body.head-linkborder-yellow #desktop-navigation ul.menu li:hover a{border-bottom-color:#e7b547}body.head-linkborder-yellow #desktop-navigation .sub-menu li a:focus,body.head-linkborder-yellow #desktop-navigation .children li a:focus,body.head-linkborder-yellow #desktop-navigation .sub-menu li a:hover,body.head-linkborder-yellow #desktop-navigation .children li a:hover{background-color:#e7b547}body.head-linkborder-yellow button#overlay-open:hover,body.head-linkborder-yellow button#search-open:hover{color:#e7b547}body.main-bgcol-yellow{background-color:#e7b547}body.main-bgcol-yellow .site-content header,body.main-bgcol-yellow .entry-content header,body.main-bgcol-yellow blockquote,body.main-bgcol-yellow.blog .hentry .entry-cats,body.main-bgcol-yellow.blog .hentry .entry-cats a,body.main-bgcol-yellow.blog .featured-slider .entry-meta a,body.main-bgcol-yellow.single-post .entry-header .entry-cats a,body.main-bgcol-yellow main{background-color:#e7b547}body.main-bgcol-yellow.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-yellow .gallery .slick-prev:before,body.actionbutton-yellow .gallery .slick-next:before,body.actionbutton-yellow .gallery .slick-dots li.slick-active button:before,body.actionbutton-yellow .gallery .slick-dots li.slick-active button:before,body.actionbutton-yellow .gallery .slick-dots li button:hover:before,body.actionbutton-yellow .gallery .slick-dots li button:focus:before,body.actionbutton-yellow .desktop-search input.search-field{border-bottom-color:#e7b547}body.actionbutton-yellow .comments-show #comments-toggle,body.actionbutton-yellow #comments-toggle:focus,body.actionbutton-yellow #comments-toggle:hover,body.actionbutton-yellow input[type="button"],body.actionbutton-yellow input[type="submit"],body.actionbutton-yellow input#submit,body.actionbutton-yellow #commentform input#submit{border-color:#e7b547;background-color:#e7b547}body.head-bgcol-green .sticky-header,body.head-bgcol-green #masthead{background-color:#85c066;border-bottom-color:rgba(133,192,102,0.7)}body.head-bgcol-green #site-branding{background-color:#85c066}body.head-textcol-green .search-open,body.head-textcol-green #overlay-open,body.head-textcol-green #overlay-open-sticky{color:#85c066}body.head-textcol-green #masthead #desktop-navigation ul.menu li a,body.head-textcol-green #masthead p.site-title,body.head-textcol-green #masthead p.site-title a,body.head-textcol-green #masthead h1.site-title,body.head-textcol-green #masthead h1.site-title a,body.head-textcol-green #masthead p.site-description{color:#85c066}body.head-linkborder-green #desktop-navigation ul.menu li.current-menu-ancestor a,body.head-linkborder-green #desktop-navigation ul.menu li.focus a,body.head-linkborder-green #desktop-navigation ul.menu li:focus a,body.head-linkborder-green #desktop-navigation ul.menu li:hover a{border-bottom-color:#85c066}body.head-linkborder-green #desktop-navigation .sub-menu li a:focus,body.head-linkborder-green #desktop-navigation .children li a:focus,body.head-linkborder-green #desktop-navigation .sub-menu li a:hover,body.head-linkborder-green #desktop-navigation .children li a:hover{background-color:#85c066}body.head-linkborder-green button#overlay-open:hover,body.head-linkborder-green button#search-open:hover{color:#85c066}body.main-bgcol-green{background-color:#85c066}body.main-bgcol-green .site-content header,body.main-bgcol-green .entry-content header,body.main-bgcol-green blockquote,body.main-bgcol-green.blog .hentry .entry-cats,body.main-bgcol-green.blog .hentry .entry-cats a,body.main-bgcol-green.blog .featured-slider .entry-meta a,body.main-bgcol-green.single-post .entry-header .entry-cats a,body.main-bgcol-green main{background-color:#85c066}body.main-bgcol-green.blog .featured-content .hentry .entry-cats{background-color:transparent}body.actionbutton-green .gallery .slick-prev:before,body.actionbutton-green .gallery .slick-next:before,body.actionbutton-green .gallery .slick-dots li.slick-active button:before,body.actionbutton-green .gallery .slick-dots li.slick-active button:before,body.actionbutton-green .gallery .slick-dots li button:hover:before,body.actionbutton-green .gallery .slick-dots li button:focus:before,body.actionbutton-green .desktop-search input.search-field{border-bottom-color:#85c066}body.actionbutton-green .comments-show #comments-toggle,body.actionbutton-green #comments-toggle:focus,body.actionbutton-green #comments-toggle:hover,body.actionbutton-green input[type="button"],body.actionbutton-green input[type="submit"],body.actionbutton-green input#submit,body.actionbutton-green #commentform input#submit{border-color:#85c066;background-color:#85c066}.main-headlinecol-main .entry-header h2.entry-title,.main-headlinecol-main .entry-header h2.entry-title a{color:#f80}.main-headlinecol-main main #secondary h2.widget-title,.main-headlinecol-main main #sidebar-page h2.widget-title,.main-headlinecol-main main h1,.main-headlinecol-main main h2,.main-headlinecol-main main h3,.main-headlinecol-main main h4,.main-headlinecol-main main h5,.main-headlinecol-main main h6{color:#f80}.main-headlinecol-second .entry-header h2.entry-title,.main-headlinecol-second .entry-header h2.entry-title a{color:#672082}.main-headlinecol-second main #secondary h2.widget-title,.main-headlinecol-second main #sidebar-page h2.widget-title,.main-headlinecol-second main h1,.main-headlinecol-second main h2,.main-headlinecol-second main h3,.main-headlinecol-second main h4,.main-headlinecol-second main h5,.main-headlinecol-second main h6{color:#672082}.main-headlinecol-third .entry-header h2.entry-title,.main-headlinecol-third .entry-header h2.entry-title a{color:#698bc1}.main-headlinecol-third main #secondary h2.widget-title,.main-headlinecol-third main #sidebar-page h2.widget-title,.main-headlinecol-third main h1,.main-headlinecol-third main h2,.main-headlinecol-third main h3,.main-headlinecol-third main h4,.main-headlinecol-third main h5,.main-headlinecol-third main h6{color:#698bc1}.main-headlinecol-four .entry-header h2.entry-title,.main-headlinecol-four .entry-header h2.entry-title a{color:#148f93}.main-headlinecol-four main #secondary h2.widget-title,.main-headlinecol-four main #sidebar-page h2.widget-title,.main-headlinecol-four main h1,.main-headlinecol-four main h2,.main-headlinecol-four main h3,.main-headlinecol-four main h4,.main-headlinecol-four main h5,.main-headlinecol-four main h6{color:#148f93}.main-headlinecol-uspirates .entry-header h2.entry-title,.main-headlinecol-uspirates .entry-header h2.entry-title a{color:#B127AF}.main-headlinecol-uspirates main #secondary h2.widget-title,.main-headlinecol-uspirates main #sidebar-page h2.widget-title,.main-headlinecol-uspirates main h1,.main-headlinecol-uspirates main h2,.main-headlinecol-uspirates main h3,.main-headlinecol-uspirates main h4,.main-headlinecol-uspirates main h5,.main-headlinecol-uspirates main h6{color:#B127AF}.main-headlinecol-tkpirates .entry-header h2.entry-title,.main-headlinecol-tkpirates .entry-header h2.entry-title a{color:#00B5B1}.main-headlinecol-tkpirates main #secondary h2.widget-title,.main-headlinecol-tkpirates main #sidebar-page h2.widget-title,.main-headlinecol-tkpirates main h1,.main-headlinecol-tkpirates main h2,.main-headlinecol-tkpirates main h3,.main-headlinecol-tkpirates main h4,.main-headlinecol-tkpirates main h5,.main-headlinecol-tkpirates main h6{color:#00B5B1}.main-headlinecol-chpirates .entry-header h2.entry-title,.main-headlinecol-chpirates .entry-header h2.entry-title a{color:#F9B200}.main-headlinecol-chpirates main #secondary h2.widget-title,.main-headlinecol-chpirates main #sidebar-page h2.widget-title,.main-headlinecol-chpirates main h1,.main-headlinecol-chpirates main h2,.main-headlinecol-chpirates main h3,.main-headlinecol-chpirates main h4,.main-headlinecol-chpirates main h5,.main-headlinecol-chpirates main h6{color:#F9B200}.main-headlinecol-ispirates .entry-header h2.entry-title,.main-headlinecol-ispirates .entry-header h2.entry-title a{color:#51297e}.main-headlinecol-ispirates main #secondary h2.widget-title,.main-headlinecol-ispirates main #sidebar-page h2.widget-title,.main-headlinecol-ispirates main h1,.main-headlinecol-ispirates main h2,.main-headlinecol-ispirates main h3,.main-headlinecol-ispirates main h4,.main-headlinecol-ispirates main h5,.main-headlinecol-ispirates main h6{color:#51297e}.main-headlinecol-black .entry-header h2.entry-title,.main-headlinecol-black .entry-header h2.entry-title a{color:#000}.main-headlinecol-black main #secondary h2.widget-title,.main-headlinecol-black main #sidebar-page h2.widget-title,.main-headlinecol-black main h1,.main-headlinecol-black main h2,.main-headlinecol-black main h3,.main-headlinecol-black main h4,.main-headlinecol-black main h5,.main-headlinecol-black main h6{color:#000}.main-headlinecol-white .entry-header h2.entry-title,.main-headlinecol-white .entry-header h2.entry-title a{color:#fff}.main-headlinecol-white main #secondary h2.widget-title,.main-headlinecol-white main #sidebar-page h2.widget-title,.main-headlinecol-white main h1,.main-headlinecol-white main h2,.main-headlinecol-white main h3,.main-headlinecol-white main h4,.main-headlinecol-white main h5,.main-headlinecol-white main h6{color:#fff}.main-headlinecol-grey .entry-header h2.entry-title,.main-headlinecol-grey .entry-header h2.entry-title a{color:#e7e7eb}.main-headlinecol-grey main #secondary h2.widget-title,.main-headlinecol-grey main #sidebar-page h2.widget-title,.main-headlinecol-grey main h1,.main-headlinecol-grey main h2,.main-headlinecol-grey main h3,.main-headlinecol-grey main h4,.main-headlinecol-grey main h5,.main-headlinecol-grey main h6{color:#e7e7eb}.main-headlinecol-darkgrey .entry-header h2.entry-title,.main-headlinecol-darkgrey .entry-header h2.entry-title a{color:#1a1a1a}.main-headlinecol-darkgrey main #secondary h2.widget-title,.main-headlinecol-darkgrey main #sidebar-page h2.widget-title,.main-headlinecol-darkgrey main h1,.main-headlinecol-darkgrey main h2,.main-headlinecol-darkgrey main h3,.main-headlinecol-darkgrey main h4,.main-headlinecol-darkgrey main h5,.main-headlinecol-darkgrey main h6{color:#1a1a1a}.main-headlinecol-blue .entry-header h2.entry-title,.main-headlinecol-blue .entry-header h2.entry-title a{color:#06f}.main-headlinecol-blue main #secondary h2.widget-title,.main-headlinecol-blue main #sidebar-page h2.widget-title,.main-headlinecol-blue main h1,.main-headlinecol-blue main h2,.main-headlinecol-blue main h3,.main-headlinecol-blue main h4,.main-headlinecol-blue main h5,.main-headlinecol-blue main h6{color:#06f}.main-headlinecol-red .entry-header h2.entry-title,.main-headlinecol-red .entry-header h2.entry-title a{color:#d7464d}.main-headlinecol-red main #secondary h2.widget-title,.main-headlinecol-red main #sidebar-page h2.widget-title,.main-headlinecol-red main h1,.main-headlinecol-red main h2,.main-headlinecol-red main h3,.main-headlinecol-red main h4,.main-headlinecol-red main h5,.main-headlinecol-red main h6{color:#d7464d}.main-headlinecol-yellow .entry-header h2.entry-title,.main-headlinecol-yellow .entry-header h2.entry-title a{color:#e7b547}.main-headlinecol-yellow main #secondary h2.widget-title,.main-headlinecol-yellow main #sidebar-page h2.widget-title,.main-headlinecol-yellow main h1,.main-headlinecol-yellow main h2,.main-headlinecol-yellow main h3,.main-headlinecol-yellow main h4,.main-headlinecol-yellow main h5,.main-headlinecol-yellow main h6{color:#e7b547}.main-headlinecol-green .entry-header h2.entry-title,.main-headlinecol-green .entry-header h2.entry-title a{color:#85c066}.main-headlinecol-green main #secondary h2.widget-title,.main-headlinecol-green main #sidebar-page h2.widget-title,.main-headlinecol-green main h1,.main-headlinecol-green main h2,.main-headlinecol-green main h3,.main-headlinecol-green main h4,.main-headlinecol-green main h5,.main-headlinecol-green main h6{color:#85c066}.main-titleunderline-main main .single-post .entry-header h1.entry-title,.main-titleunderline-main main .entry-header h1.entry-title,.main-titleunderline-main main .attachment h1.entry-title,.main-titleunderline-main main .page h1.entry-title,.main-titleunderline-main main h1.entry-title,.main-titleunderline-main main .archive-header h1.archive-title,.main-titleunderline-main main .site-content h1,.main-titleunderline-main main .entry-content h1{border-color:#f80}.main-titleunderline-second main .single-post .entry-header h1.entry-title,.main-titleunderline-second main .entry-header h1.entry-title,.main-titleunderline-second main .attachment h1.entry-title,.main-titleunderline-second main .page h1.entry-title,.main-titleunderline-second main h1.entry-title,.main-titleunderline-second main .archive-header h1.archive-title,.main-titleunderline-second main .site-content h1,.main-titleunderline-second main .entry-content h1{border-color:#672082}.main-titleunderline-third main .single-post .entry-header h1.entry-title,.main-titleunderline-third main .entry-header h1.entry-title,.main-titleunderline-third main .attachment h1.entry-title,.main-titleunderline-third main .page h1.entry-title,.main-titleunderline-third main h1.entry-title,.main-titleunderline-third main .archive-header h1.archive-title,.main-titleunderline-third main .site-content h1,.main-titleunderline-third main .entry-content h1{border-color:#698bc1}.main-titleunderline-four main .single-post .entry-header h1.entry-title,.main-titleunderline-four main .entry-header h1.entry-title,.main-titleunderline-four main .attachment h1.entry-title,.main-titleunderline-four main .page h1.entry-title,.main-titleunderline-four main h1.entry-title,.main-titleunderline-four main .archive-header h1.archive-title,.main-titleunderline-four main .site-content h1,.main-titleunderline-four main .entry-content h1{border-color:#148f93}.main-titleunderline-uspirates main .single-post .entry-header h1.entry-title,.main-titleunderline-uspirates main .entry-header h1.entry-title,.main-titleunderline-uspirates main .attachment h1.entry-title,.main-titleunderline-uspirates main .page h1.entry-title,.main-titleunderline-uspirates main h1.entry-title,.main-titleunderline-uspirates main .archive-header h1.archive-title,.main-titleunderline-uspirates main .site-content h1,.main-titleunderline-uspirates main .entry-content h1{border-color:#B127AF}.main-titleunderline-tkpirates main .single-post .entry-header h1.entry-title,.main-titleunderline-tkpirates main .entry-header h1.entry-title,.main-titleunderline-tkpirates main .attachment h1.entry-title,.main-titleunderline-tkpirates main .page h1.entry-title,.main-titleunderline-tkpirates main h1.entry-title,.main-titleunderline-tkpirates main .archive-header h1.archive-title,.main-titleunderline-tkpirates main .site-content h1,.main-titleunderline-tkpirates main .entry-content h1{border-color:#00B5B1}.main-titleunderline-chpirates main .single-post .entry-header h1.entry-title,.main-titleunderline-chpirates main .entry-header h1.entry-title,.main-titleunderline-chpirates main .attachment h1.entry-title,.main-titleunderline-chpirates main .page h1.entry-title,.main-titleunderline-chpirates main h1.entry-title,.main-titleunderline-chpirates main .archive-header h1.archive-title,.main-titleunderline-chpirates main .site-content h1,.main-titleunderline-chpirates main .entry-content h1{border-color:#F9B200}.main-titleunderline-ispirates main .single-post .entry-header h1.entry-title,.main-titleunderline-ispirates main .entry-header h1.entry-title,.main-titleunderline-ispirates main .attachment h1.entry-title,.main-titleunderline-ispirates main .page h1.entry-title,.main-titleunderline-ispirates main h1.entry-title,.main-titleunderline-ispirates main .archive-header h1.archive-title,.main-titleunderline-ispirates main .site-content h1,.main-titleunderline-ispirates main .entry-content h1{border-color:#51297e}.main-titleunderline-black main .single-post .entry-header h1.entry-title,.main-titleunderline-black main .entry-header h1.entry-title,.main-titleunderline-black main .attachment h1.entry-title,.main-titleunderline-black main .page h1.entry-title,.main-titleunderline-black main h1.entry-title,.main-titleunderline-black main .archive-header h1.archive-title,.main-titleunderline-black main .site-content h1,.main-titleunderline-black main .entry-content h1{border-color:#000}.main-titleunderline-white main .single-post .entry-header h1.entry-title,.main-titleunderline-white main .entry-header h1.entry-title,.main-titleunderline-white main .attachment h1.entry-title,.main-titleunderline-white main .page h1.entry-title,.main-titleunderline-white main h1.entry-title,.main-titleunderline-white main .archive-header h1.archive-title,.main-titleunderline-white main .site-content h1,.main-titleunderline-white main .entry-content h1{border-color:#fff}.main-titleunderline-grey main .single-post .entry-header h1.entry-title,.main-titleunderline-grey main .entry-header h1.entry-title,.main-titleunderline-grey main .attachment h1.entry-title,.main-titleunderline-grey main .page h1.entry-title,.main-titleunderline-grey main h1.entry-title,.main-titleunderline-grey main .archive-header h1.archive-title,.main-titleunderline-grey main .site-content h1,.main-titleunderline-grey main .entry-content h1{border-color:#e7e7eb}.main-titleunderline-darkgrey main .single-post .entry-header h1.entry-title,.main-titleunderline-darkgrey main .entry-header h1.entry-title,.main-titleunderline-darkgrey main .attachment h1.entry-title,.main-titleunderline-darkgrey main .page h1.entry-title,.main-titleunderline-darkgrey main h1.entry-title,.main-titleunderline-darkgrey main .archive-header h1.archive-title,.main-titleunderline-darkgrey main .site-content h1,.main-titleunderline-darkgrey main .entry-content h1{border-color:#1a1a1a}.main-titleunderline-blue main .single-post .entry-header h1.entry-title,.main-titleunderline-blue main .entry-header h1.entry-title,.main-titleunderline-blue main .attachment h1.entry-title,.main-titleunderline-blue main .page h1.entry-title,.main-titleunderline-blue main h1.entry-title,.main-titleunderline-blue main .archive-header h1.archive-title,.main-titleunderline-blue main .site-content h1,.main-titleunderline-blue main .entry-content h1{border-color:#06f}.main-titleunderline-red main .single-post .entry-header h1.entry-title,.main-titleunderline-red main .entry-header h1.entry-title,.main-titleunderline-red main .attachment h1.entry-title,.main-titleunderline-red main .page h1.entry-title,.main-titleunderline-red main h1.entry-title,.main-titleunderline-red main .archive-header h1.archive-title,.main-titleunderline-red main .site-content h1,.main-titleunderline-red main .entry-content h1{border-color:#d7464d}.main-titleunderline-yellow main .single-post .entry-header h1.entry-title,.main-titleunderline-yellow main .entry-header h1.entry-title,.main-titleunderline-yellow main .attachment h1.entry-title,.main-titleunderline-yellow main .page h1.entry-title,.main-titleunderline-yellow main h1.entry-title,.main-titleunderline-yellow main .archive-header h1.archive-title,.main-titleunderline-yellow main .site-content h1,.main-titleunderline-yellow main .entry-content h1{border-color:#e7b547}.main-titleunderline-green main .single-post .entry-header h1.entry-title,.main-titleunderline-green main .entry-header h1.entry-title,.main-titleunderline-green main .attachment h1.entry-title,.main-titleunderline-green main .page h1.entry-title,.main-titleunderline-green main h1.entry-title,.main-titleunderline-green main .archive-header h1.archive-title,.main-titleunderline-green main .site-content h1,.main-titleunderline-green main .entry-content h1{border-color:#85c066}.main-textcol-main .single-post .entry-header p.intro,.main-textcol-main .entry-summary,.main-textcol-main .front-section-title,.main-textcol-main .social-front-title,.main-textcol-main .widget_mc4wp_form_widget p,.main-textcol-main .jetpack_subscription_widget #subscribe-text p,.main-textcol-main .section-about-column-one p,.main-textcol-main blockquote p,.main-textcol-main main{color:#f80}.main-linkcol-main main a,.main-linkcol-main main blockquote a,.main-linkcol-main main .entry-content a,.main-linkcol-main main .comment-text a{color:#f80}.main-linkhovercol-main.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-main.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-main.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-main.blog .hentry .entry-cats a:hover{color:#f80}.main-linkhovercol-main main a:hover,.main-linkhovercol-main main blockquote a:hover,.main-linkhovercol-main main .entry-content a:hover,.main-linkhovercol-main main .comment-text a:hover{color:#f80}.main-textcol-second .single-post .entry-header p.intro,.main-textcol-second .entry-summary,.main-textcol-second .front-section-title,.main-textcol-second .social-front-title,.main-textcol-second .widget_mc4wp_form_widget p,.main-textcol-second .jetpack_subscription_widget #subscribe-text p,.main-textcol-second .section-about-column-one p,.main-textcol-second blockquote p,.main-textcol-second main{color:#672082}.main-linkcol-second main a,.main-linkcol-second main blockquote a,.main-linkcol-second main .entry-content a,.main-linkcol-second main .comment-text a{color:#672082}.main-linkhovercol-second.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-second.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-second.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-second.blog .hentry .entry-cats a:hover{color:#672082}.main-linkhovercol-second main a:hover,.main-linkhovercol-second main blockquote a:hover,.main-linkhovercol-second main .entry-content a:hover,.main-linkhovercol-second main .comment-text a:hover{color:#672082}.main-textcol-third .single-post .entry-header p.intro,.main-textcol-third .entry-summary,.main-textcol-third .front-section-title,.main-textcol-third .social-front-title,.main-textcol-third .widget_mc4wp_form_widget p,.main-textcol-third .jetpack_subscription_widget #subscribe-text p,.main-textcol-third .section-about-column-one p,.main-textcol-third blockquote p,.main-textcol-third main{color:#698bc1}.main-linkcol-third main a,.main-linkcol-third main blockquote a,.main-linkcol-third main .entry-content a,.main-linkcol-third main .comment-text a{color:#698bc1}.main-linkhovercol-third.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-third.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-third.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-third.blog .hentry .entry-cats a:hover{color:#698bc1}.main-linkhovercol-third main a:hover,.main-linkhovercol-third main blockquote a:hover,.main-linkhovercol-third main .entry-content a:hover,.main-linkhovercol-third main .comment-text a:hover{color:#698bc1}.main-textcol-four .single-post .entry-header p.intro,.main-textcol-four .entry-summary,.main-textcol-four .front-section-title,.main-textcol-four .social-front-title,.main-textcol-four .widget_mc4wp_form_widget p,.main-textcol-four .jetpack_subscription_widget #subscribe-text p,.main-textcol-four .section-about-column-one p,.main-textcol-four blockquote p,.main-textcol-four main{color:#148f93}.main-linkcol-four main a,.main-linkcol-four main blockquote a,.main-linkcol-four main .entry-content a,.main-linkcol-four main .comment-text a{color:#148f93}.main-linkhovercol-four.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-four.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-four.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-four.blog .hentry .entry-cats a:hover{color:#148f93}.main-linkhovercol-four main a:hover,.main-linkhovercol-four main blockquote a:hover,.main-linkhovercol-four main .entry-content a:hover,.main-linkhovercol-four main .comment-text a:hover{color:#148f93}.main-textcol-uspirates .single-post .entry-header p.intro,.main-textcol-uspirates .entry-summary,.main-textcol-uspirates .front-section-title,.main-textcol-uspirates .social-front-title,.main-textcol-uspirates .widget_mc4wp_form_widget p,.main-textcol-uspirates .jetpack_subscription_widget #subscribe-text p,.main-textcol-uspirates .section-about-column-one p,.main-textcol-uspirates blockquote p,.main-textcol-uspirates main{color:#B127AF}.main-linkcol-uspirates main a,.main-linkcol-uspirates main blockquote a,.main-linkcol-uspirates main .entry-content a,.main-linkcol-uspirates main .comment-text a{color:#B127AF}.main-linkhovercol-uspirates.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-uspirates.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-uspirates.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-uspirates.blog .hentry .entry-cats a:hover{color:#B127AF}.main-linkhovercol-uspirates main a:hover,.main-linkhovercol-uspirates main blockquote a:hover,.main-linkhovercol-uspirates main .entry-content a:hover,.main-linkhovercol-uspirates main .comment-text a:hover{color:#B127AF}.main-textcol-tkpirates .single-post .entry-header p.intro,.main-textcol-tkpirates .entry-summary,.main-textcol-tkpirates .front-section-title,.main-textcol-tkpirates .social-front-title,.main-textcol-tkpirates .widget_mc4wp_form_widget p,.main-textcol-tkpirates .jetpack_subscription_widget #subscribe-text p,.main-textcol-tkpirates .section-about-column-one p,.main-textcol-tkpirates blockquote p,.main-textcol-tkpirates main{color:#00B5B1}.main-linkcol-tkpirates main a,.main-linkcol-tkpirates main blockquote a,.main-linkcol-tkpirates main .entry-content a,.main-linkcol-tkpirates main .comment-text a{color:#00B5B1}.main-linkhovercol-tkpirates.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-tkpirates.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-tkpirates.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-tkpirates.blog .hentry .entry-cats a:hover{color:#00B5B1}.main-linkhovercol-tkpirates main a:hover,.main-linkhovercol-tkpirates main blockquote a:hover,.main-linkhovercol-tkpirates main .entry-content a:hover,.main-linkhovercol-tkpirates main .comment-text a:hover{color:#00B5B1}.main-textcol-chpirates .single-post .entry-header p.intro,.main-textcol-chpirates .entry-summary,.main-textcol-chpirates .front-section-title,.main-textcol-chpirates .social-front-title,.main-textcol-chpirates .widget_mc4wp_form_widget p,.main-textcol-chpirates .jetpack_subscription_widget #subscribe-text p,.main-textcol-chpirates .section-about-column-one p,.main-textcol-chpirates blockquote p,.main-textcol-chpirates main{color:#F9B200}.main-linkcol-chpirates main a,.main-linkcol-chpirates main blockquote a,.main-linkcol-chpirates main .entry-content a,.main-linkcol-chpirates main .comment-text a{color:#F9B200}.main-linkhovercol-chpirates.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-chpirates.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-chpirates.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-chpirates.blog .hentry .entry-cats a:hover{color:#F9B200}.main-linkhovercol-chpirates main a:hover,.main-linkhovercol-chpirates main blockquote a:hover,.main-linkhovercol-chpirates main .entry-content a:hover,.main-linkhovercol-chpirates main .comment-text a:hover{color:#F9B200}.main-textcol-ispirates .single-post .entry-header p.intro,.main-textcol-ispirates .entry-summary,.main-textcol-ispirates .front-section-title,.main-textcol-ispirates .social-front-title,.main-textcol-ispirates .widget_mc4wp_form_widget p,.main-textcol-ispirates .jetpack_subscription_widget #subscribe-text p,.main-textcol-ispirates .section-about-column-one p,.main-textcol-ispirates blockquote p,.main-textcol-ispirates main{color:#51297e}.main-linkcol-ispirates main a,.main-linkcol-ispirates main blockquote a,.main-linkcol-ispirates main .entry-content a,.main-linkcol-ispirates main .comment-text a{color:#51297e}.main-linkhovercol-ispirates.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-ispirates.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-ispirates.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-ispirates.blog .hentry .entry-cats a:hover{color:#51297e}.main-linkhovercol-ispirates main a:hover,.main-linkhovercol-ispirates main blockquote a:hover,.main-linkhovercol-ispirates main .entry-content a:hover,.main-linkhovercol-ispirates main .comment-text a:hover{color:#51297e}.main-textcol-black .single-post .entry-header p.intro,.main-textcol-black .entry-summary,.main-textcol-black .front-section-title,.main-textcol-black .social-front-title,.main-textcol-black .widget_mc4wp_form_widget p,.main-textcol-black .jetpack_subscription_widget #subscribe-text p,.main-textcol-black .section-about-column-one p,.main-textcol-black blockquote p,.main-textcol-black main{color:#000}.main-linkcol-black main a,.main-linkcol-black main blockquote a,.main-linkcol-black main .entry-content a,.main-linkcol-black main .comment-text a{color:#000}.main-linkhovercol-black.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-black.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-black.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-black.blog .hentry .entry-cats a:hover{color:#000}.main-linkhovercol-black main a:hover,.main-linkhovercol-black main blockquote a:hover,.main-linkhovercol-black main .entry-content a:hover,.main-linkhovercol-black main .comment-text a:hover{color:#000}.main-textcol-white .single-post .entry-header p.intro,.main-textcol-white .entry-summary,.main-textcol-white .front-section-title,.main-textcol-white .social-front-title,.main-textcol-white .widget_mc4wp_form_widget p,.main-textcol-white .jetpack_subscription_widget #subscribe-text p,.main-textcol-white .section-about-column-one p,.main-textcol-white blockquote p,.main-textcol-white main{color:#fff}.main-linkcol-white main a,.main-linkcol-white main blockquote a,.main-linkcol-white main .entry-content a,.main-linkcol-white main .comment-text a{color:#fff}.main-linkhovercol-white.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-white.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-white.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-white.blog .hentry .entry-cats a:hover{color:#fff}.main-linkhovercol-white main a:hover,.main-linkhovercol-white main blockquote a:hover,.main-linkhovercol-white main .entry-content a:hover,.main-linkhovercol-white main .comment-text a:hover{color:#fff}.main-textcol-grey .single-post .entry-header p.intro,.main-textcol-grey .entry-summary,.main-textcol-grey .front-section-title,.main-textcol-grey .social-front-title,.main-textcol-grey .widget_mc4wp_form_widget p,.main-textcol-grey .jetpack_subscription_widget #subscribe-text p,.main-textcol-grey .section-about-column-one p,.main-textcol-grey blockquote p,.main-textcol-grey main{color:#e7e7eb}.main-linkcol-grey main a,.main-linkcol-grey main blockquote a,.main-linkcol-grey main .entry-content a,.main-linkcol-grey main .comment-text a{color:#e7e7eb}.main-linkhovercol-grey.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-grey.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-grey.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-grey.blog .hentry .entry-cats a:hover{color:#e7e7eb}.main-linkhovercol-grey main a:hover,.main-linkhovercol-grey main blockquote a:hover,.main-linkhovercol-grey main .entry-content a:hover,.main-linkhovercol-grey main .comment-text a:hover{color:#e7e7eb}.main-textcol-darkgrey .single-post .entry-header p.intro,.main-textcol-darkgrey .entry-summary,.main-textcol-darkgrey .front-section-title,.main-textcol-darkgrey .social-front-title,.main-textcol-darkgrey .widget_mc4wp_form_widget p,.main-textcol-darkgrey .jetpack_subscription_widget #subscribe-text p,.main-textcol-darkgrey .section-about-column-one p,.main-textcol-darkgrey blockquote p,.main-textcol-darkgrey main{color:#1a1a1a}.main-linkcol-darkgrey main a,.main-linkcol-darkgrey main blockquote a,.main-linkcol-darkgrey main .entry-content a,.main-linkcol-darkgrey main .comment-text a{color:#1a1a1a}.main-linkhovercol-darkgrey.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-darkgrey.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-darkgrey.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-darkgrey.blog .hentry .entry-cats a:hover{color:#1a1a1a}.main-linkhovercol-darkgrey main a:hover,.main-linkhovercol-darkgrey main blockquote a:hover,.main-linkhovercol-darkgrey main .entry-content a:hover,.main-linkhovercol-darkgrey main .comment-text a:hover{color:#1a1a1a}.main-textcol-blue .single-post .entry-header p.intro,.main-textcol-blue .entry-summary,.main-textcol-blue .front-section-title,.main-textcol-blue .social-front-title,.main-textcol-blue .widget_mc4wp_form_widget p,.main-textcol-blue .jetpack_subscription_widget #subscribe-text p,.main-textcol-blue .section-about-column-one p,.main-textcol-blue blockquote p,.main-textcol-blue main{color:#06f}.main-linkcol-blue main a,.main-linkcol-blue main blockquote a,.main-linkcol-blue main .entry-content a,.main-linkcol-blue main .comment-text a{color:#06f}.main-linkhovercol-blue.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-blue.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-blue.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-blue.blog .hentry .entry-cats a:hover{color:#06f}.main-linkhovercol-blue main a:hover,.main-linkhovercol-blue main blockquote a:hover,.main-linkhovercol-blue main .entry-content a:hover,.main-linkhovercol-blue main .comment-text a:hover{color:#06f}.main-textcol-red .single-post .entry-header p.intro,.main-textcol-red .entry-summary,.main-textcol-red .front-section-title,.main-textcol-red .social-front-title,.main-textcol-red .widget_mc4wp_form_widget p,.main-textcol-red .jetpack_subscription_widget #subscribe-text p,.main-textcol-red .section-about-column-one p,.main-textcol-red blockquote p,.main-textcol-red main{color:#d7464d}.main-linkcol-red main a,.main-linkcol-red main blockquote a,.main-linkcol-red main .entry-content a,.main-linkcol-red main .comment-text a{color:#d7464d}.main-linkhovercol-red.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-red.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-red.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-red.blog .hentry .entry-cats a:hover{color:#d7464d}.main-linkhovercol-red main a:hover,.main-linkhovercol-red main blockquote a:hover,.main-linkhovercol-red main .entry-content a:hover,.main-linkhovercol-red main .comment-text a:hover{color:#d7464d}.main-textcol-yellow .single-post .entry-header p.intro,.main-textcol-yellow .entry-summary,.main-textcol-yellow .front-section-title,.main-textcol-yellow .social-front-title,.main-textcol-yellow .widget_mc4wp_form_widget p,.main-textcol-yellow .jetpack_subscription_widget #subscribe-text p,.main-textcol-yellow .section-about-column-one p,.main-textcol-yellow blockquote p,.main-textcol-yellow main{color:#e7b547}.main-linkcol-yellow main a,.main-linkcol-yellow main blockquote a,.main-linkcol-yellow main .entry-content a,.main-linkcol-yellow main .comment-text a{color:#e7b547}.main-linkhovercol-yellow.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-yellow.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-yellow.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-yellow.blog .hentry .entry-cats a:hover{color:#e7b547}.main-linkhovercol-yellow main a:hover,.main-linkhovercol-yellow main blockquote a:hover,.main-linkhovercol-yellow main .entry-content a:hover,.main-linkhovercol-yellow main .comment-text a:hover{color:#e7b547}.main-textcol-green .single-post .entry-header p.intro,.main-textcol-green .entry-summary,.main-textcol-green .front-section-title,.main-textcol-green .social-front-title,.main-textcol-green .widget_mc4wp_form_widget p,.main-textcol-green .jetpack_subscription_widget #subscribe-text p,.main-textcol-green .section-about-column-one p,.main-textcol-green blockquote p,.main-textcol-green main{color:#85c066}.main-linkcol-green main a,.main-linkcol-green main blockquote a,.main-linkcol-green main .entry-content a,.main-linkcol-green main .comment-text a{color:#85c066}.main-linkhovercol-green.single-post .entry-header .entry-cats a:hover,.main-linkhovercol-green.blog .featured-slider .entry-cats a:hover,.main-linkhovercol-green.blog .featured-slider .entry-meta a:hover,.main-linkhovercol-green.blog .hentry .entry-cats a:hover{color:#85c066}.main-linkhovercol-green main a:hover,.main-linkhovercol-green main blockquote a:hover,.main-linkhovercol-green main .entry-content a:hover,.main-linkhovercol-green main .comment-text a:hover{color:#85c066}.main-meta-textcol-hover-main.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-main.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-main.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-main.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-main main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-main .post-navigation .nav-links a:hover,.main-meta-textcol-hover-main .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-main .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-main .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-main .featured-slider button.slick-arrow:hover::after{color:#f80}.main-meta-textcol-main .entry-meta,.main-meta-textcol-main .entry-cats,.main-meta-textcol-main .slider-text .entry-meta a,.main-meta-textcol-main .slider-text .entry-cats a,.main-meta-textcol-main .section-one-column-one .entry-cats a,.main-meta-textcol-main .section-three-column-one .entry-cats a,.main-meta-textcol-main #front-section-four .entry-cats a,.main-meta-textcol-main #front-section-four .entry-meta a,.main-meta-textcol-main .featured-slider .entry-cats a,.main-meta-textcol-main.single-post .entry-header .entry-cats a,.main-meta-textcol-main.blog .featured-slider .entry-cats a,.main-meta-textcol-main.blog .featured-slider .entry-meta a,.main-meta-textcol-main.blog .hentry .entry-cats a,.main-meta-textcol-main.single-post .entry-cats a,.main-meta-textcol-main.single-post .entry-tags a,.main-meta-textcol-main.single-post .entry-header .page-links a,.main-meta-textcol-main .post-page-numbers.current,.main-meta-textcol-main main .entry-content .pagebreak-links a,.main-meta-textcol-main .post-navigation .nav-links a,.main-meta-textcol-main .pagination .nav-links span.page-numbers,.main-meta-textcol-main .pagination .nav-links a.page-numbers,.main-meta-textcol-main.single-post .entry-header .page-links .number{color:#f80}.main-meta-bgcol-main .entry-cats a,.main-meta-bgcol-main .featured-slider .entry-cats a,.main-meta-bgcol-main .featured-slider .entry-meta a,.main-meta-bgcol-main .section-one-column-one .entry-cats a,.main-meta-bgcol-main .section-three-column-one .entry-cats a,.main-meta-bgcol-main #front-section-four .entry-cats a,.main-meta-bgcol-main.single-post .entry-cats a,.main-meta-bgcol-main.single-post .entry-tags a,.main-meta-bgcol-main.blog .hentry .entry-cats a,.main-meta-bgcol-main.blog .featured-slider .entry-cats a,.main-meta-bgcol-main.blog .featured-slider .entry-meta a,.main-meta-bgcol-main.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-main .post-page-numbers.current,.main-meta-bgcol-main .post-navigation .nav-links a,.main-meta-bgcol-main .pagebreak-links a,.main-meta-bgcol-main .pagination .nav-links span.page-numbers,.main-meta-bgcol-main .pagination .nav-links a.page-numbers{background:#f80}.main-meta-bgcol-main .gallery .slick-prev:before,.main-meta-bgcol-main .gallery .slick-next:before,.main-meta-bgcol-main .gallery .slick-dots li.slick-active button:before{color:#f80}.main-meta-bgcol-hover-main .entry-cats a:hover,.main-meta-bgcol-hover-main .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-main .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-main .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-main .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-main #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-main.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-main.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-main.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-main.single-post .entry-cats a:hover,.main-meta-bgcol-hover-main.single-post .entry-tags a:hover,.main-meta-bgcol-hover-main.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-main .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-main .pagebreak-links a:hover,.main-meta-bgcol-hover-main .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-main .pagination .nav-links a.page-numbers:hover{background:#f80}.main-meta-textcol-hover-second.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-second.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-second.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-second.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-second main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-second .post-navigation .nav-links a:hover,.main-meta-textcol-hover-second .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-second .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-second .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-second .featured-slider button.slick-arrow:hover::after{color:#672082}.main-meta-textcol-second .entry-meta,.main-meta-textcol-second .entry-cats,.main-meta-textcol-second .slider-text .entry-meta a,.main-meta-textcol-second .slider-text .entry-cats a,.main-meta-textcol-second .section-one-column-one .entry-cats a,.main-meta-textcol-second .section-three-column-one .entry-cats a,.main-meta-textcol-second #front-section-four .entry-cats a,.main-meta-textcol-second #front-section-four .entry-meta a,.main-meta-textcol-second .featured-slider .entry-cats a,.main-meta-textcol-second.single-post .entry-header .entry-cats a,.main-meta-textcol-second.blog .featured-slider .entry-cats a,.main-meta-textcol-second.blog .featured-slider .entry-meta a,.main-meta-textcol-second.blog .hentry .entry-cats a,.main-meta-textcol-second.single-post .entry-cats a,.main-meta-textcol-second.single-post .entry-tags a,.main-meta-textcol-second.single-post .entry-header .page-links a,.main-meta-textcol-second .post-page-numbers.current,.main-meta-textcol-second main .entry-content .pagebreak-links a,.main-meta-textcol-second .post-navigation .nav-links a,.main-meta-textcol-second .pagination .nav-links span.page-numbers,.main-meta-textcol-second .pagination .nav-links a.page-numbers,.main-meta-textcol-second.single-post .entry-header .page-links .number{color:#672082}.main-meta-bgcol-second .entry-cats a,.main-meta-bgcol-second .featured-slider .entry-cats a,.main-meta-bgcol-second .featured-slider .entry-meta a,.main-meta-bgcol-second .section-one-column-one .entry-cats a,.main-meta-bgcol-second .section-three-column-one .entry-cats a,.main-meta-bgcol-second #front-section-four .entry-cats a,.main-meta-bgcol-second.single-post .entry-cats a,.main-meta-bgcol-second.single-post .entry-tags a,.main-meta-bgcol-second.blog .hentry .entry-cats a,.main-meta-bgcol-second.blog .featured-slider .entry-cats a,.main-meta-bgcol-second.blog .featured-slider .entry-meta a,.main-meta-bgcol-second.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-second .post-page-numbers.current,.main-meta-bgcol-second .post-navigation .nav-links a,.main-meta-bgcol-second .pagebreak-links a,.main-meta-bgcol-second .pagination .nav-links span.page-numbers,.main-meta-bgcol-second .pagination .nav-links a.page-numbers{background:#672082}.main-meta-bgcol-second .gallery .slick-prev:before,.main-meta-bgcol-second .gallery .slick-next:before,.main-meta-bgcol-second .gallery .slick-dots li.slick-active button:before{color:#672082}.main-meta-bgcol-hover-second .entry-cats a:hover,.main-meta-bgcol-hover-second .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-second .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-second .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-second .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-second #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-second.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-second.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-second.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-second.single-post .entry-cats a:hover,.main-meta-bgcol-hover-second.single-post .entry-tags a:hover,.main-meta-bgcol-hover-second.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-second .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-second .pagebreak-links a:hover,.main-meta-bgcol-hover-second .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-second .pagination .nav-links a.page-numbers:hover{background:#672082}.main-meta-textcol-hover-third.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-third.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-third.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-third.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-third main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-third .post-navigation .nav-links a:hover,.main-meta-textcol-hover-third .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-third .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-third .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-third .featured-slider button.slick-arrow:hover::after{color:#698bc1}.main-meta-textcol-third .entry-meta,.main-meta-textcol-third .entry-cats,.main-meta-textcol-third .slider-text .entry-meta a,.main-meta-textcol-third .slider-text .entry-cats a,.main-meta-textcol-third .section-one-column-one .entry-cats a,.main-meta-textcol-third .section-three-column-one .entry-cats a,.main-meta-textcol-third #front-section-four .entry-cats a,.main-meta-textcol-third #front-section-four .entry-meta a,.main-meta-textcol-third .featured-slider .entry-cats a,.main-meta-textcol-third.single-post .entry-header .entry-cats a,.main-meta-textcol-third.blog .featured-slider .entry-cats a,.main-meta-textcol-third.blog .featured-slider .entry-meta a,.main-meta-textcol-third.blog .hentry .entry-cats a,.main-meta-textcol-third.single-post .entry-cats a,.main-meta-textcol-third.single-post .entry-tags a,.main-meta-textcol-third.single-post .entry-header .page-links a,.main-meta-textcol-third .post-page-numbers.current,.main-meta-textcol-third main .entry-content .pagebreak-links a,.main-meta-textcol-third .post-navigation .nav-links a,.main-meta-textcol-third .pagination .nav-links span.page-numbers,.main-meta-textcol-third .pagination .nav-links a.page-numbers,.main-meta-textcol-third.single-post .entry-header .page-links .number{color:#698bc1}.main-meta-bgcol-third .entry-cats a,.main-meta-bgcol-third .featured-slider .entry-cats a,.main-meta-bgcol-third .featured-slider .entry-meta a,.main-meta-bgcol-third .section-one-column-one .entry-cats a,.main-meta-bgcol-third .section-three-column-one .entry-cats a,.main-meta-bgcol-third #front-section-four .entry-cats a,.main-meta-bgcol-third.single-post .entry-cats a,.main-meta-bgcol-third.single-post .entry-tags a,.main-meta-bgcol-third.blog .hentry .entry-cats a,.main-meta-bgcol-third.blog .featured-slider .entry-cats a,.main-meta-bgcol-third.blog .featured-slider .entry-meta a,.main-meta-bgcol-third.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-third .post-page-numbers.current,.main-meta-bgcol-third .post-navigation .nav-links a,.main-meta-bgcol-third .pagebreak-links a,.main-meta-bgcol-third .pagination .nav-links span.page-numbers,.main-meta-bgcol-third .pagination .nav-links a.page-numbers{background:#698bc1}.main-meta-bgcol-third .gallery .slick-prev:before,.main-meta-bgcol-third .gallery .slick-next:before,.main-meta-bgcol-third .gallery .slick-dots li.slick-active button:before{color:#698bc1}.main-meta-bgcol-hover-third .entry-cats a:hover,.main-meta-bgcol-hover-third .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-third .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-third .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-third .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-third #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-third.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-third.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-third.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-third.single-post .entry-cats a:hover,.main-meta-bgcol-hover-third.single-post .entry-tags a:hover,.main-meta-bgcol-hover-third.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-third .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-third .pagebreak-links a:hover,.main-meta-bgcol-hover-third .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-third .pagination .nav-links a.page-numbers:hover{background:#698bc1}.main-meta-textcol-hover-four.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-four.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-four.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-four.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-four main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-four .post-navigation .nav-links a:hover,.main-meta-textcol-hover-four .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-four .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-four .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-four .featured-slider button.slick-arrow:hover::after{color:#148f93}.main-meta-textcol-four .entry-meta,.main-meta-textcol-four .entry-cats,.main-meta-textcol-four .slider-text .entry-meta a,.main-meta-textcol-four .slider-text .entry-cats a,.main-meta-textcol-four .section-one-column-one .entry-cats a,.main-meta-textcol-four .section-three-column-one .entry-cats a,.main-meta-textcol-four #front-section-four .entry-cats a,.main-meta-textcol-four #front-section-four .entry-meta a,.main-meta-textcol-four .featured-slider .entry-cats a,.main-meta-textcol-four.single-post .entry-header .entry-cats a,.main-meta-textcol-four.blog .featured-slider .entry-cats a,.main-meta-textcol-four.blog .featured-slider .entry-meta a,.main-meta-textcol-four.blog .hentry .entry-cats a,.main-meta-textcol-four.single-post .entry-cats a,.main-meta-textcol-four.single-post .entry-tags a,.main-meta-textcol-four.single-post .entry-header .page-links a,.main-meta-textcol-four .post-page-numbers.current,.main-meta-textcol-four main .entry-content .pagebreak-links a,.main-meta-textcol-four .post-navigation .nav-links a,.main-meta-textcol-four .pagination .nav-links span.page-numbers,.main-meta-textcol-four .pagination .nav-links a.page-numbers,.main-meta-textcol-four.single-post .entry-header .page-links .number{color:#148f93}.main-meta-bgcol-four .entry-cats a,.main-meta-bgcol-four .featured-slider .entry-cats a,.main-meta-bgcol-four .featured-slider .entry-meta a,.main-meta-bgcol-four .section-one-column-one .entry-cats a,.main-meta-bgcol-four .section-three-column-one .entry-cats a,.main-meta-bgcol-four #front-section-four .entry-cats a,.main-meta-bgcol-four.single-post .entry-cats a,.main-meta-bgcol-four.single-post .entry-tags a,.main-meta-bgcol-four.blog .hentry .entry-cats a,.main-meta-bgcol-four.blog .featured-slider .entry-cats a,.main-meta-bgcol-four.blog .featured-slider .entry-meta a,.main-meta-bgcol-four.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-four .post-page-numbers.current,.main-meta-bgcol-four .post-navigation .nav-links a,.main-meta-bgcol-four .pagebreak-links a,.main-meta-bgcol-four .pagination .nav-links span.page-numbers,.main-meta-bgcol-four .pagination .nav-links a.page-numbers{background:#148f93}.main-meta-bgcol-four .gallery .slick-prev:before,.main-meta-bgcol-four .gallery .slick-next:before,.main-meta-bgcol-four .gallery .slick-dots li.slick-active button:before{color:#148f93}.main-meta-bgcol-hover-four .entry-cats a:hover,.main-meta-bgcol-hover-four .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-four .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-four .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-four .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-four #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-four.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-four.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-four.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-four.single-post .entry-cats a:hover,.main-meta-bgcol-hover-four.single-post .entry-tags a:hover,.main-meta-bgcol-hover-four.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-four .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-four .pagebreak-links a:hover,.main-meta-bgcol-hover-four .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-four .pagination .nav-links a.page-numbers:hover{background:#148f93}.main-meta-textcol-hover-uspirates.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-uspirates.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-uspirates.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-uspirates.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-uspirates main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-uspirates .post-navigation .nav-links a:hover,.main-meta-textcol-hover-uspirates .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-uspirates .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-uspirates .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-uspirates .featured-slider button.slick-arrow:hover::after{color:#B127AF}.main-meta-textcol-uspirates .entry-meta,.main-meta-textcol-uspirates .entry-cats,.main-meta-textcol-uspirates .slider-text .entry-meta a,.main-meta-textcol-uspirates .slider-text .entry-cats a,.main-meta-textcol-uspirates .section-one-column-one .entry-cats a,.main-meta-textcol-uspirates .section-three-column-one .entry-cats a,.main-meta-textcol-uspirates #front-section-four .entry-cats a,.main-meta-textcol-uspirates #front-section-four .entry-meta a,.main-meta-textcol-uspirates .featured-slider .entry-cats a,.main-meta-textcol-uspirates.single-post .entry-header .entry-cats a,.main-meta-textcol-uspirates.blog .featured-slider .entry-cats a,.main-meta-textcol-uspirates.blog .featured-slider .entry-meta a,.main-meta-textcol-uspirates.blog .hentry .entry-cats a,.main-meta-textcol-uspirates.single-post .entry-cats a,.main-meta-textcol-uspirates.single-post .entry-tags a,.main-meta-textcol-uspirates.single-post .entry-header .page-links a,.main-meta-textcol-uspirates .post-page-numbers.current,.main-meta-textcol-uspirates main .entry-content .pagebreak-links a,.main-meta-textcol-uspirates .post-navigation .nav-links a,.main-meta-textcol-uspirates .pagination .nav-links span.page-numbers,.main-meta-textcol-uspirates .pagination .nav-links a.page-numbers,.main-meta-textcol-uspirates.single-post .entry-header .page-links .number{color:#B127AF}.main-meta-bgcol-uspirates .entry-cats a,.main-meta-bgcol-uspirates .featured-slider .entry-cats a,.main-meta-bgcol-uspirates .featured-slider .entry-meta a,.main-meta-bgcol-uspirates .section-one-column-one .entry-cats a,.main-meta-bgcol-uspirates .section-three-column-one .entry-cats a,.main-meta-bgcol-uspirates #front-section-four .entry-cats a,.main-meta-bgcol-uspirates.single-post .entry-cats a,.main-meta-bgcol-uspirates.single-post .entry-tags a,.main-meta-bgcol-uspirates.blog .hentry .entry-cats a,.main-meta-bgcol-uspirates.blog .featured-slider .entry-cats a,.main-meta-bgcol-uspirates.blog .featured-slider .entry-meta a,.main-meta-bgcol-uspirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-uspirates .post-page-numbers.current,.main-meta-bgcol-uspirates .post-navigation .nav-links a,.main-meta-bgcol-uspirates .pagebreak-links a,.main-meta-bgcol-uspirates .pagination .nav-links span.page-numbers,.main-meta-bgcol-uspirates .pagination .nav-links a.page-numbers{background:#B127AF}.main-meta-bgcol-uspirates .gallery .slick-prev:before,.main-meta-bgcol-uspirates .gallery .slick-next:before,.main-meta-bgcol-uspirates .gallery .slick-dots li.slick-active button:before{color:#B127AF}.main-meta-bgcol-hover-uspirates .entry-cats a:hover,.main-meta-bgcol-hover-uspirates .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-uspirates .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-uspirates .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-uspirates .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-uspirates #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-uspirates.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-uspirates.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-uspirates.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-uspirates.single-post .entry-cats a:hover,.main-meta-bgcol-hover-uspirates.single-post .entry-tags a:hover,.main-meta-bgcol-hover-uspirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-uspirates .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-uspirates .pagebreak-links a:hover,.main-meta-bgcol-hover-uspirates .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-uspirates .pagination .nav-links a.page-numbers:hover{background:#B127AF}.main-meta-textcol-hover-tkpirates.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-tkpirates.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-tkpirates.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-tkpirates.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-tkpirates main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-tkpirates .post-navigation .nav-links a:hover,.main-meta-textcol-hover-tkpirates .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-tkpirates .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-tkpirates .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-tkpirates .featured-slider button.slick-arrow:hover::after{color:#00B5B1}.main-meta-textcol-tkpirates .entry-meta,.main-meta-textcol-tkpirates .entry-cats,.main-meta-textcol-tkpirates .slider-text .entry-meta a,.main-meta-textcol-tkpirates .slider-text .entry-cats a,.main-meta-textcol-tkpirates .section-one-column-one .entry-cats a,.main-meta-textcol-tkpirates .section-three-column-one .entry-cats a,.main-meta-textcol-tkpirates #front-section-four .entry-cats a,.main-meta-textcol-tkpirates #front-section-four .entry-meta a,.main-meta-textcol-tkpirates .featured-slider .entry-cats a,.main-meta-textcol-tkpirates.single-post .entry-header .entry-cats a,.main-meta-textcol-tkpirates.blog .featured-slider .entry-cats a,.main-meta-textcol-tkpirates.blog .featured-slider .entry-meta a,.main-meta-textcol-tkpirates.blog .hentry .entry-cats a,.main-meta-textcol-tkpirates.single-post .entry-cats a,.main-meta-textcol-tkpirates.single-post .entry-tags a,.main-meta-textcol-tkpirates.single-post .entry-header .page-links a,.main-meta-textcol-tkpirates .post-page-numbers.current,.main-meta-textcol-tkpirates main .entry-content .pagebreak-links a,.main-meta-textcol-tkpirates .post-navigation .nav-links a,.main-meta-textcol-tkpirates .pagination .nav-links span.page-numbers,.main-meta-textcol-tkpirates .pagination .nav-links a.page-numbers,.main-meta-textcol-tkpirates.single-post .entry-header .page-links .number{color:#00B5B1}.main-meta-bgcol-tkpirates .entry-cats a,.main-meta-bgcol-tkpirates .featured-slider .entry-cats a,.main-meta-bgcol-tkpirates .featured-slider .entry-meta a,.main-meta-bgcol-tkpirates .section-one-column-one .entry-cats a,.main-meta-bgcol-tkpirates .section-three-column-one .entry-cats a,.main-meta-bgcol-tkpirates #front-section-four .entry-cats a,.main-meta-bgcol-tkpirates.single-post .entry-cats a,.main-meta-bgcol-tkpirates.single-post .entry-tags a,.main-meta-bgcol-tkpirates.blog .hentry .entry-cats a,.main-meta-bgcol-tkpirates.blog .featured-slider .entry-cats a,.main-meta-bgcol-tkpirates.blog .featured-slider .entry-meta a,.main-meta-bgcol-tkpirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-tkpirates .post-page-numbers.current,.main-meta-bgcol-tkpirates .post-navigation .nav-links a,.main-meta-bgcol-tkpirates .pagebreak-links a,.main-meta-bgcol-tkpirates .pagination .nav-links span.page-numbers,.main-meta-bgcol-tkpirates .pagination .nav-links a.page-numbers{background:#00B5B1}.main-meta-bgcol-tkpirates .gallery .slick-prev:before,.main-meta-bgcol-tkpirates .gallery .slick-next:before,.main-meta-bgcol-tkpirates .gallery .slick-dots li.slick-active button:before{color:#00B5B1}.main-meta-bgcol-hover-tkpirates .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-tkpirates .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-tkpirates.single-post .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates.single-post .entry-tags a:hover,.main-meta-bgcol-hover-tkpirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-tkpirates .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-tkpirates .pagebreak-links a:hover,.main-meta-bgcol-hover-tkpirates .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-tkpirates .pagination .nav-links a.page-numbers:hover{background:#00B5B1}.main-meta-textcol-hover-chpirates.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-chpirates.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-chpirates.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-chpirates.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-chpirates main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-chpirates .post-navigation .nav-links a:hover,.main-meta-textcol-hover-chpirates .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-chpirates .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-chpirates .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-chpirates .featured-slider button.slick-arrow:hover::after{color:#F9B200}.main-meta-textcol-chpirates .entry-meta,.main-meta-textcol-chpirates .entry-cats,.main-meta-textcol-chpirates .slider-text .entry-meta a,.main-meta-textcol-chpirates .slider-text .entry-cats a,.main-meta-textcol-chpirates .section-one-column-one .entry-cats a,.main-meta-textcol-chpirates .section-three-column-one .entry-cats a,.main-meta-textcol-chpirates #front-section-four .entry-cats a,.main-meta-textcol-chpirates #front-section-four .entry-meta a,.main-meta-textcol-chpirates .featured-slider .entry-cats a,.main-meta-textcol-chpirates.single-post .entry-header .entry-cats a,.main-meta-textcol-chpirates.blog .featured-slider .entry-cats a,.main-meta-textcol-chpirates.blog .featured-slider .entry-meta a,.main-meta-textcol-chpirates.blog .hentry .entry-cats a,.main-meta-textcol-chpirates.single-post .entry-cats a,.main-meta-textcol-chpirates.single-post .entry-tags a,.main-meta-textcol-chpirates.single-post .entry-header .page-links a,.main-meta-textcol-chpirates .post-page-numbers.current,.main-meta-textcol-chpirates main .entry-content .pagebreak-links a,.main-meta-textcol-chpirates .post-navigation .nav-links a,.main-meta-textcol-chpirates .pagination .nav-links span.page-numbers,.main-meta-textcol-chpirates .pagination .nav-links a.page-numbers,.main-meta-textcol-chpirates.single-post .entry-header .page-links .number{color:#F9B200}.main-meta-bgcol-chpirates .entry-cats a,.main-meta-bgcol-chpirates .featured-slider .entry-cats a,.main-meta-bgcol-chpirates .featured-slider .entry-meta a,.main-meta-bgcol-chpirates .section-one-column-one .entry-cats a,.main-meta-bgcol-chpirates .section-three-column-one .entry-cats a,.main-meta-bgcol-chpirates #front-section-four .entry-cats a,.main-meta-bgcol-chpirates.single-post .entry-cats a,.main-meta-bgcol-chpirates.single-post .entry-tags a,.main-meta-bgcol-chpirates.blog .hentry .entry-cats a,.main-meta-bgcol-chpirates.blog .featured-slider .entry-cats a,.main-meta-bgcol-chpirates.blog .featured-slider .entry-meta a,.main-meta-bgcol-chpirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-chpirates .post-page-numbers.current,.main-meta-bgcol-chpirates .post-navigation .nav-links a,.main-meta-bgcol-chpirates .pagebreak-links a,.main-meta-bgcol-chpirates .pagination .nav-links span.page-numbers,.main-meta-bgcol-chpirates .pagination .nav-links a.page-numbers{background:#F9B200}.main-meta-bgcol-chpirates .gallery .slick-prev:before,.main-meta-bgcol-chpirates .gallery .slick-next:before,.main-meta-bgcol-chpirates .gallery .slick-dots li.slick-active button:before{color:#F9B200}.main-meta-bgcol-hover-chpirates .entry-cats a:hover,.main-meta-bgcol-hover-chpirates .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-chpirates .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-chpirates .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-chpirates .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-chpirates #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-chpirates.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-chpirates.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-chpirates.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-chpirates.single-post .entry-cats a:hover,.main-meta-bgcol-hover-chpirates.single-post .entry-tags a:hover,.main-meta-bgcol-hover-chpirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-chpirates .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-chpirates .pagebreak-links a:hover,.main-meta-bgcol-hover-chpirates .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-chpirates .pagination .nav-links a.page-numbers:hover{background:#F9B200}.main-meta-textcol-hover-ispirates.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-ispirates.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-ispirates.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-ispirates.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-ispirates main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-ispirates .post-navigation .nav-links a:hover,.main-meta-textcol-hover-ispirates .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-ispirates .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-ispirates .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-ispirates .featured-slider button.slick-arrow:hover::after{color:#51297e}.main-meta-textcol-ispirates .entry-meta,.main-meta-textcol-ispirates .entry-cats,.main-meta-textcol-ispirates .slider-text .entry-meta a,.main-meta-textcol-ispirates .slider-text .entry-cats a,.main-meta-textcol-ispirates .section-one-column-one .entry-cats a,.main-meta-textcol-ispirates .section-three-column-one .entry-cats a,.main-meta-textcol-ispirates #front-section-four .entry-cats a,.main-meta-textcol-ispirates #front-section-four .entry-meta a,.main-meta-textcol-ispirates .featured-slider .entry-cats a,.main-meta-textcol-ispirates.single-post .entry-header .entry-cats a,.main-meta-textcol-ispirates.blog .featured-slider .entry-cats a,.main-meta-textcol-ispirates.blog .featured-slider .entry-meta a,.main-meta-textcol-ispirates.blog .hentry .entry-cats a,.main-meta-textcol-ispirates.single-post .entry-cats a,.main-meta-textcol-ispirates.single-post .entry-tags a,.main-meta-textcol-ispirates.single-post .entry-header .page-links a,.main-meta-textcol-ispirates .post-page-numbers.current,.main-meta-textcol-ispirates main .entry-content .pagebreak-links a,.main-meta-textcol-ispirates .post-navigation .nav-links a,.main-meta-textcol-ispirates .pagination .nav-links span.page-numbers,.main-meta-textcol-ispirates .pagination .nav-links a.page-numbers,.main-meta-textcol-ispirates.single-post .entry-header .page-links .number{color:#51297e}.main-meta-bgcol-ispirates .entry-cats a,.main-meta-bgcol-ispirates .featured-slider .entry-cats a,.main-meta-bgcol-ispirates .featured-slider .entry-meta a,.main-meta-bgcol-ispirates .section-one-column-one .entry-cats a,.main-meta-bgcol-ispirates .section-three-column-one .entry-cats a,.main-meta-bgcol-ispirates #front-section-four .entry-cats a,.main-meta-bgcol-ispirates.single-post .entry-cats a,.main-meta-bgcol-ispirates.single-post .entry-tags a,.main-meta-bgcol-ispirates.blog .hentry .entry-cats a,.main-meta-bgcol-ispirates.blog .featured-slider .entry-cats a,.main-meta-bgcol-ispirates.blog .featured-slider .entry-meta a,.main-meta-bgcol-ispirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-ispirates .post-page-numbers.current,.main-meta-bgcol-ispirates .post-navigation .nav-links a,.main-meta-bgcol-ispirates .pagebreak-links a,.main-meta-bgcol-ispirates .pagination .nav-links span.page-numbers,.main-meta-bgcol-ispirates .pagination .nav-links a.page-numbers{background:#51297e}.main-meta-bgcol-ispirates .gallery .slick-prev:before,.main-meta-bgcol-ispirates .gallery .slick-next:before,.main-meta-bgcol-ispirates .gallery .slick-dots li.slick-active button:before{color:#51297e}.main-meta-bgcol-hover-ispirates .entry-cats a:hover,.main-meta-bgcol-hover-ispirates .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-ispirates .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-ispirates .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-ispirates .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-ispirates #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-ispirates.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-ispirates.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-ispirates.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-ispirates.single-post .entry-cats a:hover,.main-meta-bgcol-hover-ispirates.single-post .entry-tags a:hover,.main-meta-bgcol-hover-ispirates.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-ispirates .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-ispirates .pagebreak-links a:hover,.main-meta-bgcol-hover-ispirates .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-ispirates .pagination .nav-links a.page-numbers:hover{background:#51297e}.main-meta-textcol-hover-black.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-black.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-black.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-black.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-black main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-black .post-navigation .nav-links a:hover,.main-meta-textcol-hover-black .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-black .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-black .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-black .featured-slider button.slick-arrow:hover::after{color:#000}.main-meta-textcol-black .entry-meta,.main-meta-textcol-black .entry-cats,.main-meta-textcol-black .slider-text .entry-meta a,.main-meta-textcol-black .slider-text .entry-cats a,.main-meta-textcol-black .section-one-column-one .entry-cats a,.main-meta-textcol-black .section-three-column-one .entry-cats a,.main-meta-textcol-black #front-section-four .entry-cats a,.main-meta-textcol-black #front-section-four .entry-meta a,.main-meta-textcol-black .featured-slider .entry-cats a,.main-meta-textcol-black.single-post .entry-header .entry-cats a,.main-meta-textcol-black.blog .featured-slider .entry-cats a,.main-meta-textcol-black.blog .featured-slider .entry-meta a,.main-meta-textcol-black.blog .hentry .entry-cats a,.main-meta-textcol-black.single-post .entry-cats a,.main-meta-textcol-black.single-post .entry-tags a,.main-meta-textcol-black.single-post .entry-header .page-links a,.main-meta-textcol-black .post-page-numbers.current,.main-meta-textcol-black main .entry-content .pagebreak-links a,.main-meta-textcol-black .post-navigation .nav-links a,.main-meta-textcol-black .pagination .nav-links span.page-numbers,.main-meta-textcol-black .pagination .nav-links a.page-numbers,.main-meta-textcol-black.single-post .entry-header .page-links .number{color:#000}.main-meta-bgcol-black .entry-cats a,.main-meta-bgcol-black .featured-slider .entry-cats a,.main-meta-bgcol-black .featured-slider .entry-meta a,.main-meta-bgcol-black .section-one-column-one .entry-cats a,.main-meta-bgcol-black .section-three-column-one .entry-cats a,.main-meta-bgcol-black #front-section-four .entry-cats a,.main-meta-bgcol-black.single-post .entry-cats a,.main-meta-bgcol-black.single-post .entry-tags a,.main-meta-bgcol-black.blog .hentry .entry-cats a,.main-meta-bgcol-black.blog .featured-slider .entry-cats a,.main-meta-bgcol-black.blog .featured-slider .entry-meta a,.main-meta-bgcol-black.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-black .post-page-numbers.current,.main-meta-bgcol-black .post-navigation .nav-links a,.main-meta-bgcol-black .pagebreak-links a,.main-meta-bgcol-black .pagination .nav-links span.page-numbers,.main-meta-bgcol-black .pagination .nav-links a.page-numbers{background:#000}.main-meta-bgcol-black .gallery .slick-prev:before,.main-meta-bgcol-black .gallery .slick-next:before,.main-meta-bgcol-black .gallery .slick-dots li.slick-active button:before{color:#000}.main-meta-bgcol-hover-black .entry-cats a:hover,.main-meta-bgcol-hover-black .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-black .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-black .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-black .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-black #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-black.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-black.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-black.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-black.single-post .entry-cats a:hover,.main-meta-bgcol-hover-black.single-post .entry-tags a:hover,.main-meta-bgcol-hover-black.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-black .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-black .pagebreak-links a:hover,.main-meta-bgcol-hover-black .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-black .pagination .nav-links a.page-numbers:hover{background:#000}.main-meta-textcol-hover-white.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-white.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-white.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-white.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-white main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-white .post-navigation .nav-links a:hover,.main-meta-textcol-hover-white .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-white .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-white .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-white .featured-slider button.slick-arrow:hover::after{color:#fff}.main-meta-textcol-white .entry-meta,.main-meta-textcol-white .entry-cats,.main-meta-textcol-white .slider-text .entry-meta a,.main-meta-textcol-white .slider-text .entry-cats a,.main-meta-textcol-white .section-one-column-one .entry-cats a,.main-meta-textcol-white .section-three-column-one .entry-cats a,.main-meta-textcol-white #front-section-four .entry-cats a,.main-meta-textcol-white #front-section-four .entry-meta a,.main-meta-textcol-white .featured-slider .entry-cats a,.main-meta-textcol-white.single-post .entry-header .entry-cats a,.main-meta-textcol-white.blog .featured-slider .entry-cats a,.main-meta-textcol-white.blog .featured-slider .entry-meta a,.main-meta-textcol-white.blog .hentry .entry-cats a,.main-meta-textcol-white.single-post .entry-cats a,.main-meta-textcol-white.single-post .entry-tags a,.main-meta-textcol-white.single-post .entry-header .page-links a,.main-meta-textcol-white .post-page-numbers.current,.main-meta-textcol-white main .entry-content .pagebreak-links a,.main-meta-textcol-white .post-navigation .nav-links a,.main-meta-textcol-white .pagination .nav-links span.page-numbers,.main-meta-textcol-white .pagination .nav-links a.page-numbers,.main-meta-textcol-white.single-post .entry-header .page-links .number{color:#fff}.main-meta-bgcol-white .entry-cats a,.main-meta-bgcol-white .featured-slider .entry-cats a,.main-meta-bgcol-white .featured-slider .entry-meta a,.main-meta-bgcol-white .section-one-column-one .entry-cats a,.main-meta-bgcol-white .section-three-column-one .entry-cats a,.main-meta-bgcol-white #front-section-four .entry-cats a,.main-meta-bgcol-white.single-post .entry-cats a,.main-meta-bgcol-white.single-post .entry-tags a,.main-meta-bgcol-white.blog .hentry .entry-cats a,.main-meta-bgcol-white.blog .featured-slider .entry-cats a,.main-meta-bgcol-white.blog .featured-slider .entry-meta a,.main-meta-bgcol-white.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-white .post-page-numbers.current,.main-meta-bgcol-white .post-navigation .nav-links a,.main-meta-bgcol-white .pagebreak-links a,.main-meta-bgcol-white .pagination .nav-links span.page-numbers,.main-meta-bgcol-white .pagination .nav-links a.page-numbers{background:#fff}.main-meta-bgcol-white .gallery .slick-prev:before,.main-meta-bgcol-white .gallery .slick-next:before,.main-meta-bgcol-white .gallery .slick-dots li.slick-active button:before{color:#fff}.main-meta-bgcol-hover-white .entry-cats a:hover,.main-meta-bgcol-hover-white .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-white .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-white .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-white .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-white #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-white.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-white.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-white.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-white.single-post .entry-cats a:hover,.main-meta-bgcol-hover-white.single-post .entry-tags a:hover,.main-meta-bgcol-hover-white.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-white .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-white .pagebreak-links a:hover,.main-meta-bgcol-hover-white .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-white .pagination .nav-links a.page-numbers:hover{background:#fff}.main-meta-textcol-hover-grey.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-grey.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-grey.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-grey.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-grey main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-grey .post-navigation .nav-links a:hover,.main-meta-textcol-hover-grey .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-grey .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-grey .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-grey .featured-slider button.slick-arrow:hover::after{color:#e7e7eb}.main-meta-textcol-grey .entry-meta,.main-meta-textcol-grey .entry-cats,.main-meta-textcol-grey .slider-text .entry-meta a,.main-meta-textcol-grey .slider-text .entry-cats a,.main-meta-textcol-grey .section-one-column-one .entry-cats a,.main-meta-textcol-grey .section-three-column-one .entry-cats a,.main-meta-textcol-grey #front-section-four .entry-cats a,.main-meta-textcol-grey #front-section-four .entry-meta a,.main-meta-textcol-grey .featured-slider .entry-cats a,.main-meta-textcol-grey.single-post .entry-header .entry-cats a,.main-meta-textcol-grey.blog .featured-slider .entry-cats a,.main-meta-textcol-grey.blog .featured-slider .entry-meta a,.main-meta-textcol-grey.blog .hentry .entry-cats a,.main-meta-textcol-grey.single-post .entry-cats a,.main-meta-textcol-grey.single-post .entry-tags a,.main-meta-textcol-grey.single-post .entry-header .page-links a,.main-meta-textcol-grey .post-page-numbers.current,.main-meta-textcol-grey main .entry-content .pagebreak-links a,.main-meta-textcol-grey .post-navigation .nav-links a,.main-meta-textcol-grey .pagination .nav-links span.page-numbers,.main-meta-textcol-grey .pagination .nav-links a.page-numbers,.main-meta-textcol-grey.single-post .entry-header .page-links .number{color:#e7e7eb}.main-meta-bgcol-grey .entry-cats a,.main-meta-bgcol-grey .featured-slider .entry-cats a,.main-meta-bgcol-grey .featured-slider .entry-meta a,.main-meta-bgcol-grey .section-one-column-one .entry-cats a,.main-meta-bgcol-grey .section-three-column-one .entry-cats a,.main-meta-bgcol-grey #front-section-four .entry-cats a,.main-meta-bgcol-grey.single-post .entry-cats a,.main-meta-bgcol-grey.single-post .entry-tags a,.main-meta-bgcol-grey.blog .hentry .entry-cats a,.main-meta-bgcol-grey.blog .featured-slider .entry-cats a,.main-meta-bgcol-grey.blog .featured-slider .entry-meta a,.main-meta-bgcol-grey.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-grey .post-page-numbers.current,.main-meta-bgcol-grey .post-navigation .nav-links a,.main-meta-bgcol-grey .pagebreak-links a,.main-meta-bgcol-grey .pagination .nav-links span.page-numbers,.main-meta-bgcol-grey .pagination .nav-links a.page-numbers{background:#e7e7eb}.main-meta-bgcol-grey .gallery .slick-prev:before,.main-meta-bgcol-grey .gallery .slick-next:before,.main-meta-bgcol-grey .gallery .slick-dots li.slick-active button:before{color:#e7e7eb}.main-meta-bgcol-hover-grey .entry-cats a:hover,.main-meta-bgcol-hover-grey .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-grey .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-grey .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-grey .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-grey #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-grey.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-grey.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-grey.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-grey.single-post .entry-cats a:hover,.main-meta-bgcol-hover-grey.single-post .entry-tags a:hover,.main-meta-bgcol-hover-grey.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-grey .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-grey .pagebreak-links a:hover,.main-meta-bgcol-hover-grey .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-grey .pagination .nav-links a.page-numbers:hover{background:#e7e7eb}.main-meta-textcol-hover-darkgrey.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-darkgrey.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-darkgrey.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-darkgrey.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-darkgrey main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-darkgrey .post-navigation .nav-links a:hover,.main-meta-textcol-hover-darkgrey .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-darkgrey .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-darkgrey .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-darkgrey .featured-slider button.slick-arrow:hover::after{color:#1a1a1a}.main-meta-textcol-darkgrey .entry-meta,.main-meta-textcol-darkgrey .entry-cats,.main-meta-textcol-darkgrey .slider-text .entry-meta a,.main-meta-textcol-darkgrey .slider-text .entry-cats a,.main-meta-textcol-darkgrey .section-one-column-one .entry-cats a,.main-meta-textcol-darkgrey .section-three-column-one .entry-cats a,.main-meta-textcol-darkgrey #front-section-four .entry-cats a,.main-meta-textcol-darkgrey #front-section-four .entry-meta a,.main-meta-textcol-darkgrey .featured-slider .entry-cats a,.main-meta-textcol-darkgrey.single-post .entry-header .entry-cats a,.main-meta-textcol-darkgrey.blog .featured-slider .entry-cats a,.main-meta-textcol-darkgrey.blog .featured-slider .entry-meta a,.main-meta-textcol-darkgrey.blog .hentry .entry-cats a,.main-meta-textcol-darkgrey.single-post .entry-cats a,.main-meta-textcol-darkgrey.single-post .entry-tags a,.main-meta-textcol-darkgrey.single-post .entry-header .page-links a,.main-meta-textcol-darkgrey .post-page-numbers.current,.main-meta-textcol-darkgrey main .entry-content .pagebreak-links a,.main-meta-textcol-darkgrey .post-navigation .nav-links a,.main-meta-textcol-darkgrey .pagination .nav-links span.page-numbers,.main-meta-textcol-darkgrey .pagination .nav-links a.page-numbers,.main-meta-textcol-darkgrey.single-post .entry-header .page-links .number{color:#1a1a1a}.main-meta-bgcol-darkgrey .entry-cats a,.main-meta-bgcol-darkgrey .featured-slider .entry-cats a,.main-meta-bgcol-darkgrey .featured-slider .entry-meta a,.main-meta-bgcol-darkgrey .section-one-column-one .entry-cats a,.main-meta-bgcol-darkgrey .section-three-column-one .entry-cats a,.main-meta-bgcol-darkgrey #front-section-four .entry-cats a,.main-meta-bgcol-darkgrey.single-post .entry-cats a,.main-meta-bgcol-darkgrey.single-post .entry-tags a,.main-meta-bgcol-darkgrey.blog .hentry .entry-cats a,.main-meta-bgcol-darkgrey.blog .featured-slider .entry-cats a,.main-meta-bgcol-darkgrey.blog .featured-slider .entry-meta a,.main-meta-bgcol-darkgrey.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-darkgrey .post-page-numbers.current,.main-meta-bgcol-darkgrey .post-navigation .nav-links a,.main-meta-bgcol-darkgrey .pagebreak-links a,.main-meta-bgcol-darkgrey .pagination .nav-links span.page-numbers,.main-meta-bgcol-darkgrey .pagination .nav-links a.page-numbers{background:#1a1a1a}.main-meta-bgcol-darkgrey .gallery .slick-prev:before,.main-meta-bgcol-darkgrey .gallery .slick-next:before,.main-meta-bgcol-darkgrey .gallery .slick-dots li.slick-active button:before{color:#1a1a1a}.main-meta-bgcol-hover-darkgrey .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-darkgrey .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-darkgrey.single-post .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey.single-post .entry-tags a:hover,.main-meta-bgcol-hover-darkgrey.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-darkgrey .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-darkgrey .pagebreak-links a:hover,.main-meta-bgcol-hover-darkgrey .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-darkgrey .pagination .nav-links a.page-numbers:hover{background:#1a1a1a}.main-meta-textcol-hover-blue.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-blue.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-blue.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-blue.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-blue main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-blue .post-navigation .nav-links a:hover,.main-meta-textcol-hover-blue .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-blue .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-blue .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-blue .featured-slider button.slick-arrow:hover::after{color:#06f}.main-meta-textcol-blue .entry-meta,.main-meta-textcol-blue .entry-cats,.main-meta-textcol-blue .slider-text .entry-meta a,.main-meta-textcol-blue .slider-text .entry-cats a,.main-meta-textcol-blue .section-one-column-one .entry-cats a,.main-meta-textcol-blue .section-three-column-one .entry-cats a,.main-meta-textcol-blue #front-section-four .entry-cats a,.main-meta-textcol-blue #front-section-four .entry-meta a,.main-meta-textcol-blue .featured-slider .entry-cats a,.main-meta-textcol-blue.single-post .entry-header .entry-cats a,.main-meta-textcol-blue.blog .featured-slider .entry-cats a,.main-meta-textcol-blue.blog .featured-slider .entry-meta a,.main-meta-textcol-blue.blog .hentry .entry-cats a,.main-meta-textcol-blue.single-post .entry-cats a,.main-meta-textcol-blue.single-post .entry-tags a,.main-meta-textcol-blue.single-post .entry-header .page-links a,.main-meta-textcol-blue .post-page-numbers.current,.main-meta-textcol-blue main .entry-content .pagebreak-links a,.main-meta-textcol-blue .post-navigation .nav-links a,.main-meta-textcol-blue .pagination .nav-links span.page-numbers,.main-meta-textcol-blue .pagination .nav-links a.page-numbers,.main-meta-textcol-blue.single-post .entry-header .page-links .number{color:#06f}.main-meta-bgcol-blue .entry-cats a,.main-meta-bgcol-blue .featured-slider .entry-cats a,.main-meta-bgcol-blue .featured-slider .entry-meta a,.main-meta-bgcol-blue .section-one-column-one .entry-cats a,.main-meta-bgcol-blue .section-three-column-one .entry-cats a,.main-meta-bgcol-blue #front-section-four .entry-cats a,.main-meta-bgcol-blue.single-post .entry-cats a,.main-meta-bgcol-blue.single-post .entry-tags a,.main-meta-bgcol-blue.blog .hentry .entry-cats a,.main-meta-bgcol-blue.blog .featured-slider .entry-cats a,.main-meta-bgcol-blue.blog .featured-slider .entry-meta a,.main-meta-bgcol-blue.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-blue .post-page-numbers.current,.main-meta-bgcol-blue .post-navigation .nav-links a,.main-meta-bgcol-blue .pagebreak-links a,.main-meta-bgcol-blue .pagination .nav-links span.page-numbers,.main-meta-bgcol-blue .pagination .nav-links a.page-numbers{background:#06f}.main-meta-bgcol-blue .gallery .slick-prev:before,.main-meta-bgcol-blue .gallery .slick-next:before,.main-meta-bgcol-blue .gallery .slick-dots li.slick-active button:before{color:#06f}.main-meta-bgcol-hover-blue .entry-cats a:hover,.main-meta-bgcol-hover-blue .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-blue .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-blue .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-blue .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-blue #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-blue.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-blue.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-blue.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-blue.single-post .entry-cats a:hover,.main-meta-bgcol-hover-blue.single-post .entry-tags a:hover,.main-meta-bgcol-hover-blue.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-blue .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-blue .pagebreak-links a:hover,.main-meta-bgcol-hover-blue .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-blue .pagination .nav-links a.page-numbers:hover{background:#06f}.main-meta-textcol-hover-red.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-red.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-red.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-red.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-red main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-red .post-navigation .nav-links a:hover,.main-meta-textcol-hover-red .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-red .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-red .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-red .featured-slider button.slick-arrow:hover::after{color:#d7464d}.main-meta-textcol-red .entry-meta,.main-meta-textcol-red .entry-cats,.main-meta-textcol-red .slider-text .entry-meta a,.main-meta-textcol-red .slider-text .entry-cats a,.main-meta-textcol-red .section-one-column-one .entry-cats a,.main-meta-textcol-red .section-three-column-one .entry-cats a,.main-meta-textcol-red #front-section-four .entry-cats a,.main-meta-textcol-red #front-section-four .entry-meta a,.main-meta-textcol-red .featured-slider .entry-cats a,.main-meta-textcol-red.single-post .entry-header .entry-cats a,.main-meta-textcol-red.blog .featured-slider .entry-cats a,.main-meta-textcol-red.blog .featured-slider .entry-meta a,.main-meta-textcol-red.blog .hentry .entry-cats a,.main-meta-textcol-red.single-post .entry-cats a,.main-meta-textcol-red.single-post .entry-tags a,.main-meta-textcol-red.single-post .entry-header .page-links a,.main-meta-textcol-red .post-page-numbers.current,.main-meta-textcol-red main .entry-content .pagebreak-links a,.main-meta-textcol-red .post-navigation .nav-links a,.main-meta-textcol-red .pagination .nav-links span.page-numbers,.main-meta-textcol-red .pagination .nav-links a.page-numbers,.main-meta-textcol-red.single-post .entry-header .page-links .number{color:#d7464d}.main-meta-bgcol-red .entry-cats a,.main-meta-bgcol-red .featured-slider .entry-cats a,.main-meta-bgcol-red .featured-slider .entry-meta a,.main-meta-bgcol-red .section-one-column-one .entry-cats a,.main-meta-bgcol-red .section-three-column-one .entry-cats a,.main-meta-bgcol-red #front-section-four .entry-cats a,.main-meta-bgcol-red.single-post .entry-cats a,.main-meta-bgcol-red.single-post .entry-tags a,.main-meta-bgcol-red.blog .hentry .entry-cats a,.main-meta-bgcol-red.blog .featured-slider .entry-cats a,.main-meta-bgcol-red.blog .featured-slider .entry-meta a,.main-meta-bgcol-red.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-red .post-page-numbers.current,.main-meta-bgcol-red .post-navigation .nav-links a,.main-meta-bgcol-red .pagebreak-links a,.main-meta-bgcol-red .pagination .nav-links span.page-numbers,.main-meta-bgcol-red .pagination .nav-links a.page-numbers{background:#d7464d}.main-meta-bgcol-red .gallery .slick-prev:before,.main-meta-bgcol-red .gallery .slick-next:before,.main-meta-bgcol-red .gallery .slick-dots li.slick-active button:before{color:#d7464d}.main-meta-bgcol-hover-red .entry-cats a:hover,.main-meta-bgcol-hover-red .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-red .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-red .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-red .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-red #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-red.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-red.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-red.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-red.single-post .entry-cats a:hover,.main-meta-bgcol-hover-red.single-post .entry-tags a:hover,.main-meta-bgcol-hover-red.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-red .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-red .pagebreak-links a:hover,.main-meta-bgcol-hover-red .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-red .pagination .nav-links a.page-numbers:hover{background:#d7464d}.main-meta-textcol-hover-yellow.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-yellow.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-yellow.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-yellow.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-yellow main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-yellow .post-navigation .nav-links a:hover,.main-meta-textcol-hover-yellow .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-yellow .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-yellow .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-yellow .featured-slider button.slick-arrow:hover::after{color:#e7b547}.main-meta-textcol-yellow .entry-meta,.main-meta-textcol-yellow .entry-cats,.main-meta-textcol-yellow .slider-text .entry-meta a,.main-meta-textcol-yellow .slider-text .entry-cats a,.main-meta-textcol-yellow .section-one-column-one .entry-cats a,.main-meta-textcol-yellow .section-three-column-one .entry-cats a,.main-meta-textcol-yellow #front-section-four .entry-cats a,.main-meta-textcol-yellow #front-section-four .entry-meta a,.main-meta-textcol-yellow .featured-slider .entry-cats a,.main-meta-textcol-yellow.single-post .entry-header .entry-cats a,.main-meta-textcol-yellow.blog .featured-slider .entry-cats a,.main-meta-textcol-yellow.blog .featured-slider .entry-meta a,.main-meta-textcol-yellow.blog .hentry .entry-cats a,.main-meta-textcol-yellow.single-post .entry-cats a,.main-meta-textcol-yellow.single-post .entry-tags a,.main-meta-textcol-yellow.single-post .entry-header .page-links a,.main-meta-textcol-yellow .post-page-numbers.current,.main-meta-textcol-yellow main .entry-content .pagebreak-links a,.main-meta-textcol-yellow .post-navigation .nav-links a,.main-meta-textcol-yellow .pagination .nav-links span.page-numbers,.main-meta-textcol-yellow .pagination .nav-links a.page-numbers,.main-meta-textcol-yellow.single-post .entry-header .page-links .number{color:#e7b547}.main-meta-bgcol-yellow .entry-cats a,.main-meta-bgcol-yellow .featured-slider .entry-cats a,.main-meta-bgcol-yellow .featured-slider .entry-meta a,.main-meta-bgcol-yellow .section-one-column-one .entry-cats a,.main-meta-bgcol-yellow .section-three-column-one .entry-cats a,.main-meta-bgcol-yellow #front-section-four .entry-cats a,.main-meta-bgcol-yellow.single-post .entry-cats a,.main-meta-bgcol-yellow.single-post .entry-tags a,.main-meta-bgcol-yellow.blog .hentry .entry-cats a,.main-meta-bgcol-yellow.blog .featured-slider .entry-cats a,.main-meta-bgcol-yellow.blog .featured-slider .entry-meta a,.main-meta-bgcol-yellow.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-yellow .post-page-numbers.current,.main-meta-bgcol-yellow .post-navigation .nav-links a,.main-meta-bgcol-yellow .pagebreak-links a,.main-meta-bgcol-yellow .pagination .nav-links span.page-numbers,.main-meta-bgcol-yellow .pagination .nav-links a.page-numbers{background:#e7b547}.main-meta-bgcol-yellow .gallery .slick-prev:before,.main-meta-bgcol-yellow .gallery .slick-next:before,.main-meta-bgcol-yellow .gallery .slick-dots li.slick-active button:before{color:#e7b547}.main-meta-bgcol-hover-yellow .entry-cats a:hover,.main-meta-bgcol-hover-yellow .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-yellow .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-yellow .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-yellow .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-yellow #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-yellow.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-yellow.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-yellow.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-yellow.single-post .entry-cats a:hover,.main-meta-bgcol-hover-yellow.single-post .entry-tags a:hover,.main-meta-bgcol-hover-yellow.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-yellow .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-yellow .pagebreak-links a:hover,.main-meta-bgcol-hover-yellow .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-yellow .pagination .nav-links a.page-numbers:hover{background:#e7b547}.main-meta-textcol-hover-green.single-post .entry-header .entry-cats a:hover,.main-meta-textcol-hover-green.blog .featured-slider .entry-cats a:hover,.main-meta-textcol-hover-green.blog .featured-slider .entry-meta a:hover,.main-meta-textcol-hover-green.blog .hentry .entry-cats a:hover,.main-meta-textcol-hover-green main .entry-content .pagebreak-links a:hover,.main-meta-textcol-hover-green .post-navigation .nav-links a:hover,.main-meta-textcol-hover-green .pagination .nav-links span.page-numbers:hover,.main-meta-textcol-hover-green .pagination .nav-links a.page-numbers:hover,.main-meta-textcol-hover-green .featured-slider button.slick-arrow:focus::after,.main-meta-textcol-hover-green .featured-slider button.slick-arrow:hover::after{color:#85c066}.main-meta-textcol-green .entry-meta,.main-meta-textcol-green .entry-cats,.main-meta-textcol-green .slider-text .entry-meta a,.main-meta-textcol-green .slider-text .entry-cats a,.main-meta-textcol-green .section-one-column-one .entry-cats a,.main-meta-textcol-green .section-three-column-one .entry-cats a,.main-meta-textcol-green #front-section-four .entry-cats a,.main-meta-textcol-green #front-section-four .entry-meta a,.main-meta-textcol-green .featured-slider .entry-cats a,.main-meta-textcol-green.single-post .entry-header .entry-cats a,.main-meta-textcol-green.blog .featured-slider .entry-cats a,.main-meta-textcol-green.blog .featured-slider .entry-meta a,.main-meta-textcol-green.blog .hentry .entry-cats a,.main-meta-textcol-green.single-post .entry-cats a,.main-meta-textcol-green.single-post .entry-tags a,.main-meta-textcol-green.single-post .entry-header .page-links a,.main-meta-textcol-green .post-page-numbers.current,.main-meta-textcol-green main .entry-content .pagebreak-links a,.main-meta-textcol-green .post-navigation .nav-links a,.main-meta-textcol-green .pagination .nav-links span.page-numbers,.main-meta-textcol-green .pagination .nav-links a.page-numbers,.main-meta-textcol-green.single-post .entry-header .page-links .number{color:#85c066}.main-meta-bgcol-green .entry-cats a,.main-meta-bgcol-green .featured-slider .entry-cats a,.main-meta-bgcol-green .featured-slider .entry-meta a,.main-meta-bgcol-green .section-one-column-one .entry-cats a,.main-meta-bgcol-green .section-three-column-one .entry-cats a,.main-meta-bgcol-green #front-section-four .entry-cats a,.main-meta-bgcol-green.single-post .entry-cats a,.main-meta-bgcol-green.single-post .entry-tags a,.main-meta-bgcol-green.blog .hentry .entry-cats a,.main-meta-bgcol-green.blog .featured-slider .entry-cats a,.main-meta-bgcol-green.blog .featured-slider .entry-meta a,.main-meta-bgcol-green.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a,.main-meta-bgcol-green .post-page-numbers.current,.main-meta-bgcol-green .post-navigation .nav-links a,.main-meta-bgcol-green .pagebreak-links a,.main-meta-bgcol-green .pagination .nav-links span.page-numbers,.main-meta-bgcol-green .pagination .nav-links a.page-numbers{background:#85c066}.main-meta-bgcol-green .gallery .slick-prev:before,.main-meta-bgcol-green .gallery .slick-next:before,.main-meta-bgcol-green .gallery .slick-dots li.slick-active button:before{color:#85c066}.main-meta-bgcol-hover-green .entry-cats a:hover,.main-meta-bgcol-hover-green .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-green .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-green .section-one-column-one .entry-cats a:hover,.main-meta-bgcol-hover-green .section-three-column-one .entry-cats a:hover,.main-meta-bgcol-hover-green #front-section-four .entry-cats a:hover,.main-meta-bgcol-hover-green.blog .hentry .entry-cats a:hover,.main-meta-bgcol-hover-green.blog .featured-slider .entry-cats a:hover,.main-meta-bgcol-hover-green.blog .featured-slider .entry-meta a:hover,.main-meta-bgcol-hover-green.single-post .entry-cats a:hover,.main-meta-bgcol-hover-green.single-post .entry-tags a:hover,.main-meta-bgcol-hover-green.blog #primary .hentry.has-post-thumbnail:nth-child(4n+1) .entry-cats a:hover,.main-meta-bgcol-hover-green .post-navigation .nav-links a:hover,.main-meta-bgcol-hover-green .pagebreak-links a:hover,.main-meta-bgcol-hover-green .pagination .nav-links span.page-numbers:hover,.main-meta-bgcol-hover-green .pagination .nav-links a.page-numbers:hover{background:#85c066}.main-listitem-main main ul li:before{color:#f80}.main-quoteborder-main blockquote{border-color:#f80}.main-listitem-second main ul li:before{color:#672082}.main-quoteborder-second blockquote{border-color:#672082}.main-listitem-third main ul li:before{color:#698bc1}.main-quoteborder-third blockquote{border-color:#698bc1}.main-listitem-four main ul li:before{color:#148f93}.main-quoteborder-four blockquote{border-color:#148f93}.main-listitem-uspirates main ul li:before{color:#B127AF}.main-quoteborder-uspirates blockquote{border-color:#B127AF}.main-listitem-tkpirates main ul li:before{color:#00B5B1}.main-quoteborder-tkpirates blockquote{border-color:#00B5B1}.main-listitem-chpirates main ul li:before{color:#F9B200}.main-quoteborder-chpirates blockquote{border-color:#F9B200}.main-listitem-ispirates main ul li:before{color:#51297e}.main-quoteborder-ispirates blockquote{border-color:#51297e}.main-listitem-black main ul li:before{color:#000}.main-quoteborder-black blockquote{border-color:#000}.main-listitem-white main ul li:before{color:#fff}.main-quoteborder-white blockquote{border-color:#fff}.main-listitem-grey main ul li:before{color:#e7e7eb}.main-quoteborder-grey blockquote{border-color:#e7e7eb}.main-listitem-darkgrey main ul li:before{color:#1a1a1a}.main-quoteborder-darkgrey blockquote{border-color:#1a1a1a}.main-listitem-blue main ul li:before{color:#06f}.main-quoteborder-blue blockquote{border-color:#06f}.main-listitem-red main ul li:before{color:#d7464d}.main-quoteborder-red blockquote{border-color:#d7464d}.main-listitem-yellow main ul li:before{color:#e7b547}.main-quoteborder-yellow blockquote{border-color:#e7b547}.main-listitem-green main ul li:before{color:#85c066}.main-quoteborder-green blockquote{border-color:#85c066}.main-table-textcol-main table,.main-table-textcol-main tr,.main-table-textcol-main th,.main-table-textcol-main td{color:#f80}.main-table-bgcol-main table{background-color:#f80}.main-table-bgcol-head-main table thead,.main-table-bgcol-head-main th{background-color:#f80}.main-table-bgcol-odd-main tr td{background-color:transparent}.main-table-bgcol-odd-main table.long tr:nth-child(odd) td,.main-table-bgcol-odd-main tr:nth-child(odd) td{background-color:#f80}.main-table-textcol-second table,.main-table-textcol-second tr,.main-table-textcol-second th,.main-table-textcol-second td{color:#672082}.main-table-bgcol-second table{background-color:#672082}.main-table-bgcol-head-second table thead,.main-table-bgcol-head-second th{background-color:#672082}.main-table-bgcol-odd-second tr td{background-color:transparent}.main-table-bgcol-odd-second table.long tr:nth-child(odd) td,.main-table-bgcol-odd-second tr:nth-child(odd) td{background-color:#672082}.main-table-textcol-third table,.main-table-textcol-third tr,.main-table-textcol-third th,.main-table-textcol-third td{color:#698bc1}.main-table-bgcol-third table{background-color:#698bc1}.main-table-bgcol-head-third table thead,.main-table-bgcol-head-third th{background-color:#698bc1}.main-table-bgcol-odd-third tr td{background-color:transparent}.main-table-bgcol-odd-third table.long tr:nth-child(odd) td,.main-table-bgcol-odd-third tr:nth-child(odd) td{background-color:#698bc1}.main-table-textcol-four table,.main-table-textcol-four tr,.main-table-textcol-four th,.main-table-textcol-four td{color:#148f93}.main-table-bgcol-four table{background-color:#148f93}.main-table-bgcol-head-four table thead,.main-table-bgcol-head-four th{background-color:#148f93}.main-table-bgcol-odd-four tr td{background-color:transparent}.main-table-bgcol-odd-four table.long tr:nth-child(odd) td,.main-table-bgcol-odd-four tr:nth-child(odd) td{background-color:#148f93}.main-table-textcol-uspirates table,.main-table-textcol-uspirates tr,.main-table-textcol-uspirates th,.main-table-textcol-uspirates td{color:#B127AF}.main-table-bgcol-uspirates table{background-color:#B127AF}.main-table-bgcol-head-uspirates table thead,.main-table-bgcol-head-uspirates th{background-color:#B127AF}.main-table-bgcol-odd-uspirates tr td{background-color:transparent}.main-table-bgcol-odd-uspirates table.long tr:nth-child(odd) td,.main-table-bgcol-odd-uspirates tr:nth-child(odd) td{background-color:#B127AF}.main-table-textcol-tkpirates table,.main-table-textcol-tkpirates tr,.main-table-textcol-tkpirates th,.main-table-textcol-tkpirates td{color:#00B5B1}.main-table-bgcol-tkpirates table{background-color:#00B5B1}.main-table-bgcol-head-tkpirates table thead,.main-table-bgcol-head-tkpirates th{background-color:#00B5B1}.main-table-bgcol-odd-tkpirates tr td{background-color:transparent}.main-table-bgcol-odd-tkpirates table.long tr:nth-child(odd) td,.main-table-bgcol-odd-tkpirates tr:nth-child(odd) td{background-color:#00B5B1}.main-table-textcol-chpirates table,.main-table-textcol-chpirates tr,.main-table-textcol-chpirates th,.main-table-textcol-chpirates td{color:#F9B200}.main-table-bgcol-chpirates table{background-color:#F9B200}.main-table-bgcol-head-chpirates table thead,.main-table-bgcol-head-chpirates th{background-color:#F9B200}.main-table-bgcol-odd-chpirates tr td{background-color:transparent}.main-table-bgcol-odd-chpirates table.long tr:nth-child(odd) td,.main-table-bgcol-odd-chpirates tr:nth-child(odd) td{background-color:#F9B200}.main-table-textcol-ispirates table,.main-table-textcol-ispirates tr,.main-table-textcol-ispirates th,.main-table-textcol-ispirates td{color:#51297e}.main-table-bgcol-ispirates table{background-color:#51297e}.main-table-bgcol-head-ispirates table thead,.main-table-bgcol-head-ispirates th{background-color:#51297e}.main-table-bgcol-odd-ispirates tr td{background-color:transparent}.main-table-bgcol-odd-ispirates table.long tr:nth-child(odd) td,.main-table-bgcol-odd-ispirates tr:nth-child(odd) td{background-color:#51297e}.main-table-textcol-black table,.main-table-textcol-black tr,.main-table-textcol-black th,.main-table-textcol-black td{color:#000}.main-table-bgcol-black table{background-color:#000}.main-table-bgcol-head-black table thead,.main-table-bgcol-head-black th{background-color:#000}.main-table-bgcol-odd-black tr td{background-color:transparent}.main-table-bgcol-odd-black table.long tr:nth-child(odd) td,.main-table-bgcol-odd-black tr:nth-child(odd) td{background-color:#000}.main-table-textcol-white table,.main-table-textcol-white tr,.main-table-textcol-white th,.main-table-textcol-white td{color:#fff}.main-table-bgcol-white table{background-color:#fff}.main-table-bgcol-head-white table thead,.main-table-bgcol-head-white th{background-color:#fff}.main-table-bgcol-odd-white tr td{background-color:transparent}.main-table-bgcol-odd-white table.long tr:nth-child(odd) td,.main-table-bgcol-odd-white tr:nth-child(odd) td{background-color:#fff}.main-table-textcol-grey table,.main-table-textcol-grey tr,.main-table-textcol-grey th,.main-table-textcol-grey td{color:#e7e7eb}.main-table-bgcol-grey table{background-color:#e7e7eb}.main-table-bgcol-head-grey table thead,.main-table-bgcol-head-grey th{background-color:#e7e7eb}.main-table-bgcol-odd-grey tr td{background-color:transparent}.main-table-bgcol-odd-grey table.long tr:nth-child(odd) td,.main-table-bgcol-odd-grey tr:nth-child(odd) td{background-color:#e7e7eb}.main-table-textcol-darkgrey table,.main-table-textcol-darkgrey tr,.main-table-textcol-darkgrey th,.main-table-textcol-darkgrey td{color:#1a1a1a}.main-table-bgcol-darkgrey table{background-color:#1a1a1a}.main-table-bgcol-head-darkgrey table thead,.main-table-bgcol-head-darkgrey th{background-color:#1a1a1a}.main-table-bgcol-odd-darkgrey tr td{background-color:transparent}.main-table-bgcol-odd-darkgrey table.long tr:nth-child(odd) td,.main-table-bgcol-odd-darkgrey tr:nth-child(odd) td{background-color:#1a1a1a}.main-table-textcol-blue table,.main-table-textcol-blue tr,.main-table-textcol-blue th,.main-table-textcol-blue td{color:#06f}.main-table-bgcol-blue table{background-color:#06f}.main-table-bgcol-head-blue table thead,.main-table-bgcol-head-blue th{background-color:#06f}.main-table-bgcol-odd-blue tr td{background-color:transparent}.main-table-bgcol-odd-blue table.long tr:nth-child(odd) td,.main-table-bgcol-odd-blue tr:nth-child(odd) td{background-color:#06f}.main-table-textcol-red table,.main-table-textcol-red tr,.main-table-textcol-red th,.main-table-textcol-red td{color:#d7464d}.main-table-bgcol-red table{background-color:#d7464d}.main-table-bgcol-head-red table thead,.main-table-bgcol-head-red th{background-color:#d7464d}.main-table-bgcol-odd-red tr td{background-color:transparent}.main-table-bgcol-odd-red table.long tr:nth-child(odd) td,.main-table-bgcol-odd-red tr:nth-child(odd) td{background-color:#d7464d}.main-table-textcol-yellow table,.main-table-textcol-yellow tr,.main-table-textcol-yellow th,.main-table-textcol-yellow td{color:#e7b547}.main-table-bgcol-yellow table{background-color:#e7b547}.main-table-bgcol-head-yellow table thead,.main-table-bgcol-head-yellow th{background-color:#e7b547}.main-table-bgcol-odd-yellow tr td{background-color:transparent}.main-table-bgcol-odd-yellow table.long tr:nth-child(odd) td,.main-table-bgcol-odd-yellow tr:nth-child(odd) td{background-color:#e7b547}.main-table-textcol-green table,.main-table-textcol-green tr,.main-table-textcol-green th,.main-table-textcol-green td{color:#85c066}.main-table-bgcol-green table{background-color:#85c066}.main-table-bgcol-head-green table thead,.main-table-bgcol-head-green th{background-color:#85c066}.main-table-bgcol-odd-green tr td{background-color:transparent}.main-table-bgcol-odd-green table.long tr:nth-child(odd) td,.main-table-bgcol-odd-green tr:nth-child(odd) td{background-color:#85c066}.footer-bgcol-main #colophon{background-color:#f80;border-color:#f80}.footer-headlinecol-main #colophon p.title-footer,.footer-headlinecol-main #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-main #colophon #footer-social h2.socialmedia,.footer-headlinecol-main #colophon h1,.footer-headlinecol-main #colophon h2,.footer-headlinecol-main #colophon h3,.footer-headlinecol-main #colophon h4,.footer-headlinecol-main #colophon h5,.footer-headlinecol-main #colophon h6{color:#f80}.footer-textcol-main #colophon,.footer-textcol-main #colophon p,.footer-textcol-main #colophon #site-info{color:#f80}.footer-linkcol-main #colophon p a,.footer-linkcol-main #colophon #site-info a,.footer-linkcol-main #colophon .footer-menu ul a{color:#f80}.footer-linkhovercol-main #colophon p a:hover,.footer-linkhovercol-main #colophon #site-info a:hover,.footer-linkhovercol-main #colophon .footer-menu ul a:hover{color:#f80}.footer-bgcol-second #colophon{background-color:#672082;border-color:#672082}.footer-headlinecol-second #colophon p.title-footer,.footer-headlinecol-second #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-second #colophon #footer-social h2.socialmedia,.footer-headlinecol-second #colophon h1,.footer-headlinecol-second #colophon h2,.footer-headlinecol-second #colophon h3,.footer-headlinecol-second #colophon h4,.footer-headlinecol-second #colophon h5,.footer-headlinecol-second #colophon h6{color:#672082}.footer-textcol-second #colophon,.footer-textcol-second #colophon p,.footer-textcol-second #colophon #site-info{color:#672082}.footer-linkcol-second #colophon p a,.footer-linkcol-second #colophon #site-info a,.footer-linkcol-second #colophon .footer-menu ul a{color:#672082}.footer-linkhovercol-second #colophon p a:hover,.footer-linkhovercol-second #colophon #site-info a:hover,.footer-linkhovercol-second #colophon .footer-menu ul a:hover{color:#672082}.footer-bgcol-third #colophon{background-color:#698bc1;border-color:#698bc1}.footer-headlinecol-third #colophon p.title-footer,.footer-headlinecol-third #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-third #colophon #footer-social h2.socialmedia,.footer-headlinecol-third #colophon h1,.footer-headlinecol-third #colophon h2,.footer-headlinecol-third #colophon h3,.footer-headlinecol-third #colophon h4,.footer-headlinecol-third #colophon h5,.footer-headlinecol-third #colophon h6{color:#698bc1}.footer-textcol-third #colophon,.footer-textcol-third #colophon p,.footer-textcol-third #colophon #site-info{color:#698bc1}.footer-linkcol-third #colophon p a,.footer-linkcol-third #colophon #site-info a,.footer-linkcol-third #colophon .footer-menu ul a{color:#698bc1}.footer-linkhovercol-third #colophon p a:hover,.footer-linkhovercol-third #colophon #site-info a:hover,.footer-linkhovercol-third #colophon .footer-menu ul a:hover{color:#698bc1}.footer-bgcol-four #colophon{background-color:#148f93;border-color:#148f93}.footer-headlinecol-four #colophon p.title-footer,.footer-headlinecol-four #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-four #colophon #footer-social h2.socialmedia,.footer-headlinecol-four #colophon h1,.footer-headlinecol-four #colophon h2,.footer-headlinecol-four #colophon h3,.footer-headlinecol-four #colophon h4,.footer-headlinecol-four #colophon h5,.footer-headlinecol-four #colophon h6{color:#148f93}.footer-textcol-four #colophon,.footer-textcol-four #colophon p,.footer-textcol-four #colophon #site-info{color:#148f93}.footer-linkcol-four #colophon p a,.footer-linkcol-four #colophon #site-info a,.footer-linkcol-four #colophon .footer-menu ul a{color:#148f93}.footer-linkhovercol-four #colophon p a:hover,.footer-linkhovercol-four #colophon #site-info a:hover,.footer-linkhovercol-four #colophon .footer-menu ul a:hover{color:#148f93}.footer-bgcol-uspirates #colophon{background-color:#B127AF;border-color:#B127AF}.footer-headlinecol-uspirates #colophon p.title-footer,.footer-headlinecol-uspirates #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-uspirates #colophon #footer-social h2.socialmedia,.footer-headlinecol-uspirates #colophon h1,.footer-headlinecol-uspirates #colophon h2,.footer-headlinecol-uspirates #colophon h3,.footer-headlinecol-uspirates #colophon h4,.footer-headlinecol-uspirates #colophon h5,.footer-headlinecol-uspirates #colophon h6{color:#B127AF}.footer-textcol-uspirates #colophon,.footer-textcol-uspirates #colophon p,.footer-textcol-uspirates #colophon #site-info{color:#B127AF}.footer-linkcol-uspirates #colophon p a,.footer-linkcol-uspirates #colophon #site-info a,.footer-linkcol-uspirates #colophon .footer-menu ul a{color:#B127AF}.footer-linkhovercol-uspirates #colophon p a:hover,.footer-linkhovercol-uspirates #colophon #site-info a:hover,.footer-linkhovercol-uspirates #colophon .footer-menu ul a:hover{color:#B127AF}.footer-bgcol-tkpirates #colophon{background-color:#00B5B1;border-color:#00B5B1}.footer-headlinecol-tkpirates #colophon p.title-footer,.footer-headlinecol-tkpirates #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-tkpirates #colophon #footer-social h2.socialmedia,.footer-headlinecol-tkpirates #colophon h1,.footer-headlinecol-tkpirates #colophon h2,.footer-headlinecol-tkpirates #colophon h3,.footer-headlinecol-tkpirates #colophon h4,.footer-headlinecol-tkpirates #colophon h5,.footer-headlinecol-tkpirates #colophon h6{color:#00B5B1}.footer-textcol-tkpirates #colophon,.footer-textcol-tkpirates #colophon p,.footer-textcol-tkpirates #colophon #site-info{color:#00B5B1}.footer-linkcol-tkpirates #colophon p a,.footer-linkcol-tkpirates #colophon #site-info a,.footer-linkcol-tkpirates #colophon .footer-menu ul a{color:#00B5B1}.footer-linkhovercol-tkpirates #colophon p a:hover,.footer-linkhovercol-tkpirates #colophon #site-info a:hover,.footer-linkhovercol-tkpirates #colophon .footer-menu ul a:hover{color:#00B5B1}.footer-bgcol-chpirates #colophon{background-color:#F9B200;border-color:#F9B200}.footer-headlinecol-chpirates #colophon p.title-footer,.footer-headlinecol-chpirates #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-chpirates #colophon #footer-social h2.socialmedia,.footer-headlinecol-chpirates #colophon h1,.footer-headlinecol-chpirates #colophon h2,.footer-headlinecol-chpirates #colophon h3,.footer-headlinecol-chpirates #colophon h4,.footer-headlinecol-chpirates #colophon h5,.footer-headlinecol-chpirates #colophon h6{color:#F9B200}.footer-textcol-chpirates #colophon,.footer-textcol-chpirates #colophon p,.footer-textcol-chpirates #colophon #site-info{color:#F9B200}.footer-linkcol-chpirates #colophon p a,.footer-linkcol-chpirates #colophon #site-info a,.footer-linkcol-chpirates #colophon .footer-menu ul a{color:#F9B200}.footer-linkhovercol-chpirates #colophon p a:hover,.footer-linkhovercol-chpirates #colophon #site-info a:hover,.footer-linkhovercol-chpirates #colophon .footer-menu ul a:hover{color:#F9B200}.footer-bgcol-ispirates #colophon{background-color:#51297e;border-color:#51297e}.footer-headlinecol-ispirates #colophon p.title-footer,.footer-headlinecol-ispirates #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-ispirates #colophon #footer-social h2.socialmedia,.footer-headlinecol-ispirates #colophon h1,.footer-headlinecol-ispirates #colophon h2,.footer-headlinecol-ispirates #colophon h3,.footer-headlinecol-ispirates #colophon h4,.footer-headlinecol-ispirates #colophon h5,.footer-headlinecol-ispirates #colophon h6{color:#51297e}.footer-textcol-ispirates #colophon,.footer-textcol-ispirates #colophon p,.footer-textcol-ispirates #colophon #site-info{color:#51297e}.footer-linkcol-ispirates #colophon p a,.footer-linkcol-ispirates #colophon #site-info a,.footer-linkcol-ispirates #colophon .footer-menu ul a{color:#51297e}.footer-linkhovercol-ispirates #colophon p a:hover,.footer-linkhovercol-ispirates #colophon #site-info a:hover,.footer-linkhovercol-ispirates #colophon .footer-menu ul a:hover{color:#51297e}.footer-bgcol-black #colophon{background-color:#000;border-color:#000}.footer-headlinecol-black #colophon p.title-footer,.footer-headlinecol-black #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-black #colophon #footer-social h2.socialmedia,.footer-headlinecol-black #colophon h1,.footer-headlinecol-black #colophon h2,.footer-headlinecol-black #colophon h3,.footer-headlinecol-black #colophon h4,.footer-headlinecol-black #colophon h5,.footer-headlinecol-black #colophon h6{color:#000}.footer-textcol-black #colophon,.footer-textcol-black #colophon p,.footer-textcol-black #colophon #site-info{color:#000}.footer-linkcol-black #colophon p a,.footer-linkcol-black #colophon #site-info a,.footer-linkcol-black #colophon .footer-menu ul a{color:#000}.footer-linkhovercol-black #colophon p a:hover,.footer-linkhovercol-black #colophon #site-info a:hover,.footer-linkhovercol-black #colophon .footer-menu ul a:hover{color:#000}.footer-bgcol-white #colophon{background-color:#fff;border-color:#fff}.footer-headlinecol-white #colophon p.title-footer,.footer-headlinecol-white #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-white #colophon #footer-social h2.socialmedia,.footer-headlinecol-white #colophon h1,.footer-headlinecol-white #colophon h2,.footer-headlinecol-white #colophon h3,.footer-headlinecol-white #colophon h4,.footer-headlinecol-white #colophon h5,.footer-headlinecol-white #colophon h6{color:#fff}.footer-textcol-white #colophon,.footer-textcol-white #colophon p,.footer-textcol-white #colophon #site-info{color:#fff}.footer-linkcol-white #colophon p a,.footer-linkcol-white #colophon #site-info a,.footer-linkcol-white #colophon .footer-menu ul a{color:#fff}.footer-linkhovercol-white #colophon p a:hover,.footer-linkhovercol-white #colophon #site-info a:hover,.footer-linkhovercol-white #colophon .footer-menu ul a:hover{color:#fff}.footer-bgcol-grey #colophon{background-color:#e7e7eb;border-color:#e7e7eb}.footer-headlinecol-grey #colophon p.title-footer,.footer-headlinecol-grey #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-grey #colophon #footer-social h2.socialmedia,.footer-headlinecol-grey #colophon h1,.footer-headlinecol-grey #colophon h2,.footer-headlinecol-grey #colophon h3,.footer-headlinecol-grey #colophon h4,.footer-headlinecol-grey #colophon h5,.footer-headlinecol-grey #colophon h6{color:#e7e7eb}.footer-textcol-grey #colophon,.footer-textcol-grey #colophon p,.footer-textcol-grey #colophon #site-info{color:#e7e7eb}.footer-linkcol-grey #colophon p a,.footer-linkcol-grey #colophon #site-info a,.footer-linkcol-grey #colophon .footer-menu ul a{color:#e7e7eb}.footer-linkhovercol-grey #colophon p a:hover,.footer-linkhovercol-grey #colophon #site-info a:hover,.footer-linkhovercol-grey #colophon .footer-menu ul a:hover{color:#e7e7eb}.footer-bgcol-darkgrey #colophon{background-color:#1a1a1a;border-color:#1a1a1a}.footer-headlinecol-darkgrey #colophon p.title-footer,.footer-headlinecol-darkgrey #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-darkgrey #colophon #footer-social h2.socialmedia,.footer-headlinecol-darkgrey #colophon h1,.footer-headlinecol-darkgrey #colophon h2,.footer-headlinecol-darkgrey #colophon h3,.footer-headlinecol-darkgrey #colophon h4,.footer-headlinecol-darkgrey #colophon h5,.footer-headlinecol-darkgrey #colophon h6{color:#1a1a1a}.footer-textcol-darkgrey #colophon,.footer-textcol-darkgrey #colophon p,.footer-textcol-darkgrey #colophon #site-info{color:#1a1a1a}.footer-linkcol-darkgrey #colophon p a,.footer-linkcol-darkgrey #colophon #site-info a,.footer-linkcol-darkgrey #colophon .footer-menu ul a{color:#1a1a1a}.footer-linkhovercol-darkgrey #colophon p a:hover,.footer-linkhovercol-darkgrey #colophon #site-info a:hover,.footer-linkhovercol-darkgrey #colophon .footer-menu ul a:hover{color:#1a1a1a}.footer-bgcol-blue #colophon{background-color:#06f;border-color:#06f}.footer-headlinecol-blue #colophon p.title-footer,.footer-headlinecol-blue #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-blue #colophon #footer-social h2.socialmedia,.footer-headlinecol-blue #colophon h1,.footer-headlinecol-blue #colophon h2,.footer-headlinecol-blue #colophon h3,.footer-headlinecol-blue #colophon h4,.footer-headlinecol-blue #colophon h5,.footer-headlinecol-blue #colophon h6{color:#06f}.footer-textcol-blue #colophon,.footer-textcol-blue #colophon p,.footer-textcol-blue #colophon #site-info{color:#06f}.footer-linkcol-blue #colophon p a,.footer-linkcol-blue #colophon #site-info a,.footer-linkcol-blue #colophon .footer-menu ul a{color:#06f}.footer-linkhovercol-blue #colophon p a:hover,.footer-linkhovercol-blue #colophon #site-info a:hover,.footer-linkhovercol-blue #colophon .footer-menu ul a:hover{color:#06f}.footer-bgcol-red #colophon{background-color:#d7464d;border-color:#d7464d}.footer-headlinecol-red #colophon p.title-footer,.footer-headlinecol-red #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-red #colophon #footer-social h2.socialmedia,.footer-headlinecol-red #colophon h1,.footer-headlinecol-red #colophon h2,.footer-headlinecol-red #colophon h3,.footer-headlinecol-red #colophon h4,.footer-headlinecol-red #colophon h5,.footer-headlinecol-red #colophon h6{color:#d7464d}.footer-textcol-red #colophon,.footer-textcol-red #colophon p,.footer-textcol-red #colophon #site-info{color:#d7464d}.footer-linkcol-red #colophon p a,.footer-linkcol-red #colophon #site-info a,.footer-linkcol-red #colophon .footer-menu ul a{color:#d7464d}.footer-linkhovercol-red #colophon p a:hover,.footer-linkhovercol-red #colophon #site-info a:hover,.footer-linkhovercol-red #colophon .footer-menu ul a:hover{color:#d7464d}.footer-bgcol-yellow #colophon{background-color:#e7b547;border-color:#e7b547}.footer-headlinecol-yellow #colophon p.title-footer,.footer-headlinecol-yellow #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-yellow #colophon #footer-social h2.socialmedia,.footer-headlinecol-yellow #colophon h1,.footer-headlinecol-yellow #colophon h2,.footer-headlinecol-yellow #colophon h3,.footer-headlinecol-yellow #colophon h4,.footer-headlinecol-yellow #colophon h5,.footer-headlinecol-yellow #colophon h6{color:#e7b547}.footer-textcol-yellow #colophon,.footer-textcol-yellow #colophon p,.footer-textcol-yellow #colophon #site-info{color:#e7b547}.footer-linkcol-yellow #colophon p a,.footer-linkcol-yellow #colophon #site-info a,.footer-linkcol-yellow #colophon .footer-menu ul a{color:#e7b547}.footer-linkhovercol-yellow #colophon p a:hover,.footer-linkhovercol-yellow #colophon #site-info a:hover,.footer-linkhovercol-yellow #colophon .footer-menu ul a:hover{color:#e7b547}.footer-bgcol-green #colophon{background-color:#85c066;border-color:#85c066}.footer-headlinecol-green #colophon p.title-footer,.footer-headlinecol-green #colophon .footer-menu h3.footer-menu-title,.footer-headlinecol-green #colophon #footer-social h2.socialmedia,.footer-headlinecol-green #colophon h1,.footer-headlinecol-green #colophon h2,.footer-headlinecol-green #colophon h3,.footer-headlinecol-green #colophon h4,.footer-headlinecol-green #colophon h5,.footer-headlinecol-green #colophon h6{color:#85c066}.footer-textcol-green #colophon,.footer-textcol-green #colophon p,.footer-textcol-green #colophon #site-info{color:#85c066}.footer-linkcol-green #colophon p a,.footer-linkcol-green #colophon #site-info a,.footer-linkcol-green #colophon .footer-menu ul a{color:#85c066}.footer-linkhovercol-green #colophon p a:hover,.footer-linkhovercol-green #colophon #site-info a:hover,.footer-linkhovercol-green #colophon .footer-menu ul a:hover{color:#85c066}.site-content div.wpcf7{clear:both;overflow:hidden;max-width:100%;padding:0 0 30px}.site-content div.wpcf7 input,.site-content div.wpcf7 textarea,.site-content div.wpcf7 p{font-size:16px;font-size:1rem}.site-content div.wpcf7 p{margin:10px 0 0 0;padding:0}.site-content div.wpcf7 p:last-of-type{padding:0}.site-content div.wpcf7 input[type='text'],.site-content div.wpcf7 input[type='email']{width:100%}.site-content div.wpcf7 textarea{width:100%}.site-content input.wpcf7-submit,.site-content div.wpcf7 p input.wpcf7-submit{clear:both;overflow:hidden;width:100%;font-weight:600}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;top:0;left:0;display:block}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.gallery .slick-loading .slick-list{background:#fff url("./img/ajax-loader.gif") center center no-repeat}.gallery .slick-prev,.gallery .slick-next{line-height:0;position:absolute;top:50%;color:transparent;display:block;width:50px;padding:0;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);cursor:pointer;border:none;outline:none;background:transparent;z-index:20}.gallery .slick-prev:hover,.gallery .slick-prev:focus,.gallery .slick-next:hover,.gallery .slick-next:focus{color:transparent;outline:none;background:transparent}.gallery .slick-prev:hover:before,.gallery .slick-prev:focus:before,.gallery .slick-next:hover:before,.gallery .slick-next:focus:before{opacity:1}.gallery .slick-prev.slick-disabled:before,.gallery .slick-next.slick-disabled:before{opacity:.25}.gallery .slick-prev:before,.gallery .slick-next:before{line-height:1;opacity:.75;color:#f80;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gallery .slick-prev{left:30px}.gallery [dir='rtl'] .slick-prev{right:30px;left:auto}.gallery .slick-next{right:30px}.gallery [dir='rtl'] .slick-next{right:auto;left:30px}.gallery .slick-dotted.slick-slider{margin-bottom:40px}.gallery .slick-dots{position:absolute;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.gallery .slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.gallery .slick-dots li button{display:block;width:20px;height:20px;padding:5px;cursor:pointer;border:0;background:transparent;color:transparent}.gallery .slick-dots li button:hover,.gallery .slick-dots li button:focus{outline:none}.gallery .slick-dots li button:hover:before,.gallery .slick-dots li button:focus:before{opacity:0.75;color:#f80}.gallery .slick-dots li button:before{position:absolute;top:0;left:0;opacity:0.25;text-align:center;color:black;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gallery .slick-dots li:after{display:none}.gallery .slick-dots li.slick-active button:before{opacity:1;color:#f80}.gallery .slider img{margin:0 auto}.gallery .slider li::before{content:inherit;display:none;margin:0}.gallery .slider .gallery-image-caption{text-align:center;font-size:14px;line-height:19.6px;font-size:.875rem;line-height:1.225rem}@keyframes "DownMove"{0%{top:50%}5%{top:60%}10%{top:50%}15%{top:60%}20%{top:50%}}@-webkit-keyframes "DownMove"{0%{top:50%}5%{top:60%}10%{top:50%}15%{top:60%}20%{top:50%}}@-moz-keyframes "DownMove"{0%{top:50%}5%{top:60%}10%{top:50%}15%{top:60%}20%{top:50%}}ul.picrew-social-icons li{list-style:none;margin:0;padding:0;background:none}ul.picrew-social-icons li:before{vertical-align:top;position:relative;content:'';padding:0}.picrew-social-icons{border:1px solid #fff}.picrew-social-icons span{display:inline-block;padding:0 5px;margin-bottom:2px}.picrew-social-icons a{display:block;-webkit-transition:-webkit-transform 0.3s;-moz-transition:-moz-transform 0.3s;transition:transform 0.3s;width:25px;height:25px;text-align:center;vertical-align:middle;border-radius:50%;color:#672082}.picrew-social-icons a:hover{color:#fff;background-color:#f80}.picrew-icon-yelp:before{content:""}.picrew-icon-xing:before{content:""}.picrew-icon-xing2:before{content:""}.picrew-icon-stumbleupon:before{content:""}.picrew-icon-stumbleupon2:before{content:""}.picrew-icon-delicious:before{content:""}.picrew-icon-lastfm:before{content:""}.picrew-icon-lastfm2:before{content:""}.picrew-icon-hackernews:before{content:""}.picrew-icon-reddit:before{content:""}.picrew-icon-soundcloud:before{content:""}.picrew-icon-yahoo:before{content:""}.picrew-icon-wordpress2:before{content:""}.picrew-icon-steam:before{content:""}.picrew-icon-steam2:before{content:""}.picrew-icon-500px:before{content:""}.picrew-icon-deviantart:before{content:""}.picrew-icon-twitch:before{content:""}.picrew-icon-feed:before{content:""}.picrew-icon-sina-weibo:before{content:""}.picrew-icon-renren:before{content:""}.picrew-icon-vk:before{content:""}.picrew-icon-vine:before{content:""}.picrew-icon-telegram:before{content:""}.picrew-icon-spotify:before{content:""}.picrew-icon-mail2:before{content:""}.picrew-icon-mail3:before{content:""}.picrew-icon-arrow-down:before{content:""}.picrew-icon-arrow-left:before{content:""}.picrew-icon-arrow-right:before{content:""}.picrew-icon-close:before{content:""}.picrew-icon-github:before{content:""}.picrew-icon-mail:before{content:""}.picrew-icon-link:before{content:""}.picrew-icon-google-plus:before{content:""}.picrew-icon-google-plus2:before{content:""}.picrew-icon-facebook:before{content:""}.picrew-icon-facebook2:before{content:""}.picrew-icon-instagram:before{content:""}.picrew-icon-whatsapp:before{content:""}.picrew-icon-twitter:before{content:""}.picrew-icon-youtube:before{content:""}.picrew-icon-vimeo:before{content:""}.picrew-icon-vimeo2:before{content:""}.picrew-icon-flickr:before{content:""}.picrew-icon-wordpress:before{content:""}.picrew-icon-tumblr:before{content:""}.picrew-icon-skype:before{content:""}.picrew-icon-linkedin2:before{content:""}.picrew-icon-linkedin:before{content:""}.picrew-icon-pinterest2:before{content:""}.picrew-icon-pinterest:before{content:""}.picrew-icon-foursquare:before{content:""}.picrew-grid-wrapper,.pirate-crew-single{font-family:"DejaWeb",sans-serif;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.picrew-grid-wrapper *,.pirate-crew-single *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.picrew-grid-wrapper::before,.pirate-crew-single::before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.picrew-grid-wrapper::after,.pirate-crew-single::after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.picrew-grid-wrapper figcaption,.pirate-crew-single figcaption{display:block}.picrew-grid-wrapper figure,.pirate-crew-single figure{display:block;margin:0;-webkit-margin-before:0;-webkit-margin-after:0;-webkit-margin-start:0;-webkit-margin-end:0}.picrew-grid-wrapper a,.pirate-crew-single a{text-decoration:none;text-decoration:none;box-shadow:none;border-bottom:0;outline:none}.picrew-grid-wrapper .picrew-grid,.pirate-crew-single .picrew-grid{font-family:"DejaWeb",sans-serif;list-style:none;padding:30px 0;margin:0 -15px}@media (max-width: 700px){.picrew-grid-wrapper .picrew-grid,.pirate-crew-single .picrew-grid{margin:0 auto}}.picrew-grid-wrapper .picrew-grid>.picrew-grid-card,.pirate-crew-single .picrew-grid>.picrew-grid-card{float:left;width:25%;padding:0 15px;margin:0 0 30px;clear:none}@media (max-width: 700px){.picrew-grid-wrapper .picrew-grid>.picrew-grid-card,.pirate-crew-single .picrew-grid>.picrew-grid-card{float:none;width:100%;margin:0}}.picrew-grid-wrapper .picrew-grid h3,.pirate-crew-single .picrew-grid h3{margin:0 0 3px;padding:0}.picrew-grid-wrapper .picrew-grid.drawer-style,.pirate-crew-single .picrew-grid.drawer-style{margin:0}.picrew-grid-wrapper .grid-full-col>.picrew-grid-card,.pirate-crew-single .grid-full-col>.picrew-grid-card{width:100%}.picrew-grid-wrapper .grid-2-col>.picrew-grid-card,.pirate-crew-single .grid-2-col>.picrew-grid-card{width:50%}.picrew-grid-wrapper .grid-3-col>.picrew-grid-card,.pirate-crew-single .grid-3-col>.picrew-grid-card{width:33.33%}.picrew-grid-wrapper .grid-4-col>.picrew-grid-card,.pirate-crew-single .grid-4-col>.picrew-grid-card{width:25%}.picrew-grid-wrapper .grid-5-col>.picrew-grid-card,.pirate-crew-single .grid-5-col>.picrew-grid-card{width:20%}.picrew-grid-wrapper p,.pirate-crew-single p{line-height:1.4}.picrew-grid-wrapper ul,.pirate-crew-single ul{list-style:none;line-height:normal}.picrew-grid-wrapper .picrew-social-icons,.pirate-crew-single .picrew-social-icons{padding:0;margin:0 -5px}.picrew-grid-wrapper .picrew-social-icons a,.pirate-crew-single .picrew-social-icons a{text-decoration:none;border:none}.picrew-grid-wrapper .picrew-contact-details,.pirate-crew-single .picrew-contact-details{margin-bottom:20px}.picrew-grid-wrapper .picrew-contact-details a,.pirate-crew-single .picrew-contact-details a{text-decoration:none;border:none}.picrew-grid-wrapper a.picrew-nav-item,.pirate-crew-single a.picrew-nav-item{text-decoration:none;border:none}.picrew-grid-wrapper a.picrew-modal-close,.pirate-crew-single a.picrew-modal-close{text-decoration:none;border:none}.picrew-grid-wrapper .picrew-grid.list-style,.pirate-crew-single .picrew-grid.list-style{margin:0;padding:0}html.picrew-popup-on{height:100%;overflow:hidden}.picrew-personal-info{display:block;position:relative;margin-bottom:15px}.picrew-personal-info p,.picrew-personal-info span{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem;display:block}.picrew-contact-info{display:block}.picrew-contact-info p{margin:0 0 15px;line-height:normal}.picrew-flip-front{display:block}.picrew-flip-back-inner{display:block}.grid-style{line-height:1.2}.circles-style{line-height:1.2}.clearfix::after,.accordion .accordion-group .accordion-body .accordion-inner::after{content:"";clear:both;display:block}.picrew-grid::after{content:"";clear:both;display:block}.picrew-grid figure{position:relative;margin:0}.picrew-grid figure img{width:100%;display:block;position:relative;margin:0;border:none}figure{overflow:hidden}figure figcaption a{box-shadow:none;border-bottom:0}.picrew-contact-details>p{padding:10px 0;margin:0 !important;border-bottom:1px dotted rgba(35,35,35,0.2)}.picrew-contact-details span{min-width:100px;margin-right:6px}figcaption p{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.picrew-popup-details a{box-shadow:none;border-bottom:0}.picrew-popup-items a{box-shadow:none;border-bottom:0}.drawer-style a{box-shadow:none;border-bottom:0}.picrew-grid-nav{display:none !important}.picrew-content-scrollbar{padding-right:30px}.picrew-personal-details{max-height:293px;overflow:hidden}.picrew-coming-soon{text-align:center;color:#ececed}.cards-style.style-1 figure{overflow:hidden;padding:30px 0 100px;background:#fff;border:1px solid rgba(0,0,0,0.1)}.cards-style.style-1 figure::before{content:"";background:rgba(255,255,255,0.9);background:-moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 37%, #fff 78%, #fff 100%);background:-webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 37%, #fff 78%, #fff 100%);background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 37%, #fff 78%, #fff 100%);position:absolute;top:0;right:0;bottom:0;left:0;-moz-transform:translateY(100%) translateY(-90px);-webkit-transform:translateY(100%) translateY(-90px);-o-transform:translateY(100%) translateY(-90px);-ms-transform:translateY(100%) translateY(-90px);transform:translateY(100%) translateY(-90px);-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;z-index:1}.cards-style.style-1 figure img{-webkit-transition:-webkit-transform 0.8s;-moz-transition:-moz-transform 0.8s;transition:transform 0.8s;border-radius:50%;-webkit-border-radius:50%;max-width:160px;margin:0 auto;display:block}.cards-style.style-1 figcaption{bottom:0;left:0;right:0;position:absolute;padding:30px 20px;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-moz-transform:translateY(calc(100% - 100px));-webkit-transform:translateY(calc(100% - 100px));-o-transform:translateY(calc(100% - 100px));-ms-transform:translateY(calc(100% - 100px));transform:translateY(calc(100% - 100px));-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;text-align:center;z-index:2}.cards-style.style-1 figcaption p{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.cards-style.style-1 .picrew-contact-info{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;opacity:0;visibility:hidden}.cards-style.style-1 figure.cs-hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.cards-style.style-1 figure.cs-hover figcaption{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.cards-style.style-1 figure.cs-hover::before{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.cards-style.style-1 figure.cs-hover .picrew-contact-info{-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-1 figure:hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.no-touchevents .cards-style.style-1 figure:hover figcaption{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.no-touchevents .cards-style.style-1 figure:hover::before{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.no-touchevents .cards-style.style-1 figure:hover .picrew-contact-info{-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-2 figure:hover .picrew-flip-front{-moz-transform:rotateY(180deg);-webkit-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg)}.no-touchevents .cards-style.style-2 figure:hover figcaption{-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg)}.no-touchevents .cards-style.style-3 figure:hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.no-touchevents .cards-style.style-3 figure:hover figcaption{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.no-touchevents .cards-style.style-3 figure:hover::before{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.no-touchevents .cards-style.style-3 figure:hover .picrew-contact-info{-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-4 figure:hover img{-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}.cards-style .picrew-flip-back{font-size:0}.cards-style figcaption::after{content:"";height:100%;display:inline-block;vertical-align:middle;width:1px}.cards-style .picrew-flip-back-inner{display:inline-block;width:calc(100% - 1px);vertical-align:middle;font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.cards-style.style-2 figure{overflow:hidden;text-align:center;transform-style:preserve-3d}.cards-style.style-2 figure img{border-radius:50%;-webkit-border-radius:50%;max-width:160px;margin:0 auto;display:block}.cards-style.style-2 .picrew-flip-front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;padding:30px 20px;background:#fff;border:1px solid rgba(0,0,0,0.1);color:#672082;-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);position:relative}.cards-style.style-2 .picrew-flip-front .picrew-personal-info{padding-top:20px}.cards-style.style-2 figcaption{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;padding:30px 20px;background:#fff;border:1px solid rgba(0,0,0,0.1);color:#1a1a1a;-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-moz-transform:rotateY(180deg);-webkit-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg);position:absolute;left:0;top:0;right:0;bottom:0}.cards-style.style-2 figure.cs-hover .picrew-flip-front{-moz-transform:rotateY(180deg);-webkit-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg)}.cards-style.style-2 figure.cs-hover figcaption{-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg)}.cards-style.style-3 figure{overflow:hidden;padding:20px 20px 100px;background:#fff;border:1px solid rgba(0,0,0,0.1)}.cards-style.style-3 figure::before{content:"";background:rgba(255,255,255,0.9);background:-moz-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 20%, #fff 78%, #fff 100%);background:-webkit-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 20%, #fff 78%, #fff 100%);background:linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 20%, #fff 78%, #fff 100%);position:absolute;top:0;right:0;bottom:0;left:0;-moz-transform:translateY(100%) translateY(-90px);-webkit-transform:translateY(100%) translateY(-90px);-o-transform:translateY(100%) translateY(-90px);-ms-transform:translateY(100%) translateY(-90px);transform:translateY(100%) translateY(-90px);-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;z-index:1}.cards-style.style-3 figure img{-webkit-transition:-webkit-transform 0.8s;-moz-transition:-moz-transform 0.8s;transition:transform 0.8s}.cards-style.style-3 figcaption{bottom:0;left:0;right:0;position:absolute;padding:30px 20px;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-moz-transform:translateY(100%) translateY(-100px);-webkit-transform:translateY(100%) translateY(-100px);-o-transform:translateY(100%) translateY(-100px);-ms-transform:translateY(100%) translateY(-100px);transform:translateY(100%) translateY(-100px);-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;text-align:center;z-index:2;color:#1a1a1a}.cards-style.style-3 figcaption p{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.cards-style.style-3 .picrew-contact-info{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.4s;-moz-transition:-moz-transform 0.4s;transition:transform 0.4s;opacity:0;visibility:hidden}.cards-style.style-3 figure.cs-hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.cards-style.style-3 figure.cs-hover figcaption{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.cards-style.style-3 figure.cs-hover::before{-webkit-transform:translateY(0px) translateY(0px);-moz-transform:translateY(0px) translateY(0px);-ms-transform:translateY(0px) translateY(0px);transform:translateY(0px) translateY(0px)}.cards-style.style-3 figure.cs-hover .picrew-contact-info{-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.cards-style.style-4{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;-webkit-flex-flow:row wrap}.cards-style.style-4::after{display:none}.cards-style.style-4 figure{padding:20px 20px 0;background:#fff;border:1px solid rgba(0,0,0,0.1);position:relative}.cards-style.style-4 figure img{-webkit-transition:-webkit-transform 0.5s;-moz-transition:-moz-transform 0.5s;transition:transform 0.5s}.cards-style.style-4 figcaption{padding:20px;text-align:center;z-index:2;color:#1a1a1a}.cards-style.style-4 figcaption p{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.cards-style.style-4 figure.cs-hover img{-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}.drawer-style.style-1 figcaption{position:absolute;left:25px;right:25px;top:25px;bottom:25px;padding:30px;background:rgba(35,35,35,0.8);color:#1a1a1a;text-align:center;opacity:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;transform:scale(0.6);-webkit-transform:scale(0.6);-moz-transform:scale(0.6);-webkit-transition:-webkit-transform 0.2s, opacity 0.2s;-moz-transition:-moz-transform 0.2s, opacity 0.2s;transition:transform 0.2s, opacity 0.2s;font-size:0}.list-style figure{color:#1a1a1a}.list-style figure img{max-width:300px}.list-style .picrew-personal-info{text-align:left}.list-style .picrew-personal-info h3{margin:0 0 5px}.list-style figcaption p{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.list-style .picrew-social-icons{margin-bottom:15px}.list-style .picrew-social-icons span{margin:0 1px 2px 1px;text-align:center;padding:0}.list-style .picrew-contact-info{text-align:left}.list-style .picrew-contact-info a{margin-left:10px}.picrew-grid.list-style figcaption{overflow:hidden}.picrew-grid.list-style>.picrew-grid-card{width:100%;float:none;border-bottom:1px solid rgba(35,35,35,0.2);padding:0 0 40px 0;margin-bottom:40px}.picrew-grid.list-style>li:last-child{border-bottom:0;margin-bottom:0}.picrew-grid.list-style h3{margin:0 0 10px}.picrew-grid.list-style .picrew-personal-info span{font-size:15px;line-height:21px;font-size:.9375rem;line-height:1.3125rem}.entry-content .picrew-grid.style-1 ul li::before{margin-left:0}.list-style.style-1 .picrew-contact-info{font-size:16px;line-height:22.4px;font-size:1rem;line-height:1.4rem}.list-style.style-1 figure img{float:left;margin-right:30px}.list-style.style-2 figure img{float:right;margin-left:30px}.picrew-table{display:table;width:100%;color:#1a1a1a}.picrew-table-row{display:table-row}.picrew-table-cell{display:table-cell;padding:10px;vertical-align:middle}.picrew-table-cell .picrew-table-cell-inner{max-width:400px}.picrew-table-cell .picrew-social-icons a{color:#672082}.picrew-table-cell .picrew-social-icons a:hover{color:#fff;background-color:#f80}.picrew-table-row.picrew-table-head .picrew-table-cell{border:none}.table-style .picrew-table-img-holder{max-width:75px}.table-style .picrew-table-cell h3,.table-style .picrew-table-cell h2{margin:0;padding:0}.table-style .picrew-table-cell p{margin-bottom:10px}.picrew-table-description .picrew-table-cell-inner{min-width:240px}.picrew-table.style-1 .picrew-table-row.picrew-table-head .picrew-table-cell{border-bottom:2px solid #ccc}.picrew-table.style-1 .picrew-table-cell{border-bottom:1px solid #ccc}.picrew-table.style-2 .picrew-table-row.picrew-table-head .picrew-table-cell{border-bottom:none}.picrew-table.style-2 .picrew-table-cell{border-bottom:none}.picrew-table.style-3 .picrew-table-cell{border-bottom:1px solid #ddd}.picrew-table.style-3 .picrew-table-row:first-child .picrew-table-cell{border-top:1px solid #ddd}.picrew-table.style-3 .picrew-table-row .picrew-table-cell:first-child{border-left:1px solid #ddd}.picrew-table.style-3 .picrew-table-row .picrew-table-cell:last-child{border-right:1px solid #ddd}:root .cards-style.style-2 figcaption{z-index:1}:root .cards-style.style-2 .picrew-flip-front{z-index:2}:root .cards-style.style-2 figure:hover figcaption{z-index:3}.pirate-crew-single.list{width:100%}.pirate-crew-single .picrew-grid{min-width:260px}.pirate-crew-single .cards-style.picrew-grid{max-width:300px}@media (max-width: 700px){.pirate-crew-single .cards-style.picrew-grid{max-width:100%}}.pirate-crew-single.aligncenter .cards-style.picrew-grid{margin:0 auto}@media (max-width: 700px){.pirate-crew-single{width:100%}.pirate-crew-single.alignleft,.pirate-crew-single.alignright{float:none}}@media (max-width: 1230px){.picrew-grid-wrapper .grid-5-col>.picrew-grid-card,.pirate-crew-single .grid-5-col>.picrew-grid-card{width:25%}}@media (max-width: 830px){.picrew-popup-on body{overflow:auto}}@media (max-width: 678px){.picrew-grid-wrapper .picrew-grid>.picrew-grid-card,.pirate-crew-single .picrew-grid>.picrew-grid-card{width:100%}}@media screen and (max-width: 830px){.picrew-table-description .picrew-table-cell-inner{min-width:unset}}@media screen and (max-width: 700px){.picrew-grid.list-style figcaption{overflow:visible}.list-style.style-1 figure img,.list-style.style-2 figure img{float:none;margin:0 auto 30px}.picrew-table{display:block}.picrew-table .picrew-table-cell h2{margin-bottom:10px}.picrew-table .picrew-table-cell h3{margin-top:0}.picrew-table-row{display:block}.picrew-table-cell{display:block;padding:0;border:none}.picrew-table-cell .picrew-table-cell-inner{max-width:none}.picrew-table.style-1 .picrew-table-row{padding-bottom:20px;border-bottom:1px solid #ccc;margin-bottom:20px}.picrew-table.style-1 .picrew-table-cell{border:none}.picrew-table-row.picrew-table-head{display:none}.table-style .picrew-table-img-holder{float:left;margin-right:20px;margin-bottom:20px}.picrew-table-designation{overflow:hidden}.picrew-table-name{overflow:hidden}.picrew-table-description{clear:both}.picrew-table.style-2 .picrew-table-row{padding:20px 15px}.picrew-table.style-3{border:1px solid #ccc}.picrew-table.style-3 .picrew-table-row{padding:20px 15px;border-bottom:1px solid #ccc}.picrew-table.style-3 .picrew-table-row:last-child{border-bottom:none}.picrew-table.style-3 .picrew-table-cell{border:none !important}}@media screen and (max-width: 650px){.picrew-personal-details{max-height:100%;overflow:visible}}@media screen and (-ms-high-contrast: active){.cards-style.style-1 figure::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:0;visibility:hidden;transition:opacity 0.4s, visibility 0.4s}.cards-style.style-1 figure.cs-hover::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-1 figure:hover::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-2 figure:hover figcaption{z-index:3}.cards-style.style-2 .picrew-flip-front{-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:2}.cards-style.style-2 figcaption{-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:1}.cards-style.style-2 figure.cs-hover figcaption{z-index:3}}@media (-ms-high-contrast: none){.cards-style.style-1 figure::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:0;visibility:hidden;transition:opacity 0.4s, visibility 0.4s}.cards-style.style-1 figure.cs-hover::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-1 figure:hover::before{-ms-transform:translateY(0px);transform:translateY(0px);opacity:1;visibility:visible}.no-touchevents .cards-style.style-2 figure:hover figcaption{z-index:3}.cards-style.style-2 .picrew-flip-front{-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:2}.cards-style.style-2 figcaption{-webkit-transition:-webkit-transform 0.6s, z-index 0.7s;-moz-transition:-moz-transform 0.6s, z-index 0.7s;transition:transform 0.6s, z-index 0.7s;-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:1}.cards-style.style-2 figure.cs-hover figcaption{z-index:3}}@media screen and (min-width: 64em){p.text-big{font-size:32px;font-size:2rem}.front-about-img{width:32.8%;padding-right:1.6%}}@media screen and (min-width: 66.25em){.headerimg-on.header-boxed #masthead{border-bottom:1px solid #ddd !important}.front-section:first-of-type{padding-top:0}.content-wrap{margin-top:0}.js .imgfade-on .fadein{opacity:0;transition:opacity 0.7s ease-in-out;-webkit-transition:opacity 0.7s ease-in-out;-webkit-transform:translateZ(0)}.js .imgfade-on .fadein.inview{opacity:1}.singlepost-wrap,.recommended-posts-wrap,.front-section,.headerimg-on.header-boxed .header-image{padding-left:0;padding-right:0}.blog-wrap,.front-section,.singlepost-wrap,.recommended-posts-wrap,.footer-wrap,.big-footer-feature,.headerimg-on.header-boxed .header-image{margin-left:6.25%;margin-right:6.25%}#front-section-four{margin-left:auto;margin-right:auto}.page .site-content,#primary{width:65.87301587301587%;float:left}#secondary,#sidebar-page{width:31.74603174603175%;float:right;padding-top:0}.sidebar-left #primary,.single-post.sidebar-left .contentwrap{float:right}.sidebar-left #secondary,.sidebar-left #sidebar-page{float:left;padding-top:0}.no-sidebar.page .site-content,.no-sidebar #primary{width:90%;max-width:1260px;float:none;margin-left:auto;margin-right:auto}.page-fullwidth .site-content,.page-fullwidth #primary{width:100% !important;max-width:none;float:none;margin-left:auto;margin-right:auto}p.site-title{font-size:60px;font-size:3.75rem;line-height:1.35;text-align:center;padding-right:0}p.text-big{font-size:48px;font-size:3rem}.section-one-column-one .entry-author,.section-one-column-one .entry-date:before{display:inline-block}.headerimg-on.header-boxed .header-image{margin-top:30px}.page-template-shop-front .entry-text-wrap{width:48.80952380952381%;float:left;clear:left}.page-template-shop-front .section-three-column-one .entry-header,.page-template-shop-front .section-three-column-one .entry-summary,.page-template-shop-front .section-three-column-one .entry-meta{width:100%}}@media screen and (min-width: 85em){.blog-wrap,.front-section,.headerimg-on.header-boxed .header-image{margin-left:auto;margin-right:auto;width:80%}.entry-content p.pull-left,.entry-content p.pull-right{margin-bottom:20px}.no-sidebar.page .site-content,.no-sidebar #primary{width:80%}.headerimg-on.header-fullscreen a.header-image{max-height:900px !important;overflow:hidden}}@media screen and (min-width: 112.5em){#page-start,.content-wrap,.singlepost-wrap,.blog-wrap{min-width:1560px;margin-left:auto;margin-right:auto}.footer-wrap,.blog-wrap,.big-footer-feature,.headerimg-on.header-boxed .header-image{width:70%;margin-left:auto;margin-right:auto}}@media screen and (min-width: 137.5em){.footer-wrap,.big-footer-feature,.headerimg-on.header-boxed .header-image{width:56%}}@media print{#printhead{color:black;content:"Print"}}@media print{.sticky-header,.header-social,#overlay-open,#search-open,.inner-offcanvas-wrap,.shariff,.shariff li,.shariff-main,.footer-menus-wrap nav,.footer-search{display:none !important}#masthead{position:relative}#masthead .site-header-content{position:relative;display:block;border:none !important;height:auto;margin:0 auto}#masthead .site-header-content #site-branding{height:auto;margin:0 auto;width:auto;border:none;text-align:center;padding:0;position:relative;display:block}#masthead .site-header-content #site-branding img{width:auto;max-width:inherit;height:inherit;max-height:100px}h1{page-break-before:always}h1,h2,h3,h4,h5{page-break-after:avoid}header#masthead{position:relative;border:none}.front-section:first-of-type,.page .content-wrap,.singlepost-wrap,.error404 .content-wrap{padding-top:10px}main{position:relative;display:block}main table,main figure{page-break-inside:avoid}main p a[href]::after{content:" (" attr(href) ")";color:#f80;background-color:inherit;font-style:italic;size:80%}main p a[href^="#"]:after{display:none}main p a{text-transform:inherit;word-wrap:break-word;color:#000}#colophon{background:none;color:black}#colophon h2,#colophon h3,#colophon ul,#colophon p,#colophon li,#colophon a,#colophon td,#colophon tr,#colophon span{color:black;background:none}.socialmedia-secondcolor #footer-social.social-nav ul li a{color:black;background:none}#footer-social h2.socialmedia{float:none;display:block;color:black;font-weight:bold}#footer-social.social-nav ul{display:block}#footer-social.social-nav ul li{display:list-item;border-radius:initial;background:none}#footer-social.social-nav ul li a::before{width:25px}#footer-social.social-nav ul li a{overflow:auto;color:#000;width:auto;text-align:left;height:auto;background:none;border:none;border-radius:initial;text-transform:inherit;word-wrap:break-word}#footer-social.social-nav ul li a[href]::after{content:" (" attr(href) ")";color:#f80;background-color:inherit;font-style:italic;size:80%}#footer-social.social-nav ul li a[href^="#"]::after{display:none}}