/* tower.mason.less
 *
 * The main LESS file for Tower Mason.
 * Note that all component stylesheets are imported with (inline). This is because
 * we do not want LESS.js to process any less, simply generate a single LESS
 * file that we can provide to the client for processing in the browser.
 */
/**
 * Document Style Variables (provided by InstanceStyleMixin)
 * @color[1..5]
 * @font[1..2]
 * @fontSize[1..7]
 *
 * These global variables can be utilized anywhere in the below less files to bind a style rule to the document's
 * currently selected style, e.g.
 *   .paragraph-pip {
 *   	color: @color1;
 *   }
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.font-arial {
  font-family: "Arial";
}
.font-courier_new {
  font-family: "Courier New";
}
.font-georgia {
  font-family: "Georgia";
}
.font-helvetica_neue {
  font-family: "Helvetica Neue";
}
.font-lucida_console {
  font-family: "Lucida Console";
}
.font-lucida_sans_unicode {
  font-family: "Lucida Sans Unicode";
}
.font-palatino_linotype {
  font-family: "Palatino Linotype";
}
.font-tahoma {
  font-family: "Tahoma";
}
.font-time_new_roman {
  font-family: "Times New Roman";
}
.font-trebuchet_ms {
  font-family: "Trebuchet MS";
}
svg {
  overflow: hidden;
}
.document {
  font-size: 14px;
}





@media (min-width: 30em) {
}
body.preview .document {
  position: absolute;
}
body.is-dragging .emptyDocumentNotification {
  display: none;
}
body.is-dragging .emptyDocumentNotification-nonHomePage {
  display: none;
}
.lessDrawerWidth {
  margin-left: 430px;
}
.svg-def-container {
  display: none;
}
.font-color1 {
  color: #334d5c;
  text-decoration: inherit;
}
.font-color2 {
  color: #7cbb52;
  text-decoration: inherit;
}
.font-color3 {
  color: #df4949;
  text-decoration: inherit;
}
.font-color4 {
  color: #ffffff;
  text-decoration: inherit;
}
.font-color5 {
  color: #333333;
  text-decoration: inherit;
}
[class^="font-custom-color-"] {
  text-decoration: inherit;
}
.font-fontSize1 {
  font-size: 60%;
}
.font-fontSize2 {
  font-size: 80%;
}
.font-fontSize3 {
  font-size: 100%;
}
.font-fontSize4 {
  font-size: 120%;
}
.font-fontSize5 {
  font-size: 140%;
}
.font-size1 {
  font-size: 0.75rem;
}
.font-size2 {
  font-size: 0.875rem;
}
.font-size3 {
  font-size: 1rem;
}
.font-size4 {
  font-size: 1.125rem;
}
.font-size5 {
  font-size: 1.25rem;
}
.font-size6 {
  font-size: 1.5rem;
}
.font-size7 {
  font-size: 1.75rem;
}
.font-size8 {
  font-size: 2.25rem;
}
.font-size9 {
  font-size: 3rem;
}
.font-size10 {
  font-size: 4.5rem;
}
.font-font1 {
  font-family: "Oxygen", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.font-font2 {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.font-font3 {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.block {
  position: relative;
}
.is-dragging .block.sidebar {
  pointer-events: none;
}
.block .block-anchor {
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}
.block.fixed-width {
  max-width: 1100px;
  margin: auto;
}
.block.sidebar {
  max-width: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.block-background,
.block-background-color {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  margin: auto;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  border-radius: inherit;
  transition: opacity 200ms;
}
.block-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  pointer-events: none;
  padding: 80px 20px;
  margin-right: auto;
  margin-left: auto;
}
.block-content.carousel {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
.is-dragging .block-content {
  pointer-events: auto;
}
.block-content .pip:not(.group-pip) {
  pointer-events: auto;
}
.is-dragging .block-content .pip:not(.group-pip) {
  pointer-events: none;
}
.pip {
  position: relative;
  min-width: 50px;
}
.pip:hover > .pip-hideButton {
  display: block;
}
.pip.button-pip {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  text-align: center;
}





@media (min-width: 768px) {
  .pip.button-pip {
    width: auto;
  }
}
.pip.button-pip.more-style-bar-button-preview {
  background-color: #333333;
}
.pip.button-pip.more-style-bar-button-preview a:hover {
  cursor: default;
}
.rte-dropdown-wrapper [data-option-value="font1"] {
  font-family: "Oxygen", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.rte-dropdown-wrapper [data-option-value="font2"] {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.rte-dropdown-wrapper li[data-option-value="fontSize1"] {
  font-size: 60%;
}
.rte-dropdown-wrapper li[data-option-value="fontSize2"] {
  font-size: 80%;
}
.rte-dropdown-wrapper li[data-option-value="fontSize3"] {
  font-size: 100%;
}
.rte-dropdown-wrapper li[data-option-value="fontSize4"] {
  font-size: 120%;
}
.rte-dropdown-wrapper li[data-option-value="fontSize5"] {
  font-size: 140%;
}
.rte-dropdown-wrapper [data-option-value="color1"],
.rte-dropdown-wrapper [data-option-value="color1"]:before {
  background-color: #334d5c;
}
.rte-dropdown-wrapper [data-option-value="color2"],
.rte-dropdown-wrapper [data-option-value="color2"]:before {
  background-color: #7cbb52;
}
.rte-dropdown-wrapper [data-option-value="color3"],
.rte-dropdown-wrapper [data-option-value="color3"]:before {
  background-color: #df4949;
}
.rte-dropdown-wrapper [data-option-value="color4"],
.rte-dropdown-wrapper [data-option-value="color4"]:before {
  background-color: #ffffff;
}
.rte-dropdown-wrapper [data-option-value="color5"],
.rte-dropdown-wrapper [data-option-value="color5"]:before {
  background-color: #333333;
}
.block.text-button .block-content > .row-pip > .col-pip > .button-pip {
  margin: auto;
  width: 80%;
}
.pip.html-pip {
  display: block !important;
  margin: 0 auto;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.html-pip div {
  margin: 0 auto;
}
.pip.html-pip div iframe.tower-unpublished-iframe {
  width: 75%;
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
}
.pip.paragraph-pip,
.pip.logo-text-pip {
  margin: 0 auto;
  width: 100%;
  line-height: 1.85;
  text-align: left;
}
.pip.paragraph-pip:last-of-type,
.pip.logo-text-pip:last-of-type {
  margin-bottom: 0;
}
.pip.paragraph-pip b,
.pip.logo-text-pip b,
.pip.paragraph-pip strong,
.pip.logo-text-pip strong {
  font-weight: bold;
}
.pip.paragraph-pip u,
.pip.logo-text-pip u {
  text-decoration: underline;
}
.pip.paragraph-pip i,
.pip.logo-text-pip i,
.pip.paragraph-pip em,
.pip.logo-text-pip em {
  font-style: italic;
}
.pip.paragraph-pip ol,
.pip.logo-text-pip ol {
  display: block;
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.pip.paragraph-pip ol li,
.pip.logo-text-pip ol li {
  display: list-item;
  text-align: -webkit-match-parent;
}
.pip.paragraph-pip ul,
.pip.logo-text-pip ul {
  display: block;
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}
.pip.paragraph-pip {
  max-width: 100%;
  margin: -6.8px auto;
}
.block-content > .pip.paragraph-pip,
.block-content > .pip.logo-text-pip,
.col-pip > .pip.paragraph-pip,
.col-pip > .pip.logo-text-pip {
  margin-bottom: 20px;
}
.block.text-button .block-content > .row-pip > .col-pip > .paragraph-pip {
  margin: 0 20px 0;
}
.col-pip .pip.paragraph-pip {
  max-width: 100%;
}
.pip.navigation-pip {
  list-style: none;
}





@media screen and (max-width: 480px) {
  .pip.navigation-pip.mobile {
    position: absolute;
  }
}
.pip.navigation-pip .link {
  display: inline-block;
  margin: 0 10px;
}
.pip.navigation-pip .link a {
  text-decoration: none;
}
.pip.navigation-pip .link a:hover,
.pip.navigation-pip .link a.navigation-link-active-page {
  text-decoration: underline;
}
.pip.navigation-pip .link.is-hidden {
  display: none;
}
.pip.navigation-pip .link-placeholder {
  position: relative;
  min-width: 100px;
  cursor: default;
  color: transparent;
}
.pip.navigation-pip .link-placeholder a {
  display: inline-block;
}
.pip.navigation-pip .mobile-content {
  display: none;
  position: absolute;
  z-index: 101;
  text-align: center;
}
.pip.navigation-pip .mobile-content.mobile {
  display: block;
}







@media (min-width: 481px) {
  .pip.navigation-pip .mobile-content.mobile {
    display: none;
  }
}





@media screen and (max-width: 480px) {
  .pip.navigation-pip .mobile-content.mobile + .link-wrapper {
    display: none;
  }
}
.pip.navigation-pip .mobile-content.tablet {
  display: block;
}





@media screen and (max-width: 1024px) {
  .pip.navigation-pip .mobile-content.tablet + .link-wrapper {
    display: none;
  }
}





@media (min-width: 769px) {
  .pip.navigation-pip .mobile-content.tablet {
    display: none;
  }
  .pip.navigation-pip .mobile-content.tablet + .link-wrapper {
    display: block;
  }
}
.pip.navigation-pip .mobile-content.desktop {
  display: block;
}
.pip.navigation-pip .mobile-content.desktop + .link-wrapper {
  display: none;
}
.pip.navigation-pip .mobile-content.active .mobile-wrapper {
  pointer-events: auto;
  overflow-y: scroll;
}
.pip.navigation-pip .mobile-content.active .link-wrapper-mobile {
  top: 80px;
  height: auto;
  opacity: 1;
}
.pip.navigation-pip .mobile-content.active .mobile-menu-trigger {
  background-color: transparent;
}
.pip.navigation-pip .mobile-content.active .mobile-menu-trigger:before {
  top: 0 !important;
  transform: rotate(45deg);
}
.pip.navigation-pip .mobile-content.active .mobile-menu-trigger:after {
  top: 0 !important;
  transform: rotate(-45deg);
}
.pip.navigation-pip .mobile-content .mobile-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  height: 100vh;
  background-color: transparent;
  overflow: hidden;
  transition: background-color 500ms ease;
}
.pip.navigation-pip .mobile-menu-button {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  opacity: 0.8;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 200ms ease;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pip.navigation-pip .mobile-menu-button:hover {
  opacity: 1;
}
.pip.navigation-pip .mobile-menu-trigger {
  position: absolute;
  right: 20%;
  top: 0;
  bottom: 0;
  width: 60%;
  height: 5%;
  margin: auto;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: top 200ms, background-color 200ms, transform 200ms;
}
.pip.navigation-pip .mobile-menu-trigger:before,
.pip.navigation-pip .mobile-menu-trigger:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: inherit;
  transition: top 200ms, background-color 200ms, transform 200ms;
}
.pip.navigation-pip .mobile-menu-trigger:before {
  top: -400%;
}
.pip.navigation-pip .mobile-menu-trigger:after {
  top: 400%;
}
.pip.navigation-pip .link-wrapper-mobile {
  position: absolute;
  width: 100%;
  top: 60px;
  left: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 500ms ease, top 500ms ease;
}
.pip.navigation-pip .link-wrapper-mobile a {
  font-size: 1.5em;
}
.pip.navigation-pip .link-wrapper-mobile a:hover {
  text-decoration: none;
}
.pip.navigation-pip .link-wrapper-mobile ul {
  padding: 0;
  top: 80px;
}
.pip.navigation-pip .link-wrapper-mobile .link {
  display: block;
  width: 100%;
  margin: 0;
  padding-top: 80px;
  text-align: center;
  padding: 10px 0;
  transition: background-color 200ms ease;
}
.pip.navigation-pip .link--spillover {
  position: relative;
}
.pip.navigation-pip .link--spillover-navigation {
  position: absolute;
  top: 100%;
  left: 0;
}
.edit-mode .mobile-content .mobile-menu-button {
  top: 90px;
  right: 65px;
}
.drawers-container .mobile-content {
  display: none !important;
}
.no-scroll {
  overflow: hidden;
}
.pip.title-pip {
  width: 100%;
}
.pip.title-pip .title {
  display: block;
  padding: 0;
  width: 100%;
  text-align: center;
  vertical-align: baseline;
  text-decoration: none;
}
.pip.title-pip b,
.pip.title-pip strong {
  font-weight: bold;
}
.pip.title-pip u {
  text-decoration: underline;
}
.pip.title-pip i,
.pip.title-pip em {
  font-style: italic;
}
.pip.title-pip.title-pip-1 {
  line-height: 1.4;
  font-size: 2.125em;
  opacity: 1;
  margin: -0.425em auto;
}
.pip.title-pip.title-pip-2 {
  line-height: 1.5;
  font-size: 1.75em;
  opacity: 1;
  margin: -0.4375em auto;
}
.pip.title-pip.title-pip-3 {
  line-height: 1.6;
  font-size: 1.25em;
  opacity: 1;
  margin: -0.375em auto;
}
.pip.title-pip.title-pip-4 {
  line-height: 1.55;
  font-size: 1.125em;
  opacity: 1;
  margin: -0.3375em auto;
}
.pip.title-pip.title-pip-5 {
  line-height: 1.5;
  font-size: 1em;
  opacity: 1;
  margin: -0.25em auto;
}
.pip.title-pip.title-pip-6 {
  line-height: 1.66;
  font-size: 0.75em;
  opacity: 1;
  margin: -0.2475em auto;
}
.block-content > .pip.title-pip,
.group-pip > .pip.title-pip,
.col-pip > .pip.title-pip {
  margin-bottom: 20px;
}
.header-centered-fixed .brandbar .title-pip {
  width: auto;
}
.pip.image-pip {
  padding: 0;
  width: 100%;
  max-width: 150%;
  min-width: 5px;
  min-height: 1px;
}
.pip.image-pip .image-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.pip.image-pip .image-wrap img {
  display: block;
  width: 100%;
}







@media (min-width: 769px) {
  .pip.image-pip.is-tall {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    min-height: 250px;
  }
  .pip.image-pip.is-tall .image-wrap {
    position: absolute;
    height: 100%;
  }
  .pip.image-pip.is-tall .image-wrap img {
    margin: auto;
    width: auto;
    height: 100%;
  }
}







@media (max-width: 480px) {
  .pip.image-pip {
    width: 100% !important;
  }
}
.image-pip.is-resizable {
  margin: auto !important;
  -ms-flex-positive: 0 !important;
  -webkit-flex-grow: 0 !important;
  -moz-flex-grow: 0 !important;
  -ms-flex-grow: 0 !important;
  flex-grow: 0 !important;
}








@media (min-width: 769px) {
  .image-pip.is-resizable.is-tall {
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    min-height: 0;
  }
}
.image-pip.is-resizable.is-tall .image-wrap {
  position: relative;
  height: auto;
}
.image-pip.is-resizable.is-tall .image-wrap img {
  margin: 0;
  width: 100%;
  height: auto;
}
.block-content > .pip.image-pip,
.block-content > .title-pip ~ .pip.image-pip {
  margin-bottom: 20px !important;
}








@media (min-width: 480px) {
  .image-grid .block-content .title-pip + .pip.row-pip.wrappable.image-grid {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
.image-title-text-button .block-content .pip.image-pip {
  height: auto;
}







@media screen and (max-width: 480px) {
  .buckets-image .block-content .pip.image-pip .image-wrap {
    border-radius: 0 !important;
  }
  .buckets-image .block-content .pip.image-pip .image-wrap img {
    border-radius: 50%;
  }
}
.view-mode.lightbox-mode .image-pip:after,
.view-mode.lightbox-mode .image-pip .image-wrap:before,
.view-mode.lightbox-mode .image-pip .image-wrap:after {
  opacity: 0;
  transition: opacity .15s;
  content: '';
  pointer-events: none;
}
.view-mode.lightbox-mode .image-pip:hover:after,
.view-mode.lightbox-mode .image-pip:hover .image-wrap:before,
.view-mode.lightbox-mode .image-pip:hover .image-wrap:after {
  opacity: 1;
}
.view-mode.lightbox-mode .image-pip:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.view-mode.lightbox-mode .image-pip .image-wrap:before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background-color: transparent;
  position: absolute;
  top: -5px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.view-mode.lightbox-mode .image-pip .image-wrap:after {
  width: 2px;
  height: 11px;
  background-color: #FFFFFF;
  position: absolute;
  top: 16px;
  left: 20px;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  z-index: 1;
}
.pip.image-set-pip {
  padding: 0;
  width: 100%;
  min-height: 1px;
}
.pip.image-set-pip .control-button {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 50;
  transition: opacity 0.1s ease-in-out;
  background-color: white;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pip.image-set-pip .control-button.style1 {
  width: 50px;
  height: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pip.image-set-pip .control-button.style1:hover {
  opacity: 1;
}
.pip.image-set-pip .control-button.style1.right-button {
  right: 0px;
}
.pip.image-set-pip .control-button.style1.left-button {
  left: 0px;
}
.pip.image-set-pip .control-button.style1:before {
  display: block;
  content: '';
  height: 50px;
  width: 50px;
}
.pip.image-set-pip .control-button.style1.right-button:before {
  background: url("/studio/image/chevron.svg") no-repeat center;
  background-size: 50% 50%;
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.pip.image-set-pip .control-button.style1.left-button:before {
  background: url("/studio/image/chevron.svg") no-repeat center;
  background-size: 50% 50%;
  transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -webkit-ztransform: rotate(270deg);
}
.pip.image-set-pip .image-wrap {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}
.pip.image-set-pip .image-wrap .image-container {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pip.image-set-pip .image-wrap .image-container:before {
  content: '';
  display: block;
  margin-top: 100%;
}
.pip.image-set-pip .image-wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.pip.image-set-pip .image-wrap.loading .image-container {
  background-image: url(../../../studio/image/ring.svg);
  background-size: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 40px;
}
.pip.image-set-pip .image-set-wrapper.slideshow .image-wrap {
  width: 100%;
  top: 0;
  position: absolute;
  vertical-align: top;
  overflow: hidden;
}
.pip.image-set-pip .image-set-wrapper.slideshow .image-wrap .wrap-container {
  overflow: hidden;
}
.pip.image-set-pip .image-set-wrapper.slideshow .metadata-wrapper {
  position: relative;
  height: 100px;
  border: 1px solid #62c4e1;
}
.pip.image-set-pip .image-set-wrapper.slideshow .metadata-wrapper.hidden {
  display: none;
}
.pip.image-set-pip .image-set-wrapper.slideshow .metadata-wrapper .image-metadata,
.pip.image-set-pip .image-set-wrapper.slideshow .metadata-wrapper .image-metadata-placeholder {
  position: absolute;
  height: 100px;
  opacity: 0;
  padding-top: 10px;
}
.pip.image-set-pip .image-set-wrapper.slideshow .metadata-wrapper .image-metadata.slide-selected,
.pip.image-set-pip .image-set-wrapper.slideshow .metadata-wrapper .image-metadata-placeholder.slide-selected {
  opacity: 1;
}
.pip.image-set-pip .image-set-wrapper.slideshow .slideshow {
  display: table;
  width: 100%;
  box-sizing: border-box;
  table-layout: fixed;
  position: relative;
  line-height: 0px;
}
.pip.image-set-pip .image-set-wrapper.slideshow .slide-container {
  box-sizing: border-box;
  width: 100%;
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0;
}
.pip.image-set-pip .image-set-wrapper.slideshow .slide-container-1 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pip.image-set-pip .image-set-wrapper.slideshow .slide-container-1:before {
  content: '';
  display: block;
  margin-top: 100%;
}
.pip.image-set-pip .image-set-wrapper.slideshow:hover .control-button {
  opacity: 0.5;
}
.pip.image-set-pip .slide-wrapper {
  position: absolute;
  max-width: 100%;
  position: relative;
}
.pip.image-set-pip .slide-wrapper.none {
  opacity: 0;
}
.pip.image-set-pip .slide-wrapper.none.slide-selected {
  display: block;
  opacity: 1;
  z-index: 2;
}
.pip.image-set-pip .slide-wrapper.fade {
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}
.pip.image-set-pip .slide-wrapper.fade.slide-selected {
  display: block;
  opacity: 1;
  z-index: 2;
}
.pip.image-set-pip .slide-wrapper.vertical {
  opacity: 0;
  z-index: 1;
}







@keyframes incomingtop {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}






@keyframes incomingbottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}






@keyframes outgoingtop {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%);
    opacity: 0;
  }
}






@keyframes outgoingbottom {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}





@-webkit-keyframes incomingtop {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}





@-webkit-keyframes incomingbottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}





@-webkit-keyframes outgoingtop {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%);
    opacity: 0;
  }
}





@-webkit-keyframes outgoingbottom {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
.pip.image-set-pip .slide-wrapper.vertical.incomingright {
  opacity: 1;
  z-index: 2;
  -webkit-animation: incomingtop 0.8s;
  animation: incomingtop 0.8s;
}
.pip.image-set-pip .slide-wrapper.vertical.incomingleft {
  opacity: 1;
  z-index: 3;
  -webkit-animation: incomingbottom 0.8s;
  animation: incomingbottom 0.8s;
}
.pip.image-set-pip .slide-wrapper.vertical.outgoingright {
  z-index: 2;
  -webkit-animation: outgoingtop 0.8s;
  animation: outgoingtop 0.8s;
}
.pip.image-set-pip .slide-wrapper.vertical.outgoingleft {
  z-index: 3;
  -webkit-animation: outgoingbottom 0.8s;
  animation: outgoingbottom 0.8s;
}
.pip.image-set-pip .slide-wrapper.vertical.slide-selected {
  opacity: 1;
  right: 0%;
  display: block;
}
.pip.image-set-pip .slide-wrapper.carouselHorizontal {
  opacity: 1;
  z-index: 1;
}





@keyframes incomingright {
  0% {
    right: -100%;
  }
  100% {
    right: 0%;
  }
}





@keyframes incomingleft {
  0% {
    right: 100%;
  }
  100% {
    right: 0%;
  }
}





@keyframes outgoingright {
  0% {
    right: 0%;
  }
  100% {
    right: -100%;
  }
}





@keyframes outgoingleft {
  0% {
    right: 0%;
  }
  100% {
    right: 100%;
  }
}





@-webkit-keyframes incomingright {
  0% {
    right: -100%;
  }
  100% {
    right: 0%;
  }
}





@-webkit-keyframes incomingleft {
  0% {
    right: 100%;
  }
  100% {
    right: 0%;
  }
}





@-webkit-keyframes outgoingright {
  0% {
    right: 0%;
  }
  100% {
    right: -100%;
  }
}





@-webkit-keyframes outgoingleft {
  0% {
    right: 0%;
  }
  100% {
    right: 100%;
  }
}
.pip.image-set-pip .slide-wrapper.carouselHorizontal.incomingright {
  z-index: 2;
  -webkit-animation: incomingright 0.4s;
  animation: incomingright 0.4s;
}
.pip.image-set-pip .slide-wrapper.carouselHorizontal.incomingleft {
  z-index: 2;
  -webkit-animation: incomingleft 0.4s;
  animation: incomingleft 0.4s;
}
.pip.image-set-pip .slide-wrapper.carouselHorizontal.outgoingright {
  z-index: 2;
  -webkit-animation: outgoingright 0.4s;
  animation: outgoingright 0.4s;
}
.pip.image-set-pip .slide-wrapper.carouselHorizontal.outgoingleft {
  z-index: 2;
  -webkit-animation: outgoingleft 0.4s;
  animation: outgoingleft 0.4s;
}
.pip.image-set-pip .slide-wrapper.carouselHorizontal.slide-selected {
  z-index: 3;
  right: 0%;
  display: block;
}
.pip.image-set-pip .slide-wrapper.scale {
  opacity: 0;
  z-index: 1;
}





@keyframes scalein {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}





@-webkit-keyframes scalein {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}





@-webkit-keyframes scaleout {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}





@keyframes scaleout {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}
.pip.image-set-pip .slide-wrapper.scale.scalein {
  z-index: 2;
  -webkit-animation: scalein 0.8s;
  animation: scalein 0.8s;
}
.pip.image-set-pip .slide-wrapper.scale.scaleout {
  z-index: 3;
  -webkit-animation: scaleout 0.8s;
  animation: scaleout 0.8s;
}
.pip.image-set-pip .slide-wrapper.scale.slide-selected {
  opacity: 1;
  right: 0%;
  display: block;
}
.pip.icon-pip {
  padding: 0;
}
.pip.icon-pip .icon-container svg {
  min-width: 5px;
  min-height: 5px;
  height: 100%;
}
.icon-pip.is-resizable:hover {
  z-index: 11;
}
.row-pip .icon-pip {
  width: 100%;
}
.icon-pip .icon-container {
  text-align: center;
}
.logo-pip .centerStack {
  margin: 0 auto;
  text-align: center;
}
.logo-pip .centerStack .icon-pip,
.logo-pip .centerStack .image-pip,
.logo-pip .centerStack .logo-text-container {
  margin: 0 auto 5px;
}
.logo-pip .centerStack .icon-container,
.logo-pip .centerStack img {
  margin: 0 auto;
}
.logo-pip .centerStack .logo-text-container {
  text-align: center;
  display: block;
}
.logo-pip .homeLink {
  display: inline-block;
}
.logo-pip .image-pip,
.logo-pip .icon-pip,
.logo-pip .logo-text-pip,
.logo-pip .logo-text-container {
  vertical-align: middle;
  display: inline-block;
}
.logo-pip .icon-pip,
.logo-pip .image-pip.pip {
  position: relative;
  width: auto;
  margin-left: 10px;
}
.logo-pip .logo-text-container {
  position: relative;
  margin-left: 21px;
}
.logo-pip .image-pip.is-tall {
  min-height: 0px;
}
.logo-pip .image-pip.is-tall .image-wrap {
  position: relative;
}
.logo-pip.text-mode {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.logo-pip.text-mode .logo-text-container {
  margin-left: 0;
}
.logo-pip.is-centerStacked {
  margin: 0 auto;
  text-align: center;
}
.logo-pip.is-centerStacked .icon-pip,
.logo-pip.is-centerStacked .image-pip,
.logo-pip.is-centerStacked .logo-text-container {
  margin: 0 auto 5px;
}
.logo-pip.is-centerStacked .icon-container,
.logo-pip.is-centerStacked img {
  margin: 0 auto;
}
.logo-pip.is-centerStacked .logo-text-container {
  text-align: center;
  display: block;
}





@media screen and (max-width: 480px) {
  .logo-pip:not(.is-centerStacked) {
    margin: 0 auto;
    text-align: center;
  }
  .logo-pip:not(.is-centerStacked) .icon-pip,
  .logo-pip:not(.is-centerStacked) .image-pip,
  .logo-pip:not(.is-centerStacked) .logo-text-container {
    margin: 0 auto 5px;
  }
  .logo-pip:not(.is-centerStacked) .icon-container,
  .logo-pip:not(.is-centerStacked) img {
    margin: 0 auto;
  }
  .logo-pip:not(.is-centerStacked) .logo-text-container {
    text-align: center;
    display: block;
  }
}





@media (min-width: 481px) {
  .logo-pip:not(.is-centerStacked),
  .logo-pip:not(.is-centerStacked) .homeLink {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .logo-pip:not(.is-centerStacked) .logo-text-container .rich-text-content,
  .logo-pip:not(.is-centerStacked) .homeLink .logo-text-container .rich-text-content,
  .logo-pip:not(.is-centerStacked) .logo-text-container .rich-text-editable-container,
  .logo-pip:not(.is-centerStacked) .homeLink .logo-text-container .rich-text-editable-container {
    text-align: left;
  }
}
.pip.social-pip span {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  min-height: 20px;
  min-width: 50%;
}
.pip.social-pip span a {
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
  position: relative;
}
.pip.social-pip span a svg {
  pointer-events: none;
}
.social-icon-type-circle {
  border-radius: 50%;
}
.social-icon-type-square {
  border-radius: 2px;
}
.pip.contact-pip {
  display: block !important;
}
.pip.contact-pip div {
  margin: 0 0 15px;
}
.pip.contact-pip form .form-fields-and-btn label {
  margin: 0 0 15px;
  display: block;
}
.pip.contact-pip form .form-fields-and-btn label.error {
  color: #ef6262;
}
.pip.contact-pip form .form-fields-and-btn .button-quark {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.contact-pip form .form-fields-and-btn input:not([type='checkbox']):not([type='radio']) {
  height: 60px;
  /* Is this specified by the design team? it results in no focus indicator
				   for KB navigation... see http://outlinenone.com/ for some issues with this.
				   review with Nick, Dylan, or Justin. This is a product conversation. */
  outline: none;
}
.pip.contact-pip form .form-fields-and-btn .input-container {
  position: relative;
}
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg:after {
  background: #ef6262;
  border-radius: 3px;
  color: #fff;
  content: attr(title);
  padding: 10px 20px;
  position: absolute;
  z-index: 98;
  top: -38px;
  left: 15vw;
}
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg:before {
  border: solid;
  border-color: #ef6262 transparent;
  border-width: 6px 6px 0 6px;
  content: "";
  position: absolute;
  z-index: 99;
  left: 23vw;
  top: -2px;
}
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg {
  color: #ef6262;
}
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg input,
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg textarea {
  border: 2px solid #ef6262;
}
.pip.contact-pip form .form-fields-and-btn input,
.pip.contact-pip form .form-fields-and-btn textarea {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  margin: 5px 0;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 15px;
  border-radius: 3px;
}
.pip.contact-pip form .form-fields-and-btn input.square,
.pip.contact-pip form .form-fields-and-btn textarea.square {
  border-radius: 0;
}
.pip.contact-pip form .form-fields-and-btn input.soft,
.pip.contact-pip form .form-fields-and-btn textarea.soft {
  border-radius: 3px;
}
.pip.contact-pip form .form-fields-and-btn input.rounded,
.pip.contact-pip form .form-fields-and-btn textarea.rounded {
  border-radius: 6px;
}
.pip.contact-pip form .form-fields-and-btn textarea {
  height: 135px;
  resize: none;
  display: block;
}
.pip.contact-pip form .form-fields-and-btn input.text,
.pip.contact-pip form .form-fields-and-btn textarea {
  width: 100%;
}
.pip.contact-pip form .form-fields-and-btn input[type='checkbox'],
.pip.contact-pip form .form-fields-and-btn input[type='radio'] {
  margin: 0 10px 0;
  vertical-align: middle;
}
.pip.contact-pip form .form-fields-and-btn fieldset label {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.contact-pip form .form-fields-and-btn fieldset label span {
  font: inherit;
}
.pip.contact-pip form .error-message,
.pip.contact-pip form .success-message {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  visibility: hidden;
  margin: auto 0;
  height: 150px;
}
.pip.contact-pip form .error-message > div,
.pip.contact-pip form .success-message > div {
  margin-top: 0;
}
.pip.contact-pip form .error-message svg,
.pip.contact-pip form .success-message svg {
  width: 44px;
  height: 44px;
  margin: auto;
  margin-bottom: 10px;
}
.pip.contact-pip form .success-message svg {
  fill: #7cbb52;
}
.pip.contact-pip form .error-message svg {
  fill: #ef6262;
}
.pip.contact-pip.success form .form-fields-and-btn {
  visibility: hidden;
}
.pip.contact-pip.success .success-message {
  visibility: visible;
}
.pip.contact-pip.failure form .form-fields-and-btn {
  visibility: hidden;
}
.pip.contact-pip.failure .error-message {
  visibility: visible;
}
.pip.contact-pip .description {
  opacity: .8;
}
.pip.factory-pip {
  margin-bottom: 60px;
}
.pip.factory-pip:last-of-type {
  margin-bottom: 0;
}
.pip.factory-pip > .edit-ui {
  position: absolute;
  z-index: 1;
  display: none;
}
.pip.factory-pip > .edit-ui.remove {
  right: 20px;
}
.pip.factory-pip > .edit-ui.remove,
.pip.factory-pip > .edit-ui.handle {
  top: 0;
}
.pip.factory-pip > .edit-ui.add {
  opacity: 0;
}
.pip.factory-pip > .edit-ui.add .factory-button {
  width: 40px;
  height: 40px;
}
.pip.factory-pip > .edit-ui.add .factory-button:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: 2px;
  background-color: #ffffff;
  content: ' ';
}
.pip.factory-pip > .edit-ui.add .factory-button:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 50%;
  background-color: #ffffff;
  content: ' ';
}
.pip.factory-pip > .edit-ui.handle {
  left: 20px;
}
.pip.factory-pip > .edit-ui.handle .factory-button {
  cursor: move;
}
.pip.factory-pip > .edit-ui.handle .icon-move {
  position: absolute;
  display: block;
  top: 9px;
  left: 9px;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #ffffff;
  stroke-width: .1px;
}
.pip.factory-pip:hover {
  z-index: 1;
}
.pip.factory-pip:hover > .edit-ui.remove,
.pip.factory-pip:hover > .edit-ui.handle {
  display: block;
}
.pip.factory-pip:last-of-type > .edit-ui.add {
  display: block;
  right: -20px;
}
.pip.factory-pip:only-of-type > .edit-ui.remove,
.pip.factory-pip:only-of-type > .edit-ui.handle {
  display: none;
}
.factory-button {
  width: 32px;
  height: 32px;
  padding: 11px 10.5px;
  line-height: 7px;
  font-size: 19px;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
}
.pip.row-pip.wrappable {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.pip.row-pip.wrappable .pip.factory-pip {
  -ms-flex-preferred-size: 290px;
  -webkit-flex-basis: 290px;
  -moz-flex-basis: 290px;
  -ms-flex-basis: 290px;
  flex-basis: 290px;
  -ms-flex-positive: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
.block:hover .pip.factory-pip .edit-ui.add {
  opacity: 1;
}
.factory-pip:last-of-type > .col-pip:last-of-type {
  margin-bottom: 0;
}
.factory-pip:last-of-type .col-pip:last-of-type {
  margin-bottom: 0;
}
.alternating-timeline .title-pip ~ .factory-pip {
  margin-bottom: 0;
}
.alternating-timeline .title-pip ~ .factory-pip:before,
.alternating-timeline .title-pip ~ .factory-pip:after {
  display: none;
}





@media (min-width: 768px) {
  .alternating-timeline .title-pip ~ .factory-pip:before,
  .alternating-timeline .title-pip ~ .factory-pip:after {
    display: block;
  }
}





@media (max-width: 768px) {
  .block.features .col-pip.feature:not(.feature--v2) .row-pip > .col-icon {
    margin-right: 20px;
    -ms-flex-preferred-size: 0 !important;
    -webkit-flex-basis: 0 !important;
    -moz-flex-basis: 0 !important;
    -ms-flex-basis: 0 !important;
    flex-basis: 0 !important;
  }
  .block.features .col-pip.feature:not(.feature--v2) .row-pip > .col-text {
    -ms-flex-preferred-size: 0% !important;
    -webkit-flex-basis: 0% !important;
    -moz-flex-basis: 0% !important;
    -ms-flex-basis: 0% !important;
    flex-basis: 0% !important;
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    -moz-flex-shrink: 1 !important;
    -ms-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    -moz-flex-grow: 1 !important;
    -ms-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }
}
.pip.video-pip .video-container {
  position: relative;
  padding-top: 50%;
}
.pip.video-pip .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pip.facebook-likebox-pip {
  position: relative;
  min-height: 150px;
}
.pip.facebook-likebox-pip .facebook-pip-inner {
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 150px;
}
.pip.MapPip-pip.disabled {
  background-image: url(../../../studio/image/googleMapWhiteHouse.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
}




@media screen and (max-width: 1024px) {

}

.block-content {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.col-pip {
  display: block;
  margin: 0 0 40px;
}





@media (min-width: 768px) {
  .col-pip {
    margin: 0 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -ms-flex-preferred-size: 0%;
    -webkit-flex-basis: 0%;
    -moz-flex-basis: 0%;
    -ms-flex-basis: 0%;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    -moz-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
  }
}
.row-pip {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.row-pip:last-of-type {
  margin-bottom: 0;
}





@media (min-width: 768px) {
  .row-pip {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.row-pip:last-of-type .col-pip:last-of-type {
  margin-bottom: 0;
}
.button-quark {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  border: 0 solid currentColor;
  color: #cccccc;
  text-align: center;
  line-height: 1.2em;
  text-decoration: none;
  vertical-align: baseline;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}





@media (min-width: 768px) {
  .button-quark {
    width: auto;
  }
}
.button-quark > span,
.button-quark > .rich-text-editable-container {
  width: 100%;
  padding: 1em 2em;
  display: inline-block;
}
.button-quark:hover > span,
.button-quark:hover > .rich-text-editable-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
}
.button-quark b,
.button-quark strong {
  font-weight: bold;
}
.button-quark u {
  text-decoration: underline;
}
.button-quark i,
.button-quark em {
  font-style: italic;
}
.button-quark.square {
  border-radius: 0;
}
.button-quark.soft {
  border-radius: 3px;
}
.button-quark.rounded {
  border-radius: 25em;
}
.button-quark.flat {
  border-color: transparent;
  box-shadow: none;
}
.button-quark.outline {
  border-color: currentcolor;
  box-shadow: none;
}
.button-quark.depth {
  border-color: transparent;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.15));
}
.button-quark-background-color1 {
  background-color: #334d5c;
  color: #ffffff;
}
.button-quark-background-color1.outline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #334d5c;
  color: #334d5c;
}
.button-quark-background-color2 {
  background-color: #7cbb52;
  color: #ffffff;
}
.button-quark-background-color2.outline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #7cbb52;
  color: #7cbb52;
}
.button-quark-background-color3 {
  background-color: #df4949;
  color: #ffffff;
}
.button-quark-background-color3.outline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #df4949;
  color: #df4949;
}
.button-quark-background-color4 {
  background-color: #ffffff;
  color: #ffffff;
}
.button-quark-background-color4.outline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.button-quark-background-color5 {
  background-color: #333333;
  color: #ffffff;
}
.button-quark-background-color5.outline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #333333;
  color: #333333;
}
.lightbox {
  z-index: 101;
  opacity: 0;
  transition: opacity .2s;
  -webkit-transition: opacity .2s;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.lightbox.lightbox--visible {
  pointer-events: all;
  opacity: 1;
}
.lightbox-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
.lightbox-image {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 70%;
  max-height: 95%;
  cursor: pointer;
}
.lightbox-xButton {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-family: Helvetica, Arial, sans-serif;
  cursor: pointer;
  color: white;
}
.lightbox-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 40px;
  height: 100px;
  cursor: pointer;
  opacity: 0.6;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
}
.lightbox-nav:hover {
  opacity: 1;
}
.lightbox-nav:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  margin: auto;
  width: 20px;
  height: 20px;
  vertical-align: top;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: white;
}
.lightbox-nav--next {
  right: 0;
}
.lightbox-nav--next:before {
  right: 6px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.lightbox-nav--previous {
  left: 0;
}
.lightbox-nav--previous:before {
  left: 6px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.block.header-basic .block-background,
.block.header-basic-logo .block-background {
  margin-bottom: 126px;
  height: inherit;
}
.block.header-basic .block-edit-change-image,
.block.header-basic-logo .block-edit-change-image {
  margin: 0 auto;
  bottom: 136px;
  /* This includes the height of the navigation group pip(126px) + 10x */
  right: 10px;
}
.block.header-basic .logo-type-container,
.block.header-basic-logo .logo-type-container {
  bottom: -20px;
}
.block.header-basic .block-content,
.block.header-basic-logo .block-content {
  padding: 20px;
  padding-top: 0;
  max-width: none;
  text-align: center;
}
.block.header-basic .window-group,
.block.header-basic-logo .window-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  height: 300px;
  position: relative;
}
.block.header-basic .hero-group,
.block.header-basic-logo .hero-group {
  padding: 20px 40px;
  width: 100%;
  bottom: -40px;
}
.block.header-basic .hero-group .icon-pip,
.block.header-basic-logo .hero-group .icon-pip {
  margin: 0 auto 10px;
}
.block.header-basic .hero-group .header-title,
.block.header-basic-logo .hero-group .header-title {
  margin-bottom: 10px;
}
.block.header-basic .hero-group .header-subtitle,
.block.header-basic-logo .hero-group .header-subtitle {
  display: inline-block;
  width: inherit;
  font-size: 0.875em;
}
.block.header-basic .hero-group .header-subtitle .title:before,
.block.header-basic-logo .hero-group .header-subtitle .title:before,
.block.header-basic .hero-group .header-subtitle .title:after,
.block.header-basic-logo .hero-group .header-subtitle .title:after {
  content: '';
  position: absolute;
  top: 0;
  width: 30px;
  height: 50%;
  border-top: 1px solid;
}





@media (max-width: 800px) {
  .block.header-basic .hero-group .header-subtitle .title:before,
  .block.header-basic-logo .hero-group .header-subtitle .title:before,
  .block.header-basic .hero-group .header-subtitle .title:after,
  .block.header-basic-logo .hero-group .header-subtitle .title:after {
    display: none;
  }
}
.block.header-basic .hero-group .header-subtitle .title:before,
.block.header-basic-logo .hero-group .header-subtitle .title:before {
  -webkit-transform: translateX(-100%) translateX(-14px) translateY(100%);
  transform: translateX(-100%) translateX(-14px) translateY(100%);
  left: 0;
}
.block.header-basic .hero-group .header-subtitle .title:after,
.block.header-basic-logo .hero-group .header-subtitle .title:after {
  -webkit-transform: translateX(100%) translateX(14px) translateY(100%);
  transform: translateX(100%) translateX(14px) translateY(100%);
  right: 0;
}





@media (min-width: 481px) {
  .block.header-basic .hero-group,
  .block.header-basic-logo .hero-group {
    width: auto;
    min-width: 280px;
    max-width: 75%;
  }
  .block.header-basic .hero-group .header-subtitle,
  .block.header-basic-logo .hero-group .header-subtitle {
    margin: -0.25em 20px 0;
  }
}





@media (max-width: 800px) {
  .block.header-basic .hero-group,
  .block.header-basic-logo .hero-group {
    padding: 20px;
  }
}
.block.header-basic .navigation-group,
.block.header-basic-logo .navigation-group {
  padding-top: 72px;
  height: 126px;
}





@media screen and (max-width: 480px) {
  .block.header-basic .navigation-group,
  .block.header-basic-logo .navigation-group {
    height: 0;
    padding-top: 40px;
  }
}
.block.header-basic .navigation-group .navigation-pip li a,
.block.header-basic-logo .navigation-group .navigation-pip li a {
  position: relative;
  text-decoration: none;
}
.block.header-basic .navigation-group .navigation-pip li a:after,
.block.header-basic-logo .navigation-group .navigation-pip li a:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}
.block.header-basic .navigation-group .navigation-pip li a:hover:after,
.block.header-basic-logo .navigation-group .navigation-pip li a:hover:after,
.block.header-basic .navigation-group .navigation-pip li a:focus:after,
.block.header-basic-logo .navigation-group .navigation-pip li a:focus:after,
.block.header-basic .navigation-group .navigation-pip li a.navigation-link-active-page:after,
.block.header-basic-logo .navigation-group .navigation-pip li a.navigation-link-active-page:after {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.block.header-basic-logo .logo-pip {
  justify-content: center;
}
.block.header-basic-logo .logo-pip .logo-text-container {
  margin-left: 0;
  margin-right: 0;
}
.block.header-basic-logo .logo-pip .logo-type-container {
  bottom: -20px;
}
.block.header-basic-logo .logo-pip.graphic-mode {
  margin-bottom: 15px;
}
.block.header-basic-logo .logo-pip.text-mode {
  min-height: 55px;
}
.block.header-basic-logo .logo-pip.text-mode .logo-type-container {
  bottom: -16px;
}
.block.header-basic-logo .header-title {
  font-size: 1.75em;
  margin-bottom: 0;
}
.block.header-basic-logo .icon-pip {
  margin: 0 auto;
}
.block.header-basic-logo .icon-pip:not(.is-resizable) .icon-container svg {
  height: auto;
  width: auto;
}
.block.header-basic-logo .icon-pip.is-resizable .icon-container {
  width: auto !important;
  height: auto !important;
}
.block.header-basic-logo.slim .window-group {
  height: auto;
}





@media screen and (max-width: 480px) {
  .block.header-basic-logo.slim .window-group {
    height: 300px;
  }
}





@media (min-width: 768px) {
  .block.text-button .block-content {
    padding: 60px 0;
  }
}
.block.text-button .block-content .col-pip:nth-of-type(1) {
  -ms-flex-positive: 5;
  -webkit-flex-grow: 5;
  -moz-flex-grow: 5;
  -ms-flex-grow: 5;
  flex-grow: 5;
}
.block.text-button .block-content .col-pip:nth-of-type(2) {
  -ms-flex-positive: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-grow: 2;
  flex-grow: 2;
}
.block.text-button .block-content .paragraph-pip > .rich-text-content {
  text-align: left;
}





@media (min-width: 768px) {
  .block.text-button .block-content .paragraph-pip > .rich-text-content {
    text-align: left;
  }
}





@media (min-width: 768px) {
  .block.text-button .block-content .button-pip {
    margin-left: auto;
  }
}
.block.footer-navigation .navigation-group {
  margin: auto;
  text-align: center;
}
.block.footer-navigation .navigation-pip {
  display: inline-block;
  margin: auto;
  line-height: 1.6;
}
.block.footer-navigation .paragraph-pip .rich-text-editable-container,
.block.footer-navigation .paragraph-pip .rich-text-content {
  opacity: 1;
}

/********/
.block.header-basic[data-tower-id="1450719633348"],
.block.header-basic-logo[data-tower-id="1450719633348"] {
  background: #ffffff;
}
.block.header-basic[data-tower-id="1450719633348"] .hero-group,
.block.header-basic-logo[data-tower-id="1450719633348"] .hero-group {
  background: #334d5c;
}
.block.header-basic[data-tower-id="1450719633348"] .icon-pip svg,
.block.header-basic-logo[data-tower-id="1450719633348"] .icon-pip svg,
.block.header-basic[data-tower-id="1450719633348"] .icon-pip svg *,
.block.header-basic-logo[data-tower-id="1450719633348"] .icon-pip svg * {
  fill: #ffffff !important;
}
.block.header-basic[data-tower-id="1450719633348"] .header-title,
.block.header-basic-logo[data-tower-id="1450719633348"] .header-title {
  color: #ffffff;
}
.block.header-basic[data-tower-id="1450719633348"] .header-subtitle,
.block.header-basic-logo[data-tower-id="1450719633348"] .header-subtitle {
  color: #ffffff;
}
.block.header-basic[data-tower-id="1450719633348"] .header-subtitle .title:before,
.block.header-basic-logo[data-tower-id="1450719633348"] .header-subtitle .title:before,
.block.header-basic[data-tower-id="1450719633348"] .header-subtitle .title:after,
.block.header-basic-logo[data-tower-id="1450719633348"] .header-subtitle .title:after {
  border-top: 1px solid #ffffff;
}
.block.header-basic[data-tower-id="1450719633348"] .navigation-group .navigation-pip .link-wrapper li a,
.block.header-basic-logo[data-tower-id="1450719633348"] .navigation-group .navigation-pip .link-wrapper li a {
  color: #334d5c !important;
}
.block.header-basic[data-tower-id="1450719633348"] .navigation-group .navigation-pip .link-wrapper li a:after,
.block.header-basic-logo[data-tower-id="1450719633348"] .navigation-group .navigation-pip .link-wrapper li a:after {
  background: rgba(51, 77, 92, 0.6);
}

/********/
.pip.icon-pip[data-tower-id="1450719633348-0-0-0-0"] .icon-container svg,
.pip.icon-pip[data-tower-id="1450719633348-0-0-0-0"] .icon-container svg * {
  fill: #334d5c;
}

/********/
.pip.title-pip[data-tower-id="1450719633348-0-0-1"] {
  font-family: "Oxygen", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  color: #333333;
}
.pip.title-pip[data-tower-id="1450719633348-0-0-1"].paragraph-pip .rich-text-editable-container,
.pip.title-pip[data-tower-id="1450719633348-0-0-1"].paragraph-pip .rich-text-content {
  opacity: 0.7;
}
.pip.title-pip[data-tower-id="1450719633348-0-0-1"] a {
  color: #7cbb52;
}

/********/
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .link a {
  color: #333333;
}
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-menu-button {
  background-color: rgba(51, 51, 51, 0.35);
}
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content.active .mobile-wrapper {
  background-color: rgba(51, 77, 92, 0.98);
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content.active .mobile-menu-button {
  background-color: transparent;
}
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content.active li:hover,
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content.active li:active {
  background-color: rgba(255, 255, 255, 0.1);
}
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content.active li a {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content .mobile-menu-trigger,
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content .mobile-menu-trigger:before,
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content .mobile-menu-trigger:after {
  background-color: #ffffff;
}
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-content.active .mobile-menu-trigger {
  background-color: transparent;
}
.pip.navigation-pip[data-tower-id="1450719633348-1-0"] .mobile-wrapper li a {
  color: #ffffff !important;
}
[data-tower-id='1450719633348'] .block-content { opacity: 1 !important; }
/********/

/********/
.pip.title-pip[data-tower-id="1456935923503-0-0"] {
  font-family: "Oxygen", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  color: #333333;
}
.pip.title-pip[data-tower-id="1456935923503-0-0"].paragraph-pip .rich-text-editable-container,
.pip.title-pip[data-tower-id="1456935923503-0-0"].paragraph-pip .rich-text-content {
  opacity: 0.7;
}
.pip.title-pip[data-tower-id="1456935923503-0-0"] a {
  color: #7cbb52;
}

/********/
.pip.paragraph-pip[data-tower-id="1456935923503-1-0"] {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  color: #333333;
}
.pip.paragraph-pip[data-tower-id="1456935923503-1-0"].paragraph-pip .rich-text-editable-container,
.pip.paragraph-pip[data-tower-id="1456935923503-1-0"].paragraph-pip .rich-text-content {
  opacity: 0.7;
}
.pip.paragraph-pip[data-tower-id="1456935923503-1-0"] a {
  color: #7cbb52;
}
[data-tower-id='1456935923503'] .block-content { opacity: 1 !important; }
/********/

/********/
.pip.paragraph-pip[data-tower-id="1480891964081-0-0"] {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  color: #ffffff;
}
.pip.paragraph-pip[data-tower-id="1480891964081-0-0"] a {
  color: #7cbb52;
}
[data-tower-id='1480891964081'] .block-content { opacity: 1 !important; }
/********/

/********/
.pip.paragraph-pip[data-tower-id="1456935923534-0-0-0-0"] {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  color: #333333;
}
.pip.paragraph-pip[data-tower-id="1456935923534-0-0-0-0"].paragraph-pip .rich-text-editable-container,
.pip.paragraph-pip[data-tower-id="1456935923534-0-0-0-0"].paragraph-pip .rich-text-content {
  opacity: 0.7;
}
.pip.paragraph-pip[data-tower-id="1456935923534-0-0-0-0"] a {
  color: #7cbb52;
}

/********/
.pip.button-pip[data-tower-id="1456935923534-0-1-0"] {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.button-quark[data-tower-id="1456935923534-0-1-0"] {
  background-color: #df4949;
  color: #ffffff;
  cursor: pointer;
}
.button-quark[data-tower-id="1456935923534-0-1-0"].outline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #df4949;
  color: #df4949;
}
[data-tower-id='1456935923534'] .block-content { opacity: 1 !important; }
/********/

/********/
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .link a {
  color: #ffffff;
}
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-menu-button {
  background-color: rgba(51, 51, 51, 0.35);
}
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content.active .mobile-wrapper {
  background-color: rgba(51, 77, 92, 0.98);
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content.active .mobile-menu-button {
  background-color: transparent;
}
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content.active li:hover,
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content.active li:active {
  background-color: rgba(255, 255, 255, 0.1);
}
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content.active li a {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content .mobile-menu-trigger,
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content .mobile-menu-trigger:before,
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content .mobile-menu-trigger:after {
  background-color: #ffffff;
}
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-content.active .mobile-menu-trigger {
  background-color: transparent;
}
.pip.navigation-pip[data-tower-id="1450719633424-0-0-0"] .mobile-wrapper li a {
  color: #ffffff !important;
}

/********/
.pip.paragraph-pip[data-tower-id="1450719633424-1-0"] {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  color: #ffffff;
}
.pip.paragraph-pip[data-tower-id="1450719633424-1-0"] a {
  color: #7cbb52;
}
[data-tower-id='1450719633424'] .block-content { opacity: 1 !important; }



div.border-jon {
  border: 2px;
  border-style: solid;
  padding: 20px;
  margin: 20px;
}

div.border-jon-white {
  border: 2px;
  border-style: solid;
  border-color: white;
}

div.bottom-padding-jon {
  padding-bottom: 20px !important;
}

div.div-center {
  text-align: center;
}

img.center-align {
    display: block;
    margin: 0 auto;
}

span.nobreak {
  white-space: nowrap;
}

div.images-one-line {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

img.images-padding {
  padding: 10px;
}

div.outside-services {
  padding: 20px;
}

div.services-packages {
  padding: 20px;
  background-color: #e1e1e1;
}

td.services-packages {
  padding-left: 10px;
  vertical-align: top !important;
}


#css-table {
  width: 100%;
  display: table;
  background-color: #e1e1e1;
  border: 5px;
  border-style: solid;
  border-color: white;
}

#css-table .col { 
  display: table-cell;
  padding: 10px;
}

#css-table2 {
  width: 100%;
  display: table;
  background-color: white;
  border: 5px;
  border-style: solid;
  border-color: white;
}

div.white-background {
  background-color: white;
  border: 5px;
  border-style: solid;
  border-color: #e1e1e1;
  vertical-align: top !important;
  padding: 0px;
}

img.services {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

img.about {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

input[type=text] {
  -webkit-appearance: none; -moz-appearance: none;
  display: block;
  margin: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 17px;
  border: 1px solid #bbb;
}

select {
  width: 100%;
  height: 40px !important;
}

.font-color6 {
  color: #334d5c;
  text-decoration: inherit;
}

div.lineheight {
  line-height: 30px;
}
