@charset "UTF-8";
.search-container #search-box {
  height: 40px;
  width: 18em;
  padding-left: 0.5em;
}

.search-container #search-box:active, .search-container #search-box:focus {
  border: 1px solid black;
  outline: none;
}

.search-container #search-btn {
  -webkit-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  height: 40px;
  background: black;
  border: 1px solid black;
  font-size: 1.2rem;
  font-family: "Oswald", sans-serif;
  color: white;
  cursor: pointer;
  border-radius: 0;
}

/* Layout for search container */
.search {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  text-align: center;
}

.search {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.search__input {
  border: 0;
  background: transparent;
  border-radius: 0;
  -webkit-appearance: none;
}

.search__input:focus {
  outline: none;
}

.btn--search-close {
  font-size: 2em;
  position: absolute;
  top: 0.85em;
  right: 0.4em;
  display: none;
}

.search .container {
  -webkit-align-self: flex-start;
  -ms-align-self: flex-start;
  -moz-align-self: flex-start;
  -o-align-self: flex-start;
  align-self: flex-start;
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-flex: 1;
  -o-flex: 1;
  flex: 1;
}

.search .search__form {
  -webkit-flex: 2;
  -ms-flex: 2;
  -moz-flex: 2;
  -o-flex: 2;
  flex: 2;
}

.btn--search-close {
  display: block;
}

.search__form {
  margin: 5em 0;
}

.search__input {
  font-family: inherit;
  font-size: 10vw;
  line-height: 1;
  display: inline-block;
  box-sizing: border-box;
  width: 75%;
  padding: 0.05em 0;
  color: white;
  border-bottom: 5px solid;
}

.search__input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: white;
}

.search__input::-moz-placeholder {
  opacity: 1;
  /* Mozilla Firefox 19+ */
  color: white;
}

.search__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.search__input::-ms-clear {
  display: none;
}

.search__info {
  font-size: 90%;
  font-weight: bold;
  display: block;
  width: 75%;
  margin: 0 auto;
  padding: 0.85em 0;
  text-align: right;
  color: white;
}

.search__related {
  display: flex;
  width: 75%;
  text-align: left;
  pointer-events: none;
}

.search__suggestion {
  width: 50%;
}

.search__suggestion:first-child {
  padding: 0 2em 0 0;
}

.search__suggestion:last-child {
  padding: 0 0 0 2em;
}

.search__suggestion h3 {
  font-size: 1.35em;
  margin: 0;
}

.search__suggestion h3::before {
  content: '\21FE';
  display: inline-block;
  padding: 0 0.5em 0 0;
}

.search__suggestion p {
  font-size: 1.15em;
  line-height: 1.4;
  margin: 0.75em 0 0 0;
}

/************************/
/* Transitions 			*/
/************************/
.main-wrap {
  position: relative;
  -webkit-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
}

.main-wrap--move {
  -webkit-transform: scale3d(0.7,0.7,1);
  -ms-transform: scale3d(0.7,0.7,1);
  -moz-transform: scale3d(0.7,0.7,1);
  -o-transform: scale3d(0.7,0.7,1);
  transform: scale3d(0.7,0.7,1);
}

.main-wrap--move#shell {
  max-height: 2000px;
}

.main-wrap--move .btn--search {
  pointer-events: none;
  opacity: 0;
}

.search {
  pointer-events: none;
}

#btn-search {
  cursor: pointer;
  margin-right: 3.1em;
  margin-top: -0.8em;
  color: black;
}

@media (min-width: 992px) {
  #btn-search {
    margin: 0;
  }
}

#btn-search .icon-search {
  font-size: 1.3em;
}

#btn-search-close {
  cursor: pointer;
}

#btn-search-close:hover, #btn-search-close:focus {
  outline: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

#btn-search-close svg {
  max-width: 17px;
  max-height: 17px;
}

.search__form {
  margin: 5em 0;
}

.search--open {
  pointer-events: auto;
}

.search::before {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.search--open::before {
  opacity: 1;
}

/* Close button */
.btn--search-close {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background: none;
}

.search--open .btn--search-close {
  opacity: 1;
}

/* Search form with input and description */
.search__suggestion,
.search__info {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  -ms-transform: translate3d(0, 50px, 0);
  -moz-transform: translate3d(0, 50px, 0);
  -o-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity 0.4s, transform 0.4s;
  -ms-transition: opacity 0.4s, transform 0.4s;
  -moz-transition: opacity 0.4s, transform 0.4s;
  -o-transition: opacity 0.4s, transform 0.4s;
  transition: opacity 0.4s, transform 0.4s;
}

.search--open .search__suggestion,
.search--open .search__info {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.search--open .search__suggestion:first-child {
  transition-delay: 0.15s;
}

.search--open .search__suggestion:nth-child(2) {
  transition-delay: 0.2s;
}

.search__input {
  -webkit-transform: scale3d(0,1,1);
  -ms-transform: scale3d(0,1,1);
  -moz-transform: scale3d(0,1,1);
  -o-transform: scale3d(0,1,1);
  transform: scale3d(0,1,1);
  transform-origin: 0% 50%;
  -webkit-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}

.search--open .search__input {
  -webkit-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  -moz-transform: scale3d(1,1,1);
  -o-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
  transition-duration: 0.5s;
}

#shell {
  -webkit-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -o-transition: transform 0.6s;
  transition: transform 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
  -ms-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
  -moz-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
  -o-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
  transition-timing-function: cubic-bezier(0.2,1,0.3,1);
}

@media screen and (max-width: 40em) {
  .btn--search-close {
    font-size: 1.25em;
  }
  .search__suggestion {
    font-size: 80%;
    width: 100%;
  }
  .search__suggestion:nth-child(2),
  .search__suggestion:nth-child(3) {
    display: none;
  }
}

.pagination {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .pagination {
    margin-top: 1.5em;
  }
}

.pagination > a, .pagination span {
  -webkit-transition: border-bottom-color 0.25s;
  -ms-transition: border-bottom-color 0.25s;
  -moz-transition: border-bottom-color 0.25s;
  -o-transition: border-bottom-color 0.25s;
  transition: border-bottom-color 0.25s;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
  padding: .5em;
  white-space: nowrap;
  margin: 5px;
}

@media (min-width: 768px) {
  .pagination > a, .pagination span {
    margin: 0 5px;
  }
}

.pagination > a:hover, .pagination span:hover {
  border-bottom-color: #9c8f6d;
}

.pagination span {
  border-bottom-color: #9c8f6d;
}

.language-selector-wrapper .svg-arrow {
  filter: FlipH;
  -ms-filter: "FlipH";
  padding-top: 1px;
  margin-bottom: -1px;
}

.language-selector-wrapper .external-language-selector:hover {
  cursor: pointer;
}

.language-selector-wrapper .svg-arrow.arrow-svg-left {
  -moz-transform: scale(0.75);
  -o-transform: scale(0.75);
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}

.language-selector-wrapper .svg-arrow.arrow-svg-right {
  -moz-transform: scale(0.75) scaleX(-1);
  -o-transform: scale(0.75) scaleX(-1);
  -webkit-transform: scale(0.75) scaleX(-1);
  transform: scale(0.75) scaleX(-1);
}

.language-selector-wrapper .svg-arrow.arrow-svg-down {
  -moz-transform: scale(0.75) rotateZ(-90deg);
  -o-transform: scale(0.75) rotateZ(-90deg);
  -webkit-transform: scale(0.75) rotateZ(-90deg);
  transform: scale(0.75) rotateZ(-90deg);
  padding-top: 0;
  margin-bottom: 0;
}

.language-selector-wrapper .external {
  position: absolute;
  height: 29px;
  border-top: 4px solid #6887a6;
  font-weight: 500;
  font-size: 12px;
  z-index: 1010;
  width: 100%;
  top: 0;
  z-index: 10000000;
}

.language-selector-wrapper .slideshow-zoomed-in .external {
  z-index: 2;
}

.language-selector-wrapper .external .container {
  text-align: right;
  position: relative;
}

.language-selector-wrapper .external ul {
  list-style: none;
}

.language-selector-wrapper .external ul li {
  display: inline;
  /*padding-bottom: 0.25em;*/
}

.language-selector-wrapper .external .cls {
  fill: #888;
}

.language-selector-wrapper .external .external-language-selector .cls {
  fill: #fff;
}

.language-selector-wrapper .external ul a:hover .cls {
  fill: #6887a6;
}

.language-selector-wrapper .external-links {
  text-transform: uppercase;
  background-color: #fff;
  display: inline-block;
  margin-right: calc(128px + 1em);
  vertical-align: top;
  z-index: 1000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.language-selector-wrapper .external-links a,
.language-selector-wrapper .external-links a:hover {
  text-decoration: none;
}

.language-selector-wrapper .external-links ul {
  margin: 0;
  padding: 4px 0;
}

.language-selector-wrapper .external-links ul li {
  padding: 0 0 0.2em 0.15em;
  margin: 0 0 0 0.6em;
  color: #888;
  border-bottom: 1px solid #eee;
}

.language-selector-wrapper .external-language-selector ul li {
  color: white;
  font-size: 0.7rem;
  border: none;
  list-style: none;
}

@media (max-width: 767px) {
  .language-selector-wrapper body {
    /* padding-top: 3px;  /* this spoils the mobile menu */
  }
  .language-selector-wrapper .external-links {
    /*display: none;*/
  }
  .language-selector-wrapper .external-language-selector {
    /*right: 0;*/
  }
}

@media (min-width: 768px) {
  .language-selector-wrapper {
    /* Temporarily */
  }
  .language-selector-wrapper body {
    position: relative;
  }
  .language-selector-wrapper #banner {
    margin-top: -10px;
  }
  .language-selector-wrapper body.org-domain #banner {
    margin-top: 0;
  }
  .language-selector-wrapper #banner_logo {
    padding-top: 0;
  }
  .language-selector-wrapper .external-language-selector {
    right: 20px;
    /* bootstrap padding */
  }
  .language-selector-wrapper #banner_inner_table {
    margin-bottom: 5px;
  }
  .language-selector-wrapper #banner_tool {
    padding: 28px 0 5px;
  }
  .language-selector-wrapper body.org-domain #banner_inner_table {
    margin-bottom: 14px;
  }
  .language-selector-wrapper body:not(.page-type-org-info):not(.org-domain-tokyo).org-domain #banner_tool {
    /*padding: 60px 20px 0; Combined with hiding the weather widget*/
    padding: 28px 20px 0px;
  }
  .language-selector-wrapper body.org-domain .org-weahter-data {
    padding: 6px 14px 1px 15px;
    top: 0;
  }
  .language-selector-wrapper #banner_tool #banner_search {
    margin-right: 0;
  }
}

@media (min-width: 1200px) {
  .language-selector-wrapper body.org-domain #banner_inner_table {
    margin-bottom: 5px;
  }
}

.language-selector-wrapper .external-language-selector {
  white-space: nowrap;
  z-index: 1000;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
}

.language-selector-wrapper .language_caption {
  position: relative;
  margin-right: 20px;
  padding-bottom: 10px;
  margin-top: 10px;
}

.language-selector-wrapper .external-language-selector div {
  border-bottom-right-radius: 4px;
}

.language-selector-wrapper .external-language-selector.external-sites {
  right: 152px;
  width: 123px;
}

.language-selector-wrapper .external-language-selector.external-sites div {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0px;
}

.language-selector-wrapper .slideshow-zoomed-in .external-language-selector {
  z-index: 0;
}

.language-selector-wrapper .language_caption:hover {
  background: none;
  height: auto;
  bottom: auto;
}

.language-selector-wrapper .language_caption:hover .svg-arrow {
  -moz-transform: scale(0.75) rotateZ(-90deg);
  -o-transform: scale(0.75) rotateZ(-90deg);
  -webkit-transform: scale(0.75) rotateZ(-90deg);
  transform: scale(0.75) rotateZ(-90deg);
  filter: FlipH;
  -ms-filter: "FlipH";
}

.language-selector-wrapper .external-language-selector .cls {
  fill: #fff;
}

.language-selector-wrapper #selector-wrapper {
  padding: 2px 10px 4px 3px;
}

[dir="rtl"] .language-selector-wrapper #selector-wrapper {
  padding: 2px 3px 4px 10px;
}

.language-selector-wrapper .language_caption:hover div a {
  /*margin-right: 0;*/
}

.language-selector-wrapper .external-language-selector span.bordered {
  padding: 1px 6px 0;
  margin: 2px 2px 0;
}

.language-selector-wrapper .external-language-selector span {
  color: #8f8f8f;
}

.language-selector-wrapper .external-language-selector ul {
  background-color: rgba(77, 77, 77, 0.8);
  display: block;
  width: 0;
  margin-left: -2000px;
  /* prevent mouse move triggering on blur */
  margin-top: -200px;
  /* prevent mouse move triggering */
  opacity: 0;
  transition: opacity 0.2s;
  /* margin-left 0.4s, width 0.1s, */
  -webkit-transition: opacity 0.2s;
  /* Safari */
  /* margin-left 0.4s, width 0.1s, */
  padding-left: 0;
}

.language-selector-wrapper .language_caption:hover ul {
  margin-left: -84px;
  margin-top: 0;
  opacity: 1;
  width: 18em;
  transition: opacity 0.2s;
  /* margin-left 0.4s, width 0.1s, */
  -webkit-transition: opacity 0.2s;
  /* Safari */
  /* margin-left 0.4s, width 0.1s, */
}

.language-selector-wrapper .external-language-selector ul a {
  color: #fff;
  display: block;
  height: 0;
  width: 0;
  padding: 0;
  transition: height 0.4s, width 0.1s;
  -webkit-transition: height 0.4s, width 0.1s;
  font-size: 11px;
  -webkit-transform: none;
  -ms-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
}

.language-selector-wrapper .language_caption:hover ul a {
  height: 32px;
  padding: 0.6em 0.75em;
  width: auto;
  transition: height 0.4s, width 0.2s;
  -webkit-transition: height 0.4s, width 0.2s;
  /* Safari */
}

.language-selector-wrapper .external-language-selector ul.collapsed {
  display: none;
}

.language-selector-wrapper .language_caption:hover ul a:not(:last-child) {
  /*border-bottom: 1px solid hsla(210, 26%, 80%, 0.2);*/
  border-bottom: 1px solid #524a34;
}

.language-selector-wrapper .external-language-selector ul li {
  padding: 0;
  margin: 0;
}

.language-selector-wrapper .external-language-selector ul li span {
  color: #cccccc;
}

.language-selector-wrapper .external-language-selector ul a:hover {
  /*background-color: hsla(210, 26%, 85%, 0.9);*/
  background-color: #524a34;
  /*color: hsla(210, 26%, 20%, 1);*/
  color: #fff;
  cursor: pointer;
  /*font-weight: bold;*/
}

.lang-filler {
  opacity: 0;
  margin-right: 24px;
}

.footer-lang-container {
  margin-left: 2rem;
}

.footer-related--button,
.footer-choose-language--button {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  display: block;
  font-size: 0.8rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid black;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 1rem;
  float: left;
}

.footer-related--button:hover,
.footer-choose-language--button:hover {
  background: #ccc;
}

.footer-related--button {
  margin-left: 20px;
  clear: right;
}

.list-related-container,
.list-language-container {
  display: none;
  margin: 10px;
  font-size: 13px;
  text-align: left;
  padding-bottom: 1rem;
  clear: both;
}

.list-related-container.initial,
.list-language-container.initial {
  display: block;
}

@media (min-width: 768px) {
  .list-related-container,
  .list-language-container {
    margin-bottom: 2rem;
  }
}

.footer-language-item {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 20px;
  width: 100%;
  text-transform: none !important;
  line-height: 2;
}

@media (min-width: 992px) {
  .footer-language-item {
    white-space: nowrap;
  }
}

:lang(da) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 73.04%;
  left: 0%;
  width: 37.2%;
}

:lang(da) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(da) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(da) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(da) .slideshowid-ny2020 #slide-23 slidecaption {
  left: 62.2%;
  width: 37.79%;
}

:lang(de) .slideshowid-ny2020 #slide-8 slidecaption {
  left: 8.13%;
  width: 85.46%;
}

:lang(de) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 72.17%;
  left: 0%;
  width: 38.6%;
}

:lang(de) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(de) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(de) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(de) .slideshowid-ny2020 #slide-23 slidecaption {
  top: 75.65%;
  left: 62.2%;
  width: 37.79%;
}

:lang(de) .slideshowid-ny2020 #slide-24 slidecaption {
  top: 72.34%;
  left: 0%;
  width: 37.79%;
}

:lang(el) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 73.04%;
  left: 0%;
  width: 38.95%;
  line-height: 1.2;
}

:lang(el) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(el) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(el) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(el) .slideshowid-ny2020 #slide-23 slidecaption {
  top: 75.65%;
  left: 62.2%;
  width: 37.79%;
}

:lang(el) .slideshowid-ny2020 #slide-24 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(es) .slideshowid-ny2020 #slide-8 slidecaption {
  left: 8.13%;
  width: 85.46%;
}

:lang(es) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 72.17%;
  left: 0%;
  width: 40.11%;
}

:lang(es) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(es) .slideshowid-ny2020 #slide-21 slidecaption {
  top: 73.91%;
  left: 0%;
  width: 37.79%;
}

:lang(es) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(es) .slideshowid-ny2020 #slide-23 slidecaption {
  top: 75.65%;
  left: 62.2%;
  width: 37.79%;
  line-height: 1.3;
}

:lang(es) .slideshowid-ny2020 #slide-24 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(es-ES) .slideshowid-ny2020 #slide-8 slidecaption {
  left: 8.13%;
  width: 85.46%;
}

:lang(es-ES) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 72.17%;
  left: 0%;
  width: 40.11%;
}

:lang(es-ES) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(es-ES) .slideshowid-ny2020 #slide-21 slidecaption {
  top: 73.91%;
  left: 0%;
  width: 37.79%;
}

:lang(es-ES) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(es-ES) .slideshowid-ny2020 #slide-23 slidecaption {
  top: 75.65%;
  left: 62.2%;
  width: 37.79%;
  line-height: 1.3;
}

:lang(es-ES) .slideshowid-ny2020 #slide-24 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(fr) .slideshowid-ny2020 #slide-8 slidecaption {
  left: 8.13%;
  width: 85.46%;
}

:lang(fr) .slideshowid-ny2020 #slide-16 slidecaption {
  left: 0%;
  width: 25.58%;
}

:lang(fr) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 73.04%;
  left: 0%;
  width: 37.2%;
}

:lang(fr) .slideshowid-ny2020 #slide-21 slidecaption {
  top: 73.91%;
  left: 0%;
  width: 38.13%;
}

:lang(fr) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(fr) .slideshowid-ny2020 #slide-23 slidecaption {
  top: 75.65%;
  left: 62.2%;
  width: 37.79%;
}

:lang(fr) .slideshowid-ny2020 #slide-24 slidecaption {
  top: 72.34%;
  left: 0%;
  width: 37.79%;
}

:lang(it) .slideshowid-ny2020 #slide-17 slidecaption {
  left: 0%;
  width: 38.02%;
}

:lang(it) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 71.82%;
  width: 38.37%;
}

:lang(it) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(it) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(it) .slideshowid-ny2020 #slide-23 slidecaption {
  top: 75.65%;
  left: 62.2%;
  width: 37.79%;
}

:lang(it) .slideshowid-ny2020 #slide-24 slidecaption {
  top: 72.34%;
  left: 0%;
  width: 37.79%;
}

:lang(hu) .slideshowid-ny2020 #slide-8 slidecaption {
  left: 9.3%;
  width: 81.39%;
}

:lang(hu) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 73.04%;
  left: 0%;
  width: 37.2%;
}

:lang(hu) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(hu) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(hu) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(hu) .slideshowid-ny2020 #slide-23 slidecaption {
  left: 62.2%;
  width: 37.79%;
}

:lang(hu) .slideshowid-ny2020 #slide-24 slidecaption {
  top: 72.34%;
  left: 0%;
  width: 37.79%;
}

:lang(nl) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 73.04%;
  left: 0%;
  width: 37.2%;
}

:lang(nl) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(nl) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(nl) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(nl) .slideshowid-ny2020 #slide-23 slidecaption {
  left: 62.2%;
  width: 37.79%;
}

:lang(nl) .slideshowid-ny2020 #slide-24 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(no) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 73.04%;
  left: 0%;
  width: 37.2%;
}

:lang(no) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(no) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(no) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(no) .slideshowid-ny2020 #slide-23 slidecaption {
  left: 62.2%;
  width: 37.79%;
}

:lang(no) .slideshowid-ny2020 #slide-24 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(pt) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 73.04%;
  left: 0%;
  width: 37.2%;
}

:lang(pt) .slideshowid-ny2020 #slide-18 slidecaption {
  top: 73.04%;
  width: 38.13%;
}

:lang(pt) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(pt) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(pt) .slideshowid-ny2020 #slide-23 slidecaption {
  left: 62.2%;
  width: 37.79%;
}

:lang(pt) .slideshowid-ny2020 #slide-24 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(ru) .slideshowid-ny2020 #slide-8 slidecaption {
  left: 8.13%;
  width: 85.46%;
}

:lang(ru) .slideshowid-ny2020 #slide-17 slidecaption {
  top: 73.04%;
  left: 0%;
  width: 37.2%;
}

:lang(ru) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(ru) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

:lang(ru) .slideshowid-ny2020 #slide-23 slidecaption {
  left: 62.2%;
  width: 37.79%;
}

:lang(ru) .slideshowid-ny2020 #slide-24 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(sv) .slideshowid-ny2020 #slide-21 slidecaption {
  left: 0%;
  width: 37.79%;
}

:lang(sv) .slideshowid-ny2020 #slide-22 slidecaption {
  left: 0%;
  width: 17.44%;
}

.slideshowid-lrh2019 .slide-id-36.template-k0l-6 .image-item-1,
.slideshowid-lrh2019 .slide-id-3 .image-item-1,
.slideshowid-lrh2019 .slide-id-11 .image-item-1,
.slideshowid-lrh2019 .slide-id-26 .image-item-1,
.slideshowid-lrh2019 .slide-id-9 .image-item-1,
.slideshowid-lrh2019 .slide-id-24 .image-item-2,
.slideshowid-lrh2019 .slide-id-6 .image-item-2 {
  outline: none !important;
}

.slideshowid-lrh2019 .slide-with-bottom-band .text-item {
  top: 86.95%;
  bottom: 0%;
  left: 6.97%;
  right: auto;
  width: 86.04%;
  height: auto;
}

.slideshowid-lrh2019 .slide-with-bottom-band .text-item.caption-band {
  padding-right: 25.58% !important;
}

.slideshowid-lrh2019 .slide-with-bottom-band .text-item.caption-band {
  background: rgba(205, 88, 51, 0.8);
  color: #f8f8f8;
  font-size: 13px;
  left: 0 !important;
  padding: 12px 20px 12px 20%;
  right: 0 !important;
  text-align: left;
  top: 80% !important;
  width: 100% !important;
}

.slideshowid-lrh2019 .slide-with-bottom-band .image-item.image-item-campaign-logo {
  background-repeat: no-repeat;
  background-size: 100%;
  left: 0% !important;
  top: 75.87%;
  width: 22.44%;
  z-index: 6;
  padding-top: 20%;
}

.slideshowid-lrh2019 .slide-with-bottom-band a {
  display: block;
}

.slideshowid-lrh2019 .slide-with-bottom-band .slideshow-button {
  background: #cd5833 !important;
}

.slideshowid-lrh2019 .slide-with-bottom-band .slideshow-button:hover a,
.slideshowid-lrh2019 .slide-with-bottom-band .slideshow-button:hover a span {
  color: #ffffff !important;
}

.slideshowid-lrh2019 .slide-with-bottom-band a {
  font-size: 18px;
}

.slideshowid-lrh2019 .slide-with-bottom-band .text-item.caption-band .lead.lead-titleLine {
  display: block;
  font-size: 1.5em;
  line-height: 1.2em;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #9fbfdf;
}

.slideshowid-lrh2019 .slide-id-22 .text-item.caption-band {
  padding-top: 6px;
  padding-right: 23.58% !important;
}

.slideshowid-lrh2019 .slide-id-24 .text-item.caption-band {
  padding-right: 5% !important;
}

.slideshowid-lrh2019 .a0-master-season .image-item-2 {
  left: 0;
  bottom: 0;
}

.slideshowid-lrh2019 .slide-with-bottom-band-clean .text-item.caption-band .lead.lead-titleLine {
  display: block;
  font-size: 1.5em;
  line-height: 1.2em;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
}

.slideshowid-lrh2019 .slide-with-bottom-band-clean .text-item.caption-band {
  background: rgba(51, 102, 153, 0.85);
  color: #f8f8f8;
  font-size: 13px;
  left: 0 !important;
  padding: 12px 20px 12px 23%;
  right: 0 !important;
  text-align: left;
  top: 80% !important;
  width: 100% !important;
}

.slideshowid-lrh2019 .slide-with-bottom-band-clean .text-item.caption-band {
  padding-right: 5.58% !important;
}

.slideshowid-lrh2019 .slide-with-bottom-band-clean .image-item.image-item-campaign-logo {
  background-repeat: no-repeat;
  background-size: 100%;
  left: 0% !important;
  top: 74.47%;
  width: 22.44%;
  z-index: 6;
  padding-top: 20%;
  background-position: center;
}

.slideshowid-lrh2019 .slide-with-bottom-band-clean .text-item {
  top: 86.95%;
  bottom: 0%;
  left: 6.97%;
  right: auto;
  width: 86.04%;
  height: auto;
}

.slideshowid-lrh2019 slide[templatevariant="0-master-with-band"] slidecaption {
  padding-left: 22%;
}

.slideshowid-lrh2019 slide[templatevariant="0-master-with-band"] slideimage:nth-child(2) {
  background-repeat: no-repeat;
  background-size: 100%;
  left: 0px;
  width: 200px;
  z-index: 6;
  top: 414px !important;
}

.slideshowid-lrh2019 #slide-id-30 slidecaption {
  left: 0 !important;
  padding-left: 24%;
}

.slideshowid-lrh2019 #slide-id-30 slideimage:last-of-type {
  top: 438px !important;
}

.slideshowid-ias2019 #slide-3 slidecaption {
  top: initial;
  bottom: 370px;
}

.slideshowid-ias2019 #slide-38 slidecaption {
  top: initial;
  bottom: 310px;
}

:lang(de) .slideshowid-ias2019 #slide-27 .text-item-0 {
  left: 0;
  width: 44.18%;
  line-height: 1.4;
}

:lang(pt) .slideshowid-ias2019 #slide-27 .text-item-0,
:lang(es) .slideshowid-ias2019 #slide-27 .text-item-0,
:lang(es-ES) .slideshowid-ias2019 #slide-27 .text-item-0 {
  left: 0;
  width: 44.18%;
  line-height: 1.45;
}

:lang(el) .slideshowid-ias2019 #slide-27 .text-item-0 {
  left: 0;
  width: 44.18%;
}

:lang(de) .slideshowid-ias2019 #slide-49 .text-item-0 {
  left: 0;
  width: 25.46%;
  line-height: 1.4;
}

:lang(da) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(el) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(es) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(es-ES) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(fr) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(it) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(hu) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(nl) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(pt) .slideshowid-ias2019 #slide-49 .text-item-0,
:lang(sv) .slideshowid-ias2019 #slide-49 .text-item-0 {
  left: 0;
  width: 25.46%;
}

[dir="rtl"] .slideshowid-ias2019 slide[templatebase="f"] slideimage:nth-child(1) {
  right: auto !important;
  left: 0;
}

.templated-slider-slideset-ias-event-2023 [data-template="overlay-overlay-end-link"] .text-item-0 .leader-white-title,
.templated-slider-slideset-ias-event-2023 [data-template="overlay-overlay-end-link"] .text-item-0 .lead-blue-caps {
  color: white;
  color: white;
}

.templated-slider-slideset-ias-event-2023 [data-template="overlay-overlay-end-link"] .text-item-1 .leader-white-title,
.templated-slider-slideset-ias-event-2023 [data-template="overlay-overlay-end-link"] .text-item-1 .lead-blue-caps {
  color: white;
  color: white;
}

.templated-slider-slideset-ias-event-2023 [data-template="overlay-overlay-end-link"] .text-item-1 .leader-white-title {
  font-size: 9px;
  margin-top: 10px;
  margin-bottom: 5px;
}

@media (min-width: 992px) {
  .templated-slider-slideset-ias-event-2023 [data-template="overlay-overlay-end-link"] .text-item-1 .leader-white-title {
    font-size: 14px;
  }
}

.templated-slider-slideset-ias-event-2023 [data-template="overlay-overlay-end-link"] .text-item-1 .lead-blue-caps {
  font-size: 9px;
}

@media (min-width: 992px) {
  .templated-slider-slideset-ias-event-2023 [data-template="overlay-overlay-end-link"] .text-item-1 .lead-blue-caps {
    font-size: 16px;
  }
}

.templated-slider-slideset-ias-event-2023 .template-e0r-11 .image-item-1 {
  top: 4.52%;
  left: 2.32%;
  width: 23.25%;
  height: 27.82%;
}

.templated-slider-slideset-ias-event-2023 .template-e0r-11 .text-item-0 {
  top: 34.78%;
  left: 2.67%;
  width: 22.79%;
}

.templated-slider-slideset-ias-event-2023 .template-over-bar-logo-button-video .slideshow-button {
  color: #000;
}

.templated-slider-slideset-ias-event-2023 .template-over-bar-logo-button-video .slideshow-button .lead-blue-caps {
  color: #000 !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-8.template-g0l-7 .text-item-1 {
  left: 61.04%;
  width: 27.79%;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-15.template-g0l-20 .text-item-0 {
  top: auto;
  bottom: 52.17%;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .text-item.text-item-0 {
  left: 4.18% !important;
  top: 10.46% !important;
  width: 44.18% !important;
  font-family: "Domine", georgia, serif;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .text-item.text-item-0 span {
  font-size: 13px;
  line-height: 1.6;
  display: block;
  font-weight: 400;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .template-over-bar-logo .overlay-item.image-item-0 {
  padding-top: 4px;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-48.template-h0r-14-e .text-item-0 {
  top: auto !important;
  bottom: 53.91% !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-62.template-k0r-10 .image-item-1 {
  top: 10.43% !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-62.template-k0r-10 .text-item-0 {
  top: 55.65% !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-33.template-i0l-13 .text-item-0 {
  width: auto;
  right: 0;
  top: 45.21%;
}

.templated-slider-slideset-ias-event-2023 .template-over-bar-logo .overlay-item.image-item-0 {
  bottom: 0;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-17 .overlay-item--bar {
  color: white;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-17 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-17 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-18 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-18 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-19 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-19 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-24 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-24 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-22 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-22 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-23 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-23 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-26 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-26 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-27 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-27 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-28 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-28 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-30 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-30 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-17 .overlay-item--bar .leader-white-title,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-17 .overlay-item--bar {
  color: #fff !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-36.template-i0l-13 .text-item-0 {
  width: auto;
  right: 0;
  top: 45.21%;
}

.templated-slider-slideset-ias-event-2023 .template-k0r-10 .image-item-1 {
  top: 10.43% !important;
}

.templated-slider-slideset-ias-event-2023 .template-k0r-10 .text-item-0 {
  top: 55.65% !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-21 .template-over-recognition-with-quote-left .overlay-item.image-item-0 {
  width: 46.51% !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-33 .overlay-item.button-item-1 {
  top: 84% !important;
}

.templated-slider-slideset-ias-event-2023 .template-over-bar-logo .overlay-item.image-item-0 {
  bottom: 0;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-41 .overlay-item--bar,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-44 .overlay-item--bar {
  padding-top: 0;
  padding-right: 26.74% !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-41 .button-item.overlay-item,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-44 .button-item.overlay-item {
  width: 23.25%;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-44 .template-over-bar-logo-button .overlay-item.button-item-1,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-41 .template-over-bar-logo-button .overlay-item.button-item-1 {
  right: 0;
  left: auto !important;
  margin-right: 0;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-44 .template-over-bar-logo-button .overlay-item.button-item-1 .slideshow-button,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-41 .template-over-bar-logo-button .overlay-item.button-item-1 .slideshow-button {
  background: #9c8f6d !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-41 .slideshow-button a,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-44 .slideshow-button a {
  color: #fff;
  display: flex;
  justify-content: center;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-41 .slideshow-button a .icon-arrow-right,
.templated-slider-slideset-ias-event-2023 .slide-id-slide-44 .slideshow-button a .icon-arrow-right {
  color: #fff;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-51.template-c1-0 .overlay-item.overlay-item--bar {
  padding-right: 2.9% !important;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-33 a {
  color: white;
  text-decoration: underline;
}

.templated-slider-slideset-ias-event-2023 .slide-id-slide-33 a:hover {
  color: white !important;
  text-decoration: underline !important;
}

:lang(el) .templated-slider-slideset-ias-event-2023 .text-item,
:lang(de) .templated-slider-slideset-ias-event-2023 .text-item {
  line-height: 1.4em;
}

:lang(el) .templated-slider-slideset-ias-event-2023 .slide-id-slide-53 .text-item,
:lang(el) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item,
:lang(de) .templated-slider-slideset-ias-event-2023 .slide-id-slide-53 .text-item,
:lang(de) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item {
  line-height: 1.2em;
}

:lang(el) .templated-slider-slideset-ias-event-2023 .floater-texter,
:lang(de) .templated-slider-slideset-ias-event-2023 .floater-texter {
  line-height: 1.2em;
}

:lang(el) .templated-slider-slideset-ias-event-2023 .template-over-recognition-with-quote-left .text-item-1,
:lang(de) .templated-slider-slideset-ias-event-2023 .template-over-recognition-with-quote-left .text-item-1 {
  font-size: 13px;
}

:lang(el) .templated-slider-slideset-ias-event-2023 .text-item {
  line-height: 1.3em;
}

:lang(el) .templated-slider-slideset-ias-event-2023 .template-over-recognition-with-quote-left .text-item-1 p {
  line-height: 1.2em;
}

:lang(el) .templated-slider-slideset-ias-event-2023 .slide-id-slide-66 .text-item,
:lang(el) .templated-slider-slideset-ias-event-2023 .slide-id-slide-38 .text-item,
:lang(el) .templated-slider-slideset-ias-event-2023 .slide-id-slide-37 .text-item,
:lang(el) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item {
  line-height: 1.2em;
}

@media (min-width: 992px) {
  :lang(el) .templated-slider-slideset-ias-event-2023 slide.slide-id-slide-36 {
    height: 590px;
    max-height: 595px;
  }
}

:lang(el) .templated-slider-slideset-ias-event-2023 .template-e0l-21 .text-item-0 {
  width: 26.25%;
}

:lang(es) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter {
  line-height: 1.2em;
}

:lang(es) .templated-slider-slideset-ias-event-2023 .floater-texter {
  line-height: 1.3em;
}

:lang(es) .templated-slider-slideset-ias-event-2023 .slide-id-slide-66 .text-item,
:lang(es) .templated-slider-slideset-ias-event-2023 .slide-id-slide-63 .text-item,
:lang(es) .templated-slider-slideset-ias-event-2023 .slide-id-slide-38 .text-item,
:lang(es) .templated-slider-slideset-ias-event-2023 .slide-id-slide-37 .text-item,
:lang(es) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item {
  line-height: 1.3em;
}

:lang(es) .templated-slider-slideset-ias-event-2023 .template-over-bar-logo-button-video .overlay-item.image-item-0 {
  padding-right: 24.67%;
}

:lang(fr) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter {
  line-height: 1.2em;
}

:lang(fr) .templated-slider-slideset-ias-event-2023 .floater-texter {
  line-height: 1.3em;
}

:lang(fr) .templated-slider-slideset-ias-event-2023 .slide-id-slide-66 .text-item,
:lang(fr) .templated-slider-slideset-ias-event-2023 .slide-id-slide-63 .text-item,
:lang(fr) .templated-slider-slideset-ias-event-2023 .slide-id-slide-38 .text-item,
:lang(fr) .templated-slider-slideset-ias-event-2023 .slide-id-slide-37 .text-item,
:lang(fr) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item {
  line-height: 1.3em;
}

:lang(fr) .templated-slider-slideset-ias-event-2023 .slideshow-button {
  padding: 10px;
}

:lang(nl) .templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .floater-texter,
:lang(nl) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter {
  line-height: 1.2em;
}

:lang(nl) .templated-slider-slideset-ias-event-2023 .floater-texter {
  line-height: 1.3em;
}

:lang(nl) .templated-slider-slideset-ias-event-2023 .slide-id-slide-66 .text-item,
:lang(nl) .templated-slider-slideset-ias-event-2023 .slide-id-slide-63 .text-item,
:lang(nl) .templated-slider-slideset-ias-event-2023 .slide-id-slide-38 .text-item,
:lang(nl) .templated-slider-slideset-ias-event-2023 .slide-id-slide-37 .text-item,
:lang(nl) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item {
  line-height: 1.3em;
}

:lang(nl) .templated-slider-slideset-ias-event-2023 .template-over-recognition-with-quote-left .text-item-1 p {
  line-height: 1.4em;
}

:lang(nl) .templated-slider-slideset-ias-event-2023 .template-e0l-21 .text-item-0 {
  width: 25.25%;
}

:lang(it) .templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .floater-texter,
:lang(it) .templated-slider-slideset-ias-event-2023 .slide-id-slide-24 .floater-texter,
:lang(it) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .floater-texter,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slide-id-slide-24 .floater-texter,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter,
:lang(da) .templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .floater-texter,
:lang(da) .templated-slider-slideset-ias-event-2023 .slide-id-slide-24 .floater-texter,
:lang(da) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter,
:lang(sv) .templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .floater-texter,
:lang(sv) .templated-slider-slideset-ias-event-2023 .slide-id-slide-24 .floater-texter,
:lang(sv) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter,
:lang(no) .templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .floater-texter,
:lang(no) .templated-slider-slideset-ias-event-2023 .slide-id-slide-24 .floater-texter,
:lang(no) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter {
  line-height: 1.2em;
}

:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-20 .floater-texter,
:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-24 .floater-texter,
:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-27 .floater-texter,
:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-30 .floater-texter,
:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-25 .floater-texter {
  line-height: 1.2em;
}

:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-66 .text-item,
:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-63 .text-item,
:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-38 .text-item,
:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-37 .text-item,
:lang(ru) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item {
  line-height: 1.3em;
}

:lang(ru) .templated-slider-slideset-ias-event-2023 .slideshow-button {
  padding: 5px 10px;
}

:lang(it) .templated-slider-slideset-ias-event-2023 .text-item,
:lang(hu) .templated-slider-slideset-ias-event-2023 .text-item,
:lang(pt) .templated-slider-slideset-ias-event-2023 .text-item {
  line-height: 1.4em;
}

:lang(it) .templated-slider-slideset-ias-event-2023 .template-over-bar-logo-button-video .overlay-item.image-item-0,
:lang(hu) .templated-slider-slideset-ias-event-2023 .template-over-bar-logo-button-video .overlay-item.image-item-0,
:lang(pt) .templated-slider-slideset-ias-event-2023 .template-over-bar-logo-button-video .overlay-item.image-item-0 {
  line-height: 1.4em;
  padding-right: 24.67%;
}

:lang(it) .templated-slider-slideset-ias-event-2023 .slideshow-button,
:lang(hu) .templated-slider-slideset-ias-event-2023 .slideshow-button,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slideshow-button {
  padding: 15px 10px;
}

:lang(it) .templated-slider-slideset-ias-event-2023 .slide-id-slide-66 .text-item,
:lang(it) .templated-slider-slideset-ias-event-2023 .slide-id-slide-63 .text-item,
:lang(it) .templated-slider-slideset-ias-event-2023 .slide-id-slide-38 .text-item,
:lang(it) .templated-slider-slideset-ias-event-2023 .slide-id-slide-37 .text-item,
:lang(it) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item,
:lang(hu) .templated-slider-slideset-ias-event-2023 .slide-id-slide-66 .text-item,
:lang(hu) .templated-slider-slideset-ias-event-2023 .slide-id-slide-63 .text-item,
:lang(hu) .templated-slider-slideset-ias-event-2023 .slide-id-slide-38 .text-item,
:lang(hu) .templated-slider-slideset-ias-event-2023 .slide-id-slide-37 .text-item,
:lang(hu) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slide-id-slide-66 .text-item,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slide-id-slide-63 .text-item,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slide-id-slide-38 .text-item,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slide-id-slide-37 .text-item,
:lang(pt) .templated-slider-slideset-ias-event-2023 .slide-id-slide-36 .text-item {
  line-height: 1.3em;
}

.templated-slider-slideset-ias-event-2024 slide .lead.leader-white-subtitle {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 2px;
}

.templated-slider-slideset-ias-event-2024 slide .lead.leader-white-subtitle + .lead-titleLine {
  margin-bottom: 3px;
}

.templated-slider-slideset-ias-event-2024 .template-c1-t-over .text-item-0 {
  top: 11.82%;
  left: 25.93%;
  width: 48.13%;
  height: 52.17%;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  font-family: "Domine", georgia, serif;
}

.templated-slider-slideset-ias-event-2024 .template-h0r-14-e .text-item-0 {
  top: auto !important;
  bottom: 53.91% !important;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-6.template-d0-0 .text-item-0 {
  left: 4.65%;
  right: 4.65%;
  width: auto;
}

.templated-slider-slideset-ias-event-2024 div.draw-border.draw-border__arrow--white a {
  color: #337ab7;
}

.templated-slider-slideset-ias-event-2024 .pswp__item .button.slideshow-button {
  display: block;
  visibility: visible;
}

.templated-slider-slideset-ias-event-2024 [active-slide="16"] .photoswipe-text-caption.text-item-0,
.templated-slider-slideset-ias-event-2024 [active-slide="17"] .photoswipe-text-caption.text-item-0,
.templated-slider-slideset-ias-event-2024 [active-slide="18"] .photoswipe-text-caption.text-item-0,
.templated-slider-slideset-ias-event-2024 [active-slide="19"] .photoswipe-text-caption.text-item-0,
.templated-slider-slideset-ias-event-2024 [active-slide="20"] .photoswipe-text-caption.text-item-0,
.templated-slider-slideset-ias-event-2024 [active-slide="21"] .photoswipe-text-caption.text-item-0,
.templated-slider-slideset-ias-event-2024 [active-slide="22"] .photoswipe-text-caption.text-item-0,
.templated-slider-slideset-ias-event-2024 [active-slide="23"] .photoswipe-text-caption.text-item-0,
.templated-slider-slideset-ias-event-2024 [active-slide="24"] .photoswipe-text-caption.text-item-0 {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-23.template-a-t-c-02 .template-over-bar-logo .overylay-text-item-0 {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 2.2%;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-23.template-a-t-c-02 .template-over-bar-logo .overylay-text-item-0 {
  top: 73.04%;
}

.templated-slider-slideset-ias-event-2024 div.draw-border.slideshow-button {
  font-weight: 500;
  color: #337ab7;
}

.templated-slider-slideset-ias-event-2024 .template-f0l-7 .text-item-0 {
  bottom: 56.52%;
}

.templated-slider-slideset-ias-event-2024 .template-f0l-7 .image-item-1 {
  top: 45.21%;
}

.templated-slider-slideset-ias-event-2024 .template-k0r-7 .text-item-0 {
  top: auto;
  bottom: 0%;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-12.template-a-img-t-c-01 .text-item-0 .lead-stat-number-smaller {
  line-height: 0.35;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-15 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-16 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-18 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-19 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-20 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-21 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-22 .overlay-item--bar {
  padding-top: 0;
  padding-bottom: 0;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-33 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-34 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-40 .overlay-item--bar,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-44 .overlay-item--bar {
  padding-top: 8px;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-19.template-a-t-l-01 .template-over-bar-logo .overylay-text-item-0 {
  padding-right: 1.73%;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-18.template-a-t-c-01 .template-over-bar-logo .overylay-text-item-0 {
  top: 69.56%;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-19.template-a-t-l-01 .template-over-bar-logo .overylay-text-item-0,
.templated-slider-slideset-ias-event-2024 .slide-id-slide-21.template-a-t-l-03 .template-over-bar-logo .overylay-text-item-0 {
  top: 67.82%;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-20 .template-over-bar-logo .overylay-text-item-0 {
  top: 67.82%;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-22 .template-over-bar-logo .overylay-text-item-0 {
  top: 71.3%;
}

.templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button .text-item-1 {
  left: auto;
  right: 0;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-26 .template-over-bar-logo-button .overlay-item.image-item-0 {
  padding-right: 25.58% !important;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-51.template-d0-0 .text-item-0 {
  left: 4.65%;
  right: 4.65%;
  width: auto;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-49.template-i0l-13 .text-item-0 {
  top: 46.08%;
  width: auto;
  right: 0;
}

.templated-slider-slideset-ias-event-2024 .template-a-img-t-c-01 .overylay-text-item-0,
.templated-slider-slideset-ias-event-2024 .template-a-t-r-01 .overylay-text-item-0,
.templated-slider-slideset-ias-event-2024 .template-a-t-l-01 .overylay-text-item-0,
.templated-slider-slideset-ias-event-2024 .template-a-t-c-02 .overylay-text-item-0,
.templated-slider-slideset-ias-event-2024 .template-a-t-l-03 .overylay-text-item-0,
.templated-slider-slideset-ias-event-2024 .template-a-t-c-01 .overylay-text-item-0,
.templated-slider-slideset-ias-event-2024 .template-a-video-01 .overylay-text-item-0,
.templated-slider-slideset-ias-event-2024 .template-a-t-c-03 .overylay-text-item-0 {
  color: #fff;
}

.templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button .overlay-item.button-item-1 {
  right: 0;
  left: auto !important;
  margin-right: 0;
}

.templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button .overlay-item.button-item-1 .slideshow-button {
  background: #9c8f6d !important;
}

.templated-slider-slideset-ias-event-2024 .slideshow-button a {
  color: #fff !important;
  display: flex;
  justify-content: center;
}

.templated-slider-slideset-ias-event-2024 .slideshow-button a .icon-arrow-right {
  color: #fff;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-25 .template-over-bar-logo-button .text-item-1 {
  width: 21.51%;
}

.templated-slider-slideset-ias-event-2024 .slide-id-slide-25 .template-over-bar-logo-button .text-item-1 span.linked {
  padding-top: 3px;
}

.templated-slider-slideset-ias-event-2024 :lang(it) .template-a-t-l-01 .text-item-0 {
  font-size: 21px;
}

.templated-slider-slideset-ias-event-2024 :lang(hu) .template-a-t-l-01 .text-item-0,
.templated-slider-slideset-ias-event-2024 :lang(it) .template-a-t-l-03 .text-item-0 {
  font-size: 21px;
  bottom: 72.78%;
  left: 57.13%;
  width: 39.2%;
}

.templated-slider-slideset-ias-event-2024 :lang(ja) .template-a-t-l-03 .text-item-0 {
  left: 57.13%;
  width: 39.2%;
  bottom: 65.78%;
}

.templated-slider-slideset-ias-event-2024 :lang(hu) .template-a-t-c-02 .text-item-0 {
  line-height: 1.2em;
}

:lang(ru) .templated-slider-slideset-ias-event-2024 .slide-id-slide-19 .text-item-0,
:lang(ru) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0,
:lang(ja) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 {
  left: 57.13%;
  width: 39.2%;
  font-size: 21px;
}

.templated-slider-slideset-ias-event-2024 :lang(ja) .slide-id-slide-55 .text-item-0 {
  word-break: auto-phrase;
}

:lang(nl) .templated-slider-slideset-ias-event-2024 .template-c1-t-01-l .text-item-0 br {
  display: none;
}

:lang(nl) .templated-slider-slideset-ias-event-2024 .slide-id-slide-19 .text-item-0 {
  line-height: 1;
}

:lang(nl) .templated-slider-slideset-ias-event-2024 .slide-id-slide-19 .text-item-0 br {
  display: none;
}

:lang(da) .templated-slider-slideset-ias-event-2024 .slide-id-slide-19 .text-item-0 br,
:lang(ja) .templated-slider-slideset-ias-event-2024 .slide-id-slide-21 .text-item-0 br,
:lang(es) .templated-slider-slideset-ias-event-2024 .slide-id-slide-19 .text-item-0 br,
:lang(ru) .templated-slider-slideset-ias-event-2024 .slide-id-slide-19 .text-item-0 br,
:lang(ru) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 br,
:lang(pt) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 br,
:lang(no) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 br,
:lang(sv) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 br,
:lang(it) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 br,
:lang(es) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 br,
:lang(hu) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 br,
:lang(hu) .templated-slider-slideset-ias-event-2024 .slide-id-slide-35 .text-item-0 br,
:lang(pt) .templated-slider-slideset-ias-event-2024 .slide-id-slide-35 .text-item-0 br,
:lang(fr) .templated-slider-slideset-ias-event-2024 .slide-id-slide-35 .text-item-0 br,
:lang(fr) .templated-slider-slideset-ias-event-2024 .slide-id-slide-15 .text-item-0 br,
:lang(fr) .templated-slider-slideset-ias-event-2024 .slide-id-slide-19 .text-item-0 br,
:lang(fr) .templated-slider-slideset-ias-event-2024 .slide-id-slide-17 .text-item-0 br {
  display: none;
}

:lang(hu) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .text-item-0,
:lang(fr) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .text-item-0,
:lang(de) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .text-item-0,
:lang(nl) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .text-item-0,
:lang(ru) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .text-item-0 {
  left: 0.67%;
  width: 24.79%;
  line-height: 1.3em;
  height: 34%;
  bottom: 62.6%;
}

:lang(hu) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .image-item-1,
:lang(fr) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .image-item-1,
:lang(de) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .image-item-1,
:lang(nl) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .image-item-1,
:lang(ru) .templated-slider-slideset-ias-event-2024 .slide-id-slide-29.template-e0r-8 .image-item-1 {
  top: 40%;
}

:lang(da) .templated-slider-slideset-ias-event-2024 .template-a-t-c-03 .text-item-0,
:lang(sv) .templated-slider-slideset-ias-event-2024 .template-a-t-c-03 .text-item-0 {
  font-size: 33px;
}

:lang(da) .templated-slider-slideset-ias-event-2024 .template-a-t-c-03 .text-item-0 .lead-stat-number-smaller,
:lang(sv) .templated-slider-slideset-ias-event-2024 .template-a-t-c-03 .text-item-0 .lead-stat-number-smaller {
  font-size: 90px;
}

:lang(da) .templated-slider-slideset-ias-event-2024 .template-a-t-c-02 .text-item-0,
:lang(sv) .templated-slider-slideset-ias-event-2024 .template-a-t-c-02 .text-item-0 {
  line-height: 1.2;
}

:lang(de) .templated-slider-slideset-ias-event-2024 .template-a-t-c-03 .text-item-0 {
  font-size: 36px;
  letter-spacing: 2px;
}

:lang(fr) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button,
:lang(it) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button,
:lang(hu) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button {
  max-width: 185px;
}

:lang(fr) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button span.linked,
:lang(it) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button span.linked,
:lang(hu) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button span.linked {
  padding-top: 0px;
}

:lang(fr) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button a,
:lang(it) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button a,
:lang(hu) .templated-slider-slideset-ias-event-2024 .template-over-bar-logo-button div.draw-border.slideshow-button a {
  font-size: 14px;
}

:lang(es) .templated-slider-slideset-ias-event-2024 .text-item .floater-texter,
:lang(el) .templated-slider-slideset-ias-event-2024 .text-item .floater-texter {
  line-height: 1.4em;
}

:lang(he) .templated-slider-slideset-ias-event-2024 slide .lead-titleLine {
  font-size: 1.4rem;
}

.templated-slider-slideset-ias-event-2024 :lang(zh) .lead.lead-blue-caps b {
  font-weight: 600;
}

:lang(es-ES) .slideshowid-kansas-city-grand-opening slide#slide11 slidecaption {
  top: 12.17%;
}

:lang(es-ES) .slideshowid-kansas-city-grand-opening slide#slide12 slidecaption {
  top: 12.17%;
}

:lang(es-ES) .slideshowid-kansas-city-grand-opening slide#slide13 slidecaption {
  top: 12.17%;
}

:lang(es-ES) .slideshowid-kansas-city-grand-opening slide#slide14 slidecaption {
  top: 12.17%;
}

.slideshowid-central-ohio-grand-opening slide#slide-8 slidecaption {
  bottom: 52.17%;
  top: auto;
}

:lang(el) .slideshowid-central-ohio-grand-opening slide#slide-15 slidecaption {
  width: auto;
  left: 8.13%;
  right: 8.13%;
}

:lang(de) .slideshowid-central-ohio-grand-opening slide#slide-11a slidecaption,
:lang(es) .slideshowid-central-ohio-grand-opening slide#slide-11a slidecaption,
:lang(fr) .slideshowid-central-ohio-grand-opening slide#slide-11a slidecaption,
:lang(it) .slideshowid-central-ohio-grand-opening slide#slide-11a slidecaption,
:lang(nl) .slideshowid-central-ohio-grand-opening slide#slide-11a slidecaption,
:lang(pt) .slideshowid-central-ohio-grand-opening slide#slide-11a slidecaption,
:lang(ru) .slideshowid-central-ohio-grand-opening slide#slide-11a slidecaption {
  width: auto;
  left: 8.13%;
  right: 8.13%;
}

.slideshowid-central-ohio-grand-opening slide#slide-12 slidecaption {
  top: 20.86%;
  width: 24.88%;
  left: 0;
}

:lang(de) .slideshowid-central-ohio-grand-opening slide#slide-12 slidecaption,
:lang(es) .slideshowid-central-ohio-grand-opening slide#slide-12 slidecaption,
:lang(fr) .slideshowid-central-ohio-grand-opening slide#slide-12 slidecaption {
  top: 13.91%;
}

:lang(el) .slideshowid-central-ohio-grand-opening slide#slide-12 slidecaption,
:lang(it) .slideshowid-central-ohio-grand-opening slide#slide-12 slidecaption,
:lang(nl) .slideshowid-central-ohio-grand-opening slide#slide-12 slidecaption,
:lang(pt) .slideshowid-central-ohio-grand-opening slide#slide-12 slidecaption {
  top: 15.65%;
}

.slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption {
  top: 17.39%;
  width: 24.88%;
}

:lang(de) .slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption,
:lang(es) .slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption,
:lang(fr) .slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption {
  top: 10.43%;
}

:lang(el) .slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption,
:lang(it) .slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption,
:lang(nl) .slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption,
:lang(pt) .slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption {
  top: 13.91%;
}

:lang(he) .slideshowid-central-ohio-grand-opening slide#slide-13 slidecaption {
  top: 13.91%;
  left: auto;
  right: 75.11%;
}

.slideshowid-central-ohio-grand-opening slide#slide-14a slidecaption {
  top: 17.39%;
  width: 24.88%;
  left: 0;
}

:lang(de) .slideshowid-central-ohio-grand-opening slide#slide-14a slidecaption,
:lang(es) .slideshowid-central-ohio-grand-opening slide#slide-14a slidecaption,
:lang(fr) .slideshowid-central-ohio-grand-opening slide#slide-14a slidecaption {
  top: 6.95%;
}

:lang(el) .slideshowid-central-ohio-grand-opening slide#slide-14a slidecaption,
:lang(it) .slideshowid-central-ohio-grand-opening slide#slide-14a slidecaption,
:lang(nl) .slideshowid-central-ohio-grand-opening slide#slide-14a slidecaption,
:lang(pt) .slideshowid-central-ohio-grand-opening slide#slide-14a slidecaption {
  top: 13.91%;
}

.slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption {
  top: 8.69%;
  width: 24.88%;
}

:lang(de) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption,
:lang(es) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption,
:lang(fr) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption,
:lang(nl) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption,
:lang(pt) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption,
:lang(ru) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption {
  top: 6.43%;
  width: 25.46%;
}

:lang(it) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption {
  top: 2.95%;
  width: 25.46%;
}

:lang(el) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption,
:lang(ja) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption {
  top: 5.21%;
}

:lang(he) .slideshowid-central-ohio-grand-opening slide#slide-14 slidecaption {
  left: auto;
  right: 75.11%;
}

.templated-slider-slideset-2024-march13 .slide-id-slide-13.template-q0r-1b .text-item-0 {
  width: 31.97%;
}

.templated-slider-slideset-2024-march13 .over-bar-logo-button-video .slideshow-button.draw-border,
.templated-slider-slideset-2024-march13 .template-over-bar-logo-button .button-item.overlay-item {
  left: 78.48%;
  margin-right: 0;
}

.templated-slider-slideset-2024-march13 .template-over-bar-logo-button-video .slideshow-button.draw-border__arrow--white {
  font-size: 14px;
}

.templated-slider-slideset-2024-march13 .template-over-bar-logo-button div.draw-border.slideshow-button {
  font-size: 13px;
}

.templated-slider-slideset-2024-march13 .slideshow-button.draw-border__arrow--white {
  min-width: initial !important;
}

.templated-slider-slideset-2024-march13 .template-over-bar-logo-button-video .slideshow-button,
.templated-slider-slideset-2024-march13 .draw-border__arrow--white a {
  color: #337ab7;
}

.templated-slider-slideset-2024-march13 .template-x0l-3 .template-over-bar-logo-button .overlay-item.image-item-0 {
  padding-bottom: 30px;
}

.templated-slider-slideset-2024-march13 .template-over-bar-logo .overylay-text-item-0 {
  height: 19.13% !important;
}

.templated-slider-slideset-2024-march13 .template-d0-master .template-over-bar-logo .overylay-text-item-0 {
  top: 84.17%;
}

.templated-slider-slideset-2024-march13 .template-h0r-2 .image-item-1 {
  top: 8.69%;
}

.templated-slider-slideset-2024-march13 .template-h0r-2 .text-item-0 {
  top: 57.39%;
}

.templated-slider-slideset-2024-march13 .template-h0l-2 .image-item-1 {
  top: 8.69%;
}

.templated-slider-slideset-2024-march13 .template-h0l-2 .text-item-0 {
  top: 57.39%;
}

.templated-slider-slideset-2024-march13 .template-e0l-0 .text-item-0 {
  width: 24.41%;
}

.templated-slider-slideset-2024-march13 .template-c1-master .template-over-bar-logo-button .overlay-item.image-item-0 {
  padding-top: 0;
}

.templated-slider-slideset-2024-march13 .template-j0r-14-c .text-item-0 {
  left: 0;
  width: 40.69%;
  top: 74.78%;
}

.templated-slider-slideset-2024-march13 .zoomedIn.slide-wrapper slide .lead,
.templated-slider-slideset-2024-march13 .lead-titleLine.leader-white-title {
  color: #fff;
}

.templated-slider-slideset-2024-march13 .slide-id-slide-32 .template-over-bar-logo-button .overlay-item.button-item-1,
.templated-slider-slideset-2024-march13 .slide-id-slide-34 .template-over-bar-logo-button .overlay-item.button-item-1,
.templated-slider-slideset-2024-march13 .slide-id-slide-36 .template-over-bar-logo-button .overlay-item.button-item-1 {
  right: 0;
  left: auto !important;
  margin-right: 0;
}

.templated-slider-slideset-2024-march13 .slide-id-slide-32 .template-over-bar-logo-button .overlay-item.button-item-1 .slideshow-button,
.templated-slider-slideset-2024-march13 .slide-id-slide-34 .template-over-bar-logo-button .overlay-item.button-item-1 .slideshow-button,
.templated-slider-slideset-2024-march13 .slide-id-slide-36 .template-over-bar-logo-button .overlay-item.button-item-1 .slideshow-button {
  background: #9c8f6d !important;
}

.templated-slider-slideset-2024-march13 .slide-id-slide-32 .slideshow-button a,
.templated-slider-slideset-2024-march13 .slide-id-slide-34 .slideshow-button a,
.templated-slider-slideset-2024-march13 .slide-id-slide-36 .slideshow-button a {
  color: #fff;
  display: flex;
  justify-content: center;
}

.templated-slider-slideset-2024-march13 .slide-id-slide-32 .slideshow-button a .icon-arrow-right,
.templated-slider-slideset-2024-march13 .slide-id-slide-34 .slideshow-button a .icon-arrow-right,
.templated-slider-slideset-2024-march13 .slide-id-slide-36 .slideshow-button a .icon-arrow-right {
  color: #fff;
}

.templated-slider-slideset-2024-march13:not(.photoswipe--open) .lead-titleLine.leader-white-title {
  color: #000;
}

.templated-slider-slideset-2024-march13.photoswipe--open .button-item.overlay-item {
  color: #000 !important;
}

.templated-slider-slideset-2024-march13 .slide-id-slide-17 .lead-titleLine.leader-white-title,
.templated-slider-slideset-2024-march13 .slide-id-slide-47 .lead-titleLine.leader-white-title,
.templated-slider-slideset-2024-march13 .template-over-bar-logo-button .lead-titleLine.leader-white-title {
  color: #fff;
}

.templated-slider-slideset-2024-march13 .slide-id-slide-47 .template-over-bar-logo-button-video .text-item-1 {
  top: 80.08%;
  left: 78.95%;
  width: 20.44%;
}

.templated-slider-slideset-2024-march13:not(.photoswipe--open) .slide-id-slide-32 .lead-titleLine.leader-white-title,
.templated-slider-slideset-2024-march13:not(.photoswipe--open) .slide-id-slide-34 .lead-titleLine.leader-white-title,
.templated-slider-slideset-2024-march13:not(.photoswipe--open) .slide-id-slide-36 .lead-titleLine.leader-white-title {
  color: #000;
}

.templated-slider-slideset-2024-march13 .template-over-bar-logo-button .text-item-1 {
  top: 80.69%;
}

.templated-slider-slideset-2024-march13 .template-over-bar-logo-button .text-item-1 {
  width: 20.34%;
}

.templated-slider-slideset-2024-march13 .template-over-bar-logo-button .text-item-1 a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.templated-slider-slideset-2024-march13 :lang(it) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(it) .template-h0r-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(it) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-h0r-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-h0r-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-h0r-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-h0l-2 .text-item-0 {
  line-height: 1.3;
  width: 40.79%;
}

.templated-slider-slideset-2024-march13 :lang(it) .template-over-bar-logo-button-video .overlay-item.image-item-0,
.templated-slider-slideset-2024-march13 :lang(it) .template-e0l-8 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-over-bar-logo-button-video .overlay-item.image-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-e0l-8 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-over-bar-logo-button-video .overlay-item.image-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-e0l-8 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-over-bar-logo-button-video .overlay-item.image-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-e0l-8 .text-item-0 {
  line-height: 1.3;
}

.templated-slider-slideset-2024-march13 :lang(it) .template-c1-0 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-c1-0 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-c1-0 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-c1-0 .text-item-0 {
  line-height: 1.3;
  width: 81%;
}

.templated-slider-slideset-2024-march13 :lang(it) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-q0r-1b .text-item-0 {
  font-size: 16px;
  top: 50%;
}

.templated-slider-slideset-2024-march13 :lang(it) .template-over-bar-logo-button .overlay-item.image-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-over-bar-logo-button .overlay-item.image-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-over-bar-logo-button .overlay-item.image-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-over-bar-logo-button .overlay-item.image-item-0 {
  line-height: 1.2;
}

.templated-slider-slideset-2024-march13 :lang(it) .template-z1-master .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-z1-master .text-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-z1-master .text-item-0,
.templated-slider-slideset-2024-march13 :lang(de) .template-z1-master .text-item-0 {
  top: 63.65%;
}

.templated-slider-slideset-2024-march13 :lang(el) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(el) .template-q0l-1b .text-item-0 {
  line-height: 1.2;
  font-size: 15px;
}

.templated-slider-slideset-2024-march13 :lang(el) .template-z1-master .text-item-0 {
  top: 61%;
  line-height: 1.3;
}

.templated-slider-slideset-2024-march13 :lang(el) .template-h0r-2 .text-item-0 {
  line-height: 1.2;
}

.templated-slider-slideset-2024-march13 :lang(hu) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-v0-1 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-v0-1 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(pt) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(pt) .template-v0-1 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(fr) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(fr) .template-v0-1 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(es) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(es) .template-v0-1 .text-item-0 {
  line-height: 1.3;
  font-size: 17px;
}

.templated-slider-slideset-2024-march13 :lang(hu) .template-e0l-8 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-e0l-8 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(pt) .template-e0l-8 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(fr) .template-e0l-8 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(es) .template-e0l-8 .text-item-0 {
  line-height: 1.3;
  width: 24.25%;
}

.templated-slider-slideset-2024-march13 :lang(hu) .template-z1-master .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-z1-master .text-item-0,
.templated-slider-slideset-2024-march13 :lang(pt) .template-z1-master .text-item-0,
.templated-slider-slideset-2024-march13 :lang(fr) .template-z1-master .text-item-0,
.templated-slider-slideset-2024-march13 :lang(es) .template-z1-master .text-item-0 {
  top: 65%;
}

.templated-slider-slideset-2024-march13 :lang(hu) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(hu) .template-h0r-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-h0r-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(pt) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(pt) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(pt) .template-h0r-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(fr) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(fr) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(fr) .template-h0r-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(es) .template-j0r-14-c .text-item-0,
.templated-slider-slideset-2024-march13 :lang(es) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(es) .template-h0r-2 .text-item-0 {
  line-height: 1.2;
}

.templated-slider-slideset-2024-march13 :lang(ja) .template-q0r-1b .text-item-0 {
  font-size: 17px;
}

.templated-slider-slideset-2024-march13 :lang(nl) .template-over-bar-logo-button .overlay-item.image-item-0 {
  line-height: 1.2;
}

.templated-slider-slideset-2024-march13 :lang(nl) .template-z1-master .text-item-0 {
  top: 65%;
}

.templated-slider-slideset-2024-march13 :lang(nl) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(nl) .template-h0r-2 .text-item-0 {
  line-height: 1.2;
}

.templated-slider-slideset-2024-march13 :lang(nl) slide .lead-titleLine {
  font-size: 0.9rem;
}

.templated-slider-slideset-2024-march13 :lang(ru) .template-q0r-1b .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-v0-1 .text-item-0 {
  top: 49%;
  line-height: 1.2;
  font-size: 16px;
}

.templated-slider-slideset-2024-march13 :lang(ru) .template-e0l-8 .text-item-0 {
  line-height: 1.3;
  width: 24.25%;
}

.templated-slider-slideset-2024-march13 :lang(ru) .template-z1-master .text-item-0 {
  top: 65%;
}

.templated-slider-slideset-2024-march13 :lang(ru) .template-h0l-2 .text-item-0,
.templated-slider-slideset-2024-march13 :lang(ru) .template-h0r-2 .text-item-0 {
  line-height: 1.2;
}

.templated-slider-slideset-2024-march13 :lang(hu) .template-over-bar-logo-button div.draw-border.slideshow-button {
  font-size: 11px;
}

.templated-slider-slideset-2025-march13 .template-a-t-c-01 .text-item-0 {
  top: 40%;
  height: 58.95%;
}

.templated-slider-slideset-2025-march13 .template-a-t-c-01 .text-item-0 span {
  font-size: 80px;
  font-weight: bold;
}

.templated-slider-slideset-2025-march13 .template-q0l-1 .image-item-0 img,
.templated-slider-slideset-2025-march13 .template-q0r-1d .image-item-0 img,
.templated-slider-slideset-2025-march13 .template-q0r-1 .image-item-0 img {
  opacity: 0.8;
}

.templated-slider-slideset-2025-march13 .slide-id-slide-11.template-q0r-1 .text-item-0 {
  width: 34.06%;
}

.templated-slider-slideset-2025-march13 .template-a-t-c-01 .template-over-bar-logo .overylay-text-item-0 {
  padding-right: 4.18%;
}

.templated-slider-slideset-2025-march13 .slide-id-slide-19.template-x0l-4 .template-over-bar-logo .overylay-text-item-0 {
  padding-top: 8px;
  top: 74.78%;
}

.templated-slider-slideset-2025-march13 .template-e0r-7 .text-item-0 {
  left: 2.32%;
  width: 23.83%;
}

.templated-slider-slideset-2025-march13 .template-d0-1r .text-item-0 {
  top: 84.34%;
  left: 0%;
  width: 69.76%;
}

.templated-slider-slideset-2025-march13 .template-d0-1r .image-item-1 {
  left: 70.93%;
}

.templated-slider-slideset-2025-march13 .template-j0r-14-c .image-item-1 {
  top: 31.3%;
}

.templated-slider-slideset-2025-march13 .template-j0r-14-c .text-item-0 {
  left: 0;
  width: 41.86%;
  top: 73.04%;
}

.templated-slider-slideset-2025-march13 .zoomedIn.slide-wrapper slide .leader-white-title,
.templated-slider-slideset-2025-march13 .lead-titleLine.leader-white-title {
  color: #292b2c;
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.2em;
}

.templated-slider-slideset-2025-march13 .pswp__item .lead-titleLine.leader-white-title {
  color: #fff;
}

.templated-slider-slideset-2025-march13 .template-b0-5l .text-item-0 {
  left: 37.2%;
  top: 78.26%;
  width: 60.46%;
}

.templated-slider-slideset-2025-march13 .template-h0r-2 .image-item-1 {
  top: 3.47%;
  left: 6.62%;
  width: 37.79%;
  height: 45.21%;
}

.templated-slider-slideset-2025-march13 .template-h0r-2 .text-item-0 {
  top: 50.43%;
  left: 6.62%;
  width: 37.79%;
}

.templated-slider-slideset-2025-march13 .template-h0l-2 .image-item-1 {
  top: 3.47%;
}

.templated-slider-slideset-2025-march13 .template-h0l-2 .text-item-0 {
  top: 50.43%;
}

.templated-slider-slideset-2025-march13 .template-e0r-7 .image-item-1 {
  top: 46.08%;
}

.templated-slider-slideset-2025-march13 .template-e0r-7 .text-item-0 {
  bottom: 55.65%;
}

.templated-slider-slideset-2025-march13 .template-x0l-4 .template-over-bar-logo .overylay-text-item-0 {
  padding-top: 8px;
  padding-bottom: 7px;
}

.templated-slider-slideset-2025-march13 .template-f0l-4 .template-over-button {
  top: 77.56%;
  position: absolute;
  left: 74.41%;
  right: 2.32%;
  width: 25.58%;
  font-weight: 500;
}

.templated-slider-slideset-2025-march13 .template-f0l-4 .template-over-button .button-item,
.templated-slider-slideset-2025-march13 .template-f0l-4 .template-over-button .button {
  left: 0;
  right: 0;
}

.templated-slider-slideset-2025-march13 .template-f0l-4 div.draw-border.slideshow-button a span,
.templated-slider-slideset-2025-march13 .template-f0l-4 div.draw-border.slideshow-button:hover a span {
  color: #fff !important;
}

.templated-slider-slideset-2025-march13 .template-e0r-16 .text-item-0 {
  width: 23.83%;
  left: 0;
}

.templated-slider-slideset-2025-march13 .template-over-bar-logo .overlay-item.image-item-0 {
  min-height: 24.34%;
}

.templated-slider-slideset-2025-march13 .arrow-button-icon {
  color: #fff;
}

.templated-slider-slideset-2025-march13 .template-f0l-4 div.draw-border.slideshow-button a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.templated-slider-slideset-2025-march13 .template-f0l-4 div.draw-border.slideshow-button a span,
.templated-slider-slideset-2025-march13 .template-f0l-4 div.draw-border.slideshow-button:hover a span {
  font-size: 15px;
}

.templated-slider-slideset-2025-march13 .template-q0l-1 .overlay-item--bar,
.templated-slider-slideset-2025-march13 .template-q0r-1d .overlay-item--bar,
.templated-slider-slideset-2025-march13 .template-q0r-1 .overlay-item--bar {
  padding-top: 5px;
}

.templated-slider-slideset-2025-march13 .template-q0l-3 .text-item-0,
.templated-slider-slideset-2025-march13 .template-q0l-1e .text-item-0,
.templated-slider-slideset-2025-march13 .template-q0r-1d .text-item-0 {
  color: #fff;
}

:lang(he) .templated-slider-slideset-2025-march13 .slide-wrapper .lead-blue-caps,
:lang(he) .templated-slider-slideset-2025-march13 .slide-wrapper .lead.lead-white-caps {
  font-size: 1.2em;
}

:lang(ja) .templated-slider-slideset-2025-march13 .slide-wrapper .lead-blue-caps,
:lang(ja) .templated-slider-slideset-2025-march13 .slide-wrapper .lead.lead-white-caps,
:lang(zh) .templated-slider-slideset-2025-march13 .slide-wrapper .lead-blue-caps,
:lang(zh) .templated-slider-slideset-2025-march13 .slide-wrapper .lead.lead-white-caps {
  font-weight: bold;
}

html:not([lang="en"]) .templated-slider-slideset-2025-march13 .template-q0l-1 .text-item-0 {
  top: 50.08%;
  left: 63.95%;
  width: 34.18%;
}

:lang(ru) .templated-slider-slideset-2025-march13 .template-q0l-1 .text-item-0 {
  line-height: 1.2;
  font-size: 17px;
}

:lang(it) .templated-slider-slideset-2025-march13 .template-q0l-1 .text-item-0,
:lang(nl) .templated-slider-slideset-2025-march13 .template-q0l-1 .text-item-0 {
  line-height: 1.2;
}

.templated-slider-slideset-2025-march13 :lang(da) .slide-id-slide-11.template-q0r-1 .text-item-0 {
  top: 49.82%;
}

:lang(pt) .templated-slider-slideset-2025-march13 .template-q0l-1 .text-item-0,
:lang(de) .templated-slider-slideset-2025-march13 .template-q0l-1 .text-item-0,
:lang(el) .templated-slider-slideset-2025-march13 .template-q0l-1 .text-item-0 {
  line-height: 1.3;
}

.templated-slider-slideset-2025-march13 :lang(pt) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(fr) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(de) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(de) .slide-id-slide-13.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(el) .template-q0r-1 .text-item-0 {
  top: 49.82%;
  left: 0.44%;
  width: 36.02%;
  line-height: 1.3;
  font-size: 16px;
}

.templated-slider-slideset-2025-march13 :lang(hu) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(es) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(no) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(nl) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(ru) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(sv) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(it) .slide-id-slide-11.template-q0r-1 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(es-ES) .template-q0r-1 .text-item-0 {
  top: 49.82%;
  left: 1.44%;
  width: 35.02%;
  line-height: 1.3;
}

:lang(de) .templated-slider-slideset-2025-march13 .slide-id-slide-12.template-q0l-1 .text-item-0 span {
  padding-left: 15px;
  line-height: 1.1;
}

.templated-slider-slideset-2025-march13 :lang(es) .slide-id-slide-11.template-q0l-3 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(fr) .slide-id-slide-11.template-q0l-3 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(it) .slide-id-slide-11.template-q0l-3 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(hu) .slide-id-slide-11.template-q0l-3 .text-item-0 {
  left: 53.02%;
  width: 44.76%;
  line-height: 1.3;
}

.templated-slider-slideset-2025-march13 :lang(ru) .slide-id-slide-5.template-c1-0 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(fr) .slide-id-slide-5.template-c1-0 .text-item-0 {
  width: 83.4%;
  left: 9%;
}

.templated-slider-slideset-2025-march13 :lang(es) .slide-id-slide-5.template-c1-0 .text-item-0 {
  width: 79%;
}

.templated-slider-slideset-2025-march13 :lang(sv) .slide-id-slide-29.template-z0r-2 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(no) .slide-id-slide-29.template-z0r-2 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(el) .slide-id-slide-29.template-z0r-2 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(de) .slide-id-slide-29.template-z0r-2 .text-item-0 {
  width: 57%;
}

.templated-slider-slideset-2025-march13 :lang(es) .slide-id-slide-29.template-z0r-2 .text-item-0,
.templated-slider-slideset-2025-march13 :lang(ru) .slide-id-slide-29.template-z0r-2 .text-item-0 {
  width: 58%;
}

.templated-slider-slideset-2025-march13 :lang(it) .slide-id-slide-30.template-z0l-4 .text-item-0 {
  width: 54%;
}

.templated-slider-slideset-2025-march13 :lang(hu) .slide-id-slide-31.template-z1-master .text-item-0 {
  width: 32.04%;
}

.templated-slider-slideset-2025-march13 :lang(es) .template-over-bar-logo .overylay-text-item-0 {
  padding-left: 25%;
}

.templated-slider-slideset-eastern-cape-grand-opening .template-g0r-0 .text-item-0 {
  top: 8.69%;
}

.templated-slider-slideset-eastern-cape-grand-opening .template-g0l-0 .text-item-0 {
  top: 8.69%;
  width: auto;
  right: 0;
}

.templated-slider-slideset-eastern-cape-grand-opening .slide-id-slide-14.template-d0-0 .text-item-0 {
  left: 5.81%;
  right: 5.81%;
  width: auto;
}

.templated-slider-slideset-eastern-cape-grand-opening .template-f0r-5 .text-item-0 {
  left: 0;
  width: 25.58%;
}

.templated-slider-slideset-eastern-cape-grand-opening .template-g0l-0.slide-id-slide-13 .text-item-0,
.templated-slider-slideset-eastern-cape-grand-opening .template-g0l-0.slide-id-slide-16 .text-item-0 {
  top: 6.08%;
  bottom: 0;
}

.templated-slider-slideset-may-9-event-2025 .template-c1-t-over-image .text-item-0 {
  top: auto;
  bottom: 36.52%;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.2;
}

.templated-slider-slideset-may-9-event-2025 .template-c1-t-over-image .text-item-0 .lead-stat-number {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
}

.templated-slider-slideset-may-9-event-2025 .template-c1-t-over-image .text-item-0 strong {
  font-weight: 700;
  font-size: 88px;
  line-height: 1.1;
  margin-bottom: 10px;
  display: block;
}

.templated-slider-slideset-may-9-event-2025 .slide-id-slide-9.template-c1-t-over-image .text-item-0 {
  bottom: 31.3%;
}

.templated-slider-slideset-may-9-event-2025 .template-e0r-11 .image-item-1 {
  top: 21.73%;
}

.templated-slider-slideset-may-9-event-2025 .template-e0r-11 .text-item-0 {
  top: 52.17%;
}

.templated-slider-slideset-may-9-event-2025 .template-i0r-0 .text-item-0 {
  font-family: "Domine", georgia, serif;
  font-weight: 500;
  text-align: center;
  font-size: 23px;
  top: 21.39%;
  text-align: center;
  line-height: 1.5;
}

.templated-slider-slideset-may-9-event-2025 .template-i0r-0 .text-item-0 strong {
  font-weight: 500;
}

.templated-slider-slideset-may-9-event-2025 .template-i0r-0 .quote-signatory {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: normal;
  display: block;
  margin-top: 20px;
  padding: 0 20px;
}

.templated-slider-slideset-may-9-event-2025 .template-over-bar-logo-button div.draw-border.slideshow-button {
  font-size: 14px;
}

.templated-slider-slideset-may-9-event-2025 .slide-id-slide-18.template-d0-0 .text-item-0 {
  top: 85.21%;
  left: 4.65%;
  right: 4.65%;
  width: auto;
}

.templated-slider-slideset-may-9-event-2025 .template-d0-3r .text-item-0 {
  left: 2.32%;
  width: 58.13%;
}

.templated-slider-slideset-may-9-event-2025 div.draw-border.slideshow-button {
  color: #000;
}

.templated-slider-slideset-may-9-event-2025 .template-over-bar-logo-button .button-item-1 {
  left: auto;
  right: 0;
}

.templated-slider-slideset-may-9-event-2025 .template-over-bar-logo-button .overlay-item.image-item-0 {
  padding-left: 22.09% !important;
  padding-right: 26.51% !important;
  padding-top: 10px;
  padding-bottom: 0 !important;
  top: 74.78%;
}

.templated-slider-slideset-may-9-event-2025 .template-c1-master .template-over-bar-logo .overylay-text-item-0 {
  top: 75.13%;
}

.templated-slider-slideset-may-9-event-2025:not(.photoswipe--open) .template-over-bar-logo-without-bar .lead-titleLine.leader-white-title {
  color: #9c8f6d !important;
}

.templated-slider-slideset-may-9-event-2025 .slide-id-slide-36 .template-over-bar-logo-button-video .overlay-item.image-item-0 {
  padding-top: 5px;
}

.templated-slider-slideset-may-9-event-2025 .template-over-bar-logo-button .overlay-item.image-item-0 {
  padding-top: 20px;
  bottom: 0;
}

.templated-slider-slideset-may-9-event-2025 .template-i0r-0 .text-item-0 {
  font-weight: 700;
}

.templated-slider-slideset-may-9-event-2025 .template-i0r-0 .text-item-0 p {
  font-size: 22px;
}

.templated-slider-slideset-may-9-event-2025 .template-i0r-0 .text-item-0 strong {
  font-weight: 700;
}

.templated-slider-slideset-may-9-event-2025 .template-over-bar-logo-button .text-item-1 {
  top: 79.82%;
  left: 75.95%;
  width: 21.44%;
  text-align: center;
}

.slideshowid-ventura-grand-opening slide#slide7 .text-item-0 {
  left: 4.65%;
  width: 52.32%;
}

:lang(de) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(el) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(es) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(es-ES) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(fr) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(it) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(hu) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(nl) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(pt) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(ru) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0,
:lang(sv) .slideshowid-ventura-grand-opening slide#slide14 .text-item-0, :lang(de)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(el)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(es)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(es-ES)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(fr)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(it)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(hu)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(nl)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(pt)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(ru)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0,
:lang(sv)
.slideshowid-ventura-grand-opening slide#slide15 .text-item-0, :lang(de)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(el)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(es)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(es-ES)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(fr)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(it)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(hu)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(nl)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(pt)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(ru)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0,
:lang(sv)
.slideshowid-ventura-grand-opening slide#slide16 .text-item-0, :lang(de)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(el)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(es)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(es-ES)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(fr)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(it)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(hu)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(nl)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(pt)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(ru)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0,
:lang(sv)
.slideshowid-ventura-grand-opening slide#slide17 .text-item-0 {
  top: 50%;
  transform: translateY(-50%);
}

.templated-slider-slideset-new-years-2024 .template-k0r-22 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0r-26 .overlay-item.image-item-1 {
  left: auto;
  right: 0%;
}

.templated-slider-slideset-new-years-2024 .slide-id-slide-2.template-x0l-4 .overlay-item.image-item-1 {
  display: none;
}

.templated-slider-slideset-new-years-2024 .template-c1-t-over .text-item-0 {
  text-shadow: 1px 1px 6px black;
}

.templated-slider-slideset-new-years-2024 .template-f0r-7 .text-item-0 {
  top: 3.47%;
  bottom: auto;
}

.templated-slider-slideset-new-years-2024 .template-f0r-7 .image-item-1 {
  top: 43.47%;
}

.templated-slider-slideset-new-years-2024 .template-h2r-8a .text-item-1 {
  top: 73.04%;
}

.templated-slider-slideset-new-years-2024 .slide-id-slide-24.template-h2r-4a .text-item-1 {
  top: 73.04%;
}

.templated-slider-slideset-new-years-2024 .overlay-item--bar {
  pointer-events: none;
}

.templated-slider-slideset-new-years-2024 .slide-id-slide-41.template-b1-master .template-over-bar-logo .overlay-item.image-item-0 {
  top: 73.91%;
}

.templated-slider-slideset-new-years-2024 [data-template="overlay-overlay-end-link"] .text-item-1 .leader-white-title {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.templated-slider-slideset-new-years-2024 [data-template="overlay-overlay-end-link"] .text-item-0 .lead-titleLine,
.templated-slider-slideset-new-years-2024 [data-template="overlay-overlay-end-link"] .text-item-1 .lead-titleLine {
  color: white;
}

.templated-slider-slideset-new-years-2024 .template-c1-t-over .text-item-0,
.templated-slider-slideset-new-years-2024 .template-c1-t-over-image .text-item-0 {
  top: auto;
  bottom: 28.17%;
}

.templated-slider-slideset-new-years-2024 .template-k0l-14-f .text-item-0 {
  top: 83.47%;
  left: 62.79%;
  width: 36.04%;
}

.templated-slider-slideset-new-years-2024 .template-k0l-25 .text-item-0 {
  top: 74.78%;
}

.templated-slider-slideset-new-years-2024 .template-k0l-24 .text-item-0 {
  top: 69.56%;
}

.templated-slider-slideset-new-years-2024 .template-k0l-26 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0l-24 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0r-22 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0r-26 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0l-22 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0l-23 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0l-25 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0l-21 .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2024 .template-k0l-21a .overlay-item.image-item-1 {
  top: 60.34%;
  width: 16.16% !important;
}

.templated-slider-slideset-new-years-2024 .template-k0l-26 .overlay-item.image-item-1 img,
.templated-slider-slideset-new-years-2024 .template-k0l-24 .overlay-item.image-item-1 img,
.templated-slider-slideset-new-years-2024 .template-k0r-22 .overlay-item.image-item-1 img,
.templated-slider-slideset-new-years-2024 .template-k0r-26 .overlay-item.image-item-1 img,
.templated-slider-slideset-new-years-2024 .template-k0l-22 .overlay-item.image-item-1 img,
.templated-slider-slideset-new-years-2024 .template-k0l-23 .overlay-item.image-item-1 img,
.templated-slider-slideset-new-years-2024 .template-k0l-25 .overlay-item.image-item-1 img,
.templated-slider-slideset-new-years-2024 .template-k0l-21 .overlay-item.image-item-1 img,
.templated-slider-slideset-new-years-2024 .template-k0l-21a .overlay-item.image-item-1 img {
  position: absolute;
  top: auto;
  bottom: 0 !important;
}

.templated-slider-slideset-new-years-2024 div.draw-border.slideshow-button {
  color: #000;
}

.templated-slider-slideset-new-years-2024 .slide-id-slide-2 .template-over-bar-logo .overlay-item.image-item-0 {
  padding-left: 11.62% !important;
  padding-right: 11.62% !important;
}

.templated-slider-slideset-new-years-2024 .slide-id-slide-25 .text-item-1 {
  top: 73.04%;
}

.templated-slider-slideset-new-years-2024 .slide-id-slide-45 .template-over-bar-left-button-video {
  top: 81.91% !important;
}

@media (max-width: 1199px) {
  .templated-slider-slideset-new-years-2024 .slide-id-slide-11.template-c1-t-over-image .image-item-1 {
    display: none;
  }
}

.templated-slider-slideset-new-years-2024 :lang(de) .template-k0l-22 .text-item-0 {
  line-height: 1.2em;
}

.templated-slider-slideset-new-years-2024 :lang(de) .template-k0l-25 .text-item-0 {
  line-height: 1.3em;
}

.templated-slider-slideset-new-years-2024 :lang(de) .template-k0l-26 .text-item-0 {
  top: 75%;
  line-height: 1.3em;
}

.templated-slider-slideset-new-years-2024 :lang(de) .template-e0l-7 .text-item-0 {
  top: 0%;
  bottom: 0%;
}

.templated-slider-slideset-new-years-2024 :lang(de) .template-e0l-7 .image-item-1 {
  top: 39%;
}

.templated-slider-slideset-new-years-2024 :lang(de) .template-e0r-12 .text-item-0 {
  top: 62%;
}

.templated-slider-slideset-new-years-2024 :lang(de) .template-e0r-12 .image-item-1 {
  top: 24%;
}

:lang(el) .templated-slider-slideset-new-years-2024 .text-item {
  line-height: 1.3em;
}

:lang(el) .templated-slider-slideset-new-years-2024 .templated-slider-slideset-new-years-2024 .template-k0l-25 .text-item-0,
:lang(el) .templated-slider-slideset-new-years-2024 .template-k2l-1a .text-item-0,
:lang(el) .templated-slider-slideset-new-years-2024 .template-k0l-22 .text-item-0,
:lang(el) .templated-slider-slideset-new-years-2024 .template-k0r-22 .text-item-0 {
  line-height: 1.2em;
}

:lang(it) .templated-slider-slideset-new-years-2024 .text-item,
:lang(es) .templated-slider-slideset-new-years-2024 .text-item {
  line-height: 1.3em;
}

:lang(it) .templated-slider-slideset-new-years-2024 .slide-id-slide-19 .text-item,
:lang(es) .templated-slider-slideset-new-years-2024 .slide-id-slide-19 .text-item {
  line-height: 1.2em;
}

:lang(hu) .templated-slider-slideset-new-years-2024 .text-item,
:lang(pt) .templated-slider-slideset-new-years-2024 .text-item,
.templated-slider-slideset-new-years-2024 :lang(nl) .text-item {
  line-height: 1.3em;
}

:lang(hu) .templated-slider-slideset-new-years-2024 .slide-id-slide-37 .text-item,
:lang(hu) .templated-slider-slideset-new-years-2024 .slide-id-slide-25 .text-item,
:lang(hu) .templated-slider-slideset-new-years-2024 .slide-id-slide-27 .text-item,
:lang(hu) .templated-slider-slideset-new-years-2024 .slide-id-slide-19 .text-item,
:lang(pt) .templated-slider-slideset-new-years-2024 .slide-id-slide-37 .text-item,
:lang(pt) .templated-slider-slideset-new-years-2024 .slide-id-slide-25 .text-item,
:lang(pt) .templated-slider-slideset-new-years-2024 .slide-id-slide-27 .text-item,
:lang(pt) .templated-slider-slideset-new-years-2024 .slide-id-slide-19 .text-item,
.templated-slider-slideset-new-years-2024 :lang(nl) .slide-id-slide-37 .text-item,
.templated-slider-slideset-new-years-2024 :lang(nl) .slide-id-slide-25 .text-item,
.templated-slider-slideset-new-years-2024 :lang(nl) .slide-id-slide-27 .text-item,
.templated-slider-slideset-new-years-2024 :lang(nl) .slide-id-slide-19 .text-item {
  line-height: 1.2em;
}

:lang(sv) .templated-slider-slideset-new-years-2024 .slide-id-slide-37 .text-item,
:lang(sv) .templated-slider-slideset-new-years-2024 .slide-id-slide-19 .text-item,
:lang(fr) .templated-slider-slideset-new-years-2024 .slide-id-slide-37 .text-item,
:lang(fr) .templated-slider-slideset-new-years-2024 .slide-id-slide-19 .text-item {
  line-height: 1.2em;
}

.templated-slider-slideset-new-years-2025 .template-c1-t-over .text-item-0 {
  top: 46.95%;
  font-size: 20px;
}

.templated-slider-slideset-new-years-2025 .template-c1-t-over-image .text-item-0 {
  top: 45.21%;
  font-size: 20px;
}

.templated-slider-slideset-new-years-2025 .slide-id-slide-12.template-c1-t-over .text-item-0 {
  line-height: 1.5;
}

.templated-slider-slideset-new-years-2025 .slide-id-slide-10.template-c1-t-over .text-item-0 {
  top: 47.65%;
}

.templated-slider-slideset-new-years-2025 .slide-id-slide-10.template-c1-t-over .text-item-0 strong {
  font-size: 97px;
  line-height: 1;
}

.templated-slider-slideset-new-years-2025 .template-k0r-25 .template-over-bar-logo .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2025 .template-k0r-14-l .template-over-bar-logo .overlay-item.image-item-1,
.templated-slider-slideset-new-years-2025 .template-k0r-14-m .template-over-bar-logo .overlay-item.image-item-1 {
  right: 0;
  left: auto;
}

.templated-slider-slideset-new-years-2025 .slideshow-button {
  white-space: nowrap;
  color: #000 !important;
}

.templated-slider-slideset-new-years-2025 .template-k0r-25 .image-item-2 {
  top: 40.86%;
}

.templated-slider-slideset-new-years-2025 .template-k0r-25 .text-item-0 {
  top: 73.91%;
  left: 0;
  width: 39.3%;
}

.templated-slider-slideset-new-years-2025 .template-k0r-14-m .text-item-0 {
  top: 66.08%;
  left: 0;
  width: 38.37%;
}

.templated-slider-slideset-new-years-2025 .template-k0l-14-b .text-item-0 {
  top: 70.43%;
  width: 38.37%;
}

.templated-slider-slideset-new-years-2025 .template-s0r-1 .text-item-0 {
  left: 0;
  width: 21.16%;
  bottom: 53.21%;
}

.templated-slider-slideset-new-years-2025 .template-s0r-1 .text-item-1 {
  top: 53.21%;
  left: 79.06%;
  width: 20.93%;
}

.templated-slider-slideset-new-years-2025 .template-k0l-14-m .text-item-0 {
  top: 66.08%;
  width: 37.79%;
}

.templated-slider-slideset-new-years-2025 .template-c1-t-over-image .text-item-0 strong {
  font-size: 62px;
}

.templated-slider-slideset-new-years-2025 .slide-id-slide-15 .template-over-bar-logo-button .overlay-item.image-item-0,
.templated-slider-slideset-new-years-2025 .slide-id-slide-27 .template-over-bar-logo .overylay-text-item-0,
.templated-slider-slideset-new-years-2025 .slide-id-slide-16 .template-over-bar-logo-button .overlay-item.image-item-0 {
  padding-left: 16.74%;
}

.templated-slider-slideset-new-years-2025 .template-s0r-1 .template-over-logo .overlay-item.image-item-0 {
  left: 31.74% !important;
}

.templated-slider-slideset-new-years-2025 .slide-id-slide-52.template-e0r-0 .text-item-0 {
  top: 8.69%;
  font-size: 24px;
  font-weight: bold;
  font-family: "Domine", georgia, serif;
}

.templated-slider-slideset-new-years-2025 .slide-id-slide-52.template-e0r-0 .text-item-0 span {
  font-size: 12.8px;
  display: inline-block;
  font-weight: normal;
  margin-top: 10px;
}

.templated-slider-slideset-new-years-2025 .slideshow-button a {
  display: flex;
  align-items: center;
}

.templated-slider-slideset-new-years-2025 .template-c1-t-over .text-item-0 {
  color: #fff;
}

.templated-slider-slideset-new-years-2025 .template-c1-t-over .template-over-bar-logo .overlay-item.image-item-0 {
  top: 74.78%;
}

.templated-slider-slideset-new-years-2025 .slideshow-button {
  background: #9c8f6d !important;
  color: #fff !important;
}

.templated-slider-slideset-new-years-2025 .slideshow-button .icon-arrow-right {
  color: #fff !important;
}

:lang(it) .templated-slider-slideset-new-years-2025 .slideshow-button,
:lang(hu) .templated-slider-slideset-new-years-2025 .slideshow-button,
:lang(da) .templated-slider-slideset-new-years-2025 .slideshow-button,
:lang(ru) .templated-slider-slideset-new-years-2025 .slideshow-button,
:lang(nl) .templated-slider-slideset-new-years-2025 .slideshow-button,
:lang(fr) .templated-slider-slideset-new-years-2025 .slideshow-button,
:lang(es) .templated-slider-slideset-new-years-2025 .slideshow-button,
:lang(de) .templated-slider-slideset-new-years-2025 .slideshow-button,
:lang(pt) .templated-slider-slideset-new-years-2025 .slideshow-button {
  white-space: wrap;
}

.templated-slider-slideset-new-years-2025 :lang(hu) .template-over-bar-logo-button .text-item-1,
.templated-slider-slideset-new-years-2025 :lang(de) .template-over-bar-logo-button .text-item-1 {
  width: 19.44%;
}

.templated-slider-slideset-new-years-2025 :lang(hu) .template-over-bar-logo-button .text-item-1 {
  width: 22%;
  left: 77%;
}

.templated-slider-slideset-new-years-2025 :lang(it) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(hu) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(da) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(ru) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(sv) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(nl) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(fr) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(es) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(el) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(pt) .template-s0r-1 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(de) .template-s0r-1 .text-item-0 {
  top: 5px;
}

.templated-slider-slideset-new-years-2025 :lang(ru) .template-s0l-1 .text-item-0 {
  top: 5px;
}

.templated-slider-slideset-new-years-2025 :lang(it) .slide-id-slide-52.template-e0r-0 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(hu) .slide-id-slide-52.template-e0r-0 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(ru) .slide-id-slide-52.template-e0r-0 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(no) .slide-id-slide-52.template-e0r-0 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(fr) .slide-id-slide-52.template-e0r-0 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(es) .slide-id-slide-52.template-e0r-0 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(el) .slide-id-slide-52.template-e0r-0 .text-item-0,
.templated-slider-slideset-new-years-2025 :lang(de) .slide-id-slide-52.template-e0r-0 .text-item-0 {
  top: 20px;
  font-size: 20px;
}

.templated-slider-slideset-new-years-2025 .slide-id-slide-52.template-e0r-0 .text-item-0 {
  top: 8.69%;
  font-size: 22px;
}

.templated-slider-slideset-ias-event-2025 .slide-id-slide-20.template-c1-t-01-r .text-item-0 {
  top: 17.39%;
}

.templated-slider-slideset-ias-event-2025 .template-a-image .image-item-1 {
  top: 0.34%;
}

.templated-slider-slideset-ias-event-2025 .template-c1-t-01-r .text-item-0 {
  width: 40.93%;
  font-size: 27px;
  font-weight: 500;
}

.templated-slider-slideset-ias-event-2025 .template-c1-t-02-r .text-item-0 {
  top: 17.39%;
  left: 13.37%;
}

.templated-slider-slideset-ias-event-2025 .template-i0r-13 .text-item-0 {
  top: 46.08%;
  left: 0%;
  width: 43.6%;
}

.templated-slider-slideset-ias-event-2025 .slide-id-slide-8.template-a-t-c-03 .text-item-0 {
  top: 34.78%;
}

.templated-slider-slideset-ias-event-2025 .slide-id-slide-8.template-a-t-c-03 .text-item-0 .lead-stat-number-smaller {
  line-height: 1.2;
}

.templated-slider-slideset-ias-event-2025 .slide-id-slide-29.template-y0r-1 .template-over-bar-logo .overylay-text-item-0 {
  padding-top: 10px;
}

.templated-slider-slideset-ias-event-2025 .template-x0l-4 .lowercase {
  font-weight: 500;
}

.templated-slider-slideset-ias-event-2025 .template-over-bar-logo-button-video div.draw-border.slideshow-button {
  color: #337ab7;
  max-width: 200px;
}

:lang(ru) .templated-slider-slideset-ias-event-2025 .template-over-bar-logo-button-video div.draw-border.slideshow-button {
  max-width: 170px;
}

:lang(it) .templated-slider-slideset-ias-event-2025 .template-over-bar-logo-button-video div.draw-border.slideshow-button {
  font-size: 16px;
}

:lang(da) .templated-slider-slideset-ias-event-2025 .template-over-bar-logo-button-video div.draw-border.slideshow-button a {
  font-size: 12px;
  padding: 16px 4px 15px 4px;
}

.templated-slider-slideset-ias-event-2025 .template-a-video-01 .overylay-text-item-0,
.templated-slider-slideset-ias-event-2025 .template-c1-t-01-r .text-item-0,
.templated-slider-slideset-ias-event-2025 .template-a-image-t-center .text-item-0,
.templated-slider-slideset-ias-event-2025 .template-a-image-t-center .overylay-text-item-0,
.templated-slider-slideset-ias-event-2025 .template-a-t-c-03 .overylay-text-item-0 {
  color: #fff;
}

.templated-slider-slideset-ias-event-2025 .template-c1-t-02-r .text-item-0 p {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.templated-slider-slideset-ias-event-2025 .template-c1-t-01-r .text-item-0 p {
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.templated-slider-slideset-ias-event-2025 .template-over-bar-logo-button-video .overlay-item.image-item-0 {
  padding-top: 0;
}

.templated-slider-slideset-austin-grand-opening .slide-id-slide-12.template-g0l-0 .text-item-0 {
  top: 8.69%;
}

.templated-slider-slideset-austin-grand-opening .slide-id-slide-11.template-c1-0 .text-item-0 {
  left: 5.81%;
  right: 5.81%;
  width: auto;
}

.templated-slider-slideset-austin-grand-opening .slide-id-slide-12.template-g0l-0 .text-item-0 {
  right: 0%;
  width: auto;
  top: 17.39%;
}

.templated-slider-slideset-austin-grand-opening .slide-id-slide-13.template-g0r-0 .text-item-0 {
  top: 17.39%;
}

.templated-slider-slideset-austin-grand-opening .slide-id-slide-14.template-g0l-0 .text-item-0 {
  top: 17.39%;
}

.templated-slider-slideset-austin-grand-opening .slide-id-slide-15.template-g0r-0 .text-item-0 {
  top: 17.39%;
}

:lang(de) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(de) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(de) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0 {
  line-height: 1.2em;
}

:lang(da) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(da) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(da) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0,
:lang(sv) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(sv) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(sv) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0,
:lang(no) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(no) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(no) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0,
:lang(nl) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(nl) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(nl) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0 {
  top: 9%;
  line-height: 1.4em;
}

:lang(da) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0,
:lang(sv) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0,
:lang(no) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0,
:lang(nl) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0 {
  line-height: 1.3em;
}

:lang(hu) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(hu) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(hu) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0,
:lang(ru) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(ru) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(ru) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0,
:lang(it) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(it) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(it) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0,
:lang(pt) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(pt) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(pt) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0,
:lang(es) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(es) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(es) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0 {
  top: 10%;
  line-height: 1.3em;
}

:lang(hu) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0,
:lang(ru) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0,
:lang(it) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0,
:lang(pt) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0,
:lang(es) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0 {
  line-height: 1.3em;
}

:lang(fr) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(fr) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(fr) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0,
:lang(el) .templated-slider-slideset-austin-grand-opening .slide-id-slide-13 .text-item-0,
:lang(el) .templated-slider-slideset-austin-grand-opening .slide-id-slide-15 .text-item-0,
:lang(el) .templated-slider-slideset-austin-grand-opening .slide-id-slide-14 .text-item-0 {
  top: 8%;
  line-height: 1.2em;
}

:lang(fr) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0,
:lang(el) .templated-slider-slideset-austin-grand-opening .template-c1-5r .text-item-0 {
  line-height: 1.3em;
}

.templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14.template-g0r-0 .text-item-0,
.templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12.template-g0r-0 .text-item-0 {
  top: 8.69%;
}

.templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15.template-g0l-0 .text-item-0,
.templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13.template-g0l-0 .text-item-0 {
  top: 8.69%;
}

.templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35.template-c1-6r .text-item-0,
.templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29.template-c1-6r .text-item-0 {
  left: 0;
  width: 58.13%;
}

:lang(hu) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-26 .text-item-0,
:lang(hu) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(hu) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35 .text-item-0,
:lang(hu) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0,
:lang(ru) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-26 .text-item-0,
:lang(ru) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(ru) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35 .text-item-0,
:lang(ru) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0,
:lang(it) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-26 .text-item-0,
:lang(it) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(it) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35 .text-item-0,
:lang(it) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0,
:lang(pt) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-26 .text-item-0,
:lang(pt) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(pt) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35 .text-item-0,
:lang(pt) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0,
:lang(fr) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-26 .text-item-0,
:lang(fr) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(fr) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35 .text-item-0,
:lang(fr) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0,
:lang(es) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-26 .text-item-0,
:lang(es) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(es) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35 .text-item-0,
:lang(es) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0 {
  line-height: 1.3em;
}

:lang(hu) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(hu) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(hu) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(hu) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0,
:lang(ru) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(ru) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(ru) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(ru) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0,
:lang(it) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(it) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(it) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(it) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0,
:lang(pt) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(pt) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(pt) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(pt) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0,
:lang(fr) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(fr) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(fr) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(fr) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0,
:lang(es) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(es) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(es) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(es) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0 {
  top: 8%;
  line-height: 1.3em;
}

:lang(nl) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-26 .text-item-0,
:lang(nl) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(nl) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35 .text-item-0,
:lang(nl) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0,
:lang(de) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-26 .text-item-0,
:lang(de) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(de) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-35 .text-item-0,
:lang(de) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0 {
  line-height: 1.3em;
}

:lang(nl) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(nl) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(nl) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(nl) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0,
:lang(de) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(de) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(de) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(de) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0 {
  top: 7%;
  line-height: 1.2em;
}

:lang(el) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-8.template-h0l-14-c .text-item-0 {
  line-height: 1.3em;
  width: 48%;
}

:lang(el) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-11 .text-item-0 {
  line-height: 1.3em;
}

:lang(el) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(el) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(el) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(el) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0 {
  top: 7%;
  line-height: 1.2em;
}

:lang(el) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-29 .text-item-0,
:lang(el) .templated-slider-slideset-del-valle-grand-opening .template-c1-6r .text-item-0,
:lang(el) .templated-slider-slideset-del-valle-grand-opening .template-d0-0 .text-item-0 {
  line-height: 1.2em;
}

:lang(nl) .templated-slider-slideset-del-valle-grand-opening .template-d0-0 .text-item-0 {
  width: 82%;
}

:lang(da) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(da) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(da) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(da) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0,
:lang(sv) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(sv) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(sv) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(sv) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0,
:lang(no) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-12 .text-item-0,
:lang(no) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-13 .text-item-0,
:lang(no) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-15 .text-item-0,
:lang(no) .templated-slider-slideset-del-valle-grand-opening .slide-id-slide-14 .text-item-0 {
  line-height: 1.4em;
}

.templated-slider-slideset-chicago-org-tour .template-d0-2l .text-item-0,
.templated-slider-slideset-chicago-grand-opening .template-d0-2l .text-item-0 {
  top: 85.21%;
}

.templated-slider-slideset-chicago-org-tour .template-c1-6l .text-item-0,
.templated-slider-slideset-chicago-grand-opening .template-c1-6l .text-item-0 {
  top: 76.52%;
}

:lang(pt) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(pt) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(pt) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(pt) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(sv) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(sv) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(sv) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(sv) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(ru) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(ru) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(ru) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(ru) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(no) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(no) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(no) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(no) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(nl) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(nl) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(nl) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(nl) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(fr) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(fr) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(fr) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(fr) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(es) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(es) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(es) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(es) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(it) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(it) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(it) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(it) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(hu) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(hu) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(hu) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(hu) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(el) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(el) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(el) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(el) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0, :lang(pt)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(pt)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(pt)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(pt)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(sv)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(sv)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(sv)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(sv)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(ru)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(ru)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(ru)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(ru)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(no)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(no)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(no)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(no)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(nl)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(nl)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(nl)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(nl)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(fr)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(fr)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(fr)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(fr)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(es)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(es)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(es)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(es)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(it)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(it)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(it)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(it)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(hu)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(hu)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(hu)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(hu)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(el)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(el)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(el)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(el)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0 {
  top: 9%;
}

:lang(el) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(el) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(el) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(el) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0,
:lang(de) .templated-slider-slideset-chicago-org-tour .slide-id-slide-12 .text-item-0,
:lang(de) .templated-slider-slideset-chicago-org-tour .slide-id-slide-13 .text-item-0,
:lang(de) .templated-slider-slideset-chicago-org-tour .slide-id-slide-14 .text-item-0,
:lang(de) .templated-slider-slideset-chicago-org-tour .slide-id-slide-15 .text-item-0, :lang(el)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(el)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(el)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(el)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0,
:lang(de)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-12 .text-item-0,
:lang(de)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-13 .text-item-0,
:lang(de)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-14 .text-item-0,
:lang(de)
.templated-slider-slideset-chicago-grand-opening .slide-id-slide-15 .text-item-0 {
  top: 8%;
  line-height: 1.3em;
}

:lang(el) .templated-slider-slideset-chicago-org-tour .text-item-0,
:lang(de) .templated-slider-slideset-chicago-org-tour .text-item-0, :lang(el)
.templated-slider-slideset-chicago-grand-opening .text-item-0,
:lang(de)
.templated-slider-slideset-chicago-grand-opening .text-item-0 {
  line-height: 1.3em;
}

.templated-slider-slideset-paris-org-tour .slide-id-slide-3.template-d0-3l .text-item-0,
.templated-slider-slideset-paris-grand-opening .slide-id-slide-3.template-d0-3l .text-item-0 {
  top: 84.17%;
  left: 38.37%;
  width: 61.62%;
}

.templated-slider-slideset-paris-org-tour .template-f0r-17 .text-item-0,
.templated-slider-slideset-paris-grand-opening .template-f0r-17 .text-item-0 {
  left: 0;
  width: 25.58%;
}

.templated-slider-slideset-paris-org-tour .template-e0r-15 .text-item-0,
.templated-slider-slideset-paris-grand-opening .template-e0r-15 .text-item-0 {
  left: 0;
  width: 25.58%;
}

.templated-slider-slideset-paris-org-tour .slide-id-slide-10.template-b1-0 .text-item-0,
.templated-slider-slideset-paris-grand-opening .slide-id-slide-10.template-b1-0 .text-item-0 {
  left: 5.81%;
  right: 5.81%;
  width: auto;
}

.templated-slider-slideset-paris-org-tour .slide-id-slide-13.template-g0r-0 .text-item-0,
.templated-slider-slideset-paris-grand-opening .slide-id-slide-13.template-g0r-0 .text-item-0 {
  top: 17.39%;
}

.templated-slider-slideset-paris-org-tour .slide-id-slide-15.template-g0l-0 .text-item-0,
.templated-slider-slideset-paris-grand-opening .slide-id-slide-15.template-g0l-0 .text-item-0 {
  top: 26.08%;
}

.templated-slider-slideset-paris-org-tour .slide-id-slide-27.template-e0l-8 .image-item-1,
.templated-slider-slideset-paris-grand-opening .slide-id-slide-27.template-e0l-8 .image-item-1 {
  top: 43.47%;
}

.templated-slider-slideset-paris-org-tour .template-d0-3l .text-item-0,
.templated-slider-slideset-paris-org-tour .template-d0-7l .text-item-0,
.templated-slider-slideset-paris-grand-opening .template-d0-3l .text-item-0,
.templated-slider-slideset-paris-grand-opening .template-d0-7l .text-item-0 {
  top: 85.21%;
}

:lang(it) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(hu) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(ru) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(pt) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(no) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(da) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(nl) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(es) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(el) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(de) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0,
:lang(fr) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0, :lang(it)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(hu)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(ru)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(pt)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(no)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(da)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(nl)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(es)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(el)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(de)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0,
:lang(fr)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0 {
  line-height: 1.2;
  width: 25.45%;
}

:lang(it) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(it) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(hu) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(hu) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(ru) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(ru) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(pt) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(pt) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(no) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(no) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(da) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(da) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(nl) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(nl) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(es) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(es) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(el) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(el) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(de) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(de) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0,
:lang(fr) .templated-slider-slideset-paris-org-tour .template-g0l-0 .text-item-0,
:lang(fr) .templated-slider-slideset-paris-org-tour .template-g0r-0 .text-item-0, :lang(it)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(it)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(hu)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(hu)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(ru)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(ru)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(pt)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(pt)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(no)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(no)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(da)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(da)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(nl)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(nl)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(es)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(es)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(el)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(el)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(de)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(de)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0,
:lang(fr)
.templated-slider-slideset-paris-grand-opening .template-g0l-0 .text-item-0,
:lang(fr)
.templated-slider-slideset-paris-grand-opening .template-g0r-0 .text-item-0 {
  top: 10%;
}

:lang(nl) .templated-slider-slideset-paris-org-tour .template-b1-6r .text-item-0,
:lang(nl) .templated-slider-slideset-paris-org-tour .template-d0-0 .text-item-0,
:lang(nl) .templated-slider-slideset-paris-org-tour .template-e0l-8 .text-item-0,
:lang(es) .templated-slider-slideset-paris-org-tour .template-b1-6r .text-item-0,
:lang(es) .templated-slider-slideset-paris-org-tour .template-d0-0 .text-item-0,
:lang(es) .templated-slider-slideset-paris-org-tour .template-e0l-8 .text-item-0,
:lang(el) .templated-slider-slideset-paris-org-tour .template-b1-6r .text-item-0,
:lang(el) .templated-slider-slideset-paris-org-tour .template-d0-0 .text-item-0,
:lang(el) .templated-slider-slideset-paris-org-tour .template-e0l-8 .text-item-0,
:lang(de) .templated-slider-slideset-paris-org-tour .template-b1-6r .text-item-0,
:lang(de) .templated-slider-slideset-paris-org-tour .template-d0-0 .text-item-0,
:lang(de) .templated-slider-slideset-paris-org-tour .template-e0l-8 .text-item-0, :lang(nl)
.templated-slider-slideset-paris-grand-opening .template-b1-6r .text-item-0,
:lang(nl)
.templated-slider-slideset-paris-grand-opening .template-d0-0 .text-item-0,
:lang(nl)
.templated-slider-slideset-paris-grand-opening .template-e0l-8 .text-item-0,
:lang(es)
.templated-slider-slideset-paris-grand-opening .template-b1-6r .text-item-0,
:lang(es)
.templated-slider-slideset-paris-grand-opening .template-d0-0 .text-item-0,
:lang(es)
.templated-slider-slideset-paris-grand-opening .template-e0l-8 .text-item-0,
:lang(el)
.templated-slider-slideset-paris-grand-opening .template-b1-6r .text-item-0,
:lang(el)
.templated-slider-slideset-paris-grand-opening .template-d0-0 .text-item-0,
:lang(el)
.templated-slider-slideset-paris-grand-opening .template-e0l-8 .text-item-0,
:lang(de)
.templated-slider-slideset-paris-grand-opening .template-b1-6r .text-item-0,
:lang(de)
.templated-slider-slideset-paris-grand-opening .template-d0-0 .text-item-0,
:lang(de)
.templated-slider-slideset-paris-grand-opening .template-e0l-8 .text-item-0 {
  line-height: 1.2;
}

:lang(ja) .templated-slider-slideset-paris-org-tour .template-f0l-13 .text-item-0, :lang(ja)
.templated-slider-slideset-paris-grand-opening .template-f0l-13 .text-item-0 {
  line-height: 1.3;
}

[templatevariant="with-custom-logo"] slideimage:last-of-type {
  background-repeat: no-repeat;
  background-size: 100%;
  left: 0px;
  width: 200px;
  z-index: 6;
  top: 414px !important;
}

[templatevariant="with-custom-logo"] slidecaption {
  top: 458px;
  left: 200px;
}

[templatevariant="with-custom-logo-band"] slideimage:last-of-type {
  background-repeat: no-repeat;
  background-size: 100%;
  left: 0px !important;
  width: 200px !important;
  z-index: 6;
  top: 414px !important;
}

[templatevariant="with-custom-logo-band"] slidecaption {
  top: 458px;
  left: 200px;
}

[templatevariant="with-custom-logo-band"] slidecaption:last-of-type {
  width: 100%;
  background: rgba(47, 47, 47, 0.75);
  padding-left: 30px;
  color: #fff;
  padding-top: 10px;
  position: absolute;
  bottom: 10px;
  top: 430px;
  padding-left: 200px;
  padding-right: 40px;
  left: 0;
}

[templatevariant="with-custom-logo-band"] slidecaption .lead-titleLine {
  font-size: 1.25rem;
  color: #b7ad95;
}

[templatevariant="with-custom-logo-band"][template=b] slidecaption {
  padding-top: 70px;
}

.template-a-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-master-video-auto .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}

.template-a-master-video-auto .image-item-0 img {
  max-width: 100% !important;
}

.template-a-master-video-auto video {
  object-fit: cover !important;
}

.template-a-master-video-auto .vjs-big-play-button {
  display: none !important;
}

.template-a-master-video-auto .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  bottom: -5px;
  height: auto;
  max-height: initial;
  pointer-events: none;
}

.template-a-master-video-auto .vjs-control-bar,
.template-a-master-video-auto .vjs-ended .vjs-poster {
  display: none !important;
}

.template-a-master-video-auto .item-replay-button {
  position: absolute;
  bottom: 2.08%;
  z-index: 1000;
  right: 1.39%;
  color: white;
  cursor: pointer;
  user-select: none;
}

.template-a-master-video-auto .item-replay-button .icon-replay {
  color: white;
}

.template-a0-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-b-master .image-item-0 {
  top: 15.13%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-0 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-0 .text-item-0 {
  top: 80%;
  left: 11.04%;
  width: 77.9%;
}

.template-b0-1l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-1l .image-item-1 {
  top: 67.13%;
  left: 5.81%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-b0-1l .text-item-0 {
  top: 80%;
  left: 32.55%;
  width: 61.62%;
}

.template-b0-1r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-1r .image-item-1 {
  top: 67.13%;
  left: 69.76%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-b0-1r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 61.62%;
}

.template-b0-2l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-2l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-b0-2l .text-item-0 {
  top: 80%;
  left: 37.2%;
  width: 56.97%;
}

.template-b0-2r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-2r .image-item-1 {
  top: 61.56%;
  left: 65.11%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-b0-2r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 56.97%;
}

.template-b0-3l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-3l .image-item-1 {
  top: 58.78%;
  left: 5.81%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-b0-3l .text-item-0 {
  top: 80%;
  left: 39.53%;
  width: 54.65%;
}

.template-b0-3r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-3r .image-item-1 {
  top: 58.78%;
  left: 62.79%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-b0-3r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 54.65%;
}

.template-b0-4l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-4l .image-item-1 {
  top: 72%;
  left: 5.81%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-b0-4l .text-item-0 {
  top: 80%;
  left: 32.55%;
  width: 61.51%;
}

.template-b0-4r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-4r .image-item-1 {
  top: 72%;
  left: 69.76%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-b0-4r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 61.62%;
}

.template-b0-5l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-5l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-b0-5l .text-item-0 {
  top: 80%;
  left: 37.44%;
  width: 56.74%;
}

.template-b0-5r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-5r .image-item-1 {
  top: 67.13%;
  left: 64.88%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-b0-5r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 56.74%;
}

.template-b0-6l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-6l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-b0-6l .text-item-0 {
  top: 80%;
  left: 43.02%;
  width: 51.16%;
}

.template-b0-6r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-6r .image-item-1 {
  top: 61.56%;
  left: 59.3%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-b0-6r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 51.16%;
}

.template-b0-7l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-7l .image-item-1 {
  top: 59.82%;
  left: 5.81%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-b0-7l .text-item-0 {
  top: 80%;
  left: 32.55%;
  width: 61.62%;
}

.template-b0-7r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-7r .image-item-1 {
  top: 59.82%;
  left: 69.76%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-b0-7r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 61.62%;
}

.template-b0-8l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-8l .image-item-1 {
  top: 54.6%;
  left: 5.81%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-b0-8l .text-item-0 {
  top: 80%;
  left: 36.04%;
  width: 58.13%;
}

.template-b0-8r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-8r .image-item-1 {
  top: 54.6%;
  left: 66.27%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-b0-8r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 58.13%;
}

.template-b0-9l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-9l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-b0-9l .text-item-0 {
  top: 80%;
  left: 43.02%;
  width: 51.16%;
}

.template-b0-9r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b0-9r .image-item-1 {
  top: 66.95%;
  left: 59.3%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-b0-9r .text-item-0 {
  top: 80%;
  left: 5.81%;
  width: 51.16%;
}

.template-b0-master .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-0 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-0 .text-item-0 {
  top: 73.04%;
  left: 11.04%;
  width: 77.9%;
}

.template-b1-1l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-1l .image-item-1 {
  top: 67.13%;
  left: 5.81%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-b1-1l .text-item-0 {
  top: 73.04%;
  left: 32.55%;
  width: 61.62%;
}

.template-b1-1r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-1r .image-item-1 {
  top: 67.13%;
  left: 69.76%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-b1-1r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 61.62%;
}

.template-b1-2l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-2l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-b1-2l .text-item-0 {
  top: 73.04%;
  left: 37.2%;
  width: 56.97%;
}

.template-b1-2r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-2r .image-item-1 {
  top: 61.56%;
  left: 65.11%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-b1-2r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 56.97%;
}

.template-b1-3l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-3l .image-item-1 {
  top: 58.78%;
  left: 5.81%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-b1-3l .text-item-0 {
  top: 73.04%;
  left: 39.53%;
  width: 54.65%;
}

.template-b1-3r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-3r .image-item-1 {
  top: 58.78%;
  left: 62.79%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-b1-3r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 54.65%;
}

.template-b1-4l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-4l .image-item-1 {
  top: 72%;
  left: 5.81%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-b1-4l .text-item-0 {
  top: 73.04%;
  left: 32.55%;
  width: 61.62%;
}

.template-b1-4r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-4r .image-item-1 {
  top: 72%;
  left: 69.76%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-b1-4r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 61.62%;
}

.template-b1-5l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-5l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-b1-5l .text-item-0 {
  top: 73.04%;
  left: 37.44%;
  width: 56.74%;
}

.template-b1-5r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-5r .image-item-1 {
  top: 67.13%;
  left: 64.88%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-b1-5r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 56.74%;
}

.template-b1-6l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-6l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-b1-6l .text-item-0 {
  top: 73.04%;
  left: 43.02%;
  width: 51.16%;
}

.template-b1-6r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-6r .image-item-1 {
  top: 61.56%;
  left: 59.3%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-b1-6r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 51.16%;
}

.template-b1-7l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-7l .image-item-1 {
  top: 59.82%;
  left: 5.81%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-b1-7l .text-item-0 {
  top: 73.04%;
  left: 32.55%;
  width: 61.62%;
}

.template-b1-7r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-7r .image-item-1 {
  top: 59.82%;
  left: 69.76%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-b1-7r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 61.62%;
}

.template-b1-8l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-8l .image-item-1 {
  top: 54.6%;
  left: 5.81%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-b1-8l .text-item-0 {
  top: 73.04%;
  left: 36.04%;
  width: 58.13%;
}

.template-b1-8r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-8r .image-item-1 {
  top: 54.6%;
  left: 66.27%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-b1-8r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 58.13%;
}

.template-b1-9l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-9l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-b1-9l .text-item-0 {
  top: 73.04%;
  left: 43.02%;
  width: 51.16%;
}

.template-b1-9r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-9r .image-item-1 {
  top: 66.95%;
  left: 59.3%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-b1-9r .text-item-0 {
  top: 73.04%;
  left: 5.81%;
  width: 51.16%;
}

.template-b1-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-c-master .image-item-0 {
  top: 12.52%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-0 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-0 .text-item-0 {
  top: 85.21%;
  left: 11.04%;
  width: 77.9%;
}

.template-c0-1l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-1l .image-item-1 {
  top: 67.13%;
  left: 5.81%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-c0-1l .text-item-0 {
  top: 85.21%;
  left: 32.55%;
  width: 61.62%;
}

.template-c0-1r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-1r .image-item-1 {
  top: 67.13%;
  left: 69.76%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-c0-1r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 61.62%;
}

.template-c0-2l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-2l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-c0-2l .text-item-0 {
  top: 85.21%;
  left: 37.2%;
  width: 56.97%;
}

.template-c0-2r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-2r .image-item-1 {
  top: 61.56%;
  left: 65.11%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-c0-2r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 56.97%;
}

.template-c0-3l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-3l .image-item-1 {
  top: 58.78%;
  left: 5.81%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-c0-3l .text-item-0 {
  top: 85.21%;
  left: 39.53%;
  width: 54.65%;
}

.template-c0-3r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-3r .image-item-1 {
  top: 58.78%;
  left: 62.79%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-c0-3r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 54.65%;
}

.template-c0-4l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-4l .image-item-1 {
  top: 72%;
  left: 5.81%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-c0-4l .text-item-0 {
  top: 85.21%;
  left: 32.55%;
  width: 61.62%;
}

.template-c0-4r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-4r .image-item-1 {
  top: 72%;
  left: 69.76%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-c0-4r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 61.62%;
}

.template-c0-5l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-5l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-c0-5l .text-item-0 {
  top: 85.21%;
  left: 37.44%;
  width: 56.74%;
}

.template-c0-5r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-5r .image-item-1 {
  top: 67.13%;
  left: 64.88%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-c0-5r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 56.74%;
}

.template-c0-6l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-6l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-c0-6l .text-item-0 {
  top: 85.21%;
  left: 43.02%;
  width: 51.16%;
}

.template-c0-6r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-6r .image-item-1 {
  top: 61.56%;
  left: 59.3%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-c0-6r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 51.16%;
}

.template-c0-7l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-7l .image-item-1 {
  top: 59.82%;
  left: 5.81%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-c0-7l .text-item-0 {
  top: 85.21%;
  left: 32.55%;
  width: 61.62%;
}

.template-c0-7r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-7r .image-item-1 {
  top: 59.82%;
  left: 69.76%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-c0-7r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 61.62%;
}

.template-c0-8l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-8l .image-item-1 {
  top: 54.6%;
  left: 5.81%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-c0-8l .text-item-0 {
  top: 85.21%;
  left: 36.04%;
  width: 58.13%;
}

.template-c0-8r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-8r .image-item-1 {
  top: 54.6%;
  left: 66.27%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-c0-8r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 58.13%;
}

.template-c0-9l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-9l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-c0-9l .text-item-0 {
  top: 85.21%;
  left: 43.02%;
  width: 51.16%;
}

.template-c0-9r .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-9r .image-item-1 {
  top: 66.95%;
  left: 59.3%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-c0-9r .text-item-0 {
  top: 85.21%;
  left: 5.81%;
  width: 51.16%;
}

.template-c0-master .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c0-master .text-item-0 {
  top: 85.21%;
  left: 11.04%;
  width: 77.9%;
}

.template-c1-0 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-0 .text-item-0 {
  top: 78.26%;
  left: 11.04%;
  width: 77.9%;
}

.template-c1-1l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-1l .image-item-1 {
  top: 67.13%;
  left: 5.81%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-c1-1l .text-item-0 {
  top: 78.26%;
  left: 32.55%;
  width: 61.62%;
}

.template-c1-1r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-1r .image-item-1 {
  top: 67.13%;
  left: 69.76%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-c1-1r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 61.62%;
}

.template-c1-2l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-2l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-c1-2l .text-item-0 {
  top: 78.26%;
  left: 37.2%;
  width: 56.97%;
}

.template-c1-2r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-2r .image-item-1 {
  top: 61.56%;
  left: 65.11%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-c1-2r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 56.97%;
}

.template-c1-3l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-3l .image-item-1 {
  top: 58.78%;
  left: 5.81%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-c1-3l .text-item-0 {
  top: 78.26%;
  left: 39.53%;
  width: 54.65%;
}

.template-c1-3r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-3r .image-item-1 {
  top: 58.78%;
  left: 62.79%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-c1-3r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 54.65%;
}

.template-c1-4l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-4l .image-item-1 {
  top: 72%;
  left: 5.81%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-c1-4l .text-item-0 {
  top: 78.26%;
  left: 32.55%;
  width: 61.62%;
}

.template-c1-4r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-4r .image-item-1 {
  top: 72%;
  left: 69.76%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-c1-4r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 61.62%;
}

.template-c1-5l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-5l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-c1-5l .text-item-0 {
  top: 78.26%;
  left: 37.44%;
  width: 56.74%;
}

.template-c1-5r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-5r .image-item-1 {
  top: 67.13%;
  left: 64.88%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-c1-5r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 56.74%;
}

.template-c1-6l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-6l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-c1-6l .text-item-0 {
  top: 78.26%;
  left: 43.02%;
  width: 51.16%;
}

.template-c1-6r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-6r .image-item-1 {
  top: 61.56%;
  left: 59.3%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-c1-6r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 51.16%;
}

.template-c1-7l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-7l .image-item-1 {
  top: 59.82%;
  left: 5.81%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-c1-7l .text-item-0 {
  top: 78.26%;
  left: 32.55%;
  width: 61.62%;
}

.template-c1-7r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-7r .image-item-1 {
  top: 59.82%;
  left: 69.76%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-c1-7r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 61.62%;
}

.template-c1-8l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-8l .image-item-1 {
  top: 54.6%;
  left: 5.81%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-c1-8l .text-item-0 {
  top: 78.26%;
  left: 36.04%;
  width: 58.13%;
}

.template-c1-8r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-8r .image-item-1 {
  top: 54.6%;
  left: 66.27%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-c1-8r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 58.13%;
}

.template-c1-9l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-9l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-c1-9l .text-item-0 {
  top: 78.26%;
  left: 43.02%;
  width: 51.16%;
}

.template-c1-9r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-9r .image-item-1 {
  top: 66.95%;
  left: 59.3%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-c1-9r .text-item-0 {
  top: 78.26%;
  left: 5.81%;
  width: 51.16%;
}

.template-c1-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-d-master .image-item-0 {
  top: 7.82%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-0 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-0 .text-item-0 {
  top: 86.95%;
  left: 11.04%;
  width: 77.9%;
}

.template-d0-1l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-1l .image-item-1 {
  top: 67.13%;
  left: 5.81%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-d0-1l .text-item-0 {
  top: 87.47%;
  left: 32.55%;
  width: 61.62%;
}

.template-d0-1r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-1r .image-item-1 {
  top: 67.13%;
  left: 69.76%;
  width: 24.41%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-d0-1r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 61.62%;
}

.template-d0-2l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-2l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-d0-2l .text-item-0 {
  top: 87.47%;
  left: 37.2%;
  width: 56.97%;
}

.template-d0-2r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-2r .image-item-1 {
  top: 61.56%;
  left: 65.11%;
  width: 29.06%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-d0-2r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 56.97%;
}

.template-d0-3l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-3l .image-item-1 {
  top: 58.78%;
  left: 5.81%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-d0-3l .text-item-0 {
  top: 87.47%;
  left: 39.53%;
  width: 54.65%;
}

.template-d0-3r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-3r .image-item-1 {
  top: 58.78%;
  left: 62.79%;
  width: 31.39%;
  height: 37.56%;
  outline: 1px solid white;
}

.template-d0-3r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 54.65%;
}

.template-d0-4l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-4l .image-item-1 {
  top: 72%;
  left: 5.81%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-d0-4l .text-item-0 {
  top: 87.47%;
  left: 32.55%;
  width: 61.62%;
}

.template-d0-4r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-4r .image-item-1 {
  top: 72%;
  left: 69.76%;
  width: 24.41%;
  height: 24.34%;
  outline: 1px solid white;
}

.template-d0-4r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 61.62%;
}

.template-d0-5l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-5l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-d0-5l .text-item-0 {
  top: 87.47%;
  left: 37.44%;
  width: 56.74%;
}

.template-d0-5r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-5r .image-item-1 {
  top: 67.13%;
  left: 64.88%;
  width: 29.3%;
  height: 29.21%;
  outline: 1px solid white;
}

.template-d0-5r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 56.74%;
}

.template-d0-6l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84%;
}

.template-d0-6l .image-item-1 {
  top: 61.56%;
  left: 5.81%;
  width: 34.88%;
  height: 34.78%;
}

.template-d0-6l .text-item-0 {
  top: 85.21%;
  left: 41.86%;
  width: 51.16%;
}

.template-d0-6r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-6r .image-item-1 {
  top: 61.56%;
  left: 59.3%;
  width: 34.88%;
  height: 34.78%;
  outline: 1px solid white;
}

.template-d0-6r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 51.16%;
}

.template-d0-7l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-7l .image-item-1 {
  top: 59.82%;
  left: 5.81%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-d0-7l .text-item-0 {
  top: 87.47%;
  left: 32.55%;
  width: 61.62%;
}

.template-d0-7r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-7r .image-item-1 {
  top: 59.82%;
  left: 69.76%;
  width: 24.41%;
  height: 36.52%;
  outline: 1px solid white;
}

.template-d0-7r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 61.62%;
}

.template-d0-8l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-8l .image-item-1 {
  top: 54.6%;
  left: 5.81%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-d0-8l .text-item-0 {
  top: 87.47%;
  left: 36.04%;
  width: 58.13%;
}

.template-d0-8r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-8r .image-item-1 {
  top: 54.6%;
  left: 66.27%;
  width: 27.9%;
  height: 41.73%;
  outline: 1px solid white;
}

.template-d0-8r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 58.13%;
}

.template-d0-9l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-9l .image-item-1 {
  top: 66.95%;
  left: 5.81%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-d0-9l .text-item-0 {
  top: 87.47%;
  left: 43.02%;
  width: 51.16%;
}

.template-d0-9r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d0-9r .image-item-1 {
  top: 66.95%;
  left: 59.3%;
  width: 34.88%;
  height: 29.39%;
  outline: 1px solid white;
}

.template-d0-9r .text-item-0 {
  top: 87.47%;
  left: 5.81%;
  width: 51.16%;
}

.template-d0-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84.13%;
}

.template-d3-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 89.21%;
}

.template-d3-master .text-item-0 {
  top: 92.52%;
  left: 11.04%;
  width: 77.9%;
}

.template-e0-master .image-item-0 {
  top: 0%;
  left: 13.83%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-0 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-0 .text-item-0 {
  top: 28.86%;
  left: 74.53%;
  width: 23.25%;
}

.template-e0l-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-1 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-e0l-1 .text-item-0 {
  top: 28.86%;
  left: 74.53%;
  width: 23.25%;
}

.template-e0l-2 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-2 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0l-2 .text-item-0 {
  top: 32.86%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-4 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-4 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 38.26%;
}

.template-e0l-4 .text-item-0 {
  top: 45.56%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-5 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-5 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0l-5 .text-item-0 {
  top: 55.13%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-6 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-6 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 57.39%;
}

.template-e0l-6 .text-item-0 {
  top: 64.69%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-7 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-7 .image-item-1 {
  top: 34.78%;
  left: 74.41%;
  width: 25.58%;
  height: 38.26%;
}

.template-e0l-7 .text-item-0 {
  bottom: 68.69%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-8 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-8 .image-item-1 {
  top: 34.78%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0l-8 .text-item-0 {
  bottom: 67.82%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-9 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-9 .image-item-1 {
  top: 34.78%;
  left: 74.41%;
  width: 25.58%;
  height: 57.91%;
}

.template-e0l-9 .text-item-0 {
  bottom: 68.69%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-10 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-10 .image-item-1 {
  top: 28.86%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-e0l-10 .text-item-0 {
  top: 53.91%;
  left: 74.53%;
  width: 23.25%;
}

.template-e0l-11 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-11 .image-item-1 {
  top: 28.86%;
  left: 74.41%;
  width: 23.25%;
  height: 27.82%;
}

.template-e0l-11 .text-item-0 {
  top: 60.17%;
  left: 74.53%;
  width: 23.25%;
}

.template-e0l-12 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-12 .image-item-1 {
  top: 28.86%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-e0l-12 .text-item-0 {
  top: 67.13%;
  left: 74.53%;
  width: 23.25%;
}

.template-e0l-13 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-13 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0l-13 .image-item-2 {
  top: 32.86%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0l-13 .text-item-0 {
  top: 61.91%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-14 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-14 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0l-14 .image-item-2 {
  top: 32.86%;
  left: 74.41%;
  width: 23.25%;
  height: 27.82%;
}

.template-e0l-14 .text-item-0 {
  top: 64.17%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-15 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-15 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0l-15 .image-item-2 {
  top: 32.86%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-e0l-15 .text-item-0 {
  top: 71.13%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-16 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-16 .image-item-1 {
  top: 0%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-e0l-16 .image-item-2 {
  top: 34.08%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-e0l-16 .text-item-0 {
  top: 68.17%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-17 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-17 .image-item-1 {
  top: 0%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-e0l-17 .image-item-2 {
  top: 34.08%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-e0l-17 .text-item-0 {
  top: 72.34%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-18 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-18 .image-item-1 {
  top: 0%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0l-18 .text-item-0 {
  top: 51.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-19 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-19 .image-item-1 {
  top: 0%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0l-19 .image-item-2 {
  top: 52.17%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0l-20 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-20 .image-item-1 {
  top: 52.17%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0l-20 .text-item-0 {
  bottom: 49.56%;
  left: 74.41%;
  width: 23.25%;
}

.template-e0l-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-0 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-0 .text-item-0 {
  top: 28.86%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-1 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-1 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-e0r-1 .text-item-0 {
  top: 28.86%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-2 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-2 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0r-2 .text-item-0 {
  top: 32.86%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-3 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-3 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-e0r-3 .text-item-0 {
  top: 37.91%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-4 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-4 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 38.26%;
}

.template-e0r-4 .text-item-0 {
  top: 45.56%;
  left: 2.67%;
  width: 22.79%;
}

#slide-24.template-e0r-4 .text-item-0 {
  top: 38.43%;
}

.template-e0r-5 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-5 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0r-5 .text-item-0 {
  top: 55.13%;
  left: 2.44%;
  width: 22.79%;
}

.template-e0r-6 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-6 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 57.39%;
}

.template-e0r-6 .text-item-0 {
  top: 64.69%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-7 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-7 .image-item-1 {
  top: 34.78%;
  left: 0%;
  width: 25.58%;
  height: 38.26%;
}

.template-e0r-7 .text-item-0 {
  bottom: 68.69%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-8 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-8 .image-item-1 {
  top: 34.78%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0r-8 .text-item-0 {
  bottom: 66.95%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-9 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-9 .image-item-1 {
  top: 34.78%;
  left: 0%;
  width: 25.58%;
  height: 57.39%;
}

.template-e0r-9 .text-item-0 {
  bottom: 68.69%;
  left: 2.32%;
  width: 23.25%;
}

.template-e0r-10 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-10 .image-item-1 {
  top: 28.86%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-e0r-10 .text-item-0 {
  top: 53.91%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-11 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-11 .image-item-1 {
  top: 28.86%;
  left: 2.32%;
  width: 23.25%;
  height: 27.82%;
}

.template-e0r-11 .text-item-0 {
  top: 60.17%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-12 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-12 .image-item-1 {
  top: 28.86%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-e0r-12 .text-item-0 {
  top: 67.13%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-13 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-13 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0r-13 .image-item-2 {
  top: 32.86%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0r-13 .text-item-0 {
  top: 61.91%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-14 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-14 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0r-14 .image-item-2 {
  top: 32.86%;
  left: 2.32%;
  width: 23.25%;
  height: 27.82%;
}

.template-e0r-14 .text-item-0 {
  top: 64.17%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-15 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-15 .image-item-1 {
  top: 3.82%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-e0r-15 .image-item-2 {
  top: 32.86%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-e0r-15 .text-item-0 {
  top: 71.13%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-16 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-16 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-e0r-16 .image-item-2 {
  top: 34.08%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-e0r-16 .text-item-0 {
  top: 68.17%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-17 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-17 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-e0r-17 .image-item-2 {
  top: 34.08%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-e0r-17 .text-item-0 {
  top: 72.34%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-18 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-18 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0r-18 .text-item-0 {
  top: 51.3%;
  left: 2.67%;
  width: 22.79%;
}

.template-e0r-19 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-19 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0r-19 .image-item-2 {
  top: 52.17%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0r-20 .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-e0r-20 .image-item-1 {
  top: 52.17%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-e0r-20 .text-item-0 {
  top: 29.21%;
  left: 2.32%;
  width: 23.25%;
}

.template-e0r-master .image-item-0 {
  top: 0%;
  left: 27.79%;
  width: 72.2%;
  height: 100%;
}

.template-eol-3 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-eol-3 .image-item-1 {
  top: 3.82%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-eol-3 .text-item-0 {
  top: 37.91%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0-master .image-item-0 {
  top: 6.78%;
  left: 13.95%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-0 .image-item-0 {
  top: 6.78%;
  left: 0%;
  right: auto !important;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-0 .text-item-0 {
  top: 20.86%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-1 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-1 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0l-1 .text-item-0 {
  top: 32%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-2 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-2 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0l-2 .text-item-0 {
  top: 36%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-3 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-3 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-f0l-3 .text-item-0 {
  top: 41.04%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-4 .image-item-0 {
  top: 6.78%;
  left: 0%;
  right: auto !important;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-4 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 38.26%;
}

.template-f0l-4 .text-item-0 {
  top: 48.69%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-5 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-5 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-f0l-5 .text-item-0 {
  top: 58.26%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-6 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-6 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 57.39%;
}

.template-f0l-6 .text-item-0 {
  top: 67.82%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-7 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-7 .image-item-1 {
  top: 38.26%;
  left: 74.41%;
  width: 25.58%;
  height: 38.26%;
}

.template-f0l-7 .text-item-0 {
  bottom: 65.21%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-8 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.73%;
}

.template-f0l-8 .image-item-1 {
  top: 38.26%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-f0l-8 .text-item-0 {
  bottom: 64.34%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-9 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-9 .image-item-1 {
  top: 38.78%;
  left: 74.41%;
  width: 25.58%;
  height: 57.91%;
}

.template-f0l-9 .text-item-0 {
  top: 15.82%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-10 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-10 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0l-10 .image-item-2 {
  top: 32%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0l-10 .text-item-0 {
  top: 57.04%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-11 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-11 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0l-11 .image-item-2 {
  top: 32%;
  left: 74.41%;
  width: 23.25%;
  height: 27.82%;
}

.template-f0l-11 .text-item-0 {
  top: 63.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-12 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-12 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0l-12 .image-item-2 {
  top: 32%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-f0l-12 .text-item-0 {
  top: 70.26%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-13 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-13 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0l-13 .image-item-2 {
  top: 36%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0l-13 .text-item-0 {
  top: 65.04%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-14 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-14 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0l-14 .image-item-2 {
  top: 36%;
  left: 74.41%;
  width: 23.25%;
  height: 27.82%;
}

.template-f0l-14 .text-item-0 {
  top: 67.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-15 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-15 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0l-15 .image-item-2 {
  top: 36%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-f0l-15 .text-item-0 {
  top: 74.26%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-16 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-16 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-f0l-16 .image-item-2 {
  top: 41.04%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-f0l-16 .text-item-0 {
  top: 75.13%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-17 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-17 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-f0l-17 .image-item-2 {
  top: 41.04%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-f0l-17 .text-item-0 {
  top: 79.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-18 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-18 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-f0l-18 .text-item-0 {
  top: 51.65%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-19 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-19 .image-item-1 {
  top: 51.65%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-f0l-19 .image-item-2 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-f0l-20 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0l-20 .image-item-1 {
  top: 55.47%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-f0l-20 .text-item-0 {
  top: 32.52%;
  left: 74.41%;
  width: 23.25%;
}

.template-f0l-master .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-0 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-0 .text-item-0 {
  top: 20.86%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-1 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-1 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0r-1 .text-item-0 {
  top: 32%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-2 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-2 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0r-2 .text-item-0 {
  top: 36%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-3 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-3 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-f0r-3 .text-item-0 {
  top: 41.04%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-4 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-4 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 38.26%;
}

.template-f0r-4 .text-item-0 {
  top: 48.69%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-5 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-5 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-f0r-5 .text-item-0 {
  top: 58.26%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-6 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-6 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 57.39%;
}

.template-f0r-6 .text-item-0 {
  top: 67.82%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-7 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-7 .image-item-1 {
  top: 38.26%;
  left: 0%;
  width: 25.58%;
  height: 38.26%;
}

.template-f0r-7 .text-item-0 {
  bottom: 65.21%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-8 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-8 .image-item-1 {
  top: 38.26%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-f0r-8 .text-item-0 {
  top: 15.3%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-9 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-9 .image-item-1 {
  top: 39.3%;
  left: 0%;
  width: 25.58%;
  height: 57.39%;
}

.template-f0r-9 .text-item-0 {
  top: 16.34%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-10 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-10 .image-item-1 {
  top: 32%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0r-10 .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0r-10 .text-item-0 {
  top: 57.04%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-11 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-11 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0r-11 .image-item-2 {
  top: 32%;
  left: 2.32%;
  width: 23.25%;
  height: 27.82%;
}

.template-f0r-11 .text-item-0 {
  top: 63.3%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-12 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-12 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-f0r-12 .image-item-2 {
  top: 32%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-f0r-12 .text-item-0 {
  top: 70.26%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-13 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.73%;
}

.template-f0r-13 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0r-13 .image-item-2 {
  top: 36%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0r-13 .text-item-0 {
  top: 65.04%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-14 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-14 .image-item-1 {
  top: 36%;
  left: 2.32%;
  width: 23.25%;
  height: 27.82%;
}

.template-f0r-14 .text-item-0 {
  top: 67.3%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-15 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-15 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-f0r-15 .image-item-2 {
  top: 36%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-f0r-15 .text-item-0 {
  top: 74.26%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-16 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-16 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-f0r-16 .image-item-2 {
  top: 41.04%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-f0r-16 .text-item-0 {
  top: 75.13%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-17 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-17 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-f0r-17 .image-item-2 {
  top: 41.04%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-f0r-17 .text-item-0 {
  top: 79.3%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-18 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-18 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-f0r-18 .text-item-0 {
  top: 51.65%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-19 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-19 .image-item-1 {
  top: 51.65%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-f0r-19 .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-f0r-20 .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-f0r-20 .image-item-1 {
  top: 55.47%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-f0r-20 .text-item-0 {
  top: 32.52%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0r-master .image-item-0 {
  top: 6.78%;
  left: 27.9%;
  width: 72.09%;
  height: 89.91%;
}

.template-g0-master .image-item-0 {
  top: 6.95%;
  left: 13.95%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-0 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-0 .text-item-0 {
  top: 20.86%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-1 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-1 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0l-1 .text-item-0 {
  top: 32%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-2 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-2 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0l-2 .text-item-0 {
  top: 36%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-3 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-3 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-g0l-3 .text-item-0 {
  top: 41.04%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-4 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-4 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 38.26%;
}

.template-g0l-4 .text-item-0 {
  top: 48.69%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-5 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-5 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-g0l-5 .text-item-0 {
  top: 58.26%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-6 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-6 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 57.39%;
}

.template-g0l-6 .text-item-0 {
  top: 67.82%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-7 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-7 .image-item-1 {
  top: 38.26%;
  left: 74.41%;
  width: 25.58%;
  height: 38.26%;
}

.template-g0l-7 .text-item-0 {
  top: 15.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-8 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-8 .image-item-1 {
  top: 38.26%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-g0l-8 .text-item-0 {
  top: 15.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-9 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-9 .image-item-1 {
  top: 35.82%;
  left: 74.41%;
  width: 25.58%;
  height: 57.39%;
}

.template-g0l-9 .text-item-0 {
  top: 12.86%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-10 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-10 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0l-10 .image-item-2 {
  top: 32%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0l-10 .text-item-0 {
  top: 57.04%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-11 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-11 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0l-11 .image-item-2 {
  top: 32%;
  left: 74.41%;
  width: 23.25%;
  height: 27.82%;
}

.template-g0l-11 .text-item-0 {
  top: 63.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-12 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-12 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0l-12 .image-item-2 {
  top: 32%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-g0l-12 .text-item-0 {
  top: 70.26%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-13 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-13 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0l-13 .image-item-2 {
  top: 36%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0l-13 .text-item-0 {
  top: 65.04%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-14 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-14 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0l-14 .image-item-2 {
  top: 36%;
  left: 74.41%;
  width: 23.25%;
  height: 27.82%;
}

.template-g0l-14 .text-item-0 {
  top: 67.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-15 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-15 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0l-15 .image-item-2 {
  top: 36%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-g0l-15 .text-item-0 {
  top: 74.26%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-16 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-16 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-g0l-16 .image-item-2 {
  top: 41.04%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-g0l-16 .text-item-0 {
  top: 75.13%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-17 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-17 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-g0l-17 .image-item-2 {
  top: 41.04%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-g0l-17 .text-item-0 {
  top: 79.3%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-18 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-18 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0l-18 .text-item-0 {
  top: 51.65%;
  left: 74.41%;
  width: 23.25%;
}

.template-g0l-19 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-19 .image-item-1 {
  top: 6.95%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0l-19 .image-item-2 {
  top: 52%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0l-20 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-20 .image-item-1 {
  top: 52%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0l-20 .text-item-0 {
  left: 74.41%;
  width: 23.25%;
  bottom: 52.17%;
}

.template-g0l-master .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-0 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-0 .text-item-0 {
  top: 20.86%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-1 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-1 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0r-1 .text-item-0 {
  top: 32%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-2 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-2 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0r-2 .text-item-0 {
  top: 36%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-3 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-3 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-g0r-3 .text-item-0 {
  top: 41.04%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-4 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-4 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 38.26%;
}

.template-g0r-4 .text-item-0 {
  top: 48.69%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-5 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-5 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-g0r-5 .text-item-0 {
  top: 58.26%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-6 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-6 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 57.39%;
}

.template-g0r-6 .text-item-0 {
  top: 67.82%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-7 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-7 .image-item-1 {
  top: 38.26%;
  left: 0%;
  width: 25.58%;
  height: 38.26%;
}

.template-g0r-7 .text-item-0 {
  top: 15.3%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-8 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-8 .image-item-1 {
  top: 38.26%;
  left: 0%;
  width: 25.58%;
  height: 47.82%;
}

.template-g0r-8 .text-item-0 {
  bottom: 65.21%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-9 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-9 .image-item-1 {
  top: 35.82%;
  left: 0%;
  width: 25.58%;
  height: 57.39%;
}

.template-g0r-9 .text-item-0 {
  top: 12.86%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-10 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-10 .image-item-1 {
  top: 32%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0r-10 .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0r-10 .text-item-0 {
  top: 57.04%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-11 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-11 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0r-11 .image-item-2 {
  top: 32%;
  left: 2.32%;
  width: 23.25%;
  height: 27.82%;
}

.template-g0r-11 .text-item-0 {
  top: 63.3%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-12 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-12 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 21.56%;
}

.template-g0r-12 .image-item-2 {
  top: 32%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-g0r-12 .text-item-0 {
  top: 70.26%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-13 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-13 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0r-13 .image-item-2 {
  top: 36%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0r-13 .text-item-0 {
  top: 65.04%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-14 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-14 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0r-14 .image-item-2 {
  top: 36%;
  left: 2.32%;
  width: 23.25%;
  height: 27.82%;
}

.template-g0r-14 .text-item-0 {
  top: 67.3%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-15 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-15 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 25.56%;
}

.template-g0r-15 .image-item-2 {
  top: 36%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-g0r-15 .text-item-0 {
  top: 74.26%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-16 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-16 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-g0r-16 .image-item-2 {
  top: 41.04%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-g0r-16 .text-item-0 {
  top: 75.13%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-17 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-17 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 30.6%;
}

.template-g0r-17 .image-item-2 {
  top: 41.04%;
  left: 2.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-g0r-17 .text-item-0 {
  top: 79.3%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-18 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-18 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0r-18 .text-item-0 {
  top: 51.65%;
  left: 2.32%;
  width: 23.25%;
  bottom: 2px;
}

.template-g0r-19 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-19 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0r-19 .image-item-2 {
  top: 52%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0r-20 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-20 .image-item-1 {
  top: 52%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0r-20 .text-item-0 {
  bottom: 50.43%;
  left: 2.32%;
  width: 23.25%;
}

.template-g0r-master .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-h-master .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-1 .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-1 .image-item-1 {
  top: 3.47%;
  left: 0%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0-1 .image-item-2 {
  top: 3.47%;
  left: 77.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0-1 .text-item-0 {
  top: 34.08%;
  left: 77.32%;
  width: 20.34%;
}

.template-h0-2 .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-2 .image-item-1 {
  top: 0%;
  left: 77.32%;
  width: 22.67%;
  height: 33.91%;
}

.template-h0-2 .image-item-2 {
  top: 0%;
  left: 0%;
  width: 22.55%;
  height: 33.91%;
}

.template-h0-2 .text-item-0 {
  top: 37.39%;
  left: 77.32%;
  width: 20.34%;
}

.template-h0-3 .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-3 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 22.67%;
  height: 42.6%;
}

.template-h0-3 .image-item-2 {
  top: 0%;
  left: 77.32%;
  width: 22.67%;
  height: 42.6%;
}

.template-h0-3 .text-item-0 {
  top: 46.08%;
  left: 77.32%;
  width: 20.34%;
}

.template-h0-4 .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-4 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 22.55%;
  height: 50.6%;
}

.template-h0-4 .image-item-2 {
  top: 0%;
  left: 77.32%;
  width: 22.55%;
  height: 50.6%;
}

.template-h0-4 .text-item-0 {
  top: 54.08%;
  left: 77.32%;
  width: 20.34%;
}

.template-h0-5 .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-5 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 22.55%;
  height: 42.6%;
}

.template-h0-5 .image-item-2 {
  top: 0%;
  left: 77.32%;
  width: 22.55%;
  height: 42.6%;
}

.template-h0-5 .image-item-3 {
  top: 46.08%;
  left: 0%;
  width: 22.55%;
  height: 42.6%;
}

.template-h0-5 .text-item-0 {
  top: 46.08%;
  left: 77.32%;
  width: 20.34%;
}

.template-h0-master .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-master .text-item-0 {
  top: 29.56%;
  left: 77.32%;
  width: 20.34%;
}

.template-h0l-0 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-0 .text-item-0 {
  top: 29.56%;
  left: 57.55%;
  width: 34.88%;
}

.template-h0l-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-1 .image-item-1 {
  top: 19.3%;
  left: 58.72%;
  width: 32.55%;
  height: 38.95%;
}

.template-h0l-1 .text-item-0 {
  top: 61.73%;
  left: 58.72%;
  width: 32.55%;
}

.template-h0l-2 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-2 .image-item-1 {
  top: 8.69%;
  left: 56.04%;
  width: 37.79%;
  height: 45.21%;
}

.template-h0l-2 .text-item-0 {
  top: 57.39%;
  left: 56.04%;
  width: 37.79%;
}

.template-h0l-3 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-3 .image-item-1 {
  top: 20%;
  left: 58.72%;
  width: 32.55%;
  height: 32.34%;
}

.template-h0l-3 .text-item-0 {
  top: 56%;
  left: 58.72%;
  width: 32.55%;
}

.template-h0l-4 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-4 .image-item-1 {
  top: 16%;
  left: 54.65%;
  width: 40.69%;
  height: 40.52%;
}

.template-h0l-4 .text-item-0 {
  top: 60%;
  left: 54.65%;
  width: 40.69%;
}

.template-h0l-5 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-5 .image-item-1 {
  top: 17.56%;
  left: 62.44%;
  width: 25.58%;
  height: 38.26%;
}

.template-h0l-5 .text-item-0 {
  top: 59.3%;
  left: 62.44%;
  width: 25.58%;
}

.template-h0l-6 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-6 .image-item-1 {
  top: 12.34%;
  left: 58.95%;
  width: 32.55%;
  height: 48.69%;
}

.template-h0l-6 .text-item-0 {
  top: 64.52%;
  left: 58.95%;
  width: 32.55%;
}

.template-h0l-7 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-7 .image-item-1 {
  top: 8%;
  left: 54.65%;
  width: 40.69%;
  height: 60.86%;
}

.template-h0l-7 .text-item-0 {
  top: 72.34%;
  left: 54.65%;
  width: 40.69%;
}

.template-h0l-8 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-8 .image-item-1 {
  top: 25.04%;
  left: 58.72%;
  width: 32.55%;
  height: 27.3%;
}

.template-h0l-8 .text-item-0 {
  top: 56%;
  left: 58.72%;
  width: 32.55%;
}

.template-h0l-9 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-9 .image-item-1 {
  top: 21.73%;
  left: 54.65%;
  width: 40.69%;
  height: 34.08%;
}

.template-h0l-9 .text-item-0 {
  top: 59.3%;
  left: 54.65%;
  width: 40.69%;
}

.template-h0l-10 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-10 .image-item-1 {
  top: 18.95%;
  left: 63.02%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-10 .text-item-0 {
  top: 65.91%;
  left: 63.02%;
  width: 23.25%;
}

.template-h0l-11 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-11 .image-item-1 {
  top: 6.95%;
  left: 58.72%;
  width: 32.55%;
  height: 60.69%;
}

.template-h0l-11 .text-item-0 {
  top: 71.3%;
  left: 58.72%;
  width: 32.55%;
}

.template-h0l-12 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-12 .image-item-1 {
  top: 11.3%;
  left: 62.2%;
  width: 25.58%;
  height: 57.39%;
}

.template-h0l-12 .text-item-0 {
  top: 72.17%;
  left: 62.2%;
  width: 25.58%;
}

.template-h0l-13-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-a .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-a .image-item-2 {
  top: 51.13%;
  left: 52.32%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0l-13-a .text-item-0 {
  top: 51.13%;
  left: 77.44%;
  width: 20.23%;
}

.template-h0l-13-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-b .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-b .image-item-2 {
  top: 51.13%;
  left: 52.32%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0l-13-b .image-item-3 {
  top: 51.13%;
  left: 77.2%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0l-13-b .text-item-0 {
  top: 81.56%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-13-c .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-c .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-c .image-item-2 {
  top: 51.13%;
  left: 52.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0l-13-c .text-item-0 {
  top: 51.13%;
  left: 77.32%;
  width: 20.34%;
}

.template-h0l-13-d .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-d .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-d .image-item-2 {
  top: 51.13%;
  left: 52.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0l-13-d .image-item-3 {
  top: 51.13%;
  left: 76.74%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0l-13-d .text-item-0 {
  top: 89.39%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-13-e .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-e .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-e .image-item-2 {
  top: 51.13%;
  left: 52.32%;
  width: 21.39%;
  height: 40.17%;
}

.template-h0l-13-e .text-item-0 {
  top: 51.13%;
  left: 76.04%;
  width: 21.62%;
}

.template-h0l-13-f .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-f .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-f .image-item-2 {
  top: 51.13%;
  left: 52.32%;
  width: 22.79%;
  height: 42.6%;
}

.template-h0l-13-f .image-item-3 {
  top: 51.13%;
  left: 77.09%;
  width: 22.79%;
  height: 42.6%;
}

.template-h0l-13-g .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-g .image-item-1 {
  top: 0%;
  left: 52.2%;
  width: 47.79%;
  height: 47.47%;
}

.template-h0l-13-g .image-item-2 {
  top: 50.78%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-13-g .text-item-0 {
  top: 51.13%;
  left: 76.51%;
  width: 21.16%;
}

.template-h0l-13-h .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-h .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-h .image-item-2 {
  top: 50.78%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-13-h .image-item-3 {
  top: 50.78%;
  left: 76.04%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-13-i .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-i .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-i .image-item-2 {
  top: 50.95%;
  left: 52.32%;
  width: 38.02%;
  height: 45.56%;
}

.template-h0l-13-j .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-j .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-j .image-item-2 {
  top: 50.95%;
  left: 52.32%;
  width: 34.88%;
  height: 34.78%;
}

.template-h0l-13-k .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-k .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-k .image-item-2 {
  top: 50.95%;
  left: 52.32%;
  width: 30.46%;
  height: 45.56%;
}

.template-h0l-13-l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13-l .image-item-1 {
  top: 52.34%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13-l .image-item-2 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-13 .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-13 .text-item-0 {
  top: 50.95%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-14-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-a .image-item-1 {
  top: 30.43%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-a .image-item-2 {
  top: 0%;
  left: 52.32%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0l-14-a .text-item-0 {
  top: 81.39%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-14-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-b .image-item-1 {
  top: 30.43%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-b .image-item-2 {
  top: 0%;
  left: 52.32%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0l-14-b .image-item-3 {
  top: 0%;
  left: 77.2%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0l-14-b .text-item-0 {
  top: 81.39%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-14-c .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-c .image-item-1 {
  top: 38.26%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-c .image-item-2 {
  top: 0%;
  left: 52.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0l-14-c .text-item-0 {
  top: 89.21%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-14-d .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-d .image-item-1 {
  top: 38.26%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-d .image-item-2 {
  top: 0%;
  left: 52.32%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0l-14-d .image-item-3 {
  top: 0%;
  left: 76.74%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0l-14-d .text-item-0 {
  top: 89.21%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-14-e .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-e .image-item-1 {
  top: 48.69%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-e .image-item-2 {
  top: 3.47%;
  left: 52.32%;
  width: 22.32%;
  height: 41.73%;
}

.template-h0l-14-e .text-item-0 {
  top: 19.82%;
  left: 76.97%;
  width: 20.69%;
}

.template-h0l-14-f .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-f .image-item-1 {
  top: 48.69%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-f .image-item-2 {
  top: 3.47%;
  left: 52.32%;
  width: 22.32%;
  height: 41.73%;
}

.template-h0l-14-f .image-item-3 {
  top: 3.47%;
  left: 77.67%;
  width: 22.32%;
  height: 41.73%;
}

.template-h0l-14-g .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-g .image-item-1 {
  top: 52.34%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-g .image-item-2 {
  top: 0%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-14-g .text-item-0 {
  top: 26.6%;
  left: 76.51%;
  width: 21.16%;
}

.template-h0l-14-h .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-h .image-item-1 {
  top: 52.34%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-h .image-item-2 {
  top: 0%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-14-h .image-item-3 {
  top: 0%;
  left: 75.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-14-i .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-i .image-item-1 {
  top: 52.34%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-i .image-item-2 {
  top: 3.47%;
  left: 52.32%;
  width: 38.02%;
  height: 45.56%;
}

.template-h0l-14-j .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-j .image-item-1 {
  top: 52.34%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-j .image-item-2 {
  top: 14.08%;
  left: 52.32%;
  width: 34.88%;
  height: 34.78%;
}

.template-h0l-14-k .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-k .image-item-1 {
  top: 52.34%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14-k .image-item-2 {
  top: 3.3%;
  left: 52.32%;
  width: 30.46%;
  height: 45.56%;
}

.template-h0l-14 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14 .image-item-1 {
  top: 30.43%;
  left: 52.32%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0l-14 .text-item-0 {
  top: 81.39%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-15-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-15-a .image-item-1 {
  top: 5.56%;
  left: 52.32%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15-a .image-item-2 {
  top: 50.78%;
  left: 52.32%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15-a .image-item-3 {
  top: 50.78%;
  left: 76.62%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15-a .text-item-0 {
  top: 24.86%;
  left: 76.74%;
  width: 20.93%;
}

.template-h0l-15-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-15-b .image-item-1 {
  top: 5.56%;
  left: 52.32%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15-b .image-item-2 {
  top: 50.78%;
  left: 52.32%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15-b .image-item-3 {
  top: 5.56%;
  left: 76.62%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15-b .text-item-0 {
  top: 49.04%;
  left: 76.74%;
  width: 20.93%;
}

.template-h0l-15 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-15 .image-item-1 {
  top: 5.56%;
  left: 52.32%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15 .image-item-2 {
  top: 50.78%;
  left: 52.32%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15 .image-item-3 {
  top: 5.56%;
  left: 76.62%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-15 .image-item-4 {
  top: 50.78%;
  left: 76.62%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0l-16-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-16-a .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16-a .image-item-2 {
  top: 50.78%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16-a .image-item-3 {
  top: 50.78%;
  left: 75.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16-a .text-item-0 {
  top: 25.04%;
  left: 75.81%;
  width: 21.86%;
}

.template-h0l-16-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-16-b .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16-b .image-item-2 {
  top: 50.78%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16-b .image-item-3 {
  top: 0%;
  left: 75.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16-b .text-item-0 {
  top: 49.04%;
  left: 75.81%;
  width: 21.86%;
}

.template-h0l-16 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-16 .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16 .image-item-2 {
  top: 50.78%;
  left: 52.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16 .image-item-3 {
  top: 0%;
  left: 75.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-16 .image-item-4 {
  top: 50.78%;
  left: 75.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0l-17 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-17 .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 22.67%;
  height: 33.91%;
}

.template-h0l-17 .image-item-2 {
  top: 0%;
  left: 77.32%;
  width: 22.67%;
  height: 33.91%;
}

.template-h0l-17 .image-item-3 {
  top: 37.39%;
  left: 52.32%;
  width: 22.67%;
  height: 33.91%;
}

.template-h0l-17 .image-item-4 {
  top: 37.39%;
  left: 77.32%;
  width: 22.67%;
  height: 33.91%;
}

.template-h0l-17 .text-item-0 {
  top: 74.78%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-18 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-18 .image-item-1 {
  top: 3.65%;
  left: 52.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-18 .image-item-2 {
  top: 34.26%;
  left: 52.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-18 .image-item-3 {
  top: 3.65%;
  left: 77.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-18 .image-item-4 {
  top: 34.26%;
  left: 77.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-18 .text-item-0 {
  top: 64.86%;
  left: 52.32%;
  width: 45.23%;
}

.template-h0l-19 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-19 .image-item-1 {
  top: 3.65%;
  left: 52.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-19 .image-item-2 {
  top: 34.26%;
  left: 52.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-19 .image-item-3 {
  top: 64.86%;
  left: 52.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-19 .image-item-4 {
  top: 3.65%;
  left: 77.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-19 .image-item-5 {
  top: 34.26%;
  left: 77.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0l-19 .text-item-0 {
  top: 64.86%;
  left: 77.32%;
  width: 20.34%;
}

.template-h0l-20 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-20 .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 23.37%;
  height: 23.3%;
}

.template-h0l-20 .image-item-2 {
  top: 52.17%;
  left: 52.32%;
  width: 23.37%;
  height: 23.3%;
}

.template-h0l-20 .image-item-3 {
  top: 26.08%;
  left: 74.3%;
  width: 23.37%;
  height: 23.3%;
}

.template-h0l-20 .text-item-0 {
  top: 78.95%;
  left: 52.32%;
  width: 45.34%;
}

.template-h0l-21 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-21 .image-item-1 {
  top: 0.17%;
  left: 56.27%;
  width: 37.67%;
  height: 37.56%;
}

.template-h0l-21 .image-item-2 {
  top: 40.34%;
  left: 56.27%;
  width: 37.67%;
  height: 37.56%;
}

.template-h0l-21 .text-item-0 {
  top: 81.39%;
  left: 56.27%;
  width: 37.67%;
}

.template-h0l-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0r-0 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-0 .text-item-0 {
  top: 29.56%;
  left: 8.13%;
  width: 34.88%;
}

.template-h0r-1 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-1 .image-item-1 {
  top: 19.65%;
  left: 9.3%;
  width: 32.55%;
  height: 38.95%;
}

.template-h0r-1 .text-item-0 {
  top: 62.08%;
  left: 9.3%;
  width: 32.55%;
}

.template-h0r-2 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-2 .image-item-1 {
  top: 16.52%;
  left: 6.62%;
  width: 37.79%;
  height: 45.21%;
}

.template-h0r-2 .text-item-0 {
  top: 65.21%;
  left: 6.62%;
  width: 37.79%;
}

.template-h0r-3 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-3 .image-item-1 {
  top: 22.78%;
  left: 9.3%;
  width: 32.44%;
  height: 32.34%;
}

.template-h0r-3 .text-item-0 {
  top: 58.78%;
  left: 9.3%;
  width: 32.44%;
}

.template-h0r-4 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-4 .image-item-1 {
  top: 18.78%;
  left: 5.23%;
  width: 40.69%;
  height: 40.52%;
}

.template-h0r-4 .text-item-0 {
  top: 62.78%;
  left: 5.23%;
  width: 40.69%;
}

.template-h0r-5 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-5 .image-item-1 {
  top: 20%;
  left: 12.79%;
  width: 25.58%;
  height: 38.26%;
}

.template-h0r-5 .text-item-0 {
  top: 61.73%;
  left: 12.79%;
  width: 25.58%;
}

.template-h0-5r .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-5r .image-item-1 {
  top: 0%;
  left: 0.11%;
  width: 22.67%;
  height: 42.6%;
}

.template-h0-5r .image-item-2 {
  top: 0%;
  left: 77.32%;
  width: 22.67%;
  height: 42.6%;
}

.template-h0-5r .image-item-3 {
  top: 46.08%;
  left: 77.32%;
  width: 22.67%;
  height: 42.6%;
}

.template-h0-5r .text-item-0 {
  top: 46.08%;
  left: 2.32%;
  width: 20.34%;
}

.template-h0r-6 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-6 .image-item-1 {
  top: 14.78%;
  left: 9.18%;
  width: 32.55%;
  height: 48.69%;
}

.template-h0r-6 .text-item-0 {
  top: 66.95%;
  left: 9.18%;
  width: 32.55%;
}

.template-h0r-7 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-7 .image-item-1 {
  top: 8.69%;
  left: 5.11%;
  width: 40.58%;
  height: 60.86%;
}

.template-h0r-7 .text-item-0 {
  top: 73.04%;
  left: 5.11%;
  width: 40.58%;
}

.template-h0r-8 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-8 .image-item-1 {
  top: 25.39%;
  left: 9.3%;
  width: 32.44%;
  height: 27.3%;
}

.template-h0r-8 .text-item-0 {
  top: 56.17%;
  left: 9.3%;
  width: 32.44%;
}

.template-h0r-9 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-9 .image-item-1 {
  top: 21.91%;
  left: 5.23%;
  width: 40.58%;
  height: 34.08%;
}

.template-h0r-9 .text-item-0 {
  top: 59.65%;
  left: 5.23%;
  width: 40.58%;
}

.template-h0r-10 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-10 .image-item-1 {
  top: 18.95%;
  left: 13.95%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-10 .text-item-0 {
  top: 65.91%;
  left: 13.95%;
  width: 23.25%;
}

.template-h0r-11 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-11 .image-item-1 {
  top: 6.95%;
  left: 9.3%;
  width: 32.55%;
  height: 60.69%;
}

.template-h0r-11 .text-item-0 {
  top: 71.3%;
  left: 9.3%;
  width: 32.55%;
}

.template-h0r-12 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-12 .image-item-1 {
  top: 11.3%;
  left: 12.79%;
  width: 25.58%;
  height: 57.39%;
}

.template-h0r-12 .text-item-0 {
  top: 72.17%;
  left: 12.79%;
  width: 25.58%;
}

.template-h0r-13-a .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-a .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-a .image-item-2 {
  top: 50.95%;
  left: 24.88%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0r-13-a .text-item-0 {
  top: 50.95%;
  left: 2.32%;
  width: 20.23%;
}

.template-h0r-13-b .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-b .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-b .image-item-2 {
  top: 50.95%;
  left: 0%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0r-13-b .image-item-3 {
  top: 50.95%;
  left: 24.88%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0r-13-b .text-item-0 {
  top: 81.39%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-13-c .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-c .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-c .image-item-2 {
  top: 50.95%;
  left: 2.32%;
  width: 23.13%;
  height: 34.78%;
}

.template-h0r-13-c .text-item-0 {
  top: 51.13%;
  left: 27.32%;
  width: 20.34%;
}

.template-h0r-13-d .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-d .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-d .image-item-2 {
  top: 51.13%;
  left: 24.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0r-13-d .image-item-3 {
  top: 51.13%;
  left: 0%;
  width: 23.13%;
  height: 34.78%;
}

.template-h0r-13-d .text-item-0 {
  top: 89.39%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-13-e .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-e .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-e .image-item-2 {
  top: 50.95%;
  left: 2.32%;
  width: 21.39%;
  height: 40.17%;
}

.template-h0r-13-e .text-item-0 {
  top: 51.13%;
  left: 26.04%;
  width: 21.62%;
}

.template-h0r-13-f .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-f .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-f .image-item-2 {
  top: 51.13%;
  left: 0%;
  width: 22.79%;
  height: 42.6%;
}

.template-h0r-13-f .image-item-3 {
  top: 51.13%;
  left: 24.76%;
  width: 22.79%;
  height: 42.6%;
}

.template-h0r-13-g .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-g .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-g .image-item-2 {
  top: 50.95%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-13-g .text-item-0 {
  top: 51.13%;
  left: 2.32%;
  width: 21.16%;
}

.template-h0r-13-h .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-h .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-h .image-item-2 {
  top: 50.78%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-13-h .image-item-3 {
  top: 50.78%;
  left: 1.97%;
  width: 21.74%;
  height: 49.04%;
}

.template-h0r-13-i .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-i .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-i .image-item-2 {
  top: 50.95%;
  left: 9.53%;
  width: 38.02%;
  height: 45.56%;
}

.template-h0r-13-j .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-j .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-j .image-item-2 {
  top: 50.95%;
  left: 12.79%;
  width: 34.88%;
  height: 34.78%;
}

.template-h0r-13-k .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-k .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-k .image-item-2 {
  top: 50.95%;
  left: 17.2%;
  width: 30.46%;
  height: 45.56%;
}

.template-h0r-13-l .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-l .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-l .image-item-2 {
  top: 52.34%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13 .text-item-0 {
  top: 50.95%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-14-a .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-a .image-item-1 {
  top: 30.43%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-a .image-item-2 {
  top: 0%;
  left: 24.88%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0r-14-a .text-item-0 {
  top: 81.39%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-14-b .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-b .image-item-1 {
  top: 30.43%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-b .image-item-2 {
  top: 30.43%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-b .image-item-3 {
  top: 0%;
  left: 0%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0r-14-b .image-item-4 {
  top: 0%;
  left: 24.88%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0r-14-b .text-item-0 {
  top: 81.39%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-14-c .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-c .image-item-1 {
  top: 38.26%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-c .image-item-2 {
  top: 0%;
  left: 24.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0r-14-c .text-item-0 {
  top: 89.39%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-14-d .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-d .image-item-1 {
  top: 38.26%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-d .image-item-2 {
  top: 38.26%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-d .image-item-3 {
  top: 0%;
  left: 0%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0r-14-d .image-item-4 {
  top: 0%;
  left: 24.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-h0r-14-d .text-item-0 {
  top: 89.39%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-14-e .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-e .image-item-1 {
  top: 48.69%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-e .image-item-2 {
  top: 3.47%;
  left: 25.34%;
  width: 22.32%;
  height: 41.73%;
}

.template-h0r-14-e .text-item-0 {
  bottom: 53.91%;
  left: 2.32%;
  width: 20.69%;
}

.template-h0r-14-f .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-f .image-item-1 {
  top: 48.69%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-f .image-item-2 {
  top: 3.47%;
  left: 0%;
  width: 22.32%;
  height: 41.73%;
}

.template-h0r-14-f .image-item-3 {
  top: 3.47%;
  left: 25.34%;
  width: 22.32%;
  height: 41.73%;
}

.template-h0r-14-g .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-g .image-item-1 {
  top: 52.34%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-g .image-item-2 {
  top: 0%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-14-h .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-h .image-item-1 {
  top: 52.34%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-h .image-item-2 {
  top: 0%;
  left: 2.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-14-h .image-item-3 {
  top: 0%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-14-i .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-i .image-item-1 {
  top: 52.34%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-i .image-item-2 {
  top: 3.47%;
  left: 9.53%;
  width: 38.02%;
  height: 45.56%;
}

.template-h0r-14-j .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-j .image-item-1 {
  top: 52.34%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-j .image-item-2 {
  top: 14.08%;
  left: 12.79%;
  width: 34.88%;
  height: 34.78%;
}

.template-h0r-14-k .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14-k .image-item-1 {
  top: 52.34%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14-k .image-item-2 {
  top: 3.3%;
  left: 17.2%;
  width: 30.46%;
  height: 45.56%;
}

.template-h0r-14 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-14 .image-item-1 {
  top: 30.43%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-14 .text-item-0 {
  top: 81.39%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-15-a .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-15-a .image-item-1 {
  top: 50.78%;
  left: 0%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15-a .image-item-2 {
  top: 5.56%;
  left: 24.3%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15-a .image-item-3 {
  top: 50.78%;
  left: 24.3%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15-a .text-item-0 {
  top: 24.86%;
  left: 2.32%;
  width: 20.93%;
}

.template-h0r-15-b .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-15-b .image-item-1 {
  top: 5.56%;
  left: 0%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15-b .image-item-2 {
  top: 5.56%;
  left: 24.3%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15-b .image-item-3 {
  top: 50.78%;
  left: 24.3%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15-b .text-item-0 {
  top: 49.04%;
  left: 2.32%;
  width: 20.93%;
}

.template-h0r-15 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-15 .image-item-1 {
  top: 5.56%;
  left: 0%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15 .image-item-2 {
  top: 50.78%;
  left: 0%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15 .image-item-3 {
  top: 5.56%;
  left: 24.3%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15 .image-item-4 {
  top: 50.78%;
  left: 24.3%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-16-a .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-16-a .image-item-1 {
  top: 50.78%;
  left: 2.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16-a .image-item-2 {
  top: 0%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16-a .image-item-3 {
  top: 50.78%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16-a .text-item-0 {
  top: 25.04%;
  left: 2.32%;
  width: 21.86%;
}

.template-h0r-16-b .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-16-b .image-item-1 {
  top: 0%;
  left: 2.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16-b .image-item-2 {
  top: 0%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16-b .image-item-3 {
  top: 50.78%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16-b .text-item-0 {
  top: 50.78%;
  left: 2.32%;
  width: 21.86%;
}

.template-h0r-16 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-16 .image-item-1 {
  top: 0%;
  left: 2.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16 .image-item-2 {
  top: 50.78%;
  left: 2.32%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16 .image-item-3 {
  top: 0%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-16 .image-item-4 {
  top: 50.78%;
  left: 25.81%;
  width: 21.86%;
  height: 49.04%;
}

.template-h0r-17 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-17 .image-item-1 {
  top: 37.39%;
  left: 25%;
  width: 22.67%;
  height: 33.91%;
}

.template-h0r-17 .image-item-2 {
  top: 0%;
  left: 0%;
  width: 22.67%;
  height: 33.91%;
}

.template-h0r-17 .image-item-3 {
  top: 0%;
  left: 25%;
  width: 22.67%;
  height: 33.91%;
}

.template-h0r-17 .image-item-4 {
  top: 37.39%;
  left: 0%;
  width: 22.55%;
  height: 33.91%;
}

.template-h0r-17 .text-item-0 {
  top: 74.78%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-18 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-18 .image-item-1 {
  top: 3.65%;
  left: 25%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0r-18 .image-item-2 {
  top: 34.26%;
  left: 25%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0r-18 .image-item-3 {
  top: 3.65%;
  left: 0%;
  width: 22.55%;
  height: 27.13%;
}

.template-h0r-18 .image-item-4 {
  top: 34.26%;
  left: 0%;
  width: 22.55%;
  height: 27.13%;
}

.template-h0r-18 .text-item-0 {
  top: 64.86%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-19 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-19 .image-item-1 {
  top: 64.86%;
  left: 25%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0r-19 .image-item-2 {
  top: 3.65%;
  left: 25%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0r-19 .image-item-3 {
  top: 34.26%;
  left: 25%;
  width: 22.67%;
  height: 27.13%;
}

.template-h0r-19 .image-item-4 {
  top: 3.65%;
  left: 0%;
  width: 22.55%;
  height: 27.13%;
}

.template-h0r-19 .image-item-5 {
  top: 34.26%;
  left: 0%;
  width: 22.55%;
  height: 27.13%;
}

.template-h0r-19 .text-item-0 {
  top: 61.39%;
  left: 2.32%;
  width: 20.34%;
}

.template-h0r-20 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-20 .image-item-1 {
  top: 26.08%;
  left: 2.32%;
  width: 23.37%;
  height: 23.3%;
}

.template-h0r-20 .image-item-2 {
  top: 0%;
  left: 24.3%;
  width: 23.37%;
  height: 23.3%;
}

.template-h0r-20 .image-item-3 {
  top: 52%;
  left: 24.3%;
  width: 23.37%;
  height: 23.3%;
}

.template-h0r-20 .text-item-0 {
  top: 78.95%;
  left: 2.32%;
  width: 45.23%;
}

.template-h0r-master .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-hol-19 .image-item-0 {
  width: 50%;
  height: 100%;
}

.template-hol-19 .image-item-1 {
  top: 3.65%;
  left: 52.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-hol-19 .image-item-2 {
  top: 34.26%;
  left: 52.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-hol-19 .image-item-3 {
  top: 64.86%;
  left: 52.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-hol-19 .image-item-4 {
  top: 3.65%;
  left: 77.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-hol-19 .image-item-5 {
  top: 34.26%;
  left: 77.32%;
  width: 22.67%;
  height: 27.13%;
}

.template-hol-19 .text-item-0 {
  top: 64.86%;
  left: 77.32%;
  width: 20.34%;
}

.template-i-master .image-item-0 {
  top: 0%;
  left: 23.25%;
  width: 53.48%;
  height: 100%;
}

.template-i0-1 .image-item-0 {
  top: 0%;
  left: 23.25%;
  width: 53.48%;
  height: 100%;
}

.template-i0-1 .image-item-1 {
  top: 3.47%;
  left: 0%;
  width: 20.93%;
  height: 25.04%;
}

.template-i0-1 .image-item-2 {
  top: 3.47%;
  left: 79.06%;
  width: 20.93%;
  height: 25.04%;
}

.template-i0-1 .text-item-0 {
  top: 32%;
  left: 79.06%;
  width: 18.6%;
}

.template-i0-2 .image-item-0 {
  top: 0%;
  left: 23.25%;
  width: 53.48%;
  height: 100%;
}

.template-i0-2 .image-item-1 {
  top: 3.47%;
  left: 79.06%;
  width: 20.93%;
  height: 31.3%;
}

.template-i0-2 .image-item-2 {
  top: 3.47%;
  left: 0%;
  width: 20.81%;
  height: 31.3%;
}

.template-i0-2 .text-item-0 {
  top: 38.26%;
  left: 79.06%;
  width: 18.6%;
}

.template-i0-3 .image-item-0 {
  top: 0%;
  left: 23.25%;
  width: 53.48%;
  height: 100%;
}

.template-i0-3 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 22.67%;
  height: 42.6%;
}

.template-i0-3 .image-item-2 {
  top: 0%;
  left: 77.32%;
  width: 22.67%;
  height: 42.6%;
}

.template-i0-3 .text-item-0 {
  top: 46.08%;
  left: 79.06%;
  width: 18.6%;
}

.template-i0-4 .image-item-0 {
  top: 0%;
  left: 23.25%;
  width: 53.48%;
  height: 100%;
}

.template-i0-4 .image-item-1 {
  top: 0%;
  left: 1.62%;
  width: 20.11%;
  height: 45.21%;
}

.template-i0-4 .image-item-2 {
  top: 0%;
  left: 78.13%;
  width: 20.11%;
  height: 45.21%;
}

.template-i0-4 .text-item-0 {
  top: 48.69%;
  left: 78.13%;
  width: 18.6%;
}

.template-i0-5 .image-item-0 {
  top: 0%;
  left: 23.25%;
  width: 53.48%;
  height: 100%;
}

.template-i0-5 .image-item-1 {
  top: 0%;
  left: 1.62%;
  width: 20.11%;
  height: 45.21%;
}

.template-i0-5 .image-item-2 {
  top: 0%;
  left: 78.13%;
  width: 20.11%;
  height: 45.21%;
}

.template-i0-5 .image-item-3 {
  top: 47.65%;
  left: 1.62%;
  width: 20.11%;
  height: 45.21%;
}

.template-i0-5 .text-item-0 {
  top: 48.69%;
  left: 78.13%;
  width: 18.6%;
}

.template-i0-master .image-item-0 {
  top: 0%;
  left: 23.25%;
  width: 53.48%;
  height: 100%;
}

.template-i0-master .text-item-0 {
  top: 29.56%;
  left: 79.06%;
  width: 18.6%;
}

.template-i0l-0 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-0 .text-item-0 {
  top: 29.56%;
  left: 59.3%;
  width: 34.88%;
}

.template-i0l-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-1 .image-item-1 {
  top: 19.65%;
  left: 60.46%;
  width: 32.55%;
  height: 38.95%;
}

.template-i0l-1 .text-item-0 {
  top: 62.08%;
  left: 60.46%;
  width: 32.55%;
}

.template-i0l-2 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-2 .image-item-1 {
  top: 18.26%;
  left: 59.3%;
  width: 34.88%;
  height: 41.73%;
}

.template-i0l-2 .text-item-0 {
  top: 63.47%;
  left: 59.3%;
  width: 34.88%;
}

.template-i0l-3 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-3 .image-item-1 {
  top: 22.78%;
  left: 60.46%;
  width: 32.55%;
  height: 32.34%;
}

.template-i0l-3 .text-item-0 {
  top: 58.78%;
  left: 60.46%;
  width: 32.55%;
}

.template-i0l-4 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-4 .image-item-1 {
  top: 18.78%;
  left: 56.39%;
  width: 40.69%;
  height: 40.52%;
}

.template-i0l-4 .text-item-0 {
  top: 62.78%;
  left: 56.39%;
  width: 40.69%;
}

.template-i0l-5 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-5 .image-item-1 {
  top: 20%;
  left: 63.95%;
  width: 25.58%;
  height: 38.26%;
}

.template-i0l-5 .text-item-0 {
  top: 61.73%;
  left: 63.95%;
  width: 25.58%;
}

.template-i0l-6 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-6 .image-item-1 {
  top: 14.78%;
  left: 60.46%;
  width: 32.55%;
  height: 48.69%;
}

.template-i0l-6 .text-item-0 {
  top: 66.95%;
  left: 60.46%;
  width: 32.55%;
}

.template-i0l-7 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-7 .image-item-1 {
  top: 8.69%;
  left: 56.39%;
  width: 40.69%;
  height: 60.86%;
}

.template-i0l-7 .text-item-0 {
  top: 73.04%;
  left: 56.39%;
  width: 40.69%;
}

.template-i0l-8 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-8 .image-item-1 {
  top: 25.56%;
  left: 60.46%;
  width: 32.55%;
  height: 27.3%;
}

.template-i0l-8 .text-item-0 {
  top: 56.52%;
  left: 60.46%;
  width: 32.55%;
}

.template-i0l-9 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-9 .image-item-1 {
  top: 22.43%;
  left: 56.39%;
  width: 40.69%;
  height: 34.08%;
}

.template-i0l-9 .text-item-0 {
  top: 60%;
  left: 56.39%;
  width: 40.69%;
}

.template-i0l-10 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-10 .image-item-1 {
  top: 17.73%;
  left: 65.11%;
  width: 23.25%;
  height: 43.47%;
}

.template-i0l-10 .text-item-0 {
  top: 64.69%;
  left: 65.11%;
  width: 23.25%;
}

.template-i0l-11 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-11 .image-item-1 {
  top: 6.78%;
  left: 59.3%;
  width: 34.88%;
  height: 65.21%;
}

.template-i0l-11 .text-item-0 {
  top: 75.47%;
  left: 59.3%;
  width: 34.88%;
}

.template-i0l-12 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-12 .image-item-1 {
  top: 10.78%;
  left: 63.95%;
  width: 25.58%;
  height: 57.39%;
}

.template-i0l-12 .text-item-0 {
  top: 71.65%;
  left: 63.95%;
  width: 25.58%;
}

.template-i0l-13-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-a .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-a .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-13-a .text-item-0 {
  top: 47.47%;
  left: 79.18%;
  width: 18.48%;
}

.template-i0l-13-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-b .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-b .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-13-b .image-item-3 {
  top: 47.47%;
  left: 78.95%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-13-b .text-item-0 {
  top: 75.13%;
  right: 0%;
  width: 44.18%;
}

.template-i0l-13-c .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-c .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-c .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 20.93%;
  height: 31.13%;
}

.template-i0l-13-c .text-item-0 {
  top: 47.47%;
  left: 78.72%;
  width: 18.95%;
}

.template-i0l-13-d .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-d .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-d .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 20.93%;
  height: 31.13%;
}

.template-i0l-13-d .image-item-3 {
  top: 47.47%;
  left: 79.06%;
  width: 20.93%;
  height: 31.13%;
}

.template-i0l-13-d .text-item-0 {
  top: 82.08%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-13-e .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-e .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-e .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 21.04%;
  height: 39.47%;
}

.template-i0l-13-e .text-item-0 {
  top: 47.47%;
  left: 79.06%;
  width: 18.6%;
}

.template-i0l-13-f .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-f .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-f .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 21.04%;
  height: 39.47%;
}

.template-i0l-13-f .image-item-3 {
  top: 47.47%;
  left: 78.83%;
  width: 21.04%;
  height: 39.47%;
}

.template-i0l-13-g .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-g .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-g .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 21.16%;
  height: 47.47%;
}

.template-i0l-13-g .text-item-0 {
  top: 47.47%;
  left: 79.06%;
  width: 18.6%;
}

.template-i0l-13-h .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-h .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-h .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 21.16%;
  height: 47.47%;
}

.template-i0l-13-h .image-item-3 {
  top: 47.47%;
  left: 78.83%;
  width: 21.16%;
  height: 47.47%;
}

.template-i0l-13-i .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-i .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-i .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 38.02%;
  height: 45.56%;
}

.template-i0l-13-j .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-j .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-j .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 34.88%;
  height: 34.78%;
}

.template-i0l-13-k .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-k .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-k .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 30.46%;
  height: 45.56%;
}

.template-i0l-13-l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13-l .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13-l .image-item-2 {
  top: 47.47%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-13 .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-13 .text-item-0 {
  top: 47.47%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-14-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-a .image-item-1 {
  top: 28.34%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-a .image-item-2 {
  top: 0%;
  left: 55.81%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-14-a .text-item-0 {
  top: 75.82%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-14-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-b .image-item-1 {
  top: 28.34%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-b .image-item-2 {
  top: 0%;
  left: 55.81%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-14-b .image-item-3 {
  top: 0%;
  left: 78.95%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-14-b .text-item-0 {
  top: 75.82%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-14-c .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-c .image-item-1 {
  top: 35.65%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-c .image-item-2 {
  top: 0%;
  left: 55.81%;
  width: 21.51%;
  height: 32.17%;
}

.template-i0l-14-c .text-item-0 {
  top: 83.13%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-14-d .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-d .image-item-1 {
  top: 35.65%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-d .image-item-2 {
  top: 0%;
  left: 55.81%;
  width: 21.51%;
  height: 32.17%;
}

.template-i0l-14-d .image-item-3 {
  top: 0%;
  left: 78.48%;
  width: 21.51%;
  height: 32.17%;
}

.template-i0l-14-d .text-item-0 {
  top: 83.13%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-14-e .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-e .image-item-1 {
  top: 52.17%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-e .image-item-2 {
  top: 9.91%;
  left: 55.81%;
  width: 20.69%;
  height: 38.78%;
}

.template-i0l-14-e .text-item-0 {
  top: 23.13%;
  left: 78.6%;
  width: 19.06%;
}

.template-i0l-14-f .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-f .image-item-1 {
  top: 52.17%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-f .image-item-2 {
  top: 9.91%;
  left: 55.81%;
  width: 20.69%;
  height: 38.78%;
}

.template-i0l-14-f .image-item-3 {
  top: 9.91%;
  left: 79.18%;
  width: 20.69%;
  height: 38.78%;
}

.template-i0l-14-g .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-g .image-item-1 {
  top: 51.13%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-g .image-item-2 {
  top: 0%;
  left: 55.81%;
  width: 21.27%;
  height: 47.65%;
}

.template-i0l-14-g .text-item-0 {
  top: 22.26%;
  left: 79.06%;
  width: 18.6%;
}

.template-i0l-14-h .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-h .image-item-1 {
  top: 51.13%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-h .image-item-2 {
  top: 0%;
  left: 55.81%;
  width: 21.27%;
  height: 47.65%;
}

.template-i0l-14-h .image-item-3 {
  top: 0%;
  left: 78.72%;
  width: 21.27%;
  height: 47.65%;
}

.template-i0l-14-i .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-i .image-item-1 {
  top: 55.82%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-i .image-item-2 {
  top: 6.95%;
  left: 55.81%;
  width: 38.02%;
  height: 45.56%;
}

.template-i0l-14-j .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-j .image-item-1 {
  top: 55.82%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-j .image-item-2 {
  top: 17.56%;
  left: 55.81%;
  width: 34.88%;
  height: 34.78%;
}

.template-i0l-14-k .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14-k .image-item-1 {
  top: 55.82%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14-k .image-item-2 {
  top: 6.78%;
  left: 55.81%;
  width: 30.46%;
  height: 45.56%;
}

.template-i0l-14 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-14 .image-item-1 {
  top: 30.43%;
  left: 55.81%;
  width: 44.18%;
  height: 44%;
}

.template-i0l-14 .text-item-0 {
  top: 77.91%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-15-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-15-a .image-item-1 {
  top: 8.86%;
  left: 55.81%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0l-15-a .image-item-2 {
  top: 50.78%;
  left: 55.81%;
  width: 21.39%;
  height: 40%;
}

.template-i0l-15-a .image-item-3 {
  top: 50.78%;
  left: 78.48%;
  width: 21.39%;
  height: 40%;
}

.template-i0l-15-a .text-item-0 {
  top: 22.08%;
  left: 78.48%;
  width: 19.18%;
}

.template-i0l-15-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-15-b .image-item-1 {
  top: 8.86%;
  left: 55.81%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0l-15-b .image-item-2 {
  top: 50.78%;
  left: 55.81%;
  width: 21.39%;
  height: 40%;
}

.template-i0l-15-b .image-item-3 {
  top: 8.86%;
  left: 78.48%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0l-15-b .text-item-0 {
  top: 50.78%;
  left: 78.48%;
  width: 19.18%;
}

.template-i0l-15 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-15 .image-item-1 {
  top: 8.86%;
  left: 55.81%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0l-15 .image-item-2 {
  top: 50.78%;
  left: 55.81%;
  width: 21.39%;
  height: 40%;
}

.template-i0l-15 .image-item-3 {
  top: 8.86%;
  left: 78.48%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0l-15 .image-item-4 {
  top: 50.78%;
  left: 78.48%;
  width: 21.39%;
  height: 40%;
}

.template-i0l-16-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-16-a .image-item-1 {
  top: 0%;
  left: 54.88%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16-a .image-item-2 {
  top: 50.78%;
  left: 54.88%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16-a .image-item-3 {
  top: 50.78%;
  left: 78.13%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16-a .text-item-0 {
  top: 22.08%;
  left: 78.13%;
  width: 19.53%;
}

.template-i0l-16-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-16-b .image-item-1 {
  top: 0%;
  left: 54.88%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16-b .image-item-2 {
  top: 50.78%;
  left: 54.88%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16-b .image-item-3 {
  top: 0%;
  left: 78.13%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16-b .text-item-0 {
  top: 49.04%;
  left: 78.13%;
  width: 19.53%;
}

.template-i0l-16 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-16 .image-item-1 {
  top: 0%;
  left: 54.88%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16 .image-item-2 {
  top: 50.78%;
  left: 54.88%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16 .image-item-3 {
  top: 0%;
  left: 78.13%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-16 .image-item-4 {
  top: 50.78%;
  left: 78.13%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0l-17 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-17 .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 20.93%;
  height: 31.3%;
}

.template-i0l-17 .image-item-2 {
  top: 0%;
  left: 79.06%;
  width: 20.93%;
  height: 31.3%;
}

.template-i0l-17 .image-item-3 {
  top: 34.78%;
  left: 55.81%;
  width: 20.93%;
  height: 31.3%;
}

.template-i0l-17 .image-item-4 {
  top: 34.78%;
  left: 79.06%;
  width: 20.93%;
  height: 31.3%;
}

.template-i0l-17 .text-item-0 {
  top: 69.56%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-18 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-18 .image-item-1 {
  top: 3.47%;
  left: 78.95%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-18 .image-item-2 {
  top: 31.82%;
  left: 78.95%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-18 .image-item-3 {
  top: 3.47%;
  left: 55.81%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0l-18 .image-item-4 {
  top: 31.82%;
  left: 55.81%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0l-18 .text-item-0 {
  top: 60.17%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-19 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-19 .image-item-1 {
  top: 3.47%;
  left: 78.95%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-19 .image-item-2 {
  top: 31.82%;
  left: 78.95%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0l-19 .image-item-3 {
  top: 3.47%;
  left: 55.81%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0l-19 .image-item-4 {
  top: 31.82%;
  left: 55.81%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0l-19 .image-item-5 {
  top: 60.17%;
  left: 55.81%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0l-19 .text-item-0 {
  top: 56.69%;
  left: 78.95%;
  width: 18.72%;
}

.template-i0l-20 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-20 .image-item-1 {
  top: 0%;
  left: 55.81%;
  width: 23.37%;
  height: 23.3%;
}

.template-i0l-20 .image-item-2 {
  top: 52.17%;
  left: 55.81%;
  width: 23.37%;
  height: 23.3%;
}

.template-i0l-20 .image-item-3 {
  top: 26.08%;
  left: 74.3%;
  width: 23.37%;
  height: 23.3%;
}

.template-i0l-20 .text-item-0 {
  top: 78.95%;
  left: 55.81%;
  width: 41.86%;
}

.template-i0l-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-0 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-0 .text-item-0 {
  top: 29.56%;
  left: 5.81%;
  width: 34.88%;
}

.template-i0r-1 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-1 .image-item-1 {
  top: 19.65%;
  left: 6.97%;
  width: 32.55%;
  height: 38.95%;
}

.template-i0r-1 .text-item-0 {
  top: 62.08%;
  left: 6.97%;
  width: 32.55%;
}

.template-i0r-2 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-2 .image-item-1 {
  top: 19.65%;
  left: 2.9%;
  width: 40.69%;
  height: 38.95%;
}

.template-i0r-2 .text-item-0 {
  top: 62.08%;
  left: 2.79%;
  width: 40.69%;
}

.template-i0r-3 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-3 .image-item-1 {
  top: 22.78%;
  left: 6.97%;
  width: 32.55%;
  height: 32.34%;
}

.template-i0r-3 .text-item-0 {
  top: 58.78%;
  left: 6.97%;
  width: 32.55%;
}

.template-i0r-4 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-4 .image-item-1 {
  top: 22.78%;
  left: 2.9%;
  width: 40.69%;
  height: 32.34%;
}

.template-i0r-4 .text-item-0 {
  top: 58.78%;
  left: 2.9%;
  width: 40.69%;
}

.template-i0r-5 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-5 .image-item-1 {
  top: 20%;
  left: 10.46%;
  width: 25.58%;
  height: 38.26%;
}

.template-i0r-5 .text-item-0 {
  top: 61.73%;
  left: 10.34%;
  width: 25.58%;
}

.template-i0r-6 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-6 .image-item-1 {
  top: 14.78%;
  left: 6.97%;
  width: 32.55%;
  height: 48.69%;
}

.template-i0r-6 .text-item-0 {
  top: 66.95%;
  left: 6.86%;
  width: 32.55%;
}

.template-i0r-7 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-7 .image-item-1 {
  top: 8.69%;
  left: 2.9%;
  width: 40.69%;
  height: 60.86%;
}

.template-i0r-7 .text-item-0 {
  top: 73.04%;
  left: 2.9%;
  width: 40.69%;
}

.template-i0r-8 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-8 .image-item-1 {
  top: 25.56%;
  left: 6.97%;
  width: 32.55%;
  height: 27.3%;
}

.template-i0r-8 .text-item-0 {
  top: 56.52%;
  left: 6.97%;
  width: 32.55%;
}

.template-i0r-9 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-9 .image-item-1 {
  top: 22.43%;
  left: 2.9%;
  width: 40.69%;
  height: 34.08%;
}

.template-i0r-9 .image-item-2 {
  top: 25.56%;
  left: 6.97%;
  width: 32.55%;
  height: 27.3%;
}

.template-i0r-9 .text-item-0 {
  top: 60%;
  left: 2.9%;
  width: 40.69%;
}

.template-i0r-10 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-10 .image-item-1 {
  top: 17.73%;
  left: 11.51%;
  width: 23.25%;
  height: 43.47%;
}

.template-i0r-10 .text-item-0 {
  top: 64.69%;
  left: 11.51%;
  width: 23.25%;
}

.template-i0r-11 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-11 .image-item-1 {
  top: 6.78%;
  left: 5.69%;
  width: 34.88%;
  height: 65.21%;
}

.template-i0r-11 .text-item-0 {
  top: 75.47%;
  left: 5.69%;
  width: 35%;
}

.template-i0r-12 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-12 .image-item-1 {
  top: 10.78%;
  left: 10.46%;
  width: 25.58%;
  height: 57.39%;
}

.template-i0r-12 .text-item-0 {
  top: 71.65%;
  left: 10.46%;
  width: 25.58%;
}

.template-i0r-13-a .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-a .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-a .image-item-2 {
  top: 47.47%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-13-a .text-item-0 {
  top: 47.47%;
  left: 2.32%;
  width: 18.48%;
}

.template-i0r-13-b .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-b .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-b .image-item-2 {
  top: 47.47%;
  left: 0%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-13-b .image-item-3 {
  top: 47.47%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-13-b .text-item-0 {
  top: 75.65%;
  left: 0%;
  width: 44.18%;
}

.template-i0r-13-c .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-c .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-c .image-item-2 {
  top: 47.47%;
  left: 23.25%;
  width: 20.93%;
  height: 31.13%;
}

.template-i0r-13-c .text-item-0 {
  top: 47.47%;
  left: 2.32%;
  width: 18.6%;
}

.template-i0r-13-d .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-d .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-d .image-item-2 {
  top: 47.47%;
  left: 23.25%;
  width: 20.93%;
  height: 31.13%;
}

.template-i0r-13-d .image-item-3 {
  top: 47.47%;
  left: 0%;
  width: 20.81%;
  height: 31.13%;
}

.template-i0r-13-d .text-item-0 {
  top: 82.26%;
  left: 2.32%;
  width: 41.86%;
}

.template-i0r-13-e .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-e .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-e .image-item-2 {
  top: 47.47%;
  left: 23.02%;
  width: 21.04%;
  height: 39.47%;
}

.template-i0r-13-e .text-item-0 {
  top: 47.47%;
  left: 2.32%;
  width: 18.6%;
}

.template-i0r-13-g .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-g .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-g .image-item-2 {
  top: 47.47%;
  left: 23.02%;
  width: 21.16%;
  height: 47.47%;
}

.template-i0r-13-g .text-item-0 {
  top: 47.47%;
  left: 2.32%;
  width: 18.6%;
}

.template-i0r-13-h .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-h .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-h .image-item-2 {
  top: 47.47%;
  left: 0%;
  width: 21.16%;
  height: 47.47%;
}

.template-i0r-13-h .image-item-3 {
  top: 47.47%;
  left: 23.02%;
  width: 21.16%;
  height: 47.47%;
}

.template-i0r-13-i .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-i .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-i .image-item-2 {
  top: 47.47%;
  left: 6.04%;
  width: 38.02%;
  height: 45.56%;
}

.template-i0r-13-j .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-j .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-j .image-item-2 {
  top: 47.47%;
  left: 9.3%;
  width: 34.88%;
  height: 34.78%;
}

.template-i0r-13-k .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-k .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-k .image-item-2 {
  top: 47.47%;
  left: 13.72%;
  width: 30.46%;
  height: 45.56%;
}

.template-i0r-13 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13 .text-item-0 {
  top: 47.47%;
  left: 2.32%;
  width: 41.86%;
}

.template-i0r-14-a .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-a .image-item-1 {
  top: 28.34%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-a .image-item-2 {
  top: 0%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-14-a .text-item-0 {
  top: 75.82%;
  left: 2.32%;
  width: 41.74%;
}

.template-i0r-14-b .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-b .image-item-1 {
  top: 28.34%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-b .image-item-2 {
  top: 0%;
  left: 0%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-14-b .image-item-3 {
  top: 0%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-14-b .text-item-0 {
  top: 75.82%;
  left: 2.32%;
  width: 41.74%;
}

.template-i0r-14-c .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-c .image-item-1 {
  top: 35.65%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-c .image-item-2 {
  top: 0%;
  left: 22.67%;
  width: 21.51%;
  height: 32.17%;
}

.template-i0r-14-c .text-item-0 {
  top: 83.13%;
  left: 2.32%;
  width: 41.74%;
}

.template-i0r-14-d .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-d .image-item-1 {
  top: 35.65%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-d .image-item-2 {
  top: 0%;
  left: 0%;
  width: 21.51%;
  height: 32.17%;
}

.template-i0r-14-d .image-item-3 {
  top: 0%;
  left: 22.67%;
  width: 21.51%;
  height: 32.17%;
}

.template-i0r-14-d .text-item-0 {
  top: 83.13%;
  left: 2.32%;
  width: 41.74%;
}

.template-i0r-14-e .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-e .image-item-1 {
  top: 52.17%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-e .image-item-2 {
  top: 9.91%;
  left: 23.37%;
  width: 20.69%;
  height: 38.78%;
}

.template-i0r-14-e .text-item-0 {
  top: 23.13%;
  left: 2.32%;
  width: 19.06%;
}

.template-i0r-14-f .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-f .image-item-1 {
  top: 52.17%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-f .image-item-2 {
  top: 9.91%;
  left: 0%;
  width: 20.69%;
  height: 38.78%;
}

.template-i0r-14-f .image-item-3 {
  top: 9.91%;
  left: 23.37%;
  width: 20.69%;
  height: 38.78%;
}

.template-i0r-14-g .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-g .image-item-1 {
  top: 51.13%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-g .image-item-2 {
  top: 0%;
  left: 22.9%;
  width: 21.27%;
  height: 47.65%;
}

.template-i0r-14-g .text-item-0 {
  top: 22.26%;
  left: 2.32%;
  width: 19.06%;
}

.template-i0r-14-h .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-h .image-item-1 {
  top: 51.13%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-h .image-item-2 {
  top: 0%;
  left: 0%;
  width: 21.27%;
  height: 47.65%;
}

.template-i0r-14-h .image-item-3 {
  top: 0%;
  left: 22.9%;
  width: 21.27%;
  height: 47.65%;
}

.template-i0r-14-i .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-i .image-item-1 {
  top: 55.82%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-i .image-item-2 {
  top: 6.95%;
  left: 6.04%;
  width: 38.02%;
  height: 45.56%;
}

.template-i0r-14-j .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-j .image-item-1 {
  top: 55.82%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-j .image-item-2 {
  top: 17.56%;
  left: 9.3%;
  width: 34.88%;
  height: 34.78%;
}

.template-i0r-14-k .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-k .image-item-1 {
  top: 55.82%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14-k .image-item-2 {
  top: 6.78%;
  left: 13.72%;
  width: 30.46%;
  height: 45.56%;
}

.template-i0r-14 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14 .image-item-1 {
  top: 28.34%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-14 .text-item-0 {
  top: 75.82%;
  left: 2.32%;
  width: 41.74%;
}

.template-i0r-15-a .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-15-a .image-item-1 {
  top: 8.86%;
  left: 22.67%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0r-15-a .image-item-2 {
  top: 50.78%;
  left: 0%;
  width: 21.39%;
  height: 40%;
}

.template-i0r-15-a .image-item-3 {
  top: 50.78%;
  left: 22.67%;
  width: 21.39%;
  height: 40%;
}

.template-i0r-15-a .text-item-0 {
  top: 22.08%;
  left: 2.32%;
  width: 19.18%;
}

.template-i0r-15-b .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-15-b .image-item-1 {
  top: 8.86%;
  left: 0%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0r-15-b .image-item-2 {
  top: 8.86%;
  left: 22.67%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0r-15-b .image-item-3 {
  top: 50.78%;
  left: 22.67%;
  width: 21.39%;
  height: 40%;
}

.template-i0r-15-b .text-item-0 {
  top: 49.04%;
  left: 2.32%;
  width: 19.18%;
}

.template-i0r-15 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-15 .image-item-1 {
  top: 8.86%;
  left: 0%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0r-15 .image-item-2 {
  top: 50.78%;
  left: 0%;
  width: 21.39%;
  height: 40%;
}

.template-i0r-15 .image-item-3 {
  top: 8.86%;
  left: 22.67%;
  width: 21.39%;
  height: 40.17%;
}

.template-i0r-15 .image-item-4 {
  top: 50.78%;
  left: 22.67%;
  width: 21.39%;
  height: 40%;
}

.template-i0r-16-a .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-16-a .image-item-1 {
  top: 50.78%;
  left: 0%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16-a .image-item-2 {
  top: 0%;
  left: 23.25%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16-a .image-item-3 {
  top: 50.78%;
  left: 23.25%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16-a .text-item-0 {
  top: 22.08%;
  left: 2.32%;
  width: 19.53%;
}

.template-i0r-16-b .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-16-b .image-item-1 {
  top: 0%;
  left: 0%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16-b .image-item-2 {
  top: 0%;
  left: 23.25%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16-b .image-item-3 {
  top: 50.78%;
  left: 23.25%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16-b .text-item-0 {
  top: 49.04%;
  left: 2.32%;
  width: 19.53%;
}

.template-i0r-16 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-16 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16 .image-item-2 {
  top: 50.78%;
  left: 0%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16 .image-item-3 {
  top: 0%;
  left: 23.25%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-16 .image-item-4 {
  top: 50.78%;
  left: 23.25%;
  width: 21.86%;
  height: 49.04%;
}

.template-i0r-17 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-17 .image-item-1 {
  top: 0%;
  left: 23.25%;
  width: 20.93%;
  height: 31.3%;
}

.template-i0r-17 .image-item-2 {
  top: 34.78%;
  left: 23.25%;
  width: 20.93%;
  height: 31.3%;
}

.template-i0r-17 .image-item-3 {
  top: 0%;
  left: 0%;
  width: 20.81%;
  height: 31.3%;
}

.template-i0r-17 .image-item-4 {
  top: 34.78%;
  left: 0%;
  width: 20.81%;
  height: 31.3%;
}

.template-i0r-17 .text-item-0 {
  top: 69.56%;
  left: 2.32%;
  width: 41.86%;
}

.template-i0r-18 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-18 .image-item-1 {
  top: 3.47%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-18 .image-item-2 {
  top: 31.82%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-18 .image-item-3 {
  top: 3.47%;
  left: 0%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0r-18 .image-item-4 {
  top: 31.82%;
  left: 0%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0r-18 .text-item-0 {
  top: 60.17%;
  left: 2.32%;
  width: 41.86%;
}

.template-i0r-19 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-19 .image-item-1 {
  top: 3.47%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-19 .image-item-2 {
  top: 31.82%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-19 .image-item-3 {
  top: 60.17%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-19 .image-item-4 {
  top: 3.47%;
  left: 0%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0r-19 .image-item-5 {
  top: 31.82%;
  left: 0%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0r-19 .text-item-0 {
  top: 56.69%;
  left: 2.32%;
  width: 18.6%;
}

.template-i0r-20 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-20 .image-item-1 {
  top: 26.08%;
  left: 2.32%;
  width: 23.37%;
  height: 23.3%;
}

.template-i0r-20 .image-item-2 {
  top: 52.17%;
  left: 20.81%;
  width: 23.37%;
  height: 23.3%;
}

.template-i0r-20 .image-item-3 {
  top: 0%;
  left: 20.81%;
  width: 23.37%;
  height: 23.3%;
}

.template-i0r-20 .text-item-0 {
  top: 78.95%;
  left: 2.32%;
  width: 41.86%;
}

.template-i0r-master .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-ior-13-f .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-ior-13-f .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-ior-13-f .image-item-2 {
  top: 47.47%;
  left: 0%;
  width: 21.04%;
  height: 39.47%;
}

.template-ior-13-f .image-item-3 {
  top: 47.47%;
  left: 23.02%;
  width: 21.04%;
  height: 39.47%;
}

.template-j-master .image-item-0 {
  top: 0%;
  left: 21.51%;
  width: 56.86%;
  height: 100%;
}

.template-j0-1 .image-item-0 {
  top: 0%;
  left: 21.51%;
  width: 56.86%;
  height: 100%;
}

.template-j0-1 .image-item-1 {
  top: 3.47%;
  left: 0%;
  width: 19.18%;
  height: 22.95%;
}

.template-j0-1 .image-item-2 {
  top: 3.47%;
  left: 80.81%;
  width: 19.18%;
  height: 22.95%;
}

.template-j0-1 .text-item-0 {
  top: 29.91%;
  left: 80.81%;
  width: 16.86%;
}

.template-j0-2 .image-item-0 {
  top: 0%;
  left: 21.51%;
  width: 56.86%;
  height: 100%;
}

.template-j0-2 .image-item-1 {
  top: 3.47%;
  left: 0%;
  width: 19.18%;
  height: 28.69%;
}

.template-j0-2 .image-item-2 {
  top: 3.47%;
  left: 80.81%;
  width: 19.18%;
  height: 28.69%;
}

.template-j0-2 .text-item-0 {
  top: 35.65%;
  left: 80.81%;
  width: 16.86%;
}

.template-j0-3 .image-item-0 {
  top: 0%;
  left: 21.51%;
  width: 56.86%;
  height: 100%;
}

.template-j0-3 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 19.18%;
  height: 36%;
}

.template-j0-3 .image-item-2 {
  top: 0%;
  left: 80.81%;
  width: 19.18%;
  height: 36%;
}

.template-j0-3 .text-item-0 {
  top: 39.47%;
  left: 80.81%;
  width: 16.86%;
}

.template-j0-4 .image-item-0 {
  top: 0%;
  left: 21.51%;
  width: 56.86%;
  height: 100%;
}

.template-j0-4 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 19.41%;
  height: 43.47%;
}

.template-j0-4 .image-item-2 {
  top: 0%;
  left: 80.46%;
  width: 19.41%;
  height: 43.47%;
}

.template-j0-4 .text-item-0 {
  top: 46.95%;
  left: 80.46%;
  width: 17.09%;
}

.template-j0-master .image-item-0 {
  top: 0%;
  left: 21.51%;
  width: 56.86%;
  height: 100%;
}

.template-j0-master .text-item-0 {
  top: 29.56%;
  left: 80.81%;
  width: 16.86%;
}

.template-j0l-0 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-0 .text-item-0 {
  top: 29.56%;
  left: 62.79%;
  width: 31.39%;
}

.template-j0l-1-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-1-a .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 32.55%;
  height: 38.95%;
}

.template-j0l-1-a .text-item-0 {
  top: 49.39%;
  left: 62.2%;
  width: 32.55%;
}

.template-j0l-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-1 .image-item-1 {
  top: 19.65%;
  left: 62.2%;
  width: 32.55%;
  height: 38.95%;
}

.template-j0l-1 .text-item-0 {
  top: 62.08%;
  left: 62.2%;
  width: 32.55%;
}

.template-j0l-2 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-2 .image-item-1 {
  top: 18.26%;
  left: 61.04%;
  width: 34.88%;
  height: 41.73%;
}

.template-j0l-2 .text-item-0 {
  top: 63.47%;
  left: 61.04%;
  width: 34.88%;
}

.template-j0l-3 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-3 .image-item-1 {
  top: 22.78%;
  left: 62.2%;
  width: 32.55%;
  height: 32.34%;
}

.template-j0l-3 .text-item-0 {
  top: 58.78%;
  left: 62.2%;
  width: 32.55%;
}

.template-j0l-4 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-4 .image-item-1 {
  top: 18.78%;
  left: 59.18%;
  width: 38.48%;
  height: 38.26%;
}

.template-j0l-4 .text-item-0 {
  top: 60.69%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-5 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-5 .image-item-1 {
  top: 20%;
  left: 65.69%;
  width: 25.58%;
  height: 38.26%;
}

.template-j0l-5 .text-item-0 {
  top: 61.73%;
  left: 65.69%;
  width: 25.58%;
}

.template-j0l-6 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-6 .image-item-1 {
  top: 14.78%;
  left: 62.2%;
  width: 32.55%;
  height: 48.69%;
}

.template-j0l-6 .text-item-0 {
  top: 66.95%;
  left: 62.2%;
  width: 32.55%;
}

.template-j0l-7 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-7 .image-item-1 {
  top: 10.26%;
  left: 59.18%;
  width: 38.48%;
  height: 57.56%;
}

.template-j0l-7 .text-item-0 {
  top: 71.3%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-8 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-8 .image-item-1 {
  top: 25.56%;
  left: 62.2%;
  width: 32.55%;
  height: 27.3%;
}

.template-j0l-8 .text-item-0 {
  top: 56.52%;
  left: 62.2%;
  width: 32.55%;
}

.template-j0l-9 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-9 .image-item-1 {
  top: 23.13%;
  left: 59.18%;
  width: 38.48%;
  height: 32.34%;
}

.template-j0l-9 .text-item-0 {
  top: 58.95%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-10 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-10 .image-item-1 {
  top: 17.73%;
  left: 66.86%;
  width: 23.25%;
  height: 43.47%;
}

.template-j0l-10 .text-item-0 {
  top: 64.69%;
  left: 66.86%;
  width: 23.25%;
}

.template-j0l-11 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-11 .image-item-1 {
  top: 6.78%;
  left: 61.04%;
  width: 34.88%;
  height: 65.21%;
}

.template-j0l-11 .text-item-0 {
  top: 75.47%;
  left: 61.04%;
  width: 34.88%;
}

.template-j0l-12 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-12 .image-item-1 {
  top: 10.08%;
  left: 65.69%;
  width: 25.58%;
  height: 57.39%;
}

.template-j0l-12 .text-item-0 {
  top: 70.95%;
  left: 65.69%;
  width: 25.58%;
}

.template-j0l-13-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-a .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-a .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-13-a .text-item-0 {
  top: 44%;
  left: 80.93%;
  width: 16.74%;
}

.template-j0l-13-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-b .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-b .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-13-b .image-item-3 {
  top: 44.17%;
  left: 80.58%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-13-b .text-item-0 {
  top: 70.6%;
  left: 59.06%;
  width: 38.48%;
}

.template-j0l-13-c .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-c .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-c .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 19.3%;
  height: 28.86%;
}

.template-j0l-13-c .text-item-0 {
  top: 44%;
  left: 80.81%;
  width: 16.86%;
}

.template-j0l-13-d .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-d .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-d .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 19.3%;
  height: 28.86%;
}

.template-j0l-13-d .image-item-3 {
  top: 44.17%;
  left: 80.69%;
  width: 19.3%;
  height: 28.86%;
}

.template-j0l-13-d .text-item-0 {
  top: 76.52%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-13-e .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-e .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-e .image-item-2 {
  top: 44%;
  left: 59.18%;
  width: 19.53%;
  height: 36.52%;
}

.template-j0l-13-e .text-item-0 {
  top: 44%;
  left: 81.04%;
  width: 16.62%;
}

.template-j0l-13-f .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-f .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-f .image-item-2 {
  top: 44.17%;
  left: 80.46%;
  width: 19.53%;
  height: 36.52%;
}

.template-j0l-13-f .image-item-3 {
  top: 44%;
  left: 59.18%;
  width: 19.53%;
  height: 36.52%;
}

.template-j0l-13-g .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-g .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-g .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-13-g .text-item-0 {
  top: 44%;
  left: 81.04%;
  width: 16.62%;
}

.template-j0l-13-h .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-h .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-h .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-13-h .image-item-3 {
  top: 44.17%;
  left: 80.46%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-13-i .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-i .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-i .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 38.02%;
  height: 45.56%;
}

.template-j0l-13-j .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-j .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-j .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 34.88%;
  height: 34.78%;
}

.template-j0l-13-k .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-k .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-k .image-item-2 {
  top: 44.17%;
  left: 59.18%;
  width: 30.46%;
  height: 45.56%;
}

.template-j0l-13-l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-l .image-item-1 {
  top: 6.78%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-l .image-item-2 {
  top: 51.13%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13-m .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13-m .image-item-1 {
  top: 5.91%;
  left: 61.27%;
  width: 34.41%;
  height: 41.21%;
}

.template-j0l-13-m .image-item-2 {
  top: 49.56%;
  left: 61.27%;
  width: 27.9%;
  height: 24%;
}

.template-j0l-13-m .text-item-0 {
  top: 77.04%;
  left: 61.27%;
  width: 27.9%;
}

.template-j0l-13 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-13 .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-13 .text-item-0 {
  top: 44%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-14-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-a .image-item-1 {
  top: 26.43%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-a .image-item-2 {
  top: 0%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-14-a .text-item-0 {
  top: 70.43%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-14-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-b .image-item-1 {
  top: 26.43%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-b .image-item-2 {
  top: 0%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-14-b .image-item-3 {
  top: 0%;
  left: 80.58%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-14-b .text-item-0 {
  top: 70.43%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-14-c .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-c .image-item-1 {
  top: 33.04%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-c .image-item-2 {
  top: 0%;
  left: 59.18%;
  width: 19.76%;
  height: 29.39%;
}

.template-j0l-14-c .text-item-0 {
  top: 77.04%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-14-d .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-d .image-item-1 {
  top: 33.04%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-d .image-item-2 {
  top: 0%;
  left: 59.18%;
  width: 19.76%;
  height: 29.39%;
}

.template-j0l-14-d .image-item-3 {
  top: 0%;
  left: 80.23%;
  width: 19.76%;
  height: 29.39%;
}

.template-j0l-14-d .text-item-0 {
  top: 77.04%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-14-e .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-e .image-item-1 {
  top: 55.82%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-e .image-item-2 {
  top: 16.52%;
  left: 59.18%;
  width: 19.06%;
  height: 35.82%;
}

.template-j0l-14-e .text-item-0 {
  top: 24%;
  left: 80.58%;
  width: 17.09%;
}

.template-j0l-14-f .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-f .image-item-1 {
  top: 55.82%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-f .image-item-2 {
  top: 16.34%;
  left: 80.81%;
  width: 19.06%;
  height: 35.65%;
}

.template-j0l-14-f .image-item-3 {
  top: 16.52%;
  left: 59.18%;
  width: 19.06%;
  height: 35.82%;
}

.template-j0l-14-g .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-g .image-item-1 {
  top: 47.47%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-g .image-item-2 {
  top: 0%;
  left: 59.18%;
  width: 19.65%;
  height: 44%;
}

.template-j0l-14-g .text-item-0 {
  top: 11.65%;
  left: 81.16%;
  width: 16.51%;
}

.template-j0l-14-h .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-h .image-item-1 {
  top: 47.47%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-h .image-item-2 {
  top: 0%;
  left: 59.18%;
  width: 19.65%;
  height: 44%;
}

.template-j0l-14-h .image-item-3 {
  top: 0%;
  left: 80.34%;
  width: 19.65%;
  height: 44%;
}

.template-j0l-14-i .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-i .image-item-1 {
  top: 59.3%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-i .image-item-2 {
  top: 10.26%;
  left: 59.18%;
  width: 38.02%;
  height: 45.56%;
}

.template-j0l-14-j .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-j .image-item-1 {
  top: 59.3%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-j .image-item-2 {
  top: 21.04%;
  left: 59.18%;
  width: 34.88%;
  height: 34.78%;
}

.template-j0l-14-k .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14-k .image-item-1 {
  top: 59.3%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14-k .image-item-2 {
  top: 10.26%;
  left: 59.18%;
  width: 30.46%;
  height: 45.56%;
}

.template-j0l-14 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-14 .image-item-1 {
  top: 26.43%;
  left: 59.18%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0l-14 .text-item-0 {
  top: 70.43%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-15-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-15-a .image-item-1 {
  top: 12%;
  left: 59.18%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0l-15-a .image-item-2 {
  top: 50.95%;
  left: 59.18%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0l-15-a .image-item-3 {
  top: 50.95%;
  left: 80.23%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0l-15-a .text-item-0 {
  top: 19.13%;
  left: 80.23%;
  width: 17.32%;
}

.template-j0l-15-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-15-b .image-item-1 {
  top: 12%;
  left: 59.18%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0l-15-b .image-item-2 {
  top: 50.95%;
  left: 59.18%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0l-15-b .image-item-3 {
  top: 12%;
  left: 80.23%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0l-15-b .text-item-0 {
  top: 48.86%;
  left: 80.23%;
  width: 17.09%;
}

.template-j0l-15 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-15 .image-item-1 {
  top: 12%;
  left: 59.18%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0l-15 .image-item-2 {
  top: 50.95%;
  left: 59.18%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0l-15 .image-item-3 {
  top: 12%;
  left: 80.23%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0l-15 .image-item-4 {
  top: 50.95%;
  left: 80.23%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0l-16-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-16-a .image-item-1 {
  top: 4.69%;
  left: 59.06%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16-a .image-item-2 {
  top: 51.3%;
  left: 59.06%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16-a .image-item-3 {
  top: 51.3%;
  left: 80.46%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16-a .text-item-0 {
  top: 19.47%;
  left: 80.46%;
  width: 17.2%;
}

.template-j0l-16-b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-16-b .image-item-1 {
  top: 4.69%;
  left: 59.06%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16-b .image-item-2 {
  top: 4.69%;
  left: 80.46%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16-b .image-item-3 {
  top: 51.3%;
  left: 59.06%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16-b .text-item-0 {
  top: 48.52%;
  left: 80.46%;
  width: 17.2%;
}

.template-j0l-16 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-16 .image-item-1 {
  top: 4.69%;
  left: 59.06%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16 .image-item-2 {
  top: 4.69%;
  left: 80.46%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16 .image-item-3 {
  top: 51.3%;
  left: 59.06%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-16 .image-item-4 {
  top: 51.3%;
  left: 80.46%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0l-17 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-17 .image-item-1 {
  top: 0%;
  left: 59.18%;
  width: 19.18%;
  height: 28.69%;
}

.template-j0l-17 .image-item-2 {
  top: 0%;
  left: 80.81%;
  width: 19.18%;
  height: 28.69%;
}

.template-j0l-17 .image-item-3 {
  top: 32%;
  left: 59.18%;
  width: 19.18%;
  height: 28.52%;
}

.template-j0l-17 .image-item-4 {
  top: 32%;
  left: 80.81%;
  width: 19.18%;
  height: 28.52%;
}

.template-j0l-17 .text-item-0 {
  top: 64.17%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-18 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-18 .image-item-1 {
  top: 3.47%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-18 .image-item-2 {
  top: 29.39%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-18 .image-item-3 {
  top: 3.47%;
  left: 80.58%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-18 .image-item-4 {
  top: 29.39%;
  left: 80.58%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-18 .text-item-0 {
  top: 55.82%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-19 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-19 .image-item-1 {
  top: 3.47%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-19 .image-item-2 {
  top: 29.39%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-19 .image-item-3 {
  top: 55.3%;
  left: 59.18%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-19 .image-item-4 {
  top: 3.47%;
  left: 80.58%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-19 .image-item-5 {
  top: 29.39%;
  left: 80.58%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0l-19 .text-item-0 {
  top: 52.34%;
  left: 80.58%;
  width: 17.09%;
}

.template-j0l-20 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0l-20 .image-item-1 {
  top: 26.08%;
  left: 59.18%;
  width: 23.37%;
  height: 23.3%;
}

.template-j0l-20 .image-item-2 {
  top: 52.17%;
  left: 74.3%;
  width: 23.37%;
  height: 23.3%;
}

.template-j0l-20 .image-item-3 {
  top: 0%;
  left: 74.3%;
  width: 23.37%;
  height: 23.3%;
}

.template-j0l-20 .text-item-0 {
  top: 78.95%;
  left: 59.18%;
  width: 38.48%;
}

.template-j0l-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-0 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-0 .text-item-0 {
  top: 29.56%;
  left: 5.81%;
  width: 31.39%;
}

.template-j0r-1-a .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-1-a .image-item-1 {
  top: 6.95%;
  left: 5.23%;
  width: 32.55%;
  height: 38.95%;
}

.template-j0r-1-a .text-item-0 {
  top: 49.39%;
  left: 5.23%;
  width: 32.55%;
}

.template-j0r-1 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-1 .image-item-1 {
  top: 19.65%;
  left: 5.23%;
  width: 32.55%;
  height: 38.95%;
}

.template-j0r-1 .text-item-0 {
  top: 62.08%;
  left: 5.23%;
  width: 32.55%;
}

.template-j0r-3 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-3 .image-item-1 {
  top: 22.78%;
  left: 5.23%;
  width: 32.55%;
  height: 32.34%;
}

.template-j0r-3 .text-item-0 {
  top: 58.78%;
  left: 5.23%;
  width: 32.55%;
}

.template-j0r-4 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-4 .image-item-1 {
  top: 19.82%;
  left: 2.2%;
  width: 38.48%;
  height: 38.26%;
}

.template-j0r-4 .text-item-0 {
  top: 61.73%;
  left: 2.2%;
  width: 38.48%;
}

.template-j0r-5 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-5 .image-item-1 {
  top: 20%;
  left: 8.6%;
  width: 25.58%;
  height: 38.26%;
}

.template-j0r-5 .text-item-0 {
  top: 61.73%;
  left: 8.6%;
  width: 25.58%;
}

.template-j0r-6 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-6 .image-item-1 {
  top: 14.78%;
  left: 5.11%;
  width: 32.55%;
  height: 48.69%;
}

.template-j0r-6 .text-item-0 {
  top: 66.95%;
  left: 5.11%;
  width: 32.55%;
}

.template-j0r-7 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-7 .image-item-1 {
  top: 10.26%;
  left: 2.09%;
  width: 38.48%;
  height: 57.56%;
}

.template-j0r-7 .text-item-0 {
  top: 71.3%;
  left: 2.44%;
  width: 38.13%;
}

.template-j0r-8 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-8 .image-item-1 {
  top: 25.56%;
  left: 5.23%;
  width: 32.55%;
  height: 27.3%;
}

.template-j0r-8 .text-item-0 {
  top: 56.52%;
  left: 5.23%;
  width: 32.55%;
}

.template-j0r-9 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-9 .image-item-1 {
  top: 23.13%;
  left: 2.2%;
  width: 38.37%;
  height: 32.34%;
}

.template-j0r-9 .text-item-0 {
  top: 58.95%;
  left: 2.2%;
  width: 38.37%;
}

.template-j0r-10 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-10 .image-item-1 {
  top: 17.73%;
  left: 9.76%;
  width: 23.25%;
  height: 43.47%;
}

.template-j0r-10 .text-item-0 {
  top: 64.69%;
  left: 9.76%;
  width: 23.25%;
}

.template-j0r-11 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-11 .image-item-1 {
  top: 6.78%;
  left: 3.83%;
  width: 34.88%;
  height: 65.21%;
}

.template-j0r-11 .text-item-0 {
  top: 75.47%;
  left: 3.95%;
  width: 34.88%;
}

.template-j0r-12 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-12 .image-item-1 {
  top: 10.08%;
  left: 8.6%;
  width: 25.58%;
  height: 57.39%;
}

.template-j0r-12 .text-item-0 {
  top: 70.95%;
  left: 8.6%;
  width: 25.58%;
}

.template-j0r-13-a .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-a .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-a .image-item-2 {
  top: 44.17%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-13-a .text-item-0 {
  top: 44%;
  left: 2.2%;
  width: 16.74%;
}

.template-j0r-13-b .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-b .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-b .image-item-2 {
  top: 44.17%;
  left: 0%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-13-b .image-item-3 {
  top: 44.17%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-13-b .text-item-0 {
  top: 70.6%;
  left: 2.2%;
  width: 38.48%;
}

.template-j0r-13-c .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-c .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-c .image-item-2 {
  top: 44.17%;
  left: 21.51%;
  width: 19.3%;
  height: 28.86%;
}

.template-j0r-13-c .text-item-0 {
  top: 44%;
  left: 2.32%;
  width: 16.86%;
}

.template-j0r-13-d .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-d .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-d .image-item-2 {
  top: 44.17%;
  left: 0%;
  width: 19.3%;
  height: 28.86%;
}

.template-j0r-13-d .image-item-3 {
  top: 44.17%;
  left: 21.51%;
  width: 19.3%;
  height: 28.86%;
}

.template-j0r-13-d .text-item-0 {
  top: 76.52%;
  left: 2.2%;
  width: 38.48%;
}

.template-j0r-13-e .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-e .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-e .image-item-2 {
  top: 44%;
  left: 21.27%;
  width: 19.53%;
  height: 36.52%;
}

.template-j0r-13-e .text-item-0 {
  top: 44%;
  left: 2.2%;
  width: 16.62%;
}

.template-j0r-13-f .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-f .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-f .image-item-2 {
  top: 44%;
  left: 0%;
  width: 19.53%;
  height: 36.52%;
}

.template-j0r-13-f .image-item-3 {
  top: 44%;
  left: 21.27%;
  width: 19.53%;
  height: 36.52%;
}

.template-j0r-13-g .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-g .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-g .image-item-2 {
  top: 44.17%;
  left: 21.27%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-13-g .text-item-0 {
  top: 44%;
  left: 2.2%;
  width: 16.62%;
}

.template-j0r-13-h .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-h .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-h .image-item-2 {
  top: 44.17%;
  left: 0%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-13-h .image-item-3 {
  top: 44.17%;
  left: 21.27%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-13-i .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-i .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-i .image-item-2 {
  top: 44.17%;
  left: 2.67%;
  width: 38.02%;
  height: 45.56%;
}

.template-j0r-13-j .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-j .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-j .image-item-2 {
  top: 44.17%;
  left: 0%;
  width: 34.88%;
  height: 34.78%;
}

.template-j0r-13-k .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-k .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-k .image-item-2 {
  top: 44.17%;
  left: 0%;
  width: 30.46%;
  height: 45.56%;
}

.template-j0r-13-l .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13-l .image-item-1 {
  top: 6.78%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13-l .image-item-2 {
  top: 51.13%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-13 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-13 .text-item-0 {
  top: 44%;
  left: 2.2%;
  width: 38.48%;
}

.template-j0r-14-a .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-a .image-item-1 {
  top: 26.43%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-a .image-item-2 {
  top: 0%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-14-a .text-item-0 {
  top: 70.43%;
  left: 2.2%;
  width: 38.48%;
}

.template-j0r-14-b .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-b .image-item-1 {
  top: 26.43%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-b .image-item-2 {
  top: 0%;
  left: 0%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-14-b .image-item-3 {
  top: 0%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-14-b .text-item-0 {
  top: 70.43%;
  left: 2.32%;
  width: 38.48%;
}

.template-j0r-14-c .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-c .image-item-1 {
  top: 33.04%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-c .image-item-2 {
  top: 0%;
  left: 21.04%;
  width: 19.76%;
  height: 29.39%;
}

.template-j0r-14-c .text-item-0 {
  top: 77.04%;
  left: 2.32%;
  width: 38.48%;
}

.template-j0r-14-d .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-d .image-item-1 {
  top: 33.04%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-d .image-item-2 {
  top: 0%;
  left: 0%;
  width: 19.76%;
  height: 29.39%;
}

.template-j0r-14-d .image-item-3 {
  top: 0%;
  left: 21.04%;
  width: 19.76%;
  height: 29.39%;
}

.template-j0r-14-d .text-item-0 {
  top: 77.04%;
  left: 2.32%;
  width: 38.48%;
}

.template-j0r-14-e .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-e .image-item-1 {
  top: 55.82%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-e .image-item-2 {
  top: 16.52%;
  left: 21.62%;
  width: 19.06%;
  height: 35.82%;
}

.template-j0r-14-e .text-item-0 {
  top: 24%;
  left: 2.32%;
  width: 17.09%;
}

.template-j0r-14-f .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-f .image-item-1 {
  top: 55.82%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-f .image-item-2 {
  top: 16.34%;
  left: 21.62%;
  width: 19.06%;
  height: 35.65%;
}

.template-j0r-14-f .image-item-3 {
  top: 16.52%;
  left: 0%;
  width: 19.06%;
  height: 35.82%;
}

.template-j0r-14-g .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-g .image-item-1 {
  top: 47.47%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-g .image-item-2 {
  top: 0%;
  left: 21.16%;
  width: 19.65%;
  height: 44%;
}

.template-j0r-14-g .text-item-0 {
  top: 11.65%;
  left: 2.32%;
  width: 16.51%;
}

.template-j0r-14-h .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-h .image-item-1 {
  top: 47.47%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-h .image-item-2 {
  top: 0%;
  left: 0%;
  width: 19.65%;
  height: 44%;
}

.template-j0r-14-h .image-item-3 {
  top: 0%;
  left: 21.16%;
  width: 19.65%;
  height: 44%;
}

.template-j0r-14-i .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-i .image-item-1 {
  top: 59.3%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-i .image-item-2 {
  top: 10.26%;
  left: 2.67%;
  width: 38.02%;
  height: 45.56%;
}

.template-j0r-14-j .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-j .image-item-1 {
  top: 59.3%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-j .image-item-2 {
  top: 21.04%;
  left: 5.93%;
  width: 34.88%;
  height: 34.78%;
}

.template-j0r-14-k .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-k .image-item-1 {
  top: 59.3%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14-k .image-item-2 {
  top: 10.26%;
  left: 10.34%;
  width: 30.46%;
  height: 45.56%;
}

.template-j0r-14 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14 .image-item-1 {
  top: 26.43%;
  left: 0%;
  width: 40.81%;
  height: 40.52%;
}

.template-j0r-14 .text-item-0 {
  top: 70.43%;
  left: 2.32%;
  width: 38.48%;
}

.template-j0r-15-a .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-15-a .image-item-1 {
  top: 12%;
  left: 21.04%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0r-15-a .image-item-2 {
  top: 50.95%;
  left: 0%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0r-15-a .image-item-3 {
  top: 50.95%;
  left: 21.04%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0r-15-a .text-item-0 {
  top: 19.13%;
  left: 2.32%;
  width: 17.32%;
}

.template-j0r-15-b .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-15-b .image-item-1 {
  top: 12%;
  left: 0%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0r-15-b .image-item-2 {
  top: 50.95%;
  left: 21.04%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0r-15-b .image-item-3 {
  top: 12%;
  left: 21.04%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0r-15-b .text-item-0 {
  top: 48.86%;
  left: 2.32%;
  width: 17.09%;
}

.template-j0r-15 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-15 .image-item-1 {
  top: 12%;
  left: 0%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0r-15 .image-item-2 {
  top: 50.95%;
  left: 0%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0r-15 .image-item-3 {
  top: 12%;
  left: 21.04%;
  width: 19.65%;
  height: 36.69%;
}

.template-j0r-15 .image-item-4 {
  top: 50.95%;
  left: 21.04%;
  width: 19.65%;
  height: 36.86%;
}

.template-j0r-16-a .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-16-a .image-item-1 {
  top: 4.69%;
  left: 21.16%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-16-a .image-item-2 {
  top: 51.3%;
  left: 21.27%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-16-a .image-item-3 {
  top: 51.3%;
  left: 0%;
  width: 19.41%;
  height: 43.82%;
}

.template-j0r-16-a .text-item-0 {
  top: 19.47%;
  left: 2.32%;
  width: 17.2%;
}

.template-j0r-16-b .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-16-b .image-item-1 {
  top: 4.69%;
  left: 21.27%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-16-b .image-item-2 {
  top: 51.3%;
  left: 21.16%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-16-b .image-item-3 {
  top: 4.69%;
  left: 0%;
  width: 19.41%;
  height: 43.82%;
}

.template-j0r-16-b .text-item-0 {
  top: 48.52%;
  left: 2.32%;
  width: 17.2%;
}

.template-j0r-16 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-16 .image-item-1 {
  top: 4.69%;
  left: 21.27%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-16 .image-item-2 {
  top: 51.3%;
  left: 21.27%;
  width: 19.53%;
  height: 43.82%;
}

.template-j0r-16 .image-item-3 {
  top: 4.69%;
  left: 0%;
  width: 19.41%;
  height: 43.82%;
}

.template-j0r-16 .image-item-4 {
  top: 51.3%;
  left: 0%;
  width: 19.41%;
  height: 43.82%;
}

.template-j0r-17 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-17 .image-item-1 {
  top: 0%;
  left: 21.62%;
  width: 19.18%;
  height: 28.69%;
}

.template-j0r-17 .image-item-2 {
  top: 32%;
  left: 21.62%;
  width: 19.18%;
  height: 28.52%;
}

.template-j0r-17 .image-item-3 {
  top: 0%;
  left: 0%;
  width: 19.06%;
  height: 28.69%;
}

.template-j0r-17 .image-item-4 {
  top: 32%;
  left: 0%;
  width: 19.06%;
  height: 28.52%;
}

.template-j0r-17 .text-item-0 {
  top: 64.17%;
  left: 2.32%;
  width: 38.48%;
}

.template-j0r-18 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-18 .image-item-1 {
  top: 3.47%;
  left: 0%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-18 .image-item-2 {
  top: 29.39%;
  left: 0%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-18 .image-item-3 {
  top: 3.47%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-18 .image-item-4 {
  top: 29.39%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-18 .text-item-0 {
  top: 55.82%;
  left: 2.32%;
  width: 38.48%;
}

.template-j0r-19 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-19 .image-item-1 {
  top: 3.47%;
  left: 0%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-19 .image-item-2 {
  top: 29.39%;
  left: 0%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-19 .image-item-3 {
  top: 3.47%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-19 .image-item-4 {
  top: 29.39%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-19 .image-item-5 {
  top: 55.3%;
  left: 21.39%;
  width: 19.41%;
  height: 22.95%;
}

.template-j0r-19 .text-item-0 {
  top: 52.34%;
  left: 2.32%;
  width: 17.09%;
}

.template-j0r-20 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-20 .image-item-1 {
  top: 26.08%;
  left: 0%;
  width: 23.37%;
  height: 23.3%;
}

.template-j0r-20 .image-item-2 {
  top: 52.17%;
  left: 17.44%;
  width: 23.37%;
  height: 23.3%;
}

.template-j0r-20 .image-item-3 {
  top: 0%;
  left: 17.44%;
  width: 23.37%;
  height: 23.3%;
}

.template-j0r-20 .text-item-0 {
  top: 78.95%;
  left: 2.32%;
  width: 38.48%;
}

.template-j0r-master .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-jor-2 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-jor-2 .image-item-1 {
  top: 18.26%;
  left: 4.06%;
  width: 34.88%;
  height: 41.73%;
}

.template-jor-2 .text-item-0 {
  top: 63.47%;
  left: 4.06%;
  width: 34.88%;
}

.template-k-master .image-item-0 {
  top: 6.95%;
  left: 20%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0-1 .image-item-0 {
  top: 6.95%;
  left: 20%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0-1 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 21.56%;
}

.template-k0-1 .image-item-2 {
  top: 6.95%;
  left: 81.97%;
  width: 18.02%;
  height: 21.56%;
}

.template-k0-1 .text-item-0 {
  top: 32%;
  left: 81.97%;
  width: 15.69%;
}

.template-k0-2 .image-item-0 {
  top: 6.95%;
  left: 20%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0-2 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 26.95%;
}

.template-k0-2 .image-item-2 {
  top: 6.95%;
  left: 81.97%;
  width: 18.02%;
  height: 26.95%;
}

.template-k0-2 .text-item-0 {
  top: 37.39%;
  left: 81.97%;
  width: 15.69%;
}

.template-k0-3 .image-item-0 {
  top: 6.95%;
  left: 20%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0-3 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 33.73%;
}

.template-k0-3 .image-item-2 {
  top: 6.95%;
  left: 81.97%;
  width: 18.02%;
  height: 33.73%;
}

.template-k0-3 .text-item-0 {
  top: 44.17%;
  left: 81.97%;
  width: 15.69%;
}

.template-k0-4 .image-item-0 {
  top: 6.95%;
  left: 20%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0-4 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 17.9%;
  height: 40.17%;
}

.template-k0-4 .image-item-2 {
  top: 6.95%;
  left: 81.97%;
  width: 17.9%;
  height: 40.17%;
}

.template-k0-4 .text-item-0 {
  top: 50.6%;
  left: 81.97%;
  width: 15.69%;
}

.template-k0-master .image-item-0 {
  top: 6.95%;
  left: 20%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0-master .text-item-0 {
  top: 10.43%;
  left: 82.2%;
  width: 15.46%;
}

.template-k0l-0 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-0 .text-item-0 {
  top: 29.56%;
  left: 65.69%;
  width: 28.48%;
}

.template-k0l-1 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-1 .image-item-1 {
  top: 19.65%;
  left: 63.72%;
  width: 32.55%;
  height: 38.95%;
}

.template-k0l-1 .text-item-0 {
  top: 62.08%;
  left: 63.72%;
  width: 32.55%;
}

.template-k0l-2 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-2 .image-item-1 {
  top: 18.26%;
  left: 62.55%;
  width: 34.88%;
  height: 41.73%;
}

.template-k0l-2 .text-item-0 {
  top: 63.47%;
  left: 62.55%;
  width: 34.88%;
}

.template-k0l-3-a .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-3-a .image-item-1 {
  top: 13.91%;
  left: 63.72%;
  width: 32.55%;
  height: 32.34%;
}

.template-k0l-3-a .text-item-0 {
  top: 49.73%;
  left: 63.72%;
  width: 32.55%;
}

.template-k0l-3-b .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-3-b .image-item-1 {
  top: 6.95%;
  left: 63.72%;
  width: 32.55%;
  height: 32.34%;
}

.template-k0l-3-b .text-item-0 {
  top: 42.78%;
  left: 63.72%;
  width: 32.55%;
}

.template-k0l-3 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-3 .image-item-1 {
  top: 22.78%;
  left: 63.72%;
  width: 32.55%;
  height: 32.34%;
}

.template-k0l-3 .text-item-0 {
  top: 58.78%;
  left: 63.72%;
  width: 32.55%;
}

.template-k0l-4 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-4 .image-item-1 {
  top: 21.73%;
  left: 62.55%;
  width: 34.88%;
  height: 34.78%;
}

.template-k0l-4 .text-item-0 {
  top: 60%;
  left: 62.55%;
  width: 34.88%;
}

.template-k0l-5 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-5 .image-item-1 {
  top: 20%;
  left: 67.2%;
  width: 25.58%;
  height: 38.26%;
}

.template-k0l-5 .text-item-0 {
  top: 61.73%;
  left: 67.2%;
  width: 25.58%;
}

.template-k0l-6 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-6 .image-item-1 {
  top: 14.78%;
  left: 63.72%;
  width: 32.55%;
  height: 48.69%;
}

.template-k0l-6 .text-item-0 {
  top: 66.95%;
  left: 63.72%;
  width: 32.55%;
}

.template-k0l-7 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-7 .image-item-1 {
  top: 13.04%;
  left: 62.55%;
  width: 34.88%;
  height: 52.17%;
}

.template-k0l-7 .text-item-0 {
  top: 68.69%;
  left: 62.55%;
  width: 34.88%;
}

.template-k0l-8 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-8 .image-item-1 {
  top: 25.56%;
  left: 63.72%;
  width: 32.55%;
  height: 27.3%;
}

.template-k0l-8 .text-item-0 {
  top: 56.52%;
  left: 63.72%;
  width: 32.55%;
}

.template-k0l-9 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-9 .image-item-1 {
  top: 24.69%;
  left: 62.55%;
  width: 34.88%;
  height: 29.21%;
}

.template-k0l-9 .text-item-0 {
  top: 57.39%;
  left: 62.55%;
  width: 34.88%;
}

.template-k0l-10 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-10 .image-item-1 {
  top: 17.39%;
  left: 68.37%;
  width: 23.25%;
  height: 43.47%;
}

.template-k0l-10 .text-item-0 {
  top: 64.34%;
  left: 68.37%;
  width: 23.25%;
}

.template-k0l-11 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-11 .image-item-1 {
  top: 6.95%;
  left: 62.55%;
  width: 34.88%;
  height: 65.21%;
}

.template-k0l-11 .text-item-0 {
  top: 75.65%;
  left: 62.55%;
  width: 34.88%;
}

.template-k0l-12 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-12 .image-item-1 {
  top: 10.26%;
  left: 67.2%;
  width: 25.58%;
  height: 57.39%;
}

.template-k0l-12 .text-item-0 {
  top: 71.3%;
  left: 67.2%;
  width: 25.58%;
}

.template-k0l-13-a .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-a .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-a .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-13-a .text-item-0 {
  top: 48%;
  left: 82.55%;
  width: 15.11%;
}

.template-k0l-13-b .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-b .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-b .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-13-b .image-item-3 {
  top: 48%;
  left: 81.97%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-13-b .text-item-0 {
  top: 72.86%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-13-c .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-c .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-c .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-13-c .text-item-0 {
  top: 48%;
  left: 82.55%;
  width: 15.11%;
}

.template-k0l-13-d .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-d .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-d .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-13-d .image-item-3 {
  top: 48%;
  left: 82.09%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-13-d .text-item-0 {
  top: 78.26%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-13-e .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-e .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-e .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-13-e .text-item-0 {
  top: 48%;
  left: 82.55%;
  width: 15.11%;
}

.template-k0l-13-f .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-f .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-f .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-13-f .image-item-3 {
  top: 48%;
  left: 81.86%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-13-g .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-g .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-g .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-13-g .text-item-0 {
  top: 48%;
  left: 82.55%;
  width: 15.11%;
}

.template-k0l-13-h .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-h .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-h .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-13-h .image-item-3 {
  top: 48%;
  left: 81.97%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-13-i .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-i .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-i .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 35.46%;
  height: 42.26%;
}

.template-k0l-13-j .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-j .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-j .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 34.88%;
  height: 34.78%;
}

.template-k0l-13-k .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-k .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-k .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 30.46%;
  height: 45.56%;
}

.template-k0l-13-l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13-l .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13-l .image-item-2 {
  top: 48%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-13 .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-13 .text-item-0 {
  top: 48%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-14-a .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-a .image-item-1 {
  top: 31.65%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-a .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-14-a .text-item-0 {
  top: 72.69%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-14-b .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-b .image-item-1 {
  top: 31.65%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-b .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-14-b .image-item-3 {
  top: 6.95%;
  left: 81.97%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-14-b .text-item-0 {
  top: 72.69%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-14-c .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-c .image-item-1 {
  top: 37.21%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-c .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-14-c .text-item-0 {
  top: 78.26%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-14-d .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-d .image-item-1 {
  top: 37.21%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-d .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-14-d .image-item-3 {
  top: 6.95%;
  left: 82.09%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-14-d .text-item-0 {
  top: 78.26%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-14-e .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-e .image-item-1 {
  top: 44.34%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-e .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-14-e .text-item-0 {
  top: 10.08%;
  left: 82.55%;
  width: 15.11%;
}

.template-k0l-14-g .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-g .image-item-1 {
  top: 50.78%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-g .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-14-g .text-item-0 {
  top: 16.52%;
  left: 82.55%;
  width: 15.11%;
}

.template-k0l-14-h .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-h .image-item-1 {
  top: 50.78%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-h .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-14-h .image-item-3 {
  top: 6.95%;
  left: 81.97%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-14-i .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-i .image-item-1 {
  top: 52.86%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-i .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 35.46%;
  height: 42.26%;
}

.template-k0l-14-j .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-j .image-item-1 {
  top: 45.21%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-j .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 34.88%;
  height: 34.78%;
}

.template-k0l-14-j .text-item-0 {
  top: 86.26%;
  right: 0%;
  width: 37.79%;
}

.template-i0r-23 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-23 .image-item-1 {
  top: 3.47%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-23 .image-item-2 {
  top: 31.82%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-23 .image-item-3 {
  top: 3.47%;
  left: 0%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0r-23 .image-item-4 {
  top: 31.82%;
  left: 0%;
  width: 20.93%;
  height: 24.86%;
}

.template-i0r-23 .text-item-0 {
  top: 60.17%;
  left: 2.32%;
  width: 41.86%;
}

.template-i0r-23 .text-item-1 {
  top: 25.56%;
  left: 23.13%;
  width: 21.04%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
}

.template-i0r-23 .text-item-2 {
  top: 53.91%;
  left: 23.13%;
  width: 21.04%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
}

.template-i0r-23 .text-item-3 {
  top: 25.56%;
  left: 0%;
  width: 21.04%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
}

.template-i0r-23 .text-item-4 {
  top: 53.91%;
  left: 0%;
  width: 20.93%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
}

.template-k0l-14-k .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-k .image-item-1 {
  top: 56%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-k .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 30.46%;
  height: 45.56%;
}

.template-k0l-14 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14 .image-item-1 {
  top: 31.65%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14 .text-item-0 {
  top: 72.69%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-15-a .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-15-a .image-item-1 {
  top: 14.95%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15-a .image-item-2 {
  top: 51.13%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15-a .image-item-3 {
  top: 51.13%;
  left: 81.86%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15-a .text-item-0 {
  top: 16.86%;
  left: 81.86%;
  width: 15.11%;
}

.template-k0l-15-b .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-15-b .image-item-1 {
  top: 14.95%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15-b .image-item-2 {
  top: 14.95%;
  left: 81.86%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15-b .image-item-3 {
  top: 51.13%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15-b .text-item-0 {
  top: 52.34%;
  left: 81.86%;
  width: 15.11%;
}

.template-k0l-15 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-15 .image-item-1 {
  top: 14.95%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15 .image-item-2 {
  top: 14.95%;
  left: 81.86%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15 .image-item-3 {
  top: 51.13%;
  left: 62.2%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-15 .image-item-4 {
  top: 51.13%;
  left: 81.86%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-16-a .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-16-a .image-item-1 {
  top: 8.17%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16-a .image-item-2 {
  top: 51.13%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16-a .image-item-3 {
  top: 51.13%;
  left: 81.97%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16-a .text-item-0 {
  top: 16.86%;
  left: 81.97%;
  width: 15.11%;
}

.template-k0l-16-b .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-16-b .image-item-1 {
  top: 8.17%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16-b .image-item-2 {
  top: 8.17%;
  left: 81.97%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16-b .image-item-3 {
  top: 51.13%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16-b .text-item-0 {
  top: 52.17%;
  left: 81.97%;
  width: 15.11%;
}

.template-k0l-16 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-16 .image-item-1 {
  top: 8.17%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16 .image-item-2 {
  top: 8.17%;
  left: 81.97%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16 .image-item-3 {
  top: 51.13%;
  left: 62.2%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-16 .image-item-4 {
  top: 51.13%;
  left: 81.97%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0l-17 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-17 .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-17 .image-item-2 {
  top: 6.95%;
  left: 82.09%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-17 .image-item-3 {
  top: 36.69%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-17 .image-item-4 {
  top: 36.69%;
  left: 82.09%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-17 .text-item-0 {
  top: 66.95%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-18 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-18 .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-18 .image-item-2 {
  top: 6.95%;
  left: 81.97%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-18 .image-item-3 {
  top: 30.78%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-18 .image-item-4 {
  top: 30.78%;
  left: 81.97%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-18 .text-item-0 {
  top: 55.47%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-19 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-19 .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-19 .image-item-2 {
  top: 6.95%;
  left: 81.97%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-19 .image-item-3 {
  top: 30.78%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-19 .image-item-4 {
  top: 30.78%;
  left: 81.97%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-19 .image-item-5 {
  top: 54.6%;
  left: 62.2%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-19 .text-item-0 {
  top: 55.47%;
  left: 81.97%;
  width: 15.69%;
}

.template-k0l-20 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-20 .image-item-1 {
  top: 30.26%;
  left: 62.2%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0l-20 .image-item-2 {
  top: 53.56%;
  left: 76.04%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0l-20 .image-item-3 {
  top: 6.95%;
  left: 76.04%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0l-20 .text-item-0 {
  top: 78.43%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-21 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-21 .image-item-1 {
  top: 30.26%;
  left: 62.2%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0l-21 .image-item-2 {
  top: 53.56%;
  left: 76.04%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0l-21 .image-item-3 {
  top: 6.95%;
  left: 76.04%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0l-21 .image-item-4 {
  top: 30.26%;
  left: 84.88%;
  width: 11.62%;
  height: 13.04%;
}

.template-k0l-21 .image-item-5 {
  top: 53.56%;
  left: 62.79%;
  width: 11.62%;
  height: 13.04%;
}

.template-k0l-21 .image-item-6 {
  top: 6.95%;
  left: 62.79%;
  width: 11.62%;
  height: 13.04%;
}

.template-k0l-21 .text-item-0 {
  top: 78.43%;
  left: 62.2%;
  width: 35.46%;
}

.template-k0l-21 .text-item-1 {
  top: 43.47%;
  left: 84.88%;
  width: 13.02%;
}

.template-k0l-21 .text-item-2 {
  top: 66.6%;
  left: 62.2%;
  width: 13.02%;
}

.template-k0l-21 .text-item-3 {
  top: 20%;
  left: 62.2%;
  width: 13.02%;
}

.template-k0l-master .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-0 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-0 .text-item-0 {
  top: 29.56%;
  left: 5.69%;
  width: 28.48%;
}

.template-k0r-1 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-1 .image-item-1 {
  top: 19.65%;
  left: 3.6%;
  width: 32.55%;
  height: 38.95%;
}

.template-k0r-1 .text-item-0 {
  top: 62.08%;
  left: 3.6%;
  width: 32.55%;
}

.template-k0r-10 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-10 .image-item-1 {
  top: 17.39%;
  left: 8.25%;
  width: 23.25%;
  height: 43.47%;
}

.template-k0r-10 .text-item-0 {
  top: 64.34%;
  left: 8.25%;
  width: 23.25%;
}

.template-k0r-10-a .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-10-a .image-item-1 {
  top: 6.95%;
  left: 2.32%;
  width: 35.23%;
  height: 52.69%;
}

.template-k0r-10-a .text-item-0 {
  top: 63.13%;
  left: 2.32%;
  width: 35.23%;
}

.template-k0r-11 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-11 .image-item-1 {
  top: 6.95%;
  left: 2.44%;
  width: 34.88%;
  height: 65.21%;
}

.template-k0r-11 .text-item-0 {
  top: 75.65%;
  left: 2.44%;
  width: 34.88%;
}

.template-k0r-12 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-12 .image-item-1 {
  top: 10.26%;
  left: 7.09%;
  width: 25.58%;
  height: 57.39%;
}

.template-k0r-12 .text-item-0 {
  top: 71.3%;
  left: 7.09%;
  width: 25.58%;
}

.template-k0r-13-a .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-a .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-a .image-item-2 {
  top: 48%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-13-a .text-item-0 {
  top: 48%;
  left: 2.32%;
  width: 15.11%;
}

.template-k0r-13-b .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-b .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-b .image-item-2 {
  top: 48%;
  left: 0%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-13-b .image-item-3 {
  top: 48%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-13-b .text-item-0 {
  top: 72.86%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-13-c .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-c .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-c .image-item-2 {
  top: 48%;
  left: 19.88%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-13-c .text-item-0 {
  top: 48%;
  left: 2.32%;
  width: 15.11%;
}

.template-k0r-13-d .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-d .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-d .image-item-2 {
  top: 48%;
  left: 0%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-13-d .image-item-3 {
  top: 48%;
  left: 19.88%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-13-d .text-item-0 {
  top: 78.26%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-13-e .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-e .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-e .image-item-2 {
  top: 48%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-13-e .text-item-0 {
  top: 48%;
  left: 2.32%;
  width: 15.11%;
}

.template-k0r-13-f .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-f .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-f .image-item-2 {
  top: 48%;
  left: 0%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-13-f .image-item-3 {
  top: 48%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-13-g .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-g .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-g .image-item-2 {
  top: 48%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-13-g .text-item-0 {
  top: 48%;
  left: 2.32%;
  width: 15.11%;
}

.template-k0r-13-h .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-h .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-h .image-item-2 {
  top: 48%;
  left: 0%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-13-h .image-item-3 {
  top: 48%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-13-i .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-i .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-i .image-item-2 {
  top: 48%;
  left: 2.32%;
  width: 35.46%;
  height: 42.26%;
}

.template-k0r-13-j .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-j .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-j .image-item-2 {
  top: 48%;
  left: 2.9%;
  width: 34.88%;
  height: 34.78%;
}

.template-k0r-13-k .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-k .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-k .image-item-2 {
  top: 48%;
  left: 7.32%;
  width: 30.46%;
  height: 45.56%;
}

.template-k0r-13-l .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13-l .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13-l .image-item-2 {
  top: 48%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-13 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-13 .text-item-0 {
  top: 48%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-14-a .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-a .image-item-1 {
  top: 31.65%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-a .image-item-2 {
  top: 6.95%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-14-a .text-item-0 {
  top: 72.69%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-14-b .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-b .image-item-1 {
  top: 31.65%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-b .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-14-b .image-item-3 {
  top: 6.95%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-14-b .text-item-0 {
  top: 72.69%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-14-c .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-c .image-item-1 {
  top: 37.21%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-c .image-item-2 {
  top: 6.95%;
  left: 19.88%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-14-c .text-item-0 {
  top: 78.26%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-14-d .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-d .image-item-1 {
  top: 37.21%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-d .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-14-d .image-item-3 {
  top: 6.95%;
  left: 19.88%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-14-d .text-item-0 {
  top: 78.26%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-14-e .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-e .image-item-1 {
  top: 44.34%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-e .image-item-2 {
  top: 6.95%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-14-e .text-item-0 {
  top: 10.08%;
  left: 2.32%;
  width: 15.11%;
}

.template-k0r-14-f .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-f .image-item-1 {
  top: 44.34%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-f .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-14-f .image-item-3 {
  top: 6.95%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-14-f .text-item-0 {
  top: 85.39%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-14-g .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-g .image-item-1 {
  top: 50.78%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-g .image-item-2 {
  top: 6.95%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-14-g .text-item-0 {
  top: 16.52%;
  left: 2.32%;
  width: 15.11%;
}

.template-k0r-14-h .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-h .image-item-1 {
  top: 50.78%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-h .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-14-h .image-item-3 {
  top: 6.95%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-14-i .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-i .image-item-1 {
  top: 52.86%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-i .image-item-2 {
  top: 6.95%;
  left: 2.32%;
  width: 35.46%;
  height: 42.26%;
}

.template-k0r-14-j .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-j .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-j .image-item-2 {
  top: 48%;
  left: 2.9%;
  width: 34.88%;
  height: 34.78%;
}

.template-k0r-14-j .text-item-0 {
  top: 86.26%;
  left: 0%;
  width: 37.79%;
}

.template-k0r-14-k .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-k .image-item-1 {
  top: 56%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-k .image-item-2 {
  top: 6.95%;
  left: 7.32%;
  width: 30.46%;
  height: 45.56%;
}

.template-k0r-14 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14 .image-item-1 {
  top: 31.65%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14 .text-item-0 {
  top: 72.69%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-15-a .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-15-a .image-item-1 {
  top: 14.95%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15-a .image-item-2 {
  top: 51.13%;
  left: 0%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15-a .image-item-3 {
  top: 51.13%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15-a .text-item-0 {
  top: 19.82%;
  left: 2.32%;
  width: 15.81%;
}

.template-k0r-15-b .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-15-b .image-item-1 {
  top: 51.13%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15-b .image-item-2 {
  top: 14.95%;
  left: 0%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15-b .image-item-3 {
  top: 14.95%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15-b .text-item-0 {
  top: 52.34%;
  left: 2.32%;
  width: 15.69%;
}

.template-k0r-15 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-15 .image-item-1 {
  top: 14.95%;
  left: 0%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15 .image-item-2 {
  top: 14.95%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15 .image-item-3 {
  top: 51.13%;
  left: 0%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-15 .image-item-4 {
  top: 51.13%;
  left: 19.65%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0r-16-a .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-16-a .image-item-1 {
  top: 8.17%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16-a .image-item-2 {
  top: 51.13%;
  left: 0%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16-a .image-item-3 {
  top: 51.13%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16-a .text-item-0 {
  top: 19.82%;
  left: 2.32%;
  width: 15.69%;
}

.template-k0r-16-b .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-16-b .image-item-1 {
  top: 51.13%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16-b .image-item-2 {
  top: 8.17%;
  left: 0%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16-b .image-item-3 {
  top: 8.17%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16-b .text-item-0 {
  top: 52.17%;
  left: 2.32%;
  width: 15.58%;
}

.template-k0r-16 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-16 .image-item-1 {
  top: 8.17%;
  left: 0%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16 .image-item-2 {
  top: 8.17%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16 .image-item-3 {
  top: 51.13%;
  left: 0%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-16 .image-item-4 {
  top: 51.13%;
  left: 19.76%;
  width: 18.02%;
  height: 40.34%;
}

.template-k0r-17 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-17 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-17 .image-item-2 {
  top: 6.95%;
  left: 19.88%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-17 .image-item-3 {
  top: 36.69%;
  left: 0%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-17 .image-item-4 {
  top: 36.69%;
  left: 19.88%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-17 .text-item-0 {
  top: 66.95%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-18 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-18 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-18 .image-item-2 {
  top: 6.95%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-18 .image-item-3 {
  top: 30.78%;
  left: 0%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-18 .image-item-4 {
  top: 30.78%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-18 .text-item-0 {
  top: 55.47%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-19 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-19 .image-item-1 {
  top: 54.6%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-19 .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-19 .image-item-3 {
  top: 6.95%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-19 .image-item-4 {
  top: 30.78%;
  left: 0%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-19 .image-item-5 {
  top: 30.78%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-19 .text-item-0 {
  top: 55.47%;
  left: 2.32%;
  width: 15.58%;
}

.template-k0r-2 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-2 .image-item-1 {
  top: 18.26%;
  left: 2.67%;
  width: 34.88%;
  height: 41.73%;
}

.template-k0r-2 .text-item-0 {
  top: 63.47%;
  left: 2.67%;
  width: 34.88%;
}

.template-k0r-20 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-20 .image-item-1 {
  top: 30.26%;
  left: 16.16%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0r-20 .image-item-2 {
  top: 6.95%;
  left: 2.32%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0r-20 .image-item-3 {
  top: 53.56%;
  left: 2.32%;
  width: 21.62%;
  height: 21.56%;
}

.template-k0r-20 .text-item-0 {
  top: 78.6%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-3-a .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-3-a .image-item-1 {
  top: 13.91%;
  left: 3.6%;
  width: 32.55%;
  height: 32.34%;
}

.template-k0r-3-a .text-item-0 {
  top: 49.73%;
  left: 3.6%;
  width: 32.55%;
}

.template-k0r-3-b .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-3-b .image-item-1 {
  top: 6.95%;
  left: 3.6%;
  width: 32.55%;
  height: 32.34%;
}

.template-k0r-3-b .text-item-0 {
  top: 42.78%;
  left: 3.6%;
  width: 32.55%;
}

.template-k0r-3 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-3 .image-item-1 {
  top: 22.78%;
  left: 3.6%;
  width: 32.55%;
  height: 32.34%;
}

.template-k0r-3 .text-item-0 {
  top: 58.78%;
  left: 3.6%;
  width: 32.55%;
}

.template-k0r-3a .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-3a .image-item-1 {
  top: 13.91%;
  left: 3.6%;
  width: 32.55%;
  height: 32.34%;
}

.template-k0r-3a .text-item-0 {
  top: 49.73%;
  left: 3.6%;
  width: 32.55%;
}

.template-k0r-3b .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-3b .image-item-1 {
  top: 6.95%;
  left: 3.6%;
  width: 32.55%;
  height: 32.34%;
}

.template-k0r-3b .text-item-0 {
  top: 42.78%;
  left: 3.6%;
  width: 32.55%;
}

.template-k0r-4 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-4 .image-item-1 {
  top: 21.73%;
  left: 2.67%;
  width: 34.88%;
  height: 34.78%;
}

.template-k0r-4 .text-item-0 {
  top: 60%;
  left: 2.67%;
  width: 34.88%;
}

.template-k0r-5 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-5 .image-item-1 {
  top: 20%;
  left: 7.09%;
  width: 25.58%;
  height: 38.26%;
}

.template-k0r-5 .text-item-0 {
  top: 61.73%;
  left: 7.09%;
  width: 25.58%;
}

.template-k0r-6 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-6 .image-item-1 {
  top: 14.78%;
  left: 3.6%;
  width: 32.55%;
  height: 48.69%;
}

.template-k0r-6 .text-item-0 {
  top: 66.95%;
  left: 3.6%;
  width: 32.55%;
}

.template-k0r-7 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-7 .image-item-1 {
  top: 13.04%;
  left: 2.44%;
  width: 34.88%;
  height: 52.17%;
}

.template-k0r-7 .text-item-0 {
  top: 68.69%;
  left: 2.44%;
  width: 34.88%;
}

.template-k0r-8 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-8 .image-item-1 {
  top: 25.56%;
  left: 3.6%;
  width: 32.55%;
  height: 27.3%;
}

.template-k0r-8 .text-item-0 {
  top: 56.52%;
  left: 3.6%;
  width: 32.55%;
}

.template-k0r-9 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-9 .image-item-1 {
  top: 24.69%;
  left: 3.6%;
  width: 34.88%;
  height: 29.21%;
}

.template-k0r-9 .text-item-0 {
  top: 57.39%;
  left: 3.6%;
  width: 34.88%;
}

.template-k0r-master .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-l-master .image-item-0 {
  top: 0%;
  left: 7.9%;
  width: 83.95%;
  height: 83.82%;
}

.template-l-master .text-item-0 {
  top: 87.13%;
  left: 11.04%;
  width: 77.9%;
}

.template-m-master .image-item-0 {
  top: 0%;
  left: 12.44%;
  width: 75%;
  height: 74.6%;
}

.template-m-master .text-item-0 {
  top: 78.08%;
  left: 12.44%;
  width: 75%;
}

.template-m0-l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 75%;
  height: 74.6%;
}

.template-m0-l .image-item-1 {
  top: 0%;
  left: 77.32%;
  width: 22.67%;
  height: 22.6%;
}

.template-m0-l .image-item-2 {
  top: 25.73%;
  left: 77.32%;
  width: 22.67%;
  height: 22.6%;
}

.template-m0-l .image-item-3 {
  top: 51.47%;
  left: 77.32%;
  width: 22.67%;
  height: 22.6%;
}

.template-m0-l .image-item-4 {
  top: 77.21%;
  left: 77.32%;
  width: 22.67%;
  height: 22.6%;
}

.template-m0-l .text-item-0 {
  top: 78.08%;
  left: 2.32%;
  width: 72.67%;
}

.template-n-master .image-item-0 {
  top: 1.21%;
  left: 0%;
  width: 48.83%;
  height: 97.39%;
}

.template-n-master .image-item-1 {
  top: 1.21%;
  left: 51.16%;
  width: 48.83%;
  height: 97.39%;
}

.template-o-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 48.72%;
  height: 40.69%;
}

.template-o-master .image-item-1 {
  top: 44.17%;
  left: 0%;
  width: 48.72%;
  height: 40.69%;
}

.template-o-master .image-item-2 {
  top: 0%;
  left: 51.16%;
  width: 48.72%;
  height: 40.69%;
}

.template-o-master .image-item-3 {
  top: 44.17%;
  left: 51.16%;
  width: 48.72%;
  height: 40.69%;
}

.template-o-master .text-item-0 {
  top: 84.86%;
  left: 2.32%;
  width: 95.34%;
}

.template-r0l-2 .image-item-0 {
  width: 59.88%;
  height: 71.65%;
  top: 6.95%;
  left: 0%;
}

.template-r0l-2 .image-item-1 {
  width: 31.39%;
  height: 37.56%;
  top: 10.26%;
  left: 62.2%;
}

.template-r0l-2 .image-item-2 {
  width: 37.79%;
  height: 45.21%;
  top: 51.3%;
  left: 62.2%;
}

.template-r0l-5 .image-item-0 {
  width: 59.88%;
  height: 89.56%;
  left: 0%;
  top: 6.95%;
}

.template-r0l-5 .image-item-1 {
  width: 23.25%;
  height: 27.82%;
  left: 62.2%;
  top: 6.95%;
}

.template-r0l-5 .image-item-2 {
  width: 32.55%;
  height: 38.95%;
  left: 62.2%;
  top: 37.91%;
}

.template-r0l-5 .text-item-0 {
  width: 32.55%;
  height: 20.86%;
  left: 62.2%;
  top: 80%;
}

.template-r0l-6 .image-item-0 {
  width: 59.88%;
  height: 89.56%;
  left: 0%;
  top: 6.95%;
}

.template-r0l-6 .image-item-1 {
  width: 37.79%;
  height: 37.73%;
  left: 62.2%;
  top: 33.91%;
}

.template-r0l-6 .image-item-2 {
  width: 23.25%;
  height: 23.13%;
  left: 62.2%;
  top: 6.95%;
}

.template-r0l-6 .text-item-0 {
  width: 35.23%;
  height: 25.04%;
  left: 62.2%;
  top: 75.13%;
}

.template-r0l-8 .image-item-0 {
  width: 59.88%;
  height: 89.56%;
  left: 0%;
  top: 6.95%;
}

.template-r0l-8 .image-item-1 {
  width: 37.79%;
  height: 56.52%;
  right: 0%;
  top: 6.95%;
}

.template-r0l-8 .text-item-0 {
  width: 34.88%;
  right: 2.32%;
  top: 66.95%;
}

.template-r0l-master .image-item-0 {
  width: 59.88%;
  height: 89.56%;
  left: 0%;
  top: 6.95%;
}

.template-r0r-5 .image-item-0 {
  width: 59.88%;
  height: 89.56%;
  right: 0%;
  top: 6.95%;
}

.template-r0r-5 .image-item-1 {
  width: 23.25%;
  height: 27.82%;
  right: 62.2%;
  top: 6.95%;
}

.template-r0r-5 .image-item-2 {
  width: 32.55%;
  height: 38.95%;
  right: 62.2%;
  top: 37.91%;
}

.template-r0r-5 .text-item-0 {
  width: 32.55%;
  height: 20.86%;
  right: 62.2%;
  top: 80%;
}

.template-r0r-6 .image-item-0 {
  width: 59.88%;
  height: 89.56%;
  right: 0%;
  top: 6.95%;
}

.template-r0r-6 .image-item-1 {
  width: 37.79%;
  height: 37.73%;
  right: 62.2%;
  top: 33.91%;
}

.template-r0r-6 .image-item-2 {
  width: 23.25%;
  height: 23.13%;
  right: 62.2%;
  top: 6.95%;
}

.template-r0r-6 .text-item-0 {
  width: 35.23%;
  height: 25.04%;
  right: 62.2%;
  top: 75.13%;
}

.template-r0r-8 .image-item-0 {
  top: 6.78%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-r0r-8 .image-item-1 {
  top: 6.78%;
  left: 5.11%;
  width: 32.55%;
  height: 60.86%;
}

.template-r0r-8 .text-item-0 {
  top: 71.13%;
  left: 5.11%;
  width: 32.55%;
}

.template-r0r-master .image-item-0 {
  width: 59.88%;
  height: 89.56%;
  right: 0%;
  top: 6.95%;
}

.template-s0l-0 .image-item-0 {
  width: 48.13%;
  height: 48%;
  left: 0%;
  top: 3.47%;
}

.template-s0l-0 .image-item-1 {
  width: 48.13%;
  height: 48%;
  left: 51.86%;
  top: 48.34%;
}

.template-s0l-0 .image-item-2 {
  width: 22.09%;
  height: 33.04%;
  left: 51.86%;
  bottom: 54.95%;
}

.template-s0l-0 .image-item-3 {
  width: 22.09%;
  height: 33.04%;
  left: 26.04%;
  top: 54.95%;
}

.template-s0l-0 .text-item-0 {
  width: 21.62%;
  height: 26.08%;
  right: 2.32%;
  bottom: 54.95%;
}

.template-s0l-0 .text-item-1 {
  width: 21.62%;
  height: 26.08%;
  left: 2.32%;
  top: 54.95%;
}

.template-s0l-0 .dividing-line {
  border-left: 1px solid #496797;
  width: 1px;
  height: 92.86%;
  left: 49.88%;
  top: 3.47%;
}

.template-s0l-1 .image-item-0 {
  width: 48.13%;
  height: 48%;
  left: 0%;
  top: 3.47%;
}

.template-s0l-1 .image-item-1 {
  width: 48.13%;
  height: 48%;
  left: 51.86%;
  top: 48.34%;
}

.template-s0l-1 .image-item-2 {
  width: 25.58%;
  height: 30.6%;
  left: 51.86%;
  bottom: 54.95%;
}

.template-s0l-1 .image-item-3 {
  width: 25.58%;
  height: 30.6%;
  left: 22.55%;
  top: 54.95%;
}

.template-s0l-1 .image-item-4 {
  width: 9.88%;
  height: 14.78%;
  right: 2.32%;
  bottom: 4.34%;
}

.template-s0l-1 .text-item-0 {
  width: 19.18%;
  left: 79.76%;
  bottom: 54.95%;
}

.template-s0l-1 .text-item-1 {
  width: 19.18%;
  left: 2.32%;
  top: 54.95%;
}

.template-s0l-1 .dividing-line {
  border-left: 1px solid #496797;
  width: 1px;
  height: 92.86%;
  left: 49.88%;
  top: 3.47%;
}

.template-s0l-1 .template-over-logo .overlay-item.image-item-0 {
  left: auto !important;
  right: 0% !important;
}

.template-s0l-master .image-item-0 {
  width: 48.13%;
  height: 48%;
  left: 0%;
  top: 3.47%;
}

.template-s0l-master .image-item-1 {
  width: 48.13%;
  height: 48%;
  left: 51.86%;
  top: 48.34%;
}

.template-s0l-master .image-item-2 {
  width: 22.09%;
  height: 33.04%;
  left: 51.86%;
  bottom: 54.95%;
}

.template-s0l-master .image-item-3 {
  width: 22.09%;
  height: 33.04%;
  left: 26.04%;
  top: 54.95%;
}

.template-s0r-0 .image-item-0 {
  width: 48.13%;
  height: 48%;
  right: 0%;
  top: 3.47%;
}

.template-s0r-0 .image-item-1 {
  width: 48.13%;
  height: 48%;
  right: 51.86%;
  top: 48.34%;
}

.template-s0r-0 .image-item-2 {
  width: 22.09%;
  height: 33.04%;
  right: 51.86%;
  bottom: 54.95%;
}

.template-s0r-0 .image-item-3 {
  width: 22.09%;
  height: 33.04%;
  right: 26.04%;
  top: 54.95%;
}

.template-s0r-0 .text-item-0 {
  width: 21.62%;
  height: 26.08%;
  left: 2.32%;
  bottom: 54.95%;
}

.template-s0r-0 .text-item-1 {
  width: 21.62%;
  height: 26.08%;
  right: 2.32%;
  top: 54.95%;
}

.template-s0r-0 .dividing-line {
  border-left: 1px solid #496797;
  width: 1px;
  height: 92.86%;
  left: 49.88%;
  top: 3.47%;
}

.template-s0r-1 .image-item-0 {
  width: 48.13%;
  height: 48%;
  left: 51.86%;
  top: 3.47%;
}

.template-s0r-1 .image-item-1 {
  width: 48.13%;
  height: 48%;
  left: 0%;
  top: 48.34%;
}

.template-s0r-1 .image-item-2 {
  width: 25.58%;
  height: 30.6%;
  left: 22.55%;
  bottom: 54.95%;
}

.template-s0r-1 .image-item-3 {
  width: 25.58%;
  height: 30.6%;
  left: 51.86%;
  top: 54.95%;
}

.template-s0r-1 .image-item-4 {
  width: 9.88%;
  height: 14.78%;
  left: 2.32%;
  bottom: 4.34%;
}

.template-s0r-1 .text-item-0 {
  width: 19.18%;
  left: 2.32%;
  bottom: 54.95%;
}

.template-s0r-1 .text-item-1 {
  width: 19.18%;
  left: 79.76%;
  top: 54.95%;
}

.template-s0r-1 .dividing-line {
  border-left: 1px solid #496797;
  width: 1px;
  height: 92.86%;
  left: 49.88%;
  top: 3.47%;
}

.template-t0l-1 .image-item-0 {
  width: 100%;
  height: 59.82%;
  left: 0%;
  top: 2.78%;
}

.template-t0l-1 .image-item-1 {
  width: 23.83%;
  height: 35.65%;
  left: 6.04%;
  top: 38.95%;
}

.template-t0l-1 .text-item-0 {
  width: 61.62%;
  left: 32.2%;
  top: 66.08%;
}

.template-t0r-1 .image-item-0 {
  width: 100%;
  height: 59.82%;
  right: 0%;
  top: 2.78%;
}

.template-t0r-1 .image-item-1 {
  width: 23.83%;
  height: 35.65%;
  right: 6.04%;
  top: 38.95%;
}

.template-t0r-1 .text-item-0 {
  width: 61.62%;
  right: 32.2%;
  top: 66.08%;
}

.template-t1-master .image-item-0 {
  width: 100%;
  height: 74.78%;
  left: 0%;
  top: 0%;
}

.template-t2l-1 .image-item-0 {
  width: 72.09%;
  height: 60.69%;
  left: 0%;
  top: 8.34%;
}

.template-t2l-1 .image-item-1 {
  width: 23.83%;
  height: 35.65%;
  left: 73.83%;
  top: 33.39%;
}

.template-t2l-1 .text-item-0 {
  width: 23.25%;
  right: 2.32%;
  bottom: 69.56%;
}

.template-t2r-1 .image-item-0 {
  width: 72.09%;
  height: 60.69%;
  right: 0%;
  top: 8.34%;
}

.template-t2r-1 .image-item-1 {
  width: 23.83%;
  height: 35.65%;
  right: 73.83%;
  top: 33.39%;
}

.template-t2r-1 .text-item-0 {
  width: 23.25%;
  left: 2.32%;
  bottom: 69.56%;
}

.template-t3-master .image-item-0 {
  width: 72.09%;
  height: 71.82%;
  left: 13.6%;
  top: 2.78%;
}

.template-t3l-1 .image-item-0 {
  width: 72.09%;
  height: 71.82%;
  left: 0%;
  top: 6.95%;
}

.template-t3l-1 .image-item-1 {
  width: 23.83%;
  height: 35.65%;
  left: 74.41%;
  top: 38.95%;
}

.template-t3l-1 .text-item-0 {
  width: 23.83%;
  left: 74.41%;
  bottom: 64.34%;
}

.template-t3r-1 .image-item-0 {
  width: 72.09%;
  height: 71.82%;
  right: 0%;
  top: 6.95%;
}

.template-t3r-1 .image-item-1 {
  width: 23.83%;
  height: 35.65%;
  right: 74.41%;
  top: 38.95%;
}

.template-t3r-1 .text-item-0 {
  width: 23.83%;
  right: 74.41%;
  bottom: 64.34%;
}

.template-t4l-1 .image-item-0 {
  width: 62.79%;
  height: 75.13%;
  left: 0%;
  top: 0%;
}

.template-t4l-1 .image-item-1 {
  width: 23.83%;
  height: 35.65%;
  right: 4.65%;
  top: 33.39%;
}

.template-t4l-1 .text-item-0 {
  width: 27.9%;
  right: 4.65%;
  bottom: 70.26%;
}

.template-t4r-1 .image-item-0 {
  width: 62.79%;
  height: 75.13%;
  right: 0%;
  top: 0%;
}

.template-t4r-1 .image-item-1 {
  width: 23.83%;
  height: 35.65%;
  left: 4.65%;
  top: 33.39%;
}

.template-t4r-1 .text-item-0 {
  width: 27.9%;
  left: 4.65%;
  bottom: 70.26%;
}

.template-u0r-1 .image-item-0 {
  left: 44.65%;
  top: 6.95%;
  width: 55.34%;
  height: 82.78%;
}

.template-u0r-1 .image-item-1 {
  left: 0%;
  top: 3.47%;
  width: 21.51%;
  height: 29.73%;
}

.template-u0r-1 .image-item-2 {
  left: 22.32%;
  top: 3.47%;
  width: 21.51%;
  height: 29.73%;
}

.template-u0r-1 .image-item-3 {
  left: 0%;
  top: 34.43%;
  width: 21.51%;
  height: 29.73%;
}

.template-u0r-1 .image-item-4 {
  left: 22.32%;
  top: 34.43%;
  width: 21.51%;
  height: 29.73%;
}

.template-u0r-1 .image-item-5 {
  left: 0%;
  top: 65.39%;
  width: 21.51%;
  height: 29.73%;
}

.template-u0r-1 .image-item-6 {
  left: 22.32%;
  top: 65.39%;
  width: 21.51%;
  height: 29.73%;
}

.template-v0l-1 .image-item-0 {
  left: 0%;
  top: 3.47%;
  width: 61.62%;
  height: 69.21%;
}

.template-v0l-1 .image-item-1 {
  left: 63.95%;
  top: 3.47%;
  width: 38.37%;
  height: 30.26%;
}

.template-v0l-1 .image-item-2 {
  left: 63.95%;
  top: 37.21%;
  width: 27.9%;
  height: 27.82%;
}

.template-v0l-1 .image-item-3 {
  left: 63.95%;
  top: 68.52%;
  width: 27.9%;
  height: 27.82%;
}

.template-v0l-1 .text-item-0 {
  width: 56.97%;
  left: 4.65%;
  top: 76%;
}

.template-x0l-1 .image-item-0 {
  top: 2.95%;
  left: 49.76%;
  width: 50.23%;
  height: 42.08%;
}

.template-x0l-1 .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 48.25%;
  height: 72%;
}

.template-x0l-1 .image-item-2 {
  top: 48%;
  left: 49.76%;
  width: 24.18%;
  height: 27.13%;
}

.template-x0l-1 .image-item-3 {
  top: 48%;
  left: 75.81%;
  width: 24.18%;
  height: 27.13%;
}

.template-q0l-1a-with-band-special .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0l-1a-with-band-special .image-item-1 {
  top: 8.86%;
  left: 2.32%;
  width: 59.3%;
  height: 58.95%;
}

.template-q0l-1a-with-band-special .image-item-2 {
  top: 8.86%;
  left: 64.53%;
  width: 33.02%;
  height: 39.47%;
}

.template-q0l-1a-with-band-special .image-item-3 {
  top: 47.13%;
  left: 0.11%;
  width: 22.55%;
  height: 26.95%;
}

.template-q0l-1a-with-band-special .text-item-0 {
  top: 51.82%;
  left: 64.53%;
  width: 33.02%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.template-q0l-1a-with-band-special .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0l-1a-with-band-special .image-item-0:before {
  background: black !important;
}

.template-q0l-1a-with-band-special .image-item-0 img {
  opacity: 0.3;
}

.template-q0l-1-with-band-special .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0l-1-with-band-special .image-item-1 {
  top: 8.86%;
  left: 2.32%;
  width: 59.3%;
  height: 58.95%;
}

.template-q0l-1-with-band-special .image-item-2 {
  top: 8.86%;
  left: 64.53%;
  width: 33.02%;
  height: 39.47%;
}

.template-q0l-1-with-band-special .text-item-0 {
  top: 51.82%;
  left: 64.53%;
  width: 33.02%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.template-q0l-1-with-band-special .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0l-1-with-band-special .image-item-0:before {
  background: black !important;
}

.template-q0l-1-with-band-special .image-item-0 img {
  opacity: 0.3;
}

.template-q0l-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0l-1 .image-item-1 {
  top: 8.86%;
  left: 2.32%;
  width: 59.3%;
  height: 58.95%;
}

.template-q0l-1 .image-item-2 {
  top: 8.86%;
  left: 64.53%;
  width: 33.02%;
  height: 39.47%;
}

.template-q0l-1 .text-item-0 {
  top: 51.82%;
  left: 64.53%;
  width: 33.02%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-q0l-1 .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0l-1 > .image-item-0:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black !important;
}

.template-q0l-1 .image-item-0 img {
  opacity: 0.3;
}

.template-q0r-1-with-band-special .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0r-1-with-band-special .image-item-1 {
  top: 8.86%;
  left: 38.25%;
  width: 59.3%;
  height: 58.95%;
}

.template-q0r-1-with-band-special .image-item-2 {
  top: 8.86%;
  left: 2.32%;
  width: 32.9%;
  height: 39.47%;
}

.template-q0r-1-with-band-special .text-item-0 {
  top: 51.82%;
  left: 2.44%;
  width: 33.02%;
  font-weight: bold;
  font-size: 17px;
  text-align: center;
}

.template-q0r-1-with-band-special .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0r-1-with-band-special .image-item-0:before {
  background: black !important;
}

.template-q0r-1-with-band-special .image-item-0 img {
  opacity: 0.3;
}

.template-q0r-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0r-1 .image-item-1 {
  top: 8.86%;
  left: 38.25%;
  width: 59.3%;
  height: 58.95%;
}

.template-q0r-1 .image-item-2 {
  top: 8.86%;
  left: 2.32%;
  width: 32.9%;
  height: 39.47%;
}

.template-q0r-1 .text-item-0 {
  top: 51.82%;
  left: 2.44%;
  width: 33.02%;
  font-weight: bold;
  font-size: 17px;
  text-align: center;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-q0r-1 .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0r-1 > .image-item-0:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black !important;
}

.template-q0r-1 .image-item-0 img {
  opacity: 0.3;
}

.template-d0-image .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84%;
}

.template-d0-image .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 84%;
}

.template-q0c-3-with-band-special .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0c-3-with-band-special .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

#slide-12.template-q0c-3-with-band-special .image-item-0 {
  z-index: 100 !important;
}

.template-q0r-1-a-with-band-special .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0r-1-a-with-band-special .image-item-1 {
  top: 8.86%;
  left: 38.25%;
  width: 59.3%;
  height: 58.95%;
}

.template-q0r-1-a-with-band-special .image-item-2 {
  top: 8.86%;
  left: 2.32%;
  width: 32.9%;
  height: 39.47%;
}

.template-q0r-1-a-with-band-special .image-item-3 {
  top: 47.13%;
  left: 77.32%;
  width: 22.55%;
  height: 26.95%;
}

.template-q0r-1-a-with-band-special .text-item-0 {
  top: 51.82%;
  left: 2.44%;
  width: 33.02%;
  font-weight: bold;
  font-size: 17px;
  text-align: center;
}

.template-q0r-1-a-with-band-special .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0r-1-a-with-band-special .image-item-0:before {
  background: black !important;
}

.template-q0r-1-a-with-band-special .image-item-0 img {
  opacity: 0.3;
}

.template-s1l-master .image-item-0 {
  top: 3.65%;
  left: 2.44%;
  width: 44.18%;
  height: 52.17%;
}

.template-s1l-master .image-item-1 {
  top: 30.26%;
  left: 53.37%;
  width: 44.18%;
  height: 52.17% !important;
}

.template-s1l-master .text-item-0 {
  top: 6.26%;
  left: 53.83%;
  right: 4.18%;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}

.template-s1l-master .text-item-0 span {
  font-weight: normal;
  font-size: 13px;
}

.template-s1l-master .text-item-1 {
  top: 59.13%;
  left: 2.44%;
  width: 44.18%;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}

.template-s1l-master .text-item-1 span {
  font-weight: normal;
  font-size: 13px;
}

.template-s2l-master .image-item-0 {
  top: 0%;
  left: 0%;
  width: 57.67%;
  height: 48.52%;
}

.template-s2l-master .image-item-1 {
  top: 51.47%;
  left: 42.32%;
  width: 57.67%;
  height: 48.52%;
}

.template-s2l-master .image-item-2 {
  top: 2.6%;
  left: 59.65%;
  width: 38.37%;
  height: 45.91%;
}

.template-s2l-master .image-item-3 {
  top: 51.47%;
  left: 1.86%;
  width: 38.37%;
  height: 45.91%;
}

.template-v0l-master .image-item-0 {
  top: 3.47%;
  left: 0%;
  width: 61.62%;
  height: 69.04%;
}

.template-v1-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-v1-1 .image-item-1 {
  top: 9.21%;
  left: 15.11%;
  width: 69.76%;
  height: 58.6%;
}

.template-v1l-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-v1l-1 .image-item-1 {
  top: 9.21%;
  left: 27.79%;
  width: 69.76%;
  height: 58.6%;
}

.template-v1l-1 .image-item-2 {
  top: 20.69%;
  left: 2.44%;
  width: 40%;
  height: 33.56%;
}

.template-v1l-2 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-v1l-2 .image-item-1 {
  top: 9.21%;
  left: 27.79%;
  width: 69.76%;
  height: 58.6%;
}

.template-v1l-2 .image-item-2 {
  top: 12.69%;
  left: 2.32%;
  width: 23.95%;
  height: 20.17%;
}

.template-v1l-2 .image-item-3 {
  top: 35.13%;
  left: 2.32%;
  width: 23.95%;
  height: 20.17%;
}

.template-v1l-2 .text-item-0 {
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.67);
  top: 63.65%;
  left: 29.06%;
  width: 18.02%;
}

.template-v1l-2 .text-item-1 {
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.67);
  top: 29.39%;
  left: 3.48%;
  width: 18.02%;
  font-size: 10px;
}

.template-v1l-2 .text-item-2 {
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.67);
  top: 52%;
  left: 3.37%;
  width: 18.02%;
  font-size: 10px;
}

.template-y1l-1 .image-item-0 {
  top: 5.39%;
  left: 38.72%;
  width: 61.16%;
  height: 42.43%;
}

.template-y1l-1 .image-item-1 {
  top: 8.86%;
  left: 0%;
  width: 37.09%;
  height: 54.6%;
}

.template-y1l-1 .image-item-2 {
  top: 49.73%;
  left: 38.72%;
  width: 19.53%;
  height: 26.95%;
}

.template-y1l-1 .image-item-3 {
  top: 49.73%;
  left: 59.53%;
  width: 19.53%;
  height: 26.95%;
}

.template-y1l-1 .image-item-4 {
  top: 49.73%;
  left: 80.34%;
  width: 19.53%;
  height: 26.95%;
}

.template-y0l-1 .image-item-0 {
  top: 2.26%;
  left: 36.04%;
  width: 63.95%;
  height: 44.34%;
}

.template-y0l-1 .image-item-1 {
  top: 33.73%;
  left: 0%;
  width: 34.41%;
  height: 41.04%;
}

.template-y0l-1 .image-item-2 {
  top: 2.26%;
  left: 5.46%;
  width: 28.83%;
  height: 28.86%;
}

.template-y0l-1 .image-item-3 {
  top: 48.69%;
  left: 36.04%;
  width: 20.23%;
  height: 26.08%;
}

.template-y0l-1 .image-item-4 {
  top: 48.69%;
  left: 57.79%;
  width: 20.23%;
  height: 26.08%;
}

.template-y0l-1 .image-item-5 {
  top: 48.69%;
  left: 79.65%;
  width: 20.23%;
  height: 26.08%;
}

.template-x0r-2 .image-item-0 {
  top: 2.95%;
  left: 27.67%;
  width: 72.32%;
  height: 72%;
}

.template-x0r-2 .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 25.46%;
  height: 30.6%;
}

.template-x0r-2 .image-item-2 {
  top: 36.69%;
  left: 0%;
  width: 25.46%;
  height: 30.6%;
}

.template-c-video .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c-video .image-item-1 {
  top: 3.47%;
  left: 2.32%;
  width: 34.88%;
  height: 29.21%;
}

.template-c-video .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 74.78% !important;
}

.template-c-video .vjs-ended .vjs-poster {
  display: none !important;
}

.template-c-video .item-replay-button {
  position: absolute;
  top: 70.6%;
  z-index: 1000;
  right: 1.27%;
  color: white;
  cursor: pointer;
}

.template-over-logo-with-quote .overlay-item.image-item-0 {
  top: 12.17%;
  left: 0%;
  width: 23.83%;
}

.template-e0r-master[slideshow="2023-march13"] .image-item-1 {
  top: 14.17%;
  left: 0%;
  height: 35.6522%;
  width: 23.8373%;
}

.template-e0r-master[slideshow="2023-march13"] .text-item-0 {
  top: 45.21%;
  left: 0%;
  width: 23.83%;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.template-over-3-links .overlay-item.image-item-0 {
  top: 25.56%;
  left: 6.74%;
  width: 27.2%;
  height: 27.13%;
}

.template-over-3-links .overlay-item.image-item-1 {
  top: 25.56%;
  left: 36.27%;
  width: 27.2%;
  height: 27.13%;
}

.template-over-3-links .overlay-item.image-item-2 {
  top: 25.56%;
  left: 65.69%;
  width: 27.2%;
  height: 27.13%;
}

.template-over-3-links .overlay-item.image-item-3 {
  top: 64.17%;
  left: 0%;
  width: 23.83%;
  height: 35.65%;
}

.template-over-3-links .text-item-0 {
  top: 17.56%;
  left: 30.93%;
  width: 38.13%;
}

.template-over-3-links .text-item-1 {
  top: 52.86%;
  left: 6.97%;
  width: 26.86%;
}

.template-over-3-links .text-item-2 {
  top: 52.86%;
  left: 36.39%;
  width: 26.86%;
}

.template-over-3-links .text-item-3 {
  top: 52.86%;
  left: 65.93%;
  width: 26.86%;
}

.template-over-3-links .text-item-4 {
  top: 76%;
  left: 6.27%;
  width: 86.86%;
}

.template-over-3-links .overlay-item.image-item-0,
.template-over-3-links .overlay-item.image-item-1,
.template-over-3-links .overlay-item.image-item-2 {
  border-radius: 6px;
  border: 1px solid white;
  overflow: hidden;
}

.template-over-3-links .overlay-item.image-item-0 a,
.template-over-3-links .overlay-item.image-item-1 a,
.template-over-3-links .overlay-item.image-item-2 a {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.template-over-3-links .text-item-0 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  font-family: "Domine", georgia, serif;
}

.template-over-3-links .text-item-1,
.template-over-3-links .text-item-2,
.template-over-3-links .text-item-3 {
  font-size: 15px;
  padding-top: 6px;
  font-weight: 500;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-over-3-links .text-item-4 {
  text-align: center;
  font-size: 24px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 0;
  font-family: "Domine", georgia, serif;
}

.template-over-bar-logo-button .overlay-item.image-item-0 {
  top: 77.21%;
  left: 0%;
  width: 100%;
  height: 19.13%;
  padding-left: 23.83%;
  padding-right: 22.55%;
  line-height: 1.3;
}

.template-over-bar-logo-button .overlay-item.image-item-1 {
  top: 64.17%;
  left: 0%;
  width: 23.83%;
  height: 35.65%;
}

.template-over-bar-logo-button .text-item-0 {
  top: 80.52%;
  left: 23.83%;
  width: 53.6%;
}

.template-over-bar-logo-button .text-item-1 {
  top: 83.82%;
  left: 78.95%;
  width: 17.44%;
}

.template-over-bar-logo-button-video .overlay-item.image-item-0 {
  top: 77.21%;
  left: 0%;
  width: 100%;
  height: 19.13%;
  padding-left: 23.83%;
  padding-right: 27.67%;
}

.template-over-bar-logo-button-video .overlay-item.image-item-1 {
  top: 64.17%;
  left: 0%;
  width: 23.83%;
  height: 35.65%;
}

.template-over-bar-logo-button-video .text-item-0 {
  top: 80.52%;
  left: 23.83%;
  width: 53.6%;
}

.template-over-bar-logo-button-video .text-item-1 {
  top: 86.08%;
  left: 78.95%;
  width: 17.44%;
}

.template-over-bar-logo .overlay-item.image-item-0 {
  top: 77.21%;
  left: 0%;
  width: 100%;
  height: 19.13%;
  padding-left: 23.83%;
  padding-right: 4.18%;
}

.template-over-bar-logo .overlay-item.image-item-1 {
  top: 64.17%;
  left: 0%;
  width: 23.83%;
  height: 35.65%;
}

.template-over-bar-logo .text-item-0 {
  top: 80.52%;
  left: 23.83%;
  width: 71.97%;
}

.template-over-bar-logo-with-bar .lead,
.template-over-bar-logo-with-bar .text-item,
.template-over-bar-logo-with-bar .floater-texter {
  color: white;
}

.template-over-master .overlay-item.image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-overlay-c1-central-ohio .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-overlay-c1-central-ohio .image-item-1 {
  top: 64.17%;
  left: 0%;
  width: 23.83%;
  height: 35.65%;
}

.template-overlay-c1-central-ohio .text-item-0 {
  top: 78.26%;
  left: 23.83%;
  width: 58.13%;
}

.template-overlay-end-link .text-item-0 {
  font-family: "Domine", georgia, serif;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  top: 6.95%;
  width: 100%;
  z-index: 10;
}

.template-overlay-end-link .text-item-0 .largest {
  font-size: 6.8rem;
}

.template-overlay-end-link .text-item-0 .medium {
  font-size: 2.5rem;
}

.template-overlay-end-link .text-item-1 {
  top: 60.86%;
  left: 24.41%;
  width: 53.48%;
  color: #fff;
  font-family: "Domine", georgia, serif;
  font-size: 0.6rem;
  line-height: 1;
}

@media (min-width: 992px) {
  .template-overlay-end-link .text-item-1 {
    font-size: 1.1rem;
  }
}

.template-overlay-end-link .text-item-2 {
  top: 65.21%;
  left: 24.41%;
  width: 53.48%;
  color: #fff;
  font-family: "Domine", georgia, serif;
  line-height: 1;
  font-size: 0.6rem;
  font-weight: bold;
}

@media (min-width: 992px) {
  .template-overlay-end-link .text-item-2 {
    font-size: 1.2rem;
  }
}

.template-overlay-end-link .text-item-3 {
  font-family: "Domine", georgia, serif;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  top: 75%;
  width: 100%;
  height: 15%;
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .template-overlay-end-link .text-item-3 {
    top: 81%;
  }
}

.template-overlay-end-link .text-item-3 .wrapper {
  background: #fff;
  color: #369;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .template-overlay-end-link .text-item-3 .wrapper {
    font-size: 10px;
  }
}

.template-overlay-end-link .text-item-3 a {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
}

.template-overlay-end-link .text-item-3 span {
  font-size: 12px;
  padding: 0;
}

@media (min-width: 992px) {
  .template-overlay-end-link .text-item-3 span {
    font-size: 16px;
  }
}

.template-overlay-end-link .image-item-0.overlay-item {
  top: 13.04%;
  left: 23.25%;
  width: 55.81%;
  height: 46.95%;
  border-radius: 16px;
  border: 2px solid white;
  overflow: hidden;
}

.template-overlay-end-link .image-item-0.overlay-item a {
  display: block;
  height: 100%;
}

.template-x0l-7 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 74.78%;
}

.template-x0l-7 .image-item-1 {
  top: 27.3%;
  left: 52.44%;
  width: 45.11%;
  height: 24.34%;
}

.template-x0l-7 .image-item-2 {
  top: 3.65%;
  left: 52.44%;
  width: 22.09%;
  height: 21.91%;
}

.template-x0l-7 .image-item-3 {
  top: 3.65%;
  left: 75.46%;
  width: 22.09%;
  height: 21.91%;
}

.template-x0l-7 .image-item-4 {
  top: 53.04%;
  left: 52.44%;
  width: 22.09%;
  height: 21.91%;
}

.template-x0l-7 .image-item-5 {
  top: 53.04%;
  left: 75.46%;
  width: 22.09%;
  height: 21.91%;
}

.template-r0l-7 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-r0l-7 .image-item-1 {
  top: 33.73%;
  left: 62.2%;
  width: 37.79%;
  height: 31.65%;
}

.template-r0l-7 .image-item-2 {
  top: 6.78%;
  left: 62.2%;
  width: 23.25%;
  height: 23.13%;
}

.template-r0l-7 .text-item-0 {
  top: 68.86%;
  left: 62.2%;
  width: 35.23%;
}

.template-r0l-1 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-r0l-1 .image-item-1 {
  top: 6.78%;
  left: 62.2%;
  width: 32.55%;
  height: 38.95%;
}

.template-r0l-1 .text-item-0 {
  top: 49.21%;
  left: 63.72%;
  width: 29.18%;
}

.template-overlay-end-link-3x2 .text-item-0 {
  font-family: "Domine", georgia, serif;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  top: 6.95%;
  width: 100%;
}

.template-overlay-end-link-3x2 .text-item-0 .largest {
  font-size: 6.8rem;
}

.template-overlay-end-link-3x2 .text-item-0 .medium {
  font-size: 2.5rem;
}

.template-overlay-end-link-3x2 .text-item-1 {
  top: 60.86%;
  left: 24.41%;
  width: 53.48%;
  color: #fff;
  font-family: "Domine", georgia, serif;
  font-size: 0.6rem;
  line-height: 1;
}

@media (min-width: 992px) {
  .template-overlay-end-link-3x2 .text-item-1 {
    font-size: 1.1rem;
  }
}

.template-overlay-end-link-3x2 .text-item-2 {
  top: 65.21%;
  left: 24.41%;
  width: 53.48%;
  color: #fff;
  font-family: "Domine", georgia, serif;
  line-height: 1;
  font-size: 0.6rem;
  font-weight: bold;
}

@media (min-width: 992px) {
  .template-overlay-end-link-3x2 .text-item-2 {
    font-size: 1.2rem;
  }
}

.template-overlay-end-link-3x2 .text-item-3 {
  font-family: "Domine", georgia, serif;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  top: 75%;
  width: 100%;
  height: 15%;
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .template-overlay-end-link-3x2 .text-item-3 {
    top: 81%;
  }
}

.template-overlay-end-link-3x2 .text-item-3 .wrapper {
  background: #fff;
  color: #369;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .template-overlay-end-link-3x2 .text-item-3 .wrapper {
    font-size: 10px;
  }
}

.template-overlay-end-link-3x2 .text-item-3 a {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
}

.template-overlay-end-link-3x2 .text-item-3 span {
  font-size: 12px;
}

@media (min-width: 992px) {
  .template-overlay-end-link-3x2 .text-item-3 span {
    font-size: 16px;
  }
}

.template-overlay-end-link-3x2 .image-item-0 {
  top: 13.04%;
  left: 23.25%;
  border-radius: 16px;
  border: 2px solid white;
  overflow: hidden;
}

.template-over-3-links .overlay-item.image-item-0 {
  top: 25.56%;
  left: 6.74%;
  width: 27.2%;
  height: 27.13%;
}

.template-over-3-links .overlay-item.image-item-1 {
  top: 25.56%;
  left: 36.27%;
  width: 27.2%;
  height: 27.13%;
}

.template-over-3-links .overlay-item.image-item-2 {
  top: 25.56%;
  left: 65.69%;
  width: 27.2%;
  height: 27.13%;
}

.template-over-3-links .overlay-item.image-item-3 {
  top: 64.17%;
  left: 0%;
  width: 23.83%;
  height: 35.65%;
}

.template-over-3-links .text-item-0 {
  top: 17.56%;
  left: 30.93%;
  width: 38.13%;
}

.template-over-3-links .text-item-1 {
  top: 52.86%;
  left: 6.97%;
  width: 26.86%;
}

.template-over-3-links .text-item-2 {
  top: 52.86%;
  left: 36.39%;
  width: 26.86%;
}

.template-over-3-links .text-item-3 {
  top: 52.86%;
  left: 65.93%;
  width: 26.86%;
}

.template-over-3-links .text-item-4 {
  top: 76%;
  left: 6.27%;
  width: 86.86%;
}

.template-over-3-links .overlay-item.image-item-0,
.template-over-3-links .overlay-item.image-item-1,
.template-over-3-links .overlay-item.image-item-2 {
  border-radius: 6px;
  border: 1px solid white;
  overflow: hidden;
}

.template-over-3-links .overlay-item.image-item-0 a,
.template-over-3-links .overlay-item.image-item-1 a,
.template-over-3-links .overlay-item.image-item-2 a {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.template-over-3-links .text-item-0 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  font-family: "Domine", georgia, serif;
}

.template-over-3-links .text-item-1,
.template-over-3-links .text-item-2,
.template-over-3-links .text-item-3 {
  font-size: 15px;
  padding-top: 6px;
  font-weight: 500;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-over-3-links .text-item-4 {
  text-align: center;
  font-size: 24px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 0;
  font-family: "Domine", georgia, serif;
}

.template-k1r-2 .image-item-0 {
  top: 14.26%;
  left: 0%;
  width: 71.86%;
  height: 71.65%;
}

.template-k1r-2 .image-item-1 {
  top: 14.26%;
  left: 73.6%;
  width: 24.06%;
  height: 28.69%;
}

.template-k1r-2 .text-item-0 {
  top: 46.6%;
  left: 73.6%;
  width: 24.06%;
}

.template-k1l-2 .image-item-0 {
  top: 14.26%;
  left: 28.13%;
  width: 71.86%;
  height: 71.65%;
}

.template-k1l-2 .image-item-1 {
  top: 14.26%;
  left: 2.32%;
  width: 24.06%;
  height: 28.69%;
}

.template-k1l-2 .text-item-0 {
  top: 46.6%;
  left: 2.32%;
  width: 23.95%;
}

.template-e0l-17-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-17-a .image-item-1 {
  top: 13.56%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-e0l-17-a .image-item-2 {
  top: 47.65%;
  left: 74.41%;
  width: 23.25%;
  height: 34.78%;
}

.template-c1-q-over-image .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-q-over-image .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-q-over-image .text-item-0 {
  top: 24%;
  left: 57.67%;
  width: 33.37%;
}

.template-c1-q-over-image .text-item-0 {
  font-weight: bold;
  font-family: "Domine", georgia, serif;
  font-size: 24px;
  text-align: center;
}

.template-c1-q-over-image .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
}

.template-c1-over-image .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-over-image .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-over-image-02 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-over-image-02 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-over-image-02 .text-item-0 {
  top: 7.65%;
  left: 2.44%;
  width: 95.11%;
  text-align: center;
  font-size: 80px;
  font-weight: 600;
  text-shadow: 0px 0px 10px #000000;
  color: #fff;
  font-family: "Oswald", sans-serif;
  line-height: 1.2;
}

.template-c1-over-image-02 .text-item-1 {
  top: auto;
  bottom: 34.78%;
  left: 16.86%;
  width: 67.44%;
  color: #000;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1.2;
}

.pswp__item .template-c1-over-image-02 .text-item-1 {
  color: #000 !important;
}

.template-c1-0-video-4 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-a-link .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-link .image-item-1 {
  top: 20.34%;
  left: 26.74%;
  width: 46.39%;
  height: 41.56%;
}

.template-a-link .text-item-0 {
  top: 13.56%;
  left: 30.93%;
  width: 38.13%;
}

.template-a-link .text-item-1 {
  top: 65.56%;
  left: 32.55%;
  width: 34.65%;
}

.template-a-link .text-item-2 {
  top: 75.3%;
  left: 41.97%;
  width: 15.81%;
}

.template-a-link .image-item-0 {
  border-radius: 16px;
  border: 2px solid white;
  overflow: hidden;
}

.template-a-link-01 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-link-01 .image-item-1 {
  top: 16.34%;
  left: 22.79%;
  width: 54.65%;
  height: 56.86%;
}

.template-a-link-01 .text-item-0 {
  top: 9.56%;
  left: 30.93%;
  width: 38.13%;
}

.template-a-link-01 .text-item-1 {
  top: 76.52%;
  left: 32.55%;
  width: 34.65%;
}

.template-a-link-01 .button-item {
  top: 88.69% !important;
  left: 39.53%;
  width: 15.81%;
}

.template-a-link-01 .button-item .arrow-button-icon {
  display: none;
}

.template-a-link-01 .button-item .slideshow-button {
  left: 0;
}

.template-a-link-01 .button-item span {
  font-size: 18px;
  font-weight: 400;
}

.template-a-link-01 .text-item-0 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.template-a-link-01 .text-item-1 {
  font-size: 16px;
  text-align: center;
}

.template-a-link-01 .text-item-1 .semibold {
  font-weight: 600;
}

.template-a-link-01 .image-item-1 {
  border-radius: 16px;
  border: 2px solid white;
  overflow: hidden;
}

.template-a-historic .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-h0r-13-n .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-n .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 35.65%;
}

.template-h0r-13-n .image-item-2 {
  top: 39.3%;
  left: 0%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0r-13-n .image-item-3 {
  top: 39.3%;
  left: 24.88%;
  width: 22.79%;
  height: 26.95%;
}

.template-h0r-13-n .text-item-0 {
  top: 69.73%;
  left: 2.32%;
  width: 45.34%;
}

.template-h0r-13-m-over-awards .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-13-m-over-awards .image-item-1 {
  top: 0%;
  left: 0%;
  width: 47.67%;
  height: 47.47%;
}

.template-h0r-13-m-over-awards .image-item-2 {
  top: 33.04%;
  left: 1.74%;
  width: 14.76%;
  height: 37.39%;
}

.template-h0r-13-m-over-awards .image-item-3 {
  top: 33.04%;
  left: 16.51%;
  width: 37.44%;
  height: 37.39%;
}

.template-h0r-13-m-over-awards .text-item-0 {
  top: 73.91%;
  left: 2.32%;
  width: 45.34%;
}

.template-over-bar-logo-quote-side-i0r-left .overlay-item.image-item-1 {
  top: 10.43%;
  left: 60.69%;
  width: 25.58%;
  height: 38.26%;
}

.template-over-bar-logo-quote-side-i0r-left .overlay-item.text-item-1 {
  top: 46.95%;
  right: 2.32%;
  width: 48.83%;
}

.template-over-bar-logo-quote-side-i0r-left .overlay-item.text-item-1 .quote {
  display: block;
  font-size: 1.85em;
  line-height: 1.333333;
  font-weight: 700;
  text-align: center;
}

.template-over-bar-logo-quote-side-i0r-left .overlay-item.text-item-1 .source {
  display: block;
  font-size: 1.25em;
  line-height: 1.4;
  margin-top: 0.5em;
  text-align: center;
}

:lang(en) .template-over-bar-logo-quote-side-i0r-left .overlay-item.text-item-1 .source:before {
  text-indent: -1.25em;
  content: "— ";
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .image-item-1 {
  top: 0%;
  left: 0%;
  width: 44.18%;
  height: 44%;
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .image-item-2 {
  top: 47.47%;
  left: 0%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .image-item-3 {
  top: 47.47%;
  left: 23.13%;
  width: 21.04%;
  height: 24.86%;
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .text-item-0 {
  top: 75.65%;
  left: 0%;
  width: 44.18%;
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .image-item-4 {
  top: 10.43%;
  left: 60.69%;
  width: 25.58%;
  height: 38.26%;
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .text-item-1 {
  top: 46.95%;
  right: 2.32%;
  width: 48.83%;
  color: #fff;
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .text-item-1 .quote {
  display: block;
  font-size: 1.85em;
  line-height: 1.333333;
  font-weight: 700;
  text-align: center;
}

.template-i0r-13-b-over-bar-logo-quote-side-i0r-left .text-item-1 .source {
  display: block;
  font-size: 1.25em;
  line-height: 1.4;
  margin-top: 0.5em;
  text-align: center;
}

:lang(en) .template-i0r-13-b-over-bar-logo-quote-side-i0r-left .text-item-1 .source:before {
  text-indent: -1.25em;
  content: "— ";
}

.template-b1-master-over-bar-quote-logo-award-bottom-right .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-master-over-bar-quote-logo-award-bottom-right .image-item-1 {
  top: 53.91%;
  right: 5.81%;
  width: 25.58%;
  height: 38.26%;
}

.template-b1-master-over-bar-quote-logo-award-bottom-right .image-item-2 {
  top: 68.69%;
  right: 24.41%;
  width: 16.27%;
  height: 24.34%;
}

.template-b1-master-over-bar-quote-logo-award-bottom-right .text-item-0 {
  top: 73.04%;
  left: 9.3%;
  width: 50.46%;
}

.template-b1-master-over-bar-quote-logo-award-bottom-right .text-item-0 .quote {
  display: block;
  font-size: 1.85em;
  line-height: 1.333333;
  font-weight: 700;
  text-align: center;
}

.template-b1-master-over-bar-quote-logo-award-bottom-right .text-item-0 .source {
  display: block;
  font-size: 1.25em;
  line-height: 1.4;
  margin-top: 0.5em;
  text-align: center;
}

:lang(en) .template-b1-master-over-bar-quote-logo-award-bottom-right .text-item-0 .source:before {
  text-indent: -1.25em;
  content: "— ";
}

.template-i0l-master-over-bar-quote-logo-award-side-i0l-right .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.48%;
  height: 100%;
}

.template-i0l-master-over-bar-quote-logo-award-side-i0l-right .image-item-1 {
  top: 16.52%;
  right: 15.11%;
  width: 25.58%;
  height: 38.26%;
}

.template-i0l-master-over-bar-quote-logo-award-side-i0l-right .image-item-2 {
  top: 31.3%;
  right: 8.13%;
  width: 16.27%;
  height: 24.34%;
}

.template-i0l-master-over-bar-quote-logo-award-side-i0l-right .text-item-0 {
  top: 62.6%;
  right: 3.48%;
  width: 39.53%;
}

.template-i0l-master-over-bar-quote-logo-award-side-i0l-right .text-item-0 .quote {
  display: block;
  font-size: 1.85em;
  line-height: 1.333333;
  font-weight: 700;
  text-align: center;
}

.template-i0l-master-over-bar-quote-logo-award-side-i0l-right .text-item-0 .source {
  display: block;
  font-size: 1.25em;
  line-height: 1.5;
  margin-top: 0.5em;
  text-align: center;
}

:lang(en) .template-i0l-master-over-bar-quote-logo-award-side-i0l-right .text-item-0 .source:before {
  text-indent: -1.25em;
  content: "— ";
}

.template-b1-master-over-bar-quote-logo-award-bottom-left .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 69.56%;
}

.template-b1-master-over-bar-quote-logo-award-bottom-left .image-item-1 {
  top: 53.91%;
  left: 6.39%;
  width: 25.58%;
  height: 38.26%;
}

.template-b1-master-over-bar-quote-logo-award-bottom-left .image-item-2 {
  top: 69.56%;
  left: 22.09%;
  width: 16.27%;
  height: 24.34%;
}

.template-b1-master-over-bar-quote-logo-award-bottom-left .text-item-0 {
  top: 73.04%;
  right: 9.3%;
  width: 50.46%;
}

.template-b1-master-over-bar-quote-logo-award-bottom-left .text-item-0 .quote {
  display: block;
  font-size: 1.85em;
  line-height: 1.333333;
  font-weight: 700;
  text-align: center;
}

.template-b1-master-over-bar-quote-logo-award-bottom-left .text-item-0 .source {
  display: block;
  font-size: 1.25em;
  line-height: 1.4;
  margin-top: 0.5em;
  text-align: center;
}

:lang(en) .template-b1-master-over-bar-quote-logo-award-bottom-left .text-item-0 .source:before {
  text-indent: -1.25em;
  content: "— ";
}

.template-k0l-master-over-bar-quote-logo-award-side-k0l-right .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-master-over-bar-quote-logo-award-side-k0l-right .image-item-1 {
  top: 19.13%;
  right: 10.46%;
  width: 25.58%;
  height: 38.26%;
}

.template-k0l-master-over-bar-quote-logo-award-side-k0l-right .image-item-2 {
  top: 37.39%;
  right: 5.23%;
  width: 16.27%;
  height: 24.34%;
}

.template-k0l-master-over-bar-quote-logo-award-side-k0l-right .text-item-0 {
  top: 62.6%;
  right: 2.32%;
  width: 34.88%;
}

.template-k0l-master-over-bar-quote-logo-award-side-k0l-right .text-item-0 .quote {
  display: block;
  font-size: 1.85em;
  line-height: 1.333333;
  font-weight: 700;
  text-align: center;
}

.template-k0l-master-over-bar-quote-logo-award-side-k0l-right .text-item-0 .source {
  display: block;
  font-size: 1.25em;
  line-height: 1.5;
  margin-top: 0.5em;
  text-align: center;
  margin-left: 40px;
}

:lang(en) .template-k0l-master-over-bar-quote-logo-award-side-k0l-right .text-item-0 .source:before {
  text-indent: -1.25em;
  content: "— ";
}

.template-custom-ny2020-decade2020-accomplishments .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-custom-ny2020-decade2020-accomplishments .image-item-1 {
  top: 0%;
  left: 0%;
  width: 46.51%;
  height: 100%;
}

.template-custom-ny2020-decade2020-accomplishments .image-item-1:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.template-custom-ny2020-decade2020-accomplishments slidecaption {
  left: 0%;
  top: 86.95%;
  width: 46.51% !important;
  text-align: center;
  font-family: "Century Gothic",muli,sans-serif;
  line-height: 1;
  color: #fff098;
  text-align: center;
  width: 100%;
  text-shadow: 0 0 32px #000, 0 0 24px #000, 0 0 16px #000;
  font-size: 34px;
}

.template-custom-ny2020-decade2020-accomplishments slidecaption span {
  display: block;
  font-size: 15px;
}

.template-custom-ny2020-decade2020-accomplishments slidecaption:not(.text-item-5)::after {
  content: ' ';
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2px;
  height: 35px;
  background: #fff098;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-0 {
  top: 4.34%;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-1 {
  top: 21.04%;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-2 {
  top: 38.08%;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-3 {
  top: 55.13%;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-4 {
  top: 77.39%;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-4:after {
  display: none;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-5 {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  position: absolute;
  left: 0;
  width: 46.51%;
  bottom: 3.47% !important;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-5 a {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%)!important;
  -ms-transform: translateY(-50%)!important;
  -moz-transform: translateY(-50%)!important;
  -o-transform: translateY(-50%)!important;
  transform: translateY(-50%)!important;
  height: 2rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 0.92rem;
  background-color: #272425;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-5 a:after {
  display: none;
}

.template-custom-ny2020-decade2020-accomplishments .text-item-5 a:hover {
  color: #fff !important;
}

.slideshowid-2023-march13 #slide-12 .slideImage-expand {
  display: none !important;
}

@media (min-width: 992px) {
  .editable-body-holder slideimage img,
  #editable_body_holder slideimage img {
    max-height: initial;
  }
}

.template-g0r-18 .text-item-0,
.template-e0r-4 .text-item-0 {
  line-height: 1.4;
}

:lang(el) .template-e0l-4 .text-item-0,
:lang(el) .template-e0r-4 .text-item-0 {
  line-height: 1.2;
}

:lang(hu) .template-e0l-4 .text-item-0,
:lang(hu) .template-e0r-4 .text-item-0,
:lang(fr) .template-e0l-4 .text-item-0,
:lang(fr) .template-e0r-4 .text-item-0 {
  line-height: 1.3;
}

:lang(he) .template-q0l-1a .text-item-0,
:lang(da) .template-q0l-1a .text-item-0,
:lang(nl) .template-q0l-1a .text-item-0,
:lang(el) .template-q0l-1a .text-item-0,
:lang(pt) .template-q0l-1a .text-item-0,
:lang(pt) .template-q0r-1 .text-item-0,
:lang(hu) .template-q0l-1a .text-item-0,
:lang(hu) .template-q0r-1 .text-item-0,
:lang(ru) .template-q0r-1 .text-item-0,
:lang(ru) .template-q0l-1a .text-item-0,
:lang(es) .template-q0l-1a .text-item-0,
:lang(de) .template-q0l-1a .text-item-0,
:lang(fr) .template-q0l-1 .text-item-0,
:lang(fr) .template-q0l-1a .text-item-0 {
  font-size: 17px;
  line-height: 1.2em;
}

:lang(fr) .template-e0r-master[slideshow="2023-march13"] .text-item-0,
:lang(de) .template-e0r-master[slideshow="2023-march13"] .text-item-0,
:lang(el) .template-e0r-master[slideshow="2023-march13"] .text-item-0,
:lang(nl) .template-e0r-master[slideshow="2023-march13"] .text-item-0,
:lang(hu) .template-e0r-master[slideshow="2023-march13"] .text-item-0,
:lang(es) .template-e0r-master[slideshow="2023-march13"] .text-item-0 {
  font-size: 21px;
}

#slide-17 slidecaption.text-item-0 {
  padding: 12px 5px 12px 10%;
}

:lang(nl) #slide-29.template-e0r-4 .text-item-0,
:lang(hu) #slide-29.template-e0r-4 .text-item-0,
:lang(fr) #slide-29.template-e0r-4 .text-item-0,
:lang(el) #slide-29.template-e0r-4 .text-item-0,
:lang(es) #slide-29.template-e0r-4 .text-item-0,
:lang(ru) #slide-29.template-e0r-4 .text-item-0,
:lang(de) #slide-29.template-e0r-4 .text-item-0 {
  top: 38.43%;
}

:lang(es) #slide-36.template-e0l-4 .text-item-0 {
  top: 38.43%;
}

[dir="rtl"] slide[template=c1-master-with-band-special] slidecaption.text-item-0,
[dir="rtl"] slide[template=q0c-3-with-band-special] slidecaption.text-item-1,
[dir="rtl"] slide[template=q0r-1-a-with-band-special] slidecaption.text-item-1,
[dir="rtl"] slide[template=q0l-1a-with-band-special] slidecaption.text-item-1,
[dir="rtl"] slide[template=q0r-1-with-band-special] slidecaption.text-item-1,
[dir="rtl"] slide[template=q0l-1-with-band-special] slidecaption.text-item-1,
[dir="rtl"] slide[template=a-master-with-band-special] slidecaption,
[dir="rtl"] slide[template=d0-master-with-band-special] slidecaption {
  padding: 12px 30px 12px 22%;
  text-align: right;
}

.rus-signator {
  text-align: right;
  margin-top: 10px;
  display: block;
}

.template-h0l-14-l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-14-l .image-item-1 {
  top: 0%;
  left: 52.32%;
  width: 47.67%;
  height: 35.65%;
}

.template-h0l-14-l .image-item-2 {
  top: 39.13%;
  left: 52.2%;
  width: 47.55%;
  height: 40%;
}

.template-h0l-14-l .text-item-0 {
  top: 82.6%;
  left: 52.2%;
  width: 45.23%;
}

.template-x0r-4 .image-item-0 {
  top: 2.95%;
  left: 36.04%;
  width: 63.95%;
  height: 71.65%;
}

.template-x0r-4 .image-item-1 {
  top: 33.56%;
  left: 0%;
  width: 34.18%;
  height: 41.04%;
}

.template-x0r-4 .image-item-2 {
  top: 2.95%;
  left: 6.51%;
  width: 27.79%;
  height: 27.82%;
}

.template-x0l-4 .image-item-0 {
  top: 3.3%;
  left: 0%;
  width: 63.95%;
  height: 71.65%;
}

.template-x0l-4 .image-item-1 {
  top: 33.91%;
  left: 65.69%;
  width: 34.3%;
  height: 41.04%;
}

.template-x0l-4 .image-item-2 {
  top: 3.3%;
  left: 65.69%;
  width: 27.9%;
  height: 27.82%;
}

.template-j0r-14-l .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-14-l .image-item-1 {
  top: 0.17%;
  left: 0%;
  width: 40.81%;
  height: 73.73%;
}

.template-j0r-14-l .text-item-0 {
  top: 75.65%;
  left: 2.09%;
  width: 38.6%;
}

.template-i0r-14-l .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 100%;
}

.template-i0r-14-l .image-item-1 {
  top: 48.86%;
  left: 2.44%;
  width: 41.62%;
  height: 41.56%;
}

.template-i0r-14-l .image-item-2 {
  top: 7.13%;
  left: 18.6%;
  width: 25.58%;
  height: 38.26%;
}

.template-e0l-21 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-21 .image-item-1 {
  top: 0%;
  left: 74.41%;
  width: 25.58%;
  height: 35.47%;
}

.template-e0l-21 .image-item-2 {
  top: 37.56%;
  left: 74.41%;
  width: 25.58%;
  height: 35.47%;
}

.template-e0l-21 .text-item-0 {
  top: 74.78%;
  left: 74.41%;
  width: 23.25%;
}

.template-ha0l-1 .image-item-0 {
  top: 0%;
  left: 46.51%;
  width: 53.48%;
  height: 44.86%;
}

.template-ha0l-1 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 45.11%;
  height: 84.34%;
}

.template-ha0l-1 .image-item-2 {
  top: 47.47%;
  left: 46.51%;
  width: 25.81%;
  height: 36.69%;
}

.template-ha0l-1 .image-item-3 {
  top: 47.47%;
  left: 74.18%;
  width: 25.81%;
  height: 36.69%;
}

.template-ha0l-1 .text-item-0 {
  top: 87.82%;
  left: 11.04%;
  width: 77.9%;
}

.template-y0r-3 .image-item-0 {
  top: 2.26%;
  left: 0%;
  width: 63.95%;
  height: 44.34%;
}

.template-y0r-3 .image-item-1 {
  top: 33.73%;
  left: 65.58%;
  width: 34.41%;
  height: 41.04%;
}

.template-y0r-3 .image-item-2 {
  top: 48.86%;
  left: 0%;
  width: 31.16%;
  height: 26.08%;
}

.template-y0r-3 .image-item-3 {
  top: 48.86%;
  left: 32.79%;
  width: 31.16%;
  height: 26.08%;
}

.template-y0r-3 .image-item-4 {
  top: 2.26%;
  left: 65.46%;
  width: 28.95%;
  height: 28.86%;
}

.template-x0l-4-insert .image-item-0 {
  top: 3.3%;
  left: 0%;
  width: 63.95%;
  height: 71.65%;
}

.template-x0l-4-insert .image-item-1 {
  top: 33.91%;
  left: 65.69%;
  width: 34.3%;
  height: 41.04%;
}

.template-x0l-4-insert .image-item-2 {
  top: 3.3%;
  left: 65.69%;
  width: 27.9%;
  height: 27.82%;
}

.template-x0l-4-insert .image-item-3 {
  top: 11.82%;
  left: 85.46%;
  width: 14.53%;
  height: 21.73%;
}

.template-c1-0-video-2 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 71.65%;
}

.template-c1-0-video-2 .image-item-1 {
  top: 3.47%;
  left: 2.32%;
  width: 34.88%;
  height: 29.21%;
}

.template-c1-0-video-2 .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.template-c1-0-video-2 .video-overlay .vjs-loading-spinner,
.template-c1-0-video-2 .video-overlay .vjs-big-play-button {
  display: none !important;
}

.template-c1-0-video-2 .vjs-control-bar,
.template-c1-0-video-2 .vjs-ended .vjs-poster {
  display: none !important;
}

.template-c1-0-video-2 .item-replay-button {
  position: absolute;
  top: 66.08%;
  z-index: 1000;
  right: 1.27%;
  color: white;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}

.template-c1-0-video-2 .item-replay-button .icon-replay {
  padding: 0 2px;
  color: white;
}

.template-y0l-2 .image-item-0 {
  top: 2.26%;
  left: 36.04%;
  width: 63.95%;
  height: 44.34%;
}

.template-y0l-2 .image-item-1 {
  top: 33.73%;
  left: 0%;
  width: 34.41%;
  height: 41.04%;
}

.template-y0l-2 .image-item-2 {
  top: 48.69%;
  left: 36.04%;
  width: 31.16%;
  height: 26.08%;
}

.template-y0l-2 .image-item-3 {
  top: 48.69%;
  left: 68.83%;
  width: 31.16%;
  height: 26.08%;
}

.template-y0l-2 .image-item-4 {
  top: 2.26%;
  left: 5.46%;
  width: 28.83%;
  height: 28.86%;
}

.template-x0r-3 .image-item-0 {
  top: 2.95%;
  left: 27.67%;
  width: 72.32%;
  height: 72%;
}

.template-x0r-3 .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 25.46%;
  height: 30.6%;
}

.template-x0r-3 .text-item-0 {
  top: 37.04%;
  left: 2.44%;
  width: 23.02%;
}

.template-y0r-1 .image-item-0 {
  top: 2.26%;
  left: 0%;
  width: 63.95%;
  height: 44.34%;
}

.template-y0r-1 .image-item-1 {
  top: 33.73%;
  left: 65.58%;
  width: 34.41%;
  height: 41.04%;
}

.template-y0r-1 .image-item-2 {
  top: 2.26%;
  left: 65.46%;
  width: 28.95%;
  height: 28.86%;
}

.template-y0r-1 .image-item-3 {
  top: 48.69%;
  left: 0%;
  width: 20.23%;
  height: 26.08%;
}

.template-y0r-1 .image-item-4 {
  top: 48.69%;
  left: 21.74%;
  width: 20.23%;
  height: 26.08%;
}

.template-y0r-1 .image-item-5 {
  top: 48.69%;
  left: 43.6%;
  width: 20.23%;
  height: 26.08%;
}

.template-y0r-2 .image-item-0 {
  top: 2.26%;
  left: 0%;
  width: 63.95%;
  height: 44.34%;
}

.template-y0r-2 .image-item-1 {
  top: 33.73%;
  left: 65.58%;
  width: 34.41%;
  height: 41.04%;
}

.template-y0r-2 .image-item-2 {
  top: 2.26%;
  left: 65.46%;
  width: 28.95%;
  height: 28.86%;
}

.template-y0r-2 .image-item-3 {
  top: 48.69%;
  left: 0%;
  width: 20.23%;
  height: 26.08%;
}

.template-y0r-2 .image-item-4 {
  top: 48.69%;
  left: 21.74%;
  width: 20.23%;
  height: 26.08%;
}

.template-y0r-2 .image-item-5 {
  top: 48.69%;
  left: 43.6%;
  width: 20.23%;
  height: 26.08%;
}

.template-y0r-2 .image-item-6 {
  top: 5.21%;
  left: 84.88%;
  width: 14.88%;
  height: 27.3%;
}

.template-over-recognition-with-quote-right .overlay-item.image-item-0 {
  top: 7.3%;
  left: 4.88%;
  width: 54.76%;
}

.template-over-recognition-with-quote-right .overlay-item.image-item-1 {
  top: 64.17%;
  left: 0%;
  width: 23.83%;
  height: 35.65%;
}

.template-over-recognition-with-quote-right .overlay-item.text-item-0 {
  top: 78.26%;
  bottom: 0%;
  left: 0%;
  width: 100%;
  padding-left: 23.25%;
  padding-right: 11.04%;
}

.template-over-recognition-with-quote-right .text-item-1 {
  top: 24.86%;
  left: 58.13%;
  width: 38.72%;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
  font-family: "Domine", georgia, serif;
  font-weight: 500;
  color: white;
}

.template-over-recognition-with-quote-right .text-item-1 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  margin-top: 10px;
}

.template-over-recognition-with-quote-left .overlay-item.image-item-0 {
  top: 7.3%;
  left: auto;
  right: 4.88%;
  width: 54.76%;
}

.template-over-recognition-with-quote-left .overlay-item.image-item-1 {
  top: 64.17%;
  left: 0%;
  width: 23.83%;
  height: 35.65%;
}

.template-over-recognition-with-quote-left .overlay-item.text-item-0 {
  top: 78.26%;
  bottom: 0%;
  left: 0% !important;
  width: 100% !important;
  padding-left: 23.25%;
  padding-right: 1.16%;
  z-index: -1 !important;
  color: white;
}

.template-over-recognition-with-quote-left .text-item-1 {
  top: 8.69%;
  right: 58.13%;
  width: 38.72%;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  font-family: "Domine", georgia, serif;
  font-weight: 500;
  color: white;
}

.template-over-recognition-with-quote-left .text-item-1 p {
  margin-bottom: 5px;
  font-weight: bold;
}

.template-over-recognition-with-quote-left .text-item-1 span {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  margin-top: 10px;
}

.template-over-master .overlay-item.image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-over-bar-text .overlay-item.image-item-0 {
  top: 77.21%;
  left: 0%;
  width: 100%;
  height: 19.13%;
  padding-left: 11.62%;
  padding-right: 4.18%;
}

.template-over-bar-text .text-item-0 {
  top: 80.52%;
  left: 23.83%;
  width: 71.97%;
}

.template-g0r-20 .image-item-0 {
  top: 6.95%;
  left: 27.9%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0r-20 .image-item-1 {
  top: 52%;
  left: 0%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0r-20 .text-item-0 {
  bottom: 50.43%;
  left: 2.32%;
  width: 23.25%;
}

.template-f0l-8 .image-item-0 {
  top: 6.78%;
  left: 0%;
  width: 72.09%;
  height: 89.73%;
}

.template-f0l-8 .image-item-1 {
  top: 38.26%;
  left: 74.41%;
  width: 25.58%;
  height: 47.82%;
}

.template-f0l-8 .text-item-0 {
  bottom: 64.34%;
  left: 74.41%;
  width: 23.25%;
}

.template-c1-t-over .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-t-over .text-item-0 {
  top: 38.95%;
  left: 1.86%;
  width: 95%;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  text-align: center;
  color: #fff;
}

.template-c1-t-over .text-item-0 strong {
  font-weight: 500;
  font-size: 80px;
  line-height: 1.1;
}

.template-c1-t-over .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-c1-t-over-image .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-t-over-image .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-t-over-image .text-item-0 {
  top: 38.95%;
  left: 1.86%;
  width: 95%;
  color: white;
  font-family: "Oswald", "Domine", georgia, serif;
  font-size: 24px;
  text-align: center;
}

.template-c1-t-over-image .text-item-0 strong {
  font-weight: 500;
  font-size: 80px;
  line-height: 1.1;
}

.template-a-t-right .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-right .text-item-0 {
  top: 34.78%;
  left: 49.3%;
  width: 48.13%;
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  line-height: 1.1;
}

.template-a-t-center .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-center .text-item-0 {
  top: 57.91%;
  left: 2.44%;
  width: 95%;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
  line-height: 1.3;
}

.template-a-t-center .text-item-0 .lead-stat-number {
  font-size: 150px;
  line-height: 0.3;
  font-weight: bold;
}

.template-a-t-center .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  display: block;
}

.template-a-image-t-center .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-image-t-center .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-image-t-center .text-item-0 {
  top: 31.3%;
  left: 2.44%;
  width: 95%;
  line-height: 1.2;
  text-align: center;
  font-size: 37px;
  font-weight: 600;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
  line-height: 1.2;
}

.template-a-image-t-center .text-item-0 .lead-stat-number {
  font-size: 150px;
  line-height: 0.3;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
}

.template-a-image-t-center .text-item-0 .lead-stat-number-smaller {
  font-size: 95px;
  line-height: 1.25;
  font-weight: 600;
  display: block;
}

.template-a-image-t-center .text-item-0 .lead-stat-number-2 {
  font-size: 30px;
}

.template-h0r-11a .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-11a .image-item-1 {
  top: 7.65%;
  left: 8.13%;
  width: 34.88%;
  height: 65.21%;
}

.template-h0r-11a .text-item-0 {
  top: 76.34%;
  left: 8.13%;
  width: 34.88%;
}

.template-h2r-2 .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-2 .image-item-1 {
  top: 4.34%;
  left: 2.9%;
  width: 43.72%;
  height: 40.69%;
}

.template-h2r-2 .image-item-2 {
  top: 47.82%;
  left: 25.81%;
  width: 20.93%;
  height: 25.04%;
}

.template-h2r-2 .image-item-3 {
  top: 47.82%;
  left: 2.9%;
  width: 20.81%;
  height: 25.04%;
}

.template-h2r-2 .text-item-0 {
  top: 76.34%;
  left: 2.9%;
  width: 43.72%;
}

.template-h2r-3 .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-3 .image-item-1 {
  top: 4.17%;
  left: 2.67%;
  width: 43.95%;
  height: 36.86%;
}

.template-h2r-3 .image-item-2 {
  top: 43.47%;
  left: 25.58%;
  width: 21.16%;
  height: 27.13%;
}

.template-h2r-3 .image-item-3 {
  top: 43.47%;
  left: 2.67%;
  width: 21.16%;
  height: 26.95%;
}

.template-h2r-3 .text-item-0 {
  top: 74.08%;
  left: 2.67%;
  width: 43.95%;
}

.template-h2r-3a .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-3a .image-item-1 {
  top: 8.34%;
  left: 48.72%;
  width: 48.83%;
  height: 48.69%;
}

.template-h2r-3a .image-item-2 {
  top: 4.17%;
  left: 2.67%;
  width: 43.95%;
  height: 36.86%;
}

.template-h2r-3a .image-item-3 {
  top: 43.47%;
  left: 25.58%;
  width: 21.16%;
  height: 27.13%;
}

.template-h2r-3a .image-item-4 {
  top: 43.47%;
  left: 2.67%;
  width: 21.16%;
  height: 26.95%;
}

.template-h2r-3a .image-item-5 {
  top: 71.82%;
  left: 0%;
  width: 16.16%;
  height: 24.17%;
}

.template-h2r-3a .text-item-0 {
  top: 60.52%;
  left: 52.55%;
  width: 40.69%;
  font-size: 21px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-h2r-3a .text-item-0 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400;
}

.template-h2r-3a .text-item-1 {
  top: 74.95%;
  left: 15.93%;
  width: 29.06%;
}

.template-h2r-4 .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-4 .image-item-1 {
  top: 37.91%;
  left: 3.13%;
  width: 43.48%;
  height: 33.91%;
}

.template-h2r-4 .image-item-2 {
  top: 4.17%;
  left: 25.81%;
  width: 20.93%;
  height: 31.13%;
}

.template-h2r-4 .image-item-3 {
  top: 4.17%;
  left: 3.13%;
  width: 20.81%;
  height: 31.13%;
}

.template-h2r-4 .text-item-0 {
  top: 75.13%;
  left: 3.13%;
  width: 43.48%;
}

.template-h2r-4a .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-4a .image-item-1 {
  top: 8.34%;
  left: 48.72%;
  width: 48.83%;
  height: 48.69%;
}

.template-h2r-4a .image-item-2 {
  top: 37.91%;
  left: 3.13%;
  width: 43.48%;
  height: 33.91%;
}

.template-h2r-4a .image-item-3 {
  top: 4.17%;
  left: 25.81%;
  width: 20.93%;
  height: 31.13%;
}

.template-h2r-4a .image-item-4 {
  top: 4.17%;
  left: 3.13%;
  width: 20.81%;
  height: 31.13%;
}

.template-h2r-4a .image-item-5 {
  top: 71.82%;
  left: 0%;
  width: 16.16%;
  height: 24.17%;
}

.template-h2r-4a .text-item-0 {
  top: 60.52%;
  left: 52.55%;
  width: 40.69%;
  color: #fff;
  font-size: 21px;
  text-align: center;
  font-weight: bold;
  font-family: "Domine", georgia, serif;
  line-height: 1.2;
}

.template-h2r-4a .text-item-0 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400;
}

.template-h2r-4a .text-item-1 {
  top: 74.95%;
  left: 15.93%;
  width: 29.06%;
}

.template-h2r-5 .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-5 .image-item-1 {
  top: 4.17%;
  left: 3.13%;
  width: 43.48%;
  height: 33.91%;
}

.template-h2r-5 .image-item-2 {
  top: 40.52%;
  left: 25.81%;
  width: 20.93%;
  height: 31.13%;
}

.template-h2r-5 .image-item-3 {
  top: 40.52%;
  left: 3.13%;
  width: 20.81%;
  height: 31.13%;
}

.template-h2r-5 .text-item-0 {
  top: 75.3%;
  left: 3.13%;
  width: 43.48%;
}

.template-h2r-5a .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-5a .image-item-1 {
  top: 8.34%;
  left: 48.72%;
  width: 48.83%;
  height: 48.69%;
}

.template-h2r-5a .image-item-2 {
  top: 4.17%;
  left: 3.13%;
  width: 43.48%;
  height: 33.91%;
}

.template-h2r-5a .image-item-3 {
  top: 40.52%;
  left: 25.81%;
  width: 20.93%;
  height: 31.13%;
}

.template-h2r-5a .image-item-4 {
  top: 40.52%;
  left: 3.13%;
  width: 20.81%;
  height: 31.13%;
}

.template-h2r-5a .image-item-5 {
  top: 71.82%;
  left: 0%;
  width: 16.16%;
  height: 24.17%;
}

.template-h2r-5a .text-item-0 {
  top: 60.52%;
  left: 52.55%;
  width: 40.69%;
}

.template-h2r-6 .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-6 .image-item-1 {
  top: 33.91%;
  left: 2.67%;
  width: 43.95%;
  height: 36.86%;
}

.template-h2r-6 .image-item-2 {
  top: 4.17%;
  left: 25.58%;
  width: 21.16%;
  height: 27.13%;
}

.template-h2r-6 .image-item-3 {
  top: 4.17%;
  left: 2.67%;
  width: 21.16%;
  height: 26.95%;
}

.template-h2r-6 .text-item-0 {
  top: 74.26%;
  left: 2.67%;
  width: 43.95%;
}

.template-h2r-6a .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-6a .image-item-1 {
  top: 8.34%;
  left: 48.72%;
  width: 48.83%;
  height: 48.69%;
}

.template-h2r-6a .image-item-2 {
  top: 33.91%;
  left: 2.67%;
  width: 43.95%;
  height: 36.86%;
}

.template-h2r-6a .image-item-3 {
  top: 4.17%;
  left: 25.58%;
  width: 21.16%;
  height: 27.13%;
}

.template-h2r-6a .image-item-4 {
  top: 4.17%;
  left: 2.67%;
  width: 21.16%;
  height: 26.95%;
}

.template-h2r-6a .image-item-5 {
  top: 71.82%;
  left: 0%;
  width: 16.16%;
  height: 24.17%;
}

.template-h2r-6a .text-item-0 {
  top: 60.52%;
  left: 52.55%;
  width: 40.69%;
  font-size: 21px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-h2r-6a .text-item-0 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400;
}

.template-h2r-6a .text-item-1 {
  top: 73.04%;
  left: 15.93%;
  width: 31.39%;
}

.template-h2r-7 .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-7 .image-item-1 {
  top: 38.08%;
  left: 0%;
  width: 22.67%;
  height: 31.3%;
}

.template-h2r-7 .image-item-2 {
  top: 4.17%;
  left: 24.41%;
  width: 22.67%;
  height: 31.13%;
}

.template-h2r-7 .image-item-3 {
  top: 4.17%;
  left: 0%;
  width: 22.55%;
  height: 31.13%;
}

.template-h2r-7 .image-item-4 {
  top: 38.08%;
  left: 24.3%;
  width: 22.55%;
  height: 31.13%;
}

.template-h2r-7 .text-item-0 {
  top: 72.86%;
  left: 2.44%;
  width: 44.53%;
}

.template-h2r-7a .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-7a .image-item-1 {
  top: 8.34%;
  left: 48.72%;
  width: 48.83%;
  height: 48.69%;
}

.template-h2r-7a .image-item-3 {
  top: 38.08%;
  left: 0%;
  width: 22.67%;
  height: 31.3%;
}

.template-h2r-7a .image-item-2 {
  top: 4.17%;
  left: 24.41%;
  width: 22.67%;
  height: 31.13%;
}

.template-h2r-7a .image-item-4 {
  top: 4.17%;
  left: 0%;
  width: 22.55%;
  height: 31.13%;
}

.template-h2r-7a .image-item-5 {
  top: 38.08%;
  left: 24.3%;
  width: 22.55%;
  height: 31.13%;
}

.template-h2r-7a .image-item-6 {
  top: 71.82%;
  left: 0%;
  width: 16.16%;
  height: 24.17%;
}

.template-h2r-7a .text-item-0 {
  top: 60.52%;
  left: 52.55%;
  width: 40.69%;
  font-size: 21px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-h2r-7a .text-item-0 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400;
}

.template-h2r-7a .text-item-1 {
  top: 73.04%;
  left: 15.93%;
  width: 29.06%;
}

.template-h2r-8 .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-8 .image-item-1 {
  top: 4.17%;
  left: 19.88%;
  width: 27.32%;
  height: 28.17%;
}

.template-h2r-8 .image-item-2 {
  top: 34.08%;
  left: 0%;
  width: 27.32%;
  height: 28.17%;
}

.template-h2r-8 .image-item-3 {
  top: 4.17%;
  left: 0%;
  width: 18.83%;
  height: 28.17%;
}

.template-h2r-8 .image-item-4 {
  top: 34.08%;
  left: 28.37%;
  width: 18.83%;
  height: 28.17%;
}

.template-h2r-8 .text-item-0 {
  top: 29.04%;
  left: 19.88%;
  width: 27.32%;
}

.template-h2r-8a .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2r-8a .image-item-1 {
  top: 8.34%;
  left: 48.72%;
  width: 48.83%;
  height: 48.69%;
}

.template-h2r-8a .image-item-2 {
  top: 4.17%;
  left: 19.88%;
  width: 27.32%;
  height: 28.17%;
}

.template-h2r-8a .image-item-3 {
  top: 34.08%;
  left: 0%;
  width: 27.32%;
  height: 28.17%;
}

.template-h2r-8a .image-item-4 {
  top: 4.17%;
  left: 0%;
  width: 18.83%;
  height: 28.17%;
}

.template-h2r-8a .image-item-5 {
  top: 34.08%;
  left: 28.37%;
  width: 18.83%;
  height: 28.17%;
}

.template-h2r-8a .image-item-6 {
  top: 71.82%;
  left: 0%;
  width: 16.16%;
  height: 24.17%;
}

.template-h2r-8a .text-item-0 {
  top: 60.52%;
  left: 52.55%;
  width: 40.69%;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-h2r-8a .text-item-0 span {
  font-weight: 400;
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.template-h2r-8a .text-item-1 {
  top: 74.95%;
  left: 15.93%;
  width: 29.06%;
}

.template-k0l-14-f .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-f .image-item-1 {
  top: 44.34%;
  left: 61.97%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-f .image-item-2 {
  top: 6.95%;
  left: 61.97%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-14-f .image-item-3 {
  top: 6.95%;
  left: 81.62%;
  width: 18.13%;
  height: 33.91%;
}

.template-k0l-14-f .text-item-0 {
  top: 85.39%;
  left: 64.3%;
  width: 35.46%;
}

.template-k0l-21a .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-21a .image-item-1 {
  top: 6.95%;
  left: 61.97%;
  width: 38.02%;
  height: 37.73%;
}

.template-k0l-21a .image-item-2 {
  top: 47.47%;
  left: 61.97%;
  width: 18.13%;
  height: 27.13%;
}

.template-k0l-21a .image-item-3 {
  top: 47.47%;
  left: 81.86%;
  width: 18.13%;
  height: 27.13%;
}

.template-k0l-21a .text-item-0 {
  top: 78.26%;
  left: 62.2%;
  width: 37.79%;
}

.template-k0l-22 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-22 .image-item-1 {
  top: 6.95%;
  left: 62.2%;
  width: 37.79%;
  height: 31.65%;
}

.template-k0l-22 .image-item-2 {
  top: 41.21%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-22 .image-item-3 {
  top: 41.21%;
  left: 82.09%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-22 .text-item-0 {
  top: 69.56%;
  left: 62.2%;
  right: 0;
}

.template-k0r-21 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-21 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 38.02%;
  height: 37.73%;
}

.template-k0r-21 .image-item-2 {
  top: 47.47%;
  left: 0%;
  width: 18.13%;
  height: 27.13%;
}

.template-k0r-21 .image-item-3 {
  top: 47.47%;
  left: 19.88%;
  width: 18.13%;
  height: 27.13%;
}

.template-k0r-21 .text-item-0 {
  top: 41.39%;
  left: 0.23%;
  width: 37.79%;
}

.template-k0r-22 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-22 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 37.67%;
  height: 31.65%;
}

.template-k0r-22 .image-item-2 {
  top: 41.21%;
  left: 0%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-22 .image-item-3 {
  top: 41.21%;
  left: 19.88%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-22 .text-item-0 {
  top: 71.47%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0r-22 .overlay-item.image-item-1 {
  top: 60.34%;
  right: 0;
  left: auto !important;
}

.template-k0r-22 .overlay-item.image-item-1 img {
  position: absolute;
  top: auto;
  bottom: 0 !important;
}

.template-k0l-25 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-25 .image-item-1 {
  top: 6.95%;
  left: 61.51%;
  width: 38.48%;
  height: 32.34%;
}

.template-k0l-25 .image-item-2 {
  top: 41.91%;
  left: 61.51%;
  width: 38.48%;
  height: 32.34%;
}

.template-k0l-25 .text-item-0 {
  top: 77.73%;
  left: 61.51%;
  width: 36.04%;
}

.template-k0l-26 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-26 .image-item-1 {
  top: 6.95%;
  left: 61.62%;
  width: 34.3%;
  height: 34.08%;
}

.template-k0l-26 .image-item-2 {
  top: 43.65%;
  left: 61.62%;
  width: 34.3%;
  height: 28.69%;
}

.template-k0l-26 .text-item-0 {
  top: 76%;
  left: 61.62%;
  width: 34.3%;
}

.template-k0r-25 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-25 .image-item-1 {
  top: 6.95%;
  left: 0%;
  width: 38.37%;
  height: 32.34%;
}

.template-k0r-25 .image-item-2 {
  top: 41.91%;
  left: 0%;
  width: 38.37%;
  height: 32.34%;
}

.template-k0r-25 .text-item-0 {
  top: 77.73%;
  left: 2.44%;
  width: 35.81%;
}

.template-k0r-26 .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-26 .image-item-1 {
  top: 43.65%;
  left: 4.18%;
  width: 34.3%;
  height: 28.69%;
}

.template-k0r-26 .image-item-2 {
  top: 6.95%;
  left: 4.18%;
  width: 34.18%;
  height: 34.08%;
}

.template-k0r-26 .text-item-0 {
  top: 73.91%;
  left: 4.18%;
  width: 34.18%;
}

.template-h2l-2a .image-item-0 {
  top: 4.17%;
  left: 48.83%;
  width: 48.83%;
  height: 91.65%;
}

.template-h2l-2a .image-item-1 {
  top: 8.34%;
  left: 48.72%;
  width: 48.83%;
  height: 48.69%;
}

.template-h2l-2a .image-item-2 {
  top: 4.34%;
  left: 2.9%;
  width: 43.72%;
  height: 40.69%;
}

.template-h2l-2a .image-item-3 {
  top: 47.82%;
  left: 25.81%;
  width: 20.93%;
  height: 25.04%;
}

.template-h2l-2a .image-item-4 {
  top: 47.82%;
  left: 2.9%;
  width: 20.81%;
  height: 25.04%;
}

.template-h2l-2a .image-item-5 {
  top: 71.82%;
  left: 0%;
  width: 16.16%;
  height: 24.17%;
}

.template-h2l-2a .text-item-0 {
  top: 60.52%;
  left: 52.55%;
  width: 40.69%;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-family: "Domine", georgia, serif;
}

.template-h2l-2a .text-item-0 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400;
}

.template-h2l-2a .text-item-1 {
  top: 74.95%;
  left: 15.93%;
  width: 29.06%;
}

.template-k0l-23 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-23 .image-item-1 {
  top: 36.69%;
  left: 61.97%;
  width: 38.02%;
  height: 37.73%;
}

.template-k0l-23 .image-item-2 {
  top: 6.95%;
  left: 61.97%;
  width: 18.13%;
  height: 27.13%;
}

.template-k0l-23 .image-item-3 {
  top: 6.95%;
  left: 81.86%;
  width: 18.13%;
  height: 27.13%;
}

.template-k0l-23 .text-item-0 {
  top: 78.08%;
  left: 61.97%;
  width: 35.58%;
}

.template-k0r-23 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-23 .image-item-1 {
  top: 36.69%;
  left: 61.97%;
  width: 38.02%;
  height: 37.73%;
}

.template-k0r-23 .image-item-2 {
  top: 6.95%;
  left: 61.97%;
  width: 18.13%;
  height: 27.13%;
}

.template-k0r-23 .image-item-3 {
  top: 6.95%;
  left: 81.86%;
  width: 18.13%;
  height: 27.13%;
}

.template-k0r-23 .text-item-0 {
  top: 78.08%;
  left: 61.97%;
  width: 35.58%;
}

.template-k0r-24 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-24 .image-item-1 {
  top: 36.34%;
  left: 62.2%;
  width: 37.79%;
  height: 31.65%;
}

.template-k0r-24 .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-24 .image-item-3 {
  top: 6.95%;
  left: 82.09%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0r-24 .text-item-0 {
  top: 71.47%;
  left: 62.2%;
  width: 35.46%;
}

.template-k1l-1 .image-item-0 {
  top: 14.26%;
  left: 28.13%;
  width: 71.86%;
  height: 71.65%;
}

.template-k1l-1 .image-item-1 {
  top: 17.04%;
  left: 0%;
  width: 25.58%;
  height: 38.26%;
}

.template-k1l-1 .text-item-0 {
  top: 58.78%;
  left: 2.44%;
  width: 23.13%;
}

.template-k1r-1 .image-item-0 {
  top: 14.26%;
  left: 0%;
  width: 71.86%;
  height: 71.65%;
}

.template-k1r-1 .image-item-1 {
  top: 17.04%;
  left: 74.41%;
  width: 25.58%;
  height: 38.26%;
}

.template-k1r-1 .text-item-0 {
  top: 58.78%;
  left: 74.41%;
  width: 23.13%;
}

.template-k2l-1a .image-item-0 {
  top: 2.95%;
  left: 0%;
  width: 73.25%;
  height: 72%;
}

.template-k2l-1a .image-item-1 {
  top: 2.95%;
  left: 74.41%;
  width: 25.58%;
  height: 28.86%;
}

.template-k2l-1a .image-item-2 {
  top: 34.26%;
  left: 74.41%;
  width: 25.58%;
  height: 28.86%;
}

.template-k2l-1a .image-item-3 {
  top: 65.56%;
  left: 74.41%;
  width: 25.58%;
  height: 28.86%;
}

.template-k2l-1a .image-item-4 {
  top: 71.82%;
  left: 0%;
  width: 16.16%;
  height: 24.17%;
}

.template-k2l-1a .text-item-0 {
  top: 78.6%;
  left: 16.16%;
  width: 56.97%;
}

.template-k2r-1a .image-item-0 {
  top: 2.95%;
  left: 26.74%;
  width: 73.25%;
  height: 72%;
}

.template-k2r-1a .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 25.46%;
  height: 28.86%;
}

.template-k2r-1a .image-item-2 {
  top: 34.26%;
  left: 0%;
  width: 25.46%;
  height: 28.86%;
}

.template-k2r-1a .image-item-3 {
  top: 65.56%;
  left: 0%;
  width: 25.46%;
  height: 28.86%;
}

.template-k2r-1a .image-item-4 {
  top: 71.82%;
  left: 83.72%;
  width: 16.16%;
  height: 24.17%;
}

.template-k2r-1a .text-item-0 {
  top: 78.6%;
  left: 26.74%;
  width: 56.97%;
}

.template-over-bar-left-button-video {
  position: absolute;
  left: 23.25% !important;
  top: 73.04% !important;
}

.template-x0r-4-alt .image-item-0 {
  top: 2.95%;
  left: 36.04%;
  width: 63.95%;
  height: 71.65%;
}

.template-x0r-4-alt .image-item-1 {
  top: 33.56%;
  left: 0%;
  width: 34.18%;
  height: 41.04%;
}

.template-x0r-4-alt .image-item-2 {
  top: 2.95%;
  left: 6.51%;
  width: 27.79%;
  height: 27.82%;
}

.template-x0r-5 .image-item-0 {
  top: 2.95%;
  left: 0%;
  width: 50.11%;
  height: 46.78%;
}

.template-x0r-5 .image-item-1 {
  top: 2.95%;
  left: 51.74%;
  width: 48.25%;
  height: 72%;
}

.template-x0r-5 .image-item-2 {
  top: 51.13%;
  left: 0%;
  width: 16.04%;
  height: 24%;
}

.template-x0r-5 .image-item-3 {
  top: 51.13%;
  left: 16.97%;
  width: 16.04%;
  height: 24%;
}

.template-x0r-5 .image-item-4 {
  top: 51.13%;
  left: 34.06%;
  width: 16.04%;
  height: 24%;
}

.template-a-quote-7 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-quote-7 .text-item-0 {
  top: 38.26%;
  left: 26.74%;
  width: 48.83%;
  font-family: "Domine", georgia, serif;
  font-weight: bold;
  text-align: center;
  font-size: 22px;
  color: #fff;
}

.template-a-quote-7 .text-item-0 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-a-quote-7 .text-item-1 {
  top: 12.17%;
  left: 13.37%;
  width: 33.72%;
  font-family: "Domine", georgia, serif;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.template-a-quote-7 .text-item-1 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-a-quote-7 .text-item-2 {
  top: 69.56%;
  left: 59.65%;
  width: 33.72%;
  font-family: "Domine", georgia, serif;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.template-a-quote-7 .text-item-2 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-a-quote-7 .text-item-3 {
  top: 9.56%;
  left: 60.46%;
  width: 33.72%;
  font-family: "Domine", georgia, serif;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}

.template-a-quote-7 .text-item-3 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-a-quote-7 .text-item-4 {
  top: 73.04%;
  left: 16.27%;
  width: 27.9%;
  font-family: "Domine", georgia, serif;
  font-weight: bold;
  text-align: center;
  font-size: 19px;
  line-height: 1.2;
  color: #fff;
}

.template-a-quote-7 .text-item-4 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-a-quote-7 .text-item-5 {
  top: 31.82%;
  left: 80.23%;
  width: 14.53%;
  font-family: "Domine", georgia, serif;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.template-a-quote-7 .text-item-5 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-a-quote-7 .text-item-6 {
  top: 44.17%;
  left: 6.04%;
  width: 14.53%;
  font-family: "Domine", georgia, serif;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.template-a-quote-7 .text-item-6 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-e0l-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 72.2%;
  height: 100%;
}

.template-e0l-a .text-item-0 {
  top: 15.65%;
  left: 74.76%;
  right: 0;
  font-size: 23px;
  font-weight: bold;
  font-family: "Domine", georgia, serif;
}

.template-e0l-a .text-item-0 span {
  font-size: 12.8px;
  display: inline-block;
  font-weight: normal;
  margin-top: 10px;
}

.template-k0l-24 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-24 .image-item-1 {
  top: 36.34%;
  left: 62.2%;
  width: 37.79%;
  height: 31.65%;
}

.template-k0l-24 .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-24 .image-item-3 {
  top: 6.95%;
  left: 82.09%;
  width: 17.9%;
  height: 26.78%;
}

.template-k0l-24 .text-item-0 {
  top: 71.47%;
  left: 62.2%;
  width: 35.46%;
}

.template-k3l-1 .image-item-0 {
  top: 3.65%;
  left: 0%;
  width: 59.88%;
  height: 76.52%;
}

.template-k3l-1 .image-item-1 {
  top: 33.73%;
  left: 62.55%;
  width: 37.44%;
  height: 46.6%;
}

.template-k3l-1 .image-item-2 {
  top: 3.47%;
  left: 62.55%;
  width: 29.06%;
  height: 27.82%;
}

.template-k3l-1 .text-item-0 {
  top: 83.82%;
  left: 11.04%;
  width: 77.9%;
}

.template-k3r-1 .image-item-0 {
  top: 3.65%;
  left: 40.11%;
  width: 59.88%;
  height: 76.52%;
}

.template-k3r-1 .image-item-1 {
  top: 33.73%;
  left: 0%;
  width: 37.32%;
  height: 46.6%;
}

.template-k3r-1 .image-item-2 {
  top: 3.47%;
  left: 8.37%;
  width: 29.06%;
  height: 27.82%;
}

.template-k3r-1 .text-item-0 {
  top: 83.82%;
  left: 11.04%;
  width: 77.9%;
}

.template-h0-5r .image-item-0 {
  top: 0%;
  left: 25%;
  width: 50%;
  height: 100%;
}

.template-h0-5r .image-item-1 {
  top: 0%;
  left: 0.11%;
  width: 22.67%;
  height: 42.6%;
}

.template-h0-5r .image-item-2 {
  top: 0%;
  left: 77.32%;
  width: 22.67%;
  height: 42.6%;
}

.template-h0-5r .image-item-3 {
  top: 46.08%;
  left: 77.32%;
  width: 22.67%;
  height: 42.6%;
}

.template-h0-5r .text-item-0 {
  top: 46.08%;
  left: 2.32%;
  width: 20.34%;
}

.template-z1-master .image-item-0 {
  top: 0%;
  left: 4.76%;
  width: 90.69%;
  height: 57.39%;
}

.template-z1-master .image-item-1 {
  top: 60.52%;
  left: 59.53%;
  width: 35.93%;
  height: 35.82%;
}

.template-z1-master .image-item-2 {
  top: 64.17%;
  left: 4.76%;
  width: 19.18%;
  height: 28.69%;
}

.template-z1-master .text-item-0 {
  top: 67.65%;
  left: 26.27%;
  width: 31.04%;
}

.template-z0l-2 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 60.58%;
  height: 60.52%;
}

.template-z0l-2 .image-item-1 {
  top: 6.43%;
  left: 63.72%;
  width: 36.27%;
  height: 47.47%;
}

.template-z0l-2 .image-item-2 {
  top: 64.17%;
  left: 4.76%;
  width: 19.18%;
  height: 28.69%;
}

.template-z0l-2 .text-item-0 {
  top: 71.13%;
  left: 26.27%;
  width: 51.04%;
}

.template-spec-d0 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 76.52%;
}

.template-spec-d0 .text-item-0 {
  top: 80.17%;
  left: 2.44%;
  width: 58.37%;
}

.template-spec-d0 .text-item-1 {
  top: 93.91%;
  right: 0;
  width: 34.53%;
  text-align: center;
}

.template-spec-d0 .button-item-1 {
  top: 80%;
  right: 0;
  width: 34.53%;
  left: auto;
}

.template-spec-d0 .text-item-1 {
  color: #fff;
  font-size: 11px;
}

.template-spec-d0 div.draw-border.draw-border__arrow--white.slideshow-button {
  transform: none !important;
  min-width: 100%;
}

.template-spec-d0 div.draw-border.draw-border__arrow--white.slideshow-button:hover a span {
  color: #fff !important;
}

.template-spec-d0 div.draw-border.draw-border__arrow--white.slideshow-button a {
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  color: #fff !important;
  padding: 15px 10px !important;
  text-align: center;
  line-height: 1.1;
  border-radius: 6px;
  font-weight: 500;
}

.template-spec-d0 div.draw-border.draw-border__arrow--white.slideshow-button a span {
  font-size: 19px;
}

.template-spec-d0 div.draw-border.draw-border__arrow--white.slideshow-button a .arrow-button-icon {
  font-size: 16px;
}

.template-z0r-3 .image-item-0 {
  top: 0%;
  left: 34.88%;
  width: 65.11%;
  height: 60.34%;
}

.template-z0r-3 .image-item-1 {
  top: 6.08%;
  left: 0%;
  width: 32.09%;
  height: 48%;
}

.template-z0r-3 .image-item-2 {
  top: 64.17%;
  left: 4.76%;
  width: 19.18%;
  height: 28.69%;
}

.template-z0r-3 .text-item-0 {
  top: 71.13%;
  left: 26.27%;
  width: 51.04%;
}

.template-z0r-2 .image-item-0 {
  top: 0%;
  left: 39.3%;
  width: 60.69%;
  height: 60.52%;
}

.template-z0r-2 .image-item-1 {
  top: 6.43%;
  left: 0%;
  width: 36.27%;
  height: 47.47%;
}

.template-z0r-2 .image-item-2 {
  top: 64.17%;
  left: 4.76%;
  width: 19.18%;
  height: 28.69%;
}

.template-z0r-2 .text-item-0 {
  top: 71.13%;
  left: 26.27%;
  width: 51.04%;
}

.template-z0l-3 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 65%;
  height: 60.34%;
}

.template-z0l-3 .image-item-1 {
  top: 6.08%;
  left: 67.9%;
  width: 32.09%;
  height: 48%;
}

.template-z0l-3 .image-item-2 {
  top: 64.17%;
  left: 4.76%;
  width: 19.18%;
  height: 28.69%;
}

.template-z0l-3 .text-item-0 {
  top: 71.13%;
  left: 26.27%;
  width: 51.04%;
}

.template-q0r-1b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0r-1b .image-item-1 {
  top: 8.86%;
  left: 38.25%;
  width: 59.3%;
  height: 58.95%;
}

.template-q0r-1b .image-item-2 {
  top: 8.86%;
  left: 2.32%;
  width: 32.9%;
  height: 39.47%;
}

.template-q0r-1b .image-item-3 {
  top: 47.13%;
  left: 83.48%;
  width: 13.95%;
  height: 20.86%;
}

.template-q0r-1b .text-item-0 {
  top: 51.82%;
  left: 2.44%;
  width: 33.02%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-q0r-1b .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0r-1b > .image-item-0:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black !important;
}

.template-q0r-1b .image-item-0 img {
  opacity: 0.3;
}

.template-x0l-3 .image-item-0 {
  top: 2.95%;
  left: 0%;
  width: 72.32%;
  height: 72%;
}

.template-x0l-3 .image-item-1 {
  top: 2.95%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-x0l-3 .text-item-0 {
  top: 37.04%;
  left: 74.41%;
  width: 23.13%;
}

.template-x0l-5 .image-item-0 {
  top: 3.3%;
  left: 0%;
  width: 63.95%;
  height: 71.65%;
}

.template-x0l-5 .image-item-1 {
  top: 33.91%;
  left: 65.69%;
  width: 34.3%;
  height: 41.04%;
}

.template-x0l-5 .image-item-2 {
  top: 3.3%;
  left: 65.69%;
  width: 34.3%;
  height: 27.82%;
}

.template-x0l-5-alt .image-item-0 {
  top: 2.95%;
  left: 49.76%;
  width: 50.23%;
  height: 46.78%;
}

.template-x0l-5-alt .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 48.25%;
  height: 72%;
}

.template-x0l-5-alt .image-item-2 {
  top: 51.13%;
  left: 49.76%;
  width: 16.04%;
  height: 24%;
}

.template-x0l-5-alt .image-item-3 {
  top: 51.13%;
  left: 66.74%;
  width: 16.04%;
  height: 24%;
}

.template-x0l-5-alt .image-item-4 {
  top: 51.13%;
  left: 83.83%;
  width: 16.04%;
  height: 24%;
}

.template-q0l-1b .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0l-1b .image-item-1 {
  top: 3.47%;
  left: 2.32%;
  width: 59.3%;
  height: 70.95%;
}

.template-q0l-1b .image-item-2 {
  top: 8.86%;
  left: 64.53%;
  width: 33.02%;
  height: 39.47%;
}

.template-q0l-1b .image-item-3 {
  top: 53.73%;
  left: 2.32%;
  width: 13.95%;
  height: 20.86%;
}

.template-q0l-1b .text-item-0 {
  top: 51.82%;
  left: 64.53%;
  width: 33.02%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-q0l-1b .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0l-1b > .image-item-0:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black !important;
}

.template-q0l-1b .image-item-0 img {
  opacity: 0.3;
}

.template-x1r-2 .image-item-0 {
  top: 0%;
  left: 43.02%;
  width: 56.97%;
  height: 78.95%;
}

.template-x1r-2 .image-item-1 {
  top: 8.34%;
  left: 3.48%;
  width: 36.04%;
  height: 49.91%;
}

.template-x0r-6 .image-item-0 {
  top: 2.95%;
  left: 27.67%;
  width: 72.32%;
  height: 72%;
}

.template-x0r-6 .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 25.46%;
  height: 61.21%;
}

.template-x0l-6 .image-item-0 {
  top: 2.95%;
  left: 0%;
  width: 60.46%;
  height: 67.65%;
}

.template-x0l-6 .image-item-1 {
  top: 6.43%;
  left: 63.95%;
  width: 32.55%;
  height: 60.69%;
}

.template-v0-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-v0-1 .image-item-1 {
  top: 0%;
  left: 17.44%;
  width: 65.11%;
  height: 52%;
}

.template-v0-1 .image-item-2 {
  top: 24.69%;
  left: 76.74%;
  width: 23.25%;
  height: 52.17%;
}

.template-v0-1 .image-item-3 {
  top: 26.95%;
  left: 0.11%;
  width: 23.02%;
  height: 49.91%;
}

.template-v0-1 .text-item-0 {
  top: 55.3%;
  left: 28.13%;
  width: 43.6%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  font-family: "Domine", georgia, serif;
  color: #fff;
}

.template-v0-1 .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-v0-1 > .image-item-0:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black !important;
}

.template-v0-1 .image-item-0 img {
  opacity: 0.3;
}

.template-o1-master .image-item-0 {
  top: 3.3%;
  left: 2.09%;
  width: 46.51%;
  height: 38.26%;
}

.template-o1-master .image-item-1 {
  top: 3.3%;
  left: 50.93%;
  width: 46.51%;
  height: 38.26%;
}

.template-o1-master .image-item-2 {
  top: 44.34%;
  left: 2.09%;
  width: 46.51%;
  height: 38.26%;
}

.template-o1-master .image-item-3 {
  top: 44.34%;
  left: 50.93%;
  width: 46.51%;
  height: 38.26%;
}

.template-o1-master .image-item-4 {
  top: 82.6%;
  left: 7.79%;
  width: 11.51%;
  height: 17.21%;
}

.template-o1-master .text-item-0 {
  top: 86.08%;
  left: 19.41%;
  width: 71.97%;
}

.template-j0r-21 .image-item-0 {
  top: 0%;
  left: 43.13%;
  width: 56.86%;
  height: 100%;
}

.template-j0r-21 .image-item-1 {
  top: 3.65%;
  left: 2.44%;
  width: 38.37%;
  height: 32.34%;
}

.template-j0r-21 .image-item-2 {
  top: 39.13%;
  left: 2.44%;
  width: 38.37%;
  height: 32.34%;
}

.template-j0r-21 .text-item-0 {
  top: 74.95%;
  left: 2.44%;
  width: 38.48%;
}

.template-a-image .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-image .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-h0l-21 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-21 .image-item-1 {
  top: 0.17%;
  left: 56.27%;
  width: 37.67%;
  height: 37.56%;
}

.template-h0l-21 .image-item-2 {
  top: 40.34%;
  left: 56.27%;
  width: 37.67%;
  height: 37.56%;
}

.template-h0l-21 .text-item-0 {
  top: 81.39%;
  left: 56.27%;
  width: 37.67%;
}

.template-c1-0-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 72.17%;
}

.template-c1-0-a .text-item-0 {
  top: 75.65%;
  left: 6.51%;
  width: 86.74%;
}

.template-c1-0-video-auto .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 83.47%;
  overflow: hidden !important;
}

.template-c1-0-video-auto .image-item-0 img {
  max-width: 100% !important;
}

.template-c1-0-video-auto .text-item-0 {
  top: 87.13%;
  left: 11.04%;
  width: 77.9%;
}

.template-c1-0-video-auto video {
  object-fit: cover !important;
}

.template-c1-0-video-auto .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  bottom: -5px;
  height: auto;
  max-height: initial;
  right: 0;
  width: 100%;
}

.template-c1-0-video-auto .video-overlay .vjs-big-play-button {
  display: none !important;
}

.template-c1-0-video-auto .vjs-control-bar,
.template-c1-0-video-auto .vjs-ended .vjs-poster {
  display: none !important;
}

.template-c1-0-video-auto .item-replay-button {
  position: absolute;
  top: 77.91%;
  z-index: 1000;
  right: 1.27%;
  color: white;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}

.template-c1-0-video-auto .item-replay-button .icon-replay {
  color: #fff;
}

.template-c1-10-l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-10-l .image-item-1 {
  top: 48.52%;
  left: 5.81%;
  width: 25.58%;
  height: 47.82%;
}

.template-c1-10-l .text-item-0 {
  top: 78.26%;
  left: 33.72%;
  width: 61.86%;
}

.template-e0r-video-auto .image-item-0 {
  top: 0%;
  left: 33.13%;
  width: 66.86%;
  height: 100%;
}

.template-e0r-video-auto .text-item-0 {
  top: 28.86%;
  left: 2.67%;
  width: 26.62%;
}

.template-e0r-video-auto .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.template-e0r-video-auto .vjs-control-bar,
.template-e0r-video-auto .vjs-ended .vjs-poster {
  display: none !important;
}

.template-e0r-video-auto .item-replay-button {
  position: absolute;
  bottom: 1.73%;
  z-index: 1000;
  right: 1.27%;
  color: white;
  cursor: pointer;
  user-select: none;
}

.template-k0l-14-l .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-l .image-item-1 {
  top: 37.21%;
  left: 62.2%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0l-14-l .image-item-2 {
  top: 6.95%;
  left: 62.2%;
  width: 26.74%;
  height: 26.78%;
}

.template-k0l-14-l .text-item-0 {
  top: 78.26%;
  left: 62.09%;
  width: 35.46%;
}

.template-k0r-14-l .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-l .image-item-1 {
  top: 37.21%;
  left: 0%;
  width: 37.79%;
  height: 37.56%;
}

.template-k0r-14-l .image-item-2 {
  top: 6.95%;
  left: 10.93%;
  width: 26.74%;
  height: 26.78%;
}

.template-k0r-14-l .text-item-0 {
  top: 78.26%;
  left: 2.32%;
  width: 35.46%;
}

.template-k0l-14-m .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0l-14-m .image-item-1 {
  top: 31.65%;
  left: 62.09%;
  width: 37.79%;
  height: 31.65%;
}

.template-k0l-14-m .image-item-2 {
  top: 6.95%;
  left: 62.09%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-14-m .image-item-3 {
  top: 6.95%;
  left: 81.86%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0l-14-m .text-item-0 {
  top: 65.39%;
  left: 62.09%;
  width: 35.46%;
}

.template-k0r-14-m .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-m .image-item-1 {
  top: 31.65%;
  left: 0%;
  width: 37.79%;
  height: 31.65%;
}

.template-k0r-14-m .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-14-m .image-item-3 {
  top: 6.95%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-14-m .text-item-0 {
  top: 66.95%;
  left: 2.32%;
  width: 35.46%;
}

.template-b-quote-7 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-b-quote-7 .text-item-0 {
  top: 8.69%;
  left: 58.6%;
  width: 31.39%;
  font-family: "Domine", georgia, serif;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
}

.template-b-quote-7 .text-item-0 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-b-quote-7 .text-item-1 {
  top: 13.56%;
  left: 13.25%;
  width: 31.51%;
  font-family: "Domine", georgia, serif;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.template-b-quote-7 .text-item-1 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-b-quote-7 .text-item-2 {
  top: 32.17%;
  left: 78.6%;
  width: 15.93%;
  font-family: "Domine", georgia, serif;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}

.template-b-quote-7 .text-item-2 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-b-quote-7 .text-item-3 {
  top: 39.65%;
  left: 26.04%;
  width: 47.9%;
  font-family: "Domine", georgia, serif;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
}

.template-b-quote-7 .text-item-3 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-b-quote-7 .text-item-4 {
  top: 43.3%;
  left: 4.18%;
  width: 15.93%;
  font-family: "Domine", georgia, serif;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 19px;
  line-height: 1.2;
}

.template-b-quote-7 .text-item-4 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-b-quote-7 .text-item-5 {
  top: 70.43%;
  left: 59.06%;
  width: 31.51%;
  font-family: "Domine", georgia, serif;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}

.template-b-quote-7 .text-item-5 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

.template-b-quote-7 .text-item-6 {
  top: 74.08%;
  left: 15.69%;
  width: 26.74%;
  font-family: "Domine", georgia, serif;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}

.template-b-quote-7 .text-item-6 span {
  display: block;
  font-size: 11px;
  font-weight: normal;
}

@media (min-width: 768px) {
  slide.template-b-quote-8 .image-item-0 {
    top: 0% !important;
    left: 0% !important;
    width: 100% !important;
    height: 100% !important;
  }
  slide.template-b-quote-8 .image-item-1 {
    top: 0% !important;
    left: 0% !important;
    width: 100% !important;
    height: 100% !important;
  }
  slide.template-b-quote-8 .text-item-0 {
    top: 6.26% !important;
    left: 33.48% !important;
    width: 60.69% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 1.2 !important;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  slide.template-b-quote-8 .text-item-0 {
    font-size: 33px;
  }
}

@media (min-width: 768px) {
  slide.template-b-quote-8 .text-item-0 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-1 {
    top: 6.95% !important;
    left: 3.6% !important;
    width: 24.06% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 1.2 !important;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  slide.template-b-quote-8 .text-item-1 {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  slide.template-b-quote-8 .text-item-1 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-2 {
    top: 28.52% !important;
    left: 68.25% !important;
    width: 29.3% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2 !important;
  }
  slide.template-b-quote-8 .text-item-2 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-3 {
    top: 28.86% !important;
    left: 3.6% !important;
    width: 29.53% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2 !important;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  slide.template-b-quote-8 .text-item-3 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  slide.template-b-quote-8 .text-item-3 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-4 {
    top: 28.86% !important;
    left: 36.39% !important;
    width: 27.44% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.2 !important;
  }
  slide.template-b-quote-8 .text-item-4 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-5 {
    top: 51.65% !important;
    left: 68.25% !important;
    width: 29.3% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2 !important;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  slide.template-b-quote-8 .text-item-5 {
    font-size: 19px;
  }
}

@media (min-width: 768px) {
  slide.template-b-quote-8 .text-item-5 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-6 {
    top: 53.39% !important;
    left: 3.6% !important;
    width: 29.41% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2 !important;
  }
  slide.template-b-quote-8 .text-item-6 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-7 {
    top: 53.91% !important;
    left: 36.62% !important;
    width: 27.2% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2 !important;
  }
  slide.template-b-quote-8 .text-item-7 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-8 {
    top: 76.52% !important;
    left: 71.74% !important;
    width: 26.62% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2 !important;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  slide.template-b-quote-8 .text-item-8 {
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  slide.template-b-quote-8 .text-item-8 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-9 {
    top: 76.52% !important;
    left: 27.44% !important;
    width: 21.74% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2 !important;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  slide.template-b-quote-8 .text-item-9 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  slide.template-b-quote-8 .text-item-9 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-10 {
    top: 76.52% !important;
    left: 50.46% !important;
    width: 18.6% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2 !important;
  }
  slide.template-b-quote-8 .text-item-10 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item-11 {
    top: 76.52% !important;
    left: 3.6% !important;
    width: 21.62% !important;
    font-family: "Domine", georgia, serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2 !important;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  slide.template-b-quote-8 .text-item-11 {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  slide.template-b-quote-8 .text-item-11 span {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  slide.template-b-quote-8 .text-item {
    color: #fff;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  slide.template-b-quote-8 .text-item {
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    padding: 0 !important;
  }
}

.template-k0r-14-m .image-item-0 {
  top: 6.95%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-k0r-14-m .image-item-1 {
  top: 31.65%;
  left: 0%;
  width: 37.79%;
  height: 31.65%;
}

.template-k0r-14-m .image-item-2 {
  top: 6.95%;
  left: 0%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-14-m .image-item-3 {
  top: 6.95%;
  left: 19.76%;
  width: 18.02%;
  height: 21.21%;
}

.template-k0r-14-m .text-item-0 {
  top: 66.95%;
  left: 2.32%;
  width: 35.46%;
}

.template-c-link .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-c-link .lead.lead-titleLine.leader-white-title {
  color: #ffffff;
}

.template-c-link .text-item-1 .lead.lead-titleLine.leader-white-title {
  color: #ffffff;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.template-over-logo .overlay-item.image-item-0 {
  top: auto !important;
  right: auto !important;
  bottom: 0% !important;
  left: 0% !important;
  width: 16.27% !important;
  height: 24.34% !important;
}

.template-x3l-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 53.95%;
  height: 74.78%;
}

.template-x3l-1 .image-item-1 {
  top: 31.82%;
  left: 55.46%;
  width: 44.53%;
  height: 42.78%;
}

.template-x3l-1 .image-item-2 {
  top: 0%;
  left: 55.46%;
  width: 38.13%;
  height: 30.08%;
}

.template-x3r-1 .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 74.78%;
}

.template-x3r-1 .image-item-1 {
  top: 33.73%;
  left: 0%;
  width: 48.48%;
  height: 40.86%;
}

.template-x3r-1 .image-item-2 {
  top: 0%;
  left: 8.25%;
  width: 40.23%;
  height: 31.82%;
}

.template-x4l-1 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 74.78%;
}

.template-x4l-1 .image-item-1 {
  top: 33.73%;
  left: 51.39%;
  width: 48.6%;
  height: 40.69%;
}

.template-x4l-1 .image-item-2 {
  top: 0%;
  left: 51.39%;
  width: 40.23%;
  height: 31.82%;
}

.template-x4r-1 .image-item-0 {
  top: 0%;
  left: 45.93%;
  width: 53.95%;
  height: 74.78%;
}

.template-x4r-1 .image-item-1 {
  top: 31.82%;
  left: 0%;
  width: 44.53%;
  height: 42.78%;
}

.template-x4r-1 .image-item-2 {
  top: 0%;
  left: 6.39%;
  width: 38.02%;
  height: 30.08%;
}

.template-a-img-t-c-01 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-img-t-c-01 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-img-t-c-01 .text-item-0 {
  top: 43.47%;
  left: 2.44%;
  width: 95%;
  color: #fff;
  text-align: center;
  font-size: 37px;
  font-weight: bold;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
  line-height: 1.2;
}

.template-a-img-t-c-01 .text-item-0 .lead-stat-number-smaller {
  font-size: 95px;
  line-height: 0.15;
  font-weight: 600;
  display: block;
}

.template-a-t-c-01 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-c-01 .image-item-1 {
  top: 2.6%;
  left: 0%;
  width: 100%;
  height: 59.82%;
}

.template-a-t-c-01 .image-item-2 {
  top: 54.08%;
  left: 76.39%;
  width: 21.16%;
  height: 42.08%;
}

.template-a-t-c-01 .text-item-0 {
  top: 46.95%;
  left: 19.88%;
  width: 60.23%;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  text-shadow: 4px 2px 19px #000, 4px 2px 19px #000;
  font-family: "Oswald", sans-serif;
  min-height: 115px;
}

.template-a-t-c-01 .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-a-t-c-01 .template-over-bar-logo .overylay-text-item-0 {
  top: 74.78%;
  padding-right: 23.25%;
}

.template-a-t-c-02-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-c-02-a .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 66.43%;
}

.template-a-t-c-02 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-c-02 .image-item-1 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 66.43%;
}

.template-a-t-c-02 .text-item-0 {
  top: 29.56%;
  left: 42.44%;
  width: 47.55%;
  color: #fff;
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
  min-height: 160px;
}

.template-a-t-c-02 .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-a-t-c-03 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-c-03 .text-item-0 {
  top: 46.95%;
  left: 2.44%;
  width: 95%;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  font-size: 37px;
  font-weight: 600;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
  line-height: 1.2;
}

.template-a-t-c-03 .text-item-0 .lead-stat-number {
  font-size: 150px;
  line-height: 0.3;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
}

.template-a-t-c-03 .text-item-0 .lead-stat-number-smaller {
  font-size: 95px;
  line-height: 0.15;
  font-weight: 600;
  display: block;
}

.template-a-t-center .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-center .text-item-0 {
  top: 57.91%;
  left: 2.44%;
  width: 95%;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
  line-height: 1.3;
}

.template-a-t-center .text-item-0 .lead-stat-number {
  font-size: 150px;
  line-height: 0.3;
  font-weight: bold;
}

.template-a-t-center .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  display: block;
}

.template-a-t-l-01 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-l-01 .image-item-1 {
  top: 2.6%;
  left: 1.62%;
  width: 52.32%;
  height: 62.6%;
}

.template-a-t-l-01 .image-item-2 {
  top: 26.95%;
  left: 67.67%;
  width: 19.18%;
  height: 38.26%;
}

.template-a-t-l-01 .text-item-0 {
  bottom: 74.78%;
  left: 58.13%;
  width: 37.2%;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
}

.template-a-t-l-01 .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-a-t-l-02 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-l-02 .image-item-1 {
  top: 1.91%;
  left: 1.62%;
  width: 57.9%;
  height: 57.73%;
}

.template-a-t-l-02 .text-item-0 {
  top: 17.39%;
  left: 61.62%;
  width: 35.34%;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Domine", georgia, serif;
  min-height: 200px;
}

.template-a-t-l-02 .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  display: block;
  margin-top: 6px;
}

.template-a-t-l-03 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-l-03 .image-item-1 {
  top: 2.6%;
  left: 1.62%;
  width: 52.32%;
  height: 62.6%;
}

.template-a-t-l-03 .image-item-2 {
  top: 26.95%;
  left: 64.53%;
  width: 25.58%;
  height: 38.26%;
}

.template-a-t-l-03 .text-item-0 {
  bottom: 74.78%;
  left: 58.13%;
  width: 37.2%;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
  min-height: 120px;
}

.template-a-t-l-03 .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-a-t-r-01 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-t-r-01 .image-item-1 {
  top: 2.6%;
  left: 45.93%;
  width: 52.32%;
  height: 62.6%;
}

.template-a-t-r-01 .image-item-2 {
  top: 26.95%;
  left: 13.48%;
  width: 19.18%;
  height: 38.26%;
}

.template-a-t-r-01 .text-item-0 {
  bottom: 74.78%;
  left: 4.76%;
  width: 37.09%;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  text-shadow: 0px 0px 10px #000000;
  font-family: "Oswald", sans-serif;
}

.template-a-t-r-01 .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-a-video-01 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-video-01 .image-item-1 {
  top: 12.69%;
  left: 20.93%;
  width: 58.13%;
  height: 48.86%;
}

.template-a-video-02 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-a-video-02 > .image-item-1 {
  top: 4.52%;
  left: 12.79%;
  width: 74.3%;
  height: 62.43%;
  border: 0.5px solid white;
  overflow: hidden;
}

.template-a-video-02 .overlay-item,
.template-a-video-02 .text-item-0 {
  color: #fff;
}

.template-c1-0-video-3 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 71.65%;
}

.template-c1-0-video-3 .image-item-1 {
  top: 12.69%;
  left: 22.67%;
  width: 54.65%;
  height: 45.91%;
}

.template-c1-t-01-l .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-t-01-l .image-item-1 {
  top: 6.26%;
  left: 8.37%;
  width: 41.86%;
  height: 62.6%;
}

.template-c1-t-01-l .text-item-0 {
  top: 25.21%;
  left: 50.23%;
  width: 35.34%;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0px 0px 11px #000;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.template-c1-t-01-l .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-c1-t-01-r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-t-01-r .image-item-1 {
  top: 6.26%;
  left: 49.76%;
  width: 41.86%;
  height: 62.6%;
}

.template-c1-t-01-r .text-item-0 {
  top: 25.21%;
  left: 8.37%;
  width: 35.23%;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0px 0px 11px #000;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.template-c1-t-01-r .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-c1-t-02-r .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-t-02-r .image-item-1 {
  top: 6.26%;
  left: 49.76%;
  width: 41.86%;
  height: 62.6%;
}

.template-c1-t-02-r .text-item-0 {
  top: 13.91%;
  left: 16.16%;
  width: 35.23%;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0px 0px 11px #000;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.template-c1-t-02-r .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-c1-t-over .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 74.78%;
}

.template-c1-t-over .text-item-0 {
  top: 38.95%;
  left: 1.86%;
  width: 95%;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  text-align: center;
  color: #fff;
}

.template-c1-t-over .text-item-0 strong {
  font-weight: 500;
  font-size: 80px;
  line-height: 1.1;
}

.template-c1-t-over .text-item-0 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 6px;
}

.template-g0l-20 .image-item-0 {
  top: 6.95%;
  left: 0%;
  width: 72.09%;
  height: 86.26%;
}

.template-g0l-20 .image-item-1 {
  top: 52%;
  left: 74.41%;
  width: 25.58%;
  height: 41.21%;
}

.template-g0l-20 .text-item-0 {
  left: 74.41%;
  width: 23.25%;
  bottom: 52.17%;
}

.template-h0r-15-c .image-item-0 {
  top: 0%;
  left: 50%;
  width: 50%;
  height: 100%;
}

.template-h0r-15-c .image-item-1 {
  top: 5.56%;
  left: 24.41%;
  width: 23.25%;
  height: 43.3%;
}

.template-h0r-15-c .image-item-2 {
  top: 50.78%;
  left: 0%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15-c .image-item-3 {
  top: 50.78%;
  left: 24.41%;
  width: 23.25%;
  height: 43.47%;
}

.template-h0r-15-c .text-item-0 {
  bottom: 52.17%;
  left: 2.32%;
  width: 20.93%;
}

.template-r0r-0 .image-item-0 {
  top: 6.78%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-r0r-0 .image-item-1 {
  top: 6.78%;
  left: 40.11%;
  width: 59.88%;
  height: 89.56%;
}

.template-r0r-0 .text-item-0 {
  top: 33.91%;
  left: 7.2%;
  width: 25.46%;
}

.template-x0r-2-video .image-item-0 {
  top: 2.95%;
  left: 27.67%;
  width: 72.32%;
  height: 72%;
}

.template-x0r-2-video .image-item-0 .video-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.template-x0r-2-video.video-playing .image-item-0 img {
  opacity: 0;
}

.template-x0r-2-video.video-played .video-js {
  opacity: 0;
}

.template-x0r-2-video .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 25.46%;
  height: 30.6%;
}

.template-x0r-2-video .image-item-2 {
  top: 36.69%;
  left: 0%;
  width: 25.46%;
  height: 30.6%;
}

.template-x0r-3-video .image-item-0 {
  top: 2.95%;
  left: 27.67%;
  width: 72.55%;
  height: 72.34%;
}

.template-x0r-3-video .image-item-0 .video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: calc(100%* 2 / 3);
  height: 0;
}

.template-x0r-3-video.video-playing .image-item-0 img {
  opacity: 0;
}

.template-x0r-3-video.video-played .video-js {
  opacity: 0;
}

.template-x0r-3-video .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 25.46%;
  height: 47.82%;
}

.template-x0r-6 .image-item-0 {
  top: 2.95%;
  left: 27.67%;
  width: 72.32%;
  height: 72%;
}

.template-x0r-6 .image-item-1 {
  top: 2.95%;
  left: 0%;
  width: 25.46%;
  height: 61.21%;
}

.template-x0l-8 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 56.97%;
  height: 74.78%;
}

.template-x0l-8 .image-item-1 {
  top: 0%;
  left: 58.13%;
  width: 20.46%;
  height: 36.52%;
}

.template-x0l-8 .image-item-2 {
  top: 0%;
  left: 79.53%;
  width: 20.46%;
  height: 36.52%;
}

.template-x0l-8 .image-item-3 {
  top: 38.26%;
  left: 58.13%;
  width: 20.46%;
  height: 36.52%;
}

.template-x0l-8 .image-item-4 {
  top: 38.26%;
  left: 79.53%;
  width: 20.46%;
  height: 36.52%;
}

.template-x0l-9 .image-item-0 {
  top: 1.21%;
  left: 0%;
  width: 49.18%;
  height: 73.56%;
}

.template-x0l-9 .image-item-1 {
  top: 1.04%;
  left: 50.81%;
  width: 23.83%;
  height: 35.65%;
}

.template-x0l-9 .image-item-2 {
  top: 1.21%;
  left: 76.16%;
  width: 23.83%;
  height: 35.65%;
}

.template-x0l-9 .image-item-3 {
  top: 39.13%;
  left: 50.81%;
  width: 23.83%;
  height: 35.65%;
}

.template-x0l-9 .image-item-4 {
  top: 39.13%;
  left: 76.16%;
  width: 23.83%;
  height: 35.65%;
}

.template-x0r-1 .image-item-0 {
  top: 2.95%;
  left: 0%;
  width: 50.11%;
  height: 42.08%;
}

.template-x0r-1 .image-item-1 {
  top: 2.95%;
  left: 51.74%;
  width: 48.25%;
  height: 72.17%;
}

.template-x0r-1 .image-item-2 {
  top: 48%;
  left: 26.04%;
  width: 24.18%;
  height: 27.13%;
}

.template-x0r-1 .image-item-3 {
  top: 48%;
  left: 0%;
  width: 24.06%;
  height: 27.13%;
}

.template-x0l-2 .image-item-0 {
  top: 2.95%;
  left: 0%;
  width: 72.32%;
  height: 72%;
}

.template-x0l-2 .image-item-1 {
  top: 2.95%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-x0l-2 .image-item-2 {
  top: 36.69%;
  left: 74.41%;
  width: 25.58%;
  height: 30.6%;
}

.template-h0l-2-a .image-item-0 {
  top: 0%;
  left: 0%;
  width: 50%;
  height: 100%;
}

.template-h0l-2-a .image-item-1 {
  top: 16.17%;
  left: 56.04%;
  width: 18.13%;
  height: 45.21%;
}

.template-h0l-2-a .image-item-2 {
  top: 16.17%;
  left: 75.69%;
  width: 18.13%;
  height: 45.21%;
}

.template-h0l-2-a .text-item-0 {
  top: 64.86%;
  left: 56.04%;
  width: 37.79%;
}

.template-q0l-1c .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0l-1c .image-item-1 {
  top: 8.86%;
  left: 5%;
  width: 53.95%;
  height: 53.73%;
}

.template-q0l-1c .image-item-2 {
  top: 8.86%;
  left: 64.53%;
  width: 33.02%;
  height: 39.47%;
}

.template-q0l-1c .image-item-3 {
  top: 41.91%;
  left: 5%;
  width: 13.83%;
  height: 20.69%;
}

.template-q0l-1c .text-item-0 {
  top: 51.82%;
  left: 64.53%;
  width: 33.02%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  font-family: "Domine", georgia, serif;
}

.template-q0l-1c .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0l-1e .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0l-1e .image-item-1 {
  top: 7.65%;
  left: 5.69%;
  width: 47.67%;
  height: 57.04%;
}

.template-q0l-1e .image-item-2 {
  top: 11.3%;
  left: 58.95%;
  width: 33.02%;
  height: 31.3%;
}

.template-q0l-1e .text-item-0 {
  top: 46.08%;
  left: 58.95%;
  width: 33.02%;
}

.template-q0l-1e .text-item-0 {
  height: 29.56%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  font-family: "Domine", georgia, serif;
}

.template-q0l-1e .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0l-3 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0l-3 .image-item-1 {
  top: 3.65%;
  left: 54.41%;
  width: 40.81%;
  height: 46.43%;
}

.template-q0l-3 .text-item-0 {
  top: 50.43%;
  left: 56.51%;
  width: 36.62%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  font-family: "Domine", georgia, serif;
}

.template-q0l-3 .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0r-1c .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0r-1c .image-item-1 {
  top: 8.86%;
  left: 40.81%;
  width: 54.06%;
  height: 53.73%;
}

.template-q0r-1c .image-item-2 {
  top: 8.86%;
  left: 2.32%;
  width: 32.9%;
  height: 39.47%;
}

.template-q0r-1c .image-item-3 {
  top: 41.91%;
  left: 80.93%;
  width: 13.95%;
  height: 20.69%;
}

.template-q0r-1d .image-item-0 {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.template-q0r-1d .image-item-1 {
  top: 8.86%;
  left: 38.25%;
  width: 59.3%;
  height: 58.95%;
}

.template-q0r-1d .image-item-2 {
  top: 8.86%;
  left: 2.32%;
  width: 32.9%;
  height: 31.3%;
}

.template-q0r-1d .text-item-0 {
  top: 43.47%;
  left: 2.44%;
  width: 33.02%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  font-family: "Domine", georgia, serif;
}

.template-q0r-1d .text-item-0 span {
  font-size: 12px;
  padding-left: 40px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}

.template-q0r-1d .image-item-0 img {
  opacity: 0.3;
}

.template-z0l-4 .image-item-0 {
  top: 0%;
  left: 0%;
  width: 65.11%;
  height: 60.34%;
}

.template-z0l-4 .image-item-1 {
  top: 3.65%;
  left: 67.9%;
  width: 32.09%;
  height: 56.52%;
}

.template-z0l-4 .image-item-2 {
  top: 64.17%;
  left: 4.76%;
  width: 19.18%;
  height: 28.69%;
}

.template-z0l-4 .text-item-0 {
  top: 71.13%;
  left: 26.27%;
  width: 51.04%;
}

.download-image-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.image-download-button {
  -webkit-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  position: relative;
  z-index: 1000;
  color: #000;
  background-color: #fff;
  padding: 7px 9px;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
}

.image-download-button .icon-download {
  color: #423738;
  padding: 0;
  font-size: 22px;
  float: none;
}

.download-image-link__abs {
  height: 0;
}

.download-image-link__activated .image-download-button,
.download-image-wrapper:hover .image-download-button {
  background: #423738;
}

.download-image-link__activated .image-download-button .image-download-button--text,
.download-image-wrapper:hover .image-download-button .image-download-button--text {
  max-width: 200px;
  opacity: 1;
  color: #ACA480;
}

.download-image-link__activated .image-download-button .icon-download,
.download-image-wrapper:hover .image-download-button .icon-download {
  color: #ACA480;
}

.image-download-button--text {
  -webkit-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  opacity: 0;
  display: inline-block;
  max-width: 0;
  color: #ACA480;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .image-download-button--text {
    font-size: 20px;
  }
}

.modal--download__fixed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: none;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .modal--download__fixed {
    -webkit-align-items: center;
    -ms-align-items: center;
    -moz-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
}

.modal--download__fixed-visible {
  display: block;
}

@media (min-width: 992px) {
  .modal--download__fixed-visible {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
  }
}

.modal--download-row {
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .modal--download-row {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    max-width: initial;
  }
}

.modal--download--image {
  margin: 0 auto;
}

@media (min-width: 992px) {
  .modal--download--image {
    -webkit-flex: 0 0 300px;
    -ms-flex: 0 0 300px;
    -moz-flex: 0 0 300px;
    -o-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 300px;
  }
}

.modal--download {
  position: relative;
  background: #515151;
  border: 1px solid #ACA480;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 820px;
  width: 100%;
  padding: 18px 37px;
}

.modal--download--close {
  position: absolute;
  top: 30px;
  right: 5px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .modal--download--close {
    right: 20px;
  }
}

.modal--download--close .icon-close {
  color: #ffffff;
}

.modal-download--copyright {
  font-size: 10px;
}

.modal--download--title {
  font-size: 26px;
  margin-bottom: 28px;
}

.modal--download--file {
  margin-top: 25px;
}

.modal-download--divider {
  width: 100%;
  height: 1px;
  background: #ffffff;
  margin: 25px 0;
}

.modal--download--info {
  padding-top: 17px;
}

@media (min-width: 992px) {
  .modal--download--info {
    margin-left: 27px;
  }
}

@media (min-width: 992px) {
  .modal-download--bottom {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
}

.modal-download--button {
  padding: 10px 21px;
  background: #6e6e6e;
  color: #ACA480;
  font-size: 23px;
  border: 1px solid #aca480;
  user-select: none;
  display: block;
}

@media (max-width: 991px) {
  .modal-download--button {
    display: inline-block;
  }
}

.modal-download--button .icon-download {
  padding-right: 0;
  margin-top: 5px;
  color: #ffffff;
}

.modal-download--button__disabled {
  background: rgba(110, 110, 110, 0.75);
  border: 1px solid rgba(172, 164, 128, 0.3);
  opacity: 0.3;
  pointer-events: none;
}

.modal-download--button__disabled .icon-download {
  color: #ACA480;
}

.checkbox--container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox--container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox--checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 4px;
}

/* When the checkbox is checked, add a blue background */
.checkbox--container input:checked ~ .checkbox--checkmark {
  background-color: #af9f76;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox--checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox--container input:checked ~ .checkbox--checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox--container .checkbox--checkmark:after {
  left: 7px;
  top: 2px;
  width: 8px;
  height: 13px;
  border: solid #ffffff;
  border-width: 0px 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.downloadable-photos--sub {
  color: white;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pswp__counter {
  display: none;
}

.download-image-wrapper {
  display: block;
  position: relative;
  user-select: none;
}

.download-label {
  position: absolute;
  bottom: 0;
  left: calc(100% + 40px);
  border-radius: 4px;
  color: white;
  padding: 5px;
  font-size: 10px;
  min-width: 61px;
}

.download-label__existing {
  background: white;
  border: 1px solid black;
  border-radius: 4px;
  color: #000;
}

.download-label__new-crop {
  background: #FF9D3B;
}

.download-label__new {
  background: #e2e206;
  color: black;
}

.download-bubble a.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.download-bubble input[type="checkbox"] {
  outline: none;
}

[dir="rtl"] .download-bubble input[type="checkbox"] {
  margin-right: 0px;
  margin-left: 5px;
}

#shell .download-bubble .download-linker {
  float: left;
}

:lang(he) #shell .download-bubble .download-linker {
  margin-left: 50px;
}

#shell .download-arrow-small {
  width: 30px;
  float: left;
}

#shell .download-bubble .download-linker img {
  left: -5px;
}

.path-photos-david-miscavige-portraits .masthead h2,
.path-photos-david-miscavige-portraits-new .masthead h2 {
  max-width: initial;
}

.templated-slider-style-standard-templates slide .image-holder img {
  position: relative;
}

.templated-slider-style-standard-templates slide {
  width: 100%;
  max-height: 575px;
  position: relative;
  margin-bottom: 5%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8rem;
}

:lang(el) .templated-slider-style-standard-templates slide {
  font-size: 0.75rem;
}

.templated-slider-style-standard-templates slide > .image-item {
  cursor: pointer;
}

.templated-slider-style-standard-templates slide .floater-texter .text-item {
  line-height: 1.43;
}

.templated-slider-style-standard-templates .pswp--open slide .image-item {
  cursor: default;
}

slide .image-holder img.item-play-button--bottom-right {
  position: absolute !important;
  top: auto !important;
  bottom: 5% !important;
  left: auto !important;
  right: 3% !important;
  width: 40px !important;
}

.templated-slider-style-standard-templates .slideshow-button {
  padding: 16px 16px 15px 15px;
  cursor: pointer;
  border-radius: 4px;
  line-height: 1.2em;
}

.templated-slider-style-standard-templates .slideshow-button > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.templated-slider-style-standard-templates .slideshow-button .icon-arrow-right {
  font-size: 23px;
  padding: 0 !important;
  float: none;
}

.templated-slider-style-standard-templates slide .item {
  position: absolute;
}

.templated-slider-style-standard-templates slide .image-holder img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.templated-slider-style-standard-templates .slideshow-view-gallery-holder {
  background: #467094;
  margin: 0 -100%;
  padding: 0 100%;
}

.templated-slider-style-standard-templates .slideshow-view-gallery-holder-inner {
  background: #467094;
  padding: 4px 10px;
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  color: #f8f8f8;
}

.templated-slider-style-standard-templates .slideshow-view-gallery-holder .fso-slide-mobile-numbers {
  left: auto;
  right: 40px;
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  font-size: 16px;
  text-shadow: none;
  color: #f8f8f8;
}

[dir="rtl"] .templated-slider-style-standard-templates .slideshow-view-gallery-holder-inner {
  text-align: left;
}

.templated-slider-style-standard-templates .image-item--photo-border {
  outline: 1px solid white;
  overflow: hidden;
}

@media (max-width: 768px) {
  .templated-slider-style-standard-templates slide.js-single-image-slide .image-holder {
    left: 50% !important;
    right: auto !important;
    bottom: 0 !important;
    top: 0 !important;
    width: auto !important;
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  .templated-slider-style-standard-templates slide.js-single-image-slide .image-holder img {
    height: 100% !important;
    width: auto !important;
    position: relative !important;
  }
}

.templated-slider-style-standard-templates .item.caption-corner {
  -webkit-transform: translateZ(1px) !important;
  -ms-transform: translateZ(1px) !important;
  -moz-transform: translateZ(1px) !important;
  -o-transform: translateZ(1px) !important;
  transform: translateZ(1px) !important;
  bottom: 0px;
  right: 0;
  color: white;
  background-color: #000;
  padding: 2px 7px;
  font-size: 12px;
}

@media (max-width: 480px) {
  .templated-slider-style-standard-templates .item.caption-corner {
    display: none;
  }
}

.templated-slider-style-standard-templates .slide-wrapper-pswp .item.caption-corner {
  bottom: -1px;
}

.template-over-bar-logo .overlay-item.image-item-0 {
  min-height: 17%;
}

.overlay-item--bar {
  padding-top: 15px;
  padding-bottom: 15px;
  height: auto !important;
}

.pswp__item .text-item, .pswp__item .floater-texter {
  color: #fff !important;
}

@media (max-width: 991px) {
  slide .text-item, slide .floater-texter,
  .pswp__item .text-item, .pswp__item .floater-texter {
    visibility: hidden;
  }
}

.pswp__caption .slideshow-button {
  color: #000 !important;
}

.item-replay-button {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.item-replay-button__abs {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 100;
}

.item-replay-button__white {
  color: #fff;
}

.item-replay-button__white .icon-replay {
  color: #fff;
}

.video-overlay-autoplay .vjs-big-play-button {
  display: none;
}

slide .slider-captions-more-full {
  background-color: rgba(0, 0, 0, 0.7) !important;
  z-index: 10;
  min-height: 44px;
  color: #CCC;
  visibility: hidden;
  opacity: 0 !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 50px;
  font-size: 13px;
  line-height: 1.4;
  will-change: opacity, transform, visibility;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: auto;
}

slide.show-full .slider-captions-more-full {
  opacity: 1 !important;
  visibility: visible;
}

@media (min-width: 768px) {
  slide .slider-captions-more-full {
    padding: 30px 50px 40px;
  }
}

slide .close-full-caption {
  position: absolute;
  bottom: 15px;
  left: 46%;
  cursor: pointer;
  color: #8ab4da;
}

slide .close-full-caption:hover {
  text-decoration: underline;
}

.close-full-caption .glyphicon-remove-circle:before {
  margin-left: 5px;
}

slide .close-full-caption .glyphicon {
  font-size: 13px;
  top: 3px;
}

.template-over-bar-logo-without-bar .lead-white-caps {
  color: #9c8f6d !important;
}

.lead-blue-caps-ital {
  font-style: italic;
}

.lowercase {
  text-transform: none;
}

.nobr {
  white-space: nowrap;
}

.wide-outside {
  position: relative;
}

@media (min-width: 1200px) {
  .wide-outside {
    margin-left: calc(50% - 520px);
    margin-right: calc(50% - 520px);
  }
}

main p, main li {
  font-size: 16.8px;
  line-height: 28px;
  margin-bottom: 1em;
}

main h2, main h3 {
  margin-bottom: 0.4em;
}

main h1:not(:first-child), main h2:not(:first-child), main h3:not(:first-child) {
  margin-top: 1.25em;
}

a {
  color: #9c8f6d;
}

.up-overlay-low-masthead a,
.up-overlay-high-masthead a {
  text-decoration: none;
  color: #666;
}

.up-overlay-low-masthead p a,
.up-overlay-high-masthead p a {
  color: #9c8f6d;
}

.main-body {
  /* for sub pages titles are not uppercased*/
}

body[class*="html"] .main-body h1 {
  text-transform: none;
}

.main-body h1 {
  font-size: 1.8em;
  text-transform: uppercase;
  font-weight: 600;
}

:lang(he) .main-body h1 {
  font-size: 2em;
}

.main-body h2 {
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 600;
}

:lang(he) .main-body h2 {
  font-size: 1.7em;
}

.main-body h3 {
  font-size: 20px;
  line-height: 36px;
  font-weight: normal;
  color: #9c8f6d;
}

:lang(he) .main-body h3 {
  font-size: 23px;
}

@media (max-width: 991px) {
  .main-body h3 {
    line-height: 1.1;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .main-body h3 {
    font-size: 17px;
  }
}

.main-body h3 a {
  color: #9c8f6d;
}

.banner-top {
  display: flex;
  justify-content: space-between;
  margin: 0.25em 0.5em 1px 0;
}

@media (min-width: 992px) {
  .banner-top {
    margin: 0 0 1.4rem;
  }
}

.banner-top-mobilenav-and-brand {
  white-space: nowrap;
  /* padding-left: 40px; /* inherited, remove? */
}

.banner-top-brand {
  font-size: 30px;
  /*padding: 4px 8px;*/
  /*line-height: 36px;*/
}

@media (min-width: 992px) {
  .banner-top-brand {
    margin-top: 26px;
  }
}

@media (max-width: 767px) {
  .banner-top-brand {
    height: 63px;
  }
  .banner-top-brand a.no-underline {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
  }
  .banner-top-brand a.no-underline img {
    margin-top: 3px;
    margin-left: 6px;
  }
  .banner-top-brand .site-name {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

.banner-top-cob-title {
  font-size: 0.9rem;
  padding-left: 10px;
  padding-bottom: 0px;
  line-height: 0em;
}

@media (max-width: 767px) {
  .banner-top-cob-title {
    margin-top: 3px;
    padding-left: 0;
  }
}

.banner-share-and-tools {
  max-width: 290px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-right: 0;
}

.banner-share-and-tools a {
  font-size: 18px;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.banner-share-and-tools a.icon-mail {
  font-size: 23px;
}

.banner-share-and-tools a.icon-facebook, .banner-share-and-tools a.icon-feed {
  padding-top: 13px;
}

.banner-share-and-tools a.icon-twitter {
  padding-top: 14px;
}

.banner-share-and-tools a:hover {
  text-decoration: none;
}

.banner-share-and-tools [class*=" icon-"] {
  padding-top: 10px;
}

.banner-share-and-tools .youtube-logo {
  padding-top: 13px;
}

.banner-share-no-break {
  padding-top: 11px;
  padding-bottom: 8px;
}

.banner-share-no-break:before {
  content: " ";
  display: inline-block;
  border-left: .15em #d3d3d5 solid;
  margin-left: 25px;
  height: 34px;
  float: right;
}

.primary-nav .nav {
  justify-content: space-around;
}

.primary-nav .nav > li > a {
  color: #8F8F8F;
  font-size: 16px;
  text-align: center;
  line-height: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

.primary-nav .nav > li:hover a, .primary-nav .nav > li a:hover {
  color: white;
  text-decoration: none;
}

.primary-nav .nav > li.active .nav-bar-text-wrapper {
  color: white;
}

.primary-nav .nav > li.active > a,
.primary-nav .nav > li.active > a:focus,
.primary-nav .nav > li.active > a:hover {
  background: none;
  color: #9c8f6d;
}

.primary-nav .nav > li.sign-up-menu > a {
  border: 1px solid #979797;
  padding: 4px 5px 3px 5px;
  margin-top: 5px;
  font-size: 12px;
}

.nav-bar-background {
  height: 10px;
  width: 100%;
  background: #4d4d4d;
  background: rgba(77, 77, 77, 0.98);
  max-width: calc(100% - 2rem);
  left: 1rem;
  position: absolute;
}

.about-cob-caption {
  position: absolute;
  font-size: 1rem;
  text-align: center;
  width: 100%;
  bottom: 1em;
  color: #bbab80;
  text-shadow: 3px 2px 7px black;
  left: 0;
  right: 0;
  z-index: 10;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-cob-caption {
    bottom: 3em;
  }
}

.about-cob-caption a {
  color: #bbab80;
  font-weight: bold;
}

.about-cob-caption:hover {
  color: #d7c491;
}

.masthead-background {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  background: #000;
  z-index: -1;
  max-width: 1440px;
  margin: 0 auto;
  top: 0;
  bottom: 0;
  height: 300px;
}

@media (min-width: 1200px) {
  .masthead-background {
    height: 384px;
  }
}

.masthead-background .blur-background {
  background-size: cover;
  width: 100%;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 2;
  opacity: 0.64;
  -webkit-filter: blur(33px);
  -ms-filter: blur(33px);
  -moz-filter: blur(33px);
  -o-filter: blur(33px);
  filter: blur(33px);
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.masthead-background .blur-background.active {
  z-index: 5;
}

@media (min-width: 768px) {
  .without-master-head-image .masthead-background,
  .without-master-head-image .masthead {
    height: 274px;
  }
}

@media (min-width: 768px) {
  .special-master-head-speeches .masthead-background,
  .special-master-head-speeches .masthead {
    height: 280px;
  }
}

@media (min-width: 768px) {
  .special-master-head-washington .masthead-background,
  .special-master-head-washington .masthead {
    height: 280px;
  }
}

@media (min-width: 992px) {
  .front .masthead,
  .front .masthead-background {
    height: 464px;
  }
}

h4 {
  font-family: "Domine", georgia, serif;
  font-weight: bold;
}

.masthead {
  position: relative;
}

@media (min-width: 992px) {
  .masthead {
    margin-top: -20px;
    padding-top: 20px;
    margin-bottom: 1.3rem;
  }
}

.masthead h1 {
  font-family: "Domine", georgia, serif;
  color: #fff;
  font-size: 1.5625em;
  font-weight: 400;
  margin-top: 1rem;
  line-height: 1.15em;
}

body[class*=html] .masthead h1 {
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.masthead h1.index-page {
  font-size: 45px;
  margin-bottom: 20px;
}

.masthead h1 span.title {
  display: block;
}

.masthead h1 span.subheading, .masthead h1 span.subtitle {
  text-transform: none;
  display: block;
  font-size: 1.25rem;
  line-height: 1.4em;
  margin-top: 0.5em;
}

@media (min-width: 768px) {
  .masthead h1 {
    font-size: 2rem;
    line-height: 1.1em;
  }
  :lang(zh) .masthead h1 {
    line-height: 1.3em;
  }
  body[class*=html] .masthead h1 {
    font-size: 2rem;
  }
}

.masthead div.row > div > h4 {
  margin-bottom: 1rem;
}

.masthead div.row > div > h4.video-subtitle_location {
  margin-top: 0.5rem;
}

.masthead h2, .masthead span.subheading, .masthead span.subtitle {
  /* This is a subheading: */
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 1.25em;
  max-width: 600px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.video-page .masthead {
  margin-bottom: 20px;
}

.video-page .masthead h1 {
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 20px;
}

.masthead .masthead-subtitle-breaker {
  max-width: 55px;
  margin: 10px auto 20px;
  border: 1px solid #D7C491;
}

h2.master-subheading {
  text-transform: none;
  display: block;
  font-size: 1.15rem;
  line-height: 1.4em;
  font-weight: bold;
  margin-top: 0.5em;
  font-family: 'Mulish', helvetica neue,helvetica,arial,sans-serif;
  margin-bottom: 0.4em;
}

.masthead-content {
  padding-top: 1.0em;
}

@media (max-width: 991px) {
  .masthead-content {
    padding-bottom: 1em;
  }
}

@media (min-width: 992px) {
  .path-about.type-index-page .masthead-content,
  .path-about-biography.type-article.article-page:not([class*="html"]) .masthead-content,
  .path-about.path-about-biography-meeting-the-demand-for-scientology-materials .masthead-content {
    max-height: calc(242px);
  }
}

@media (max-width: 767px) {
  .masthead-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.without-master-head-image .masthead-content {
  height: 100%;
}

@media (max-width: 767px) {
  .masthead-background {
    padding-bottom: 114px;
    height: 0;
  }
}

.masthead-lead {
  text-align: center;
  text-shadow: 0 2px 14px black;
  color: #d8c592;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.masthead-lead a, .masthead-lead a:hover {
  color: #d8c592;
  font-size: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .up-overlay-high-masthead .right-side {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
  }
}

[dir="rtl"] .up-overlay-high-masthead.full-container div {
  direction: ltr;
}

[dir="rtl"] .up-overlay-high-masthead.full-container div .call-to-action:after {
  content: " →";
}

@media (min-width: 1200px) {
  .up-overlay-high-masthead.wide {
    margin-left: calc((-1440px + 1180px) / 2 - 217px);
    margin-right: calc((-1440px + 1180px) / 2 - 217px);
  }
}

.up-overlay-high-masthead.wide figure.listing-tile figcaption {
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  bottom: auto;
  text-align: center;
  font-size: 1.5em;
}

@media (min-width: 992px) {
  .up-overlay-high-masthead.wide figure.listing-tile figcaption {
    font-size: 2em;
  }
}

main .row:not(.up-overlay-high-masthead):not(.up-overlay-low-masthead) {
  padding-bottom: 1em;
}

.two-columns {
  /*margin-left: 55px;*/
  /*margin-right: 55px;*/
  line-height: 28px;
  margin-top: 1.25em;
  margin-bottom: 1.5em;
  column-fill: auto;
}

@media (min-width: 768px) {
  .two-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-break-inside: auto;
    -moz-break-inside: auto;
    break-inside: auto;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 3.4rem;
  }
}

.two-columns p {
  margin: 0;
}

.two-columns p:not(:first-of-type) {
  text-indent: 2em;
}

.thank-you-message {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  position: absolute;
  font-weight: bold;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.three-columns {
  /*margin-left: 55px;*/
  /*margin-right: 55px;*/
  line-height: 28px;
  margin-top: 1.25em;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .three-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-break-inside: auto;
    -moz-break-inside: auto;
    break-inside: auto;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 3.4rem;
  }
}

.three-columns p {
  margin: 0;
}

.three-columns p:not(:first-of-type) {
  text-indent: 2em;
}

.future-building-cont:not(:first-of-type) {
  margin-top: 12px;
}

.medium-insert-images {
  margin-bottom: 0;
}

.medium-insert-images:not(.adjacent) figure {
  width: 100%;
  margin-bottom: 1em;
}

.inline-image-left {
  float: left;
  margin-right: 0.5em;
}

@media (min-width: 992px) {
  .inline-image-left {
    max-width: 240px;
    margin-left: 1em;
  }
}

.inline-image-right {
  float: right;
  margin-left: 0.5em;
}

@media (min-width: 992px) {
  .inline-image-right {
    max-width: 240px;
    margin-left: 1em;
  }
}

.inline-image-left_outside {
  margin-top: 0.4em;
  float: none;
}

@media (min-width: 992px) {
  .inline-image-left_outside {
    float: left;
    max-width: 350px;
    margin-right: 1.5em;
    margin-left: -16.666667%;
  }
  .two-columns .inline-image-left_outside {
    margin-left: -28%;
  }
  .inline-image-left_outside.larger-image {
    max-width: 450px;
  }
}

.inline-image-right_outside {
  margin-top: 0.4em;
  float: none;
}

@media (min-width: 992px) {
  .inline-image-right_outside {
    float: right;
    max-width: 350px;
    margin-left: 1.5em;
    margin-right: -16.666667%;
  }
  .inline-image-right_outside.larger-image {
    max-width: 450px;
  }
}

.inline-image-left_50 {
  float: none;
}

@media (min-width: 992px) {
  .inline-image-left_50 {
    float: left;
    width: 66.623711%;
    margin-right: 1.5rem;
    margin-left: -16.666667%;
  }
}

.inline-image-right_50 {
  float: none;
}

@media (min-width: 992px) {
  .inline-image-right_50 {
    float: right;
    width: 66.623711%;
    margin-left: 1.5rem;
    margin-right: -16.666667%;
  }
}

.inline-image-wide_outer_border.medium-insert-images {
  margin-top: 2em;
  margin-bottom: 2em;
}

.main-container > .inline-image-wide_outer_border.medium-insert-images:first-child,
.main-container > .medium-outside > .inline-image-wide_outer_border.medium-insert-images:first-child,
.main-container > .wide-outside .swiper-slide .inline-image-wide_outer_border.medium-insert-images:first-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .inline-image-wide_outer_border figcaption {
    padding: 0 0.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .inline-image-wide_outer_border {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .inline-image-wide_outer_border {
    margin-left: calc(50% - 500px);
    margin-right: calc(50% - 500px);
  }
}

@media (min-width: 1201px) {
  .inline-image-wide_outer_border {
    margin-left: calc(50% - 520px);
    margin-right: calc(50% - 520px);
  }
}

.inline-image-wide_full_page img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .inline-image-wide_full_page {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .inline-image-wide_full_page {
    margin-left: calc(330px - 50vw);
    margin-right: calc(330px - 50vw);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .inline-image-wide_full_page {
    margin-left: calc(440px - 50vw);
    margin-right: calc(440px - 50vw);
  }
}

@media (min-width: 1201px) {
  .inline-image-wide_full_page {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.inline-video {
  margin-bottom: 1.5em;
}

@media (min-width: 992px) {
  .inline-video.medium-outside {
    margin-left: -92px;
    margin-right: -92px;
  }
}

figure img {
  width: 100%;
}

.in-groups-of-2 {
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .in-groups-of-2 {
    float: left;
    width: calc(50% - 40px / 2);
    margin-left: 40px;
  }
  .in-groups-of-2:nth-child(odd) {
    margin-left: 0;
    clear: left;
  }
}

.in-groups-of-2 figcaption {
  font-size: 0.8rem;
  line-height: 1rem;
}

.in-groups-of-3 {
  width: calc((100% - 20px) / 3);
}

.in-groups-of-3 figcaption {
  font-size: 0.8rem;
  line-height: 1rem;
}

.in-groups-of.adjacent > *:not(:first-child) {
  margin-left: 1rem;
}

.in-groups-of.two {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .in-groups-of.two {
    flex-direction: column;
  }
}

.in-groups-of.two > figure,
.in-groups-of.two > blockquote,
.in-groups-of.two > div {
  width: calc((100% - 1rem * (2 - 1)) / 2);
  border: none;
  margin-bottom: 0;
  margin-left: 1rem;
}

.in-groups-of.two > figure:nth-child(2n+1),
.in-groups-of.two > blockquote:nth-child(2n+1),
.in-groups-of.two > div:nth-child(2n+1) {
  margin-left: 0;
}

@media (max-width: 767px) {
  .in-groups-of.two > figure,
  .in-groups-of.two > blockquote,
  .in-groups-of.two > div {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}

.in-groups-of.two > figcaption {
  margin-top: -1rem;
  flex-grow: 2;
}

.in-groups-of.three {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .in-groups-of.three {
    flex-direction: column;
  }
}

.in-groups-of.three > figure,
.in-groups-of.three > blockquote,
.in-groups-of.three > div {
  width: calc((100% - 1rem * (3 - 1)) / 3);
  border: none;
  margin-bottom: 0;
  margin-left: 1rem;
}

.in-groups-of.three > figure:nth-child(3n+1),
.in-groups-of.three > blockquote:nth-child(3n+1),
.in-groups-of.three > div:nth-child(3n+1) {
  margin-left: 0;
}

@media (max-width: 767px) {
  .in-groups-of.three > figure,
  .in-groups-of.three > blockquote,
  .in-groups-of.three > div {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}

.in-groups-of.three > figcaption {
  margin-top: -1rem;
  flex-grow: 3;
}

.in-groups-of.twelve {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .in-groups-of.twelve {
    flex-direction: column;
  }
}

.in-groups-of.twelve > figure,
.in-groups-of.twelve > blockquote,
.in-groups-of.twelve > div {
  width: calc((100% - 1rem * (12 - 1)) / 12);
  border: none;
  margin-bottom: 0;
  margin-left: 1rem;
}

.in-groups-of.twelve > figure:nth-child(12n+1),
.in-groups-of.twelve > blockquote:nth-child(12n+1),
.in-groups-of.twelve > div:nth-child(12n+1) {
  margin-left: 0;
}

@media (max-width: 767px) {
  .in-groups-of.twelve > figure,
  .in-groups-of.twelve > blockquote,
  .in-groups-of.twelve > div {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}

.in-groups-of.twelve > figcaption {
  margin-top: -1rem;
  flex-grow: 12;
}

.more-news-block .image-wrapper,
.prev-next-tile .image-wrapper,
.path-news .up-overlay-low-masthead .image-wrapper {
  overflow: hidden;
  position: relative;
}

.more-news-block figure,
.prev-next-tile figure,
.path-news .up-overlay-low-masthead figure {
  position: relative;
  font-size: 0.8em;
  overflow: hidden;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.more-news-block figure img,
.prev-next-tile figure img,
.path-news .up-overlay-low-masthead figure img {
  -webkit-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.more-news-block figure .fa-external-link-square,
.prev-next-tile figure .fa-external-link-square,
.path-news .up-overlay-low-masthead figure .fa-external-link-square {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2em;
  color: #fff;
  -webkit-transition: color .2s;
  -ms-transition: color .2s;
  -moz-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
}

.more-news-block:hover figure img,
.prev-next-tile:hover figure img,
.path-news .up-overlay-low-masthead:hover figure img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.more-news-block:hover figure gallerycaption,
.prev-next-tile:hover figure gallerycaption,
.path-news .up-overlay-low-masthead:hover figure gallerycaption {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.tile, .prev-next-tile {
  vertical-align: top;
}

.tile a, .prev-next-tile a {
  text-decoration: none;
  color: #666;
}

.tile a figure, .prev-next-tile a figure {
  display: block;
}

.tile a figcaption, .prev-next-tile a figcaption {
  padding: 0.75em 1em 0.5em;
  margin-top: 0;
  margin-bottom: 0;
}

.tile a h2, .tile a h3, .tile a h4, .prev-next-tile a h2, .prev-next-tile a h3, .prev-next-tile a h4 {
  color: #9c8f6d;
  line-height: 1.5em;
  margin-bottom: 0.15em;
}

.prev-next-wrapper {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.prev-next-tile {
  display: table-cell;
  width: calc(50% - 20px);
}

.editable-body-holder blockquote,
.editable-body-holder blockquote.medium-quote-marker, #editable_body_holder blockquote,
#editable_body_holder blockquote.medium-quote-marker {
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  padding-left: 7%;
  padding-right: 7%;
  margin-left: 0;
  margin-right: 0;
  font-size: 16.8px;
  line-height: 28px;
  font-style: italic;
  border-left: none;
}

.editable-body-holder blockquote em, .editable-body-holder blockquote i,
.editable-body-holder blockquote.medium-quote-marker em,
.editable-body-holder blockquote.medium-quote-marker i, #editable_body_holder blockquote em, #editable_body_holder blockquote i,
#editable_body_holder blockquote.medium-quote-marker em,
#editable_body_holder blockquote.medium-quote-marker i {
  font-style: normal;
}

.editable-body-holder blockquote.medium-quote-marker-two, #editable_body_holder blockquote.medium-quote-marker-two {
  border-top: 2px solid #9c8f6d;
  padding: 1rem 4.1666665% 1.75rem;
  margin: 2.5rem 8.333333% 2.5rem;
  border-bottom: 2px solid #9c8f6d;
  font-family: "Domine", georgia, serif;
  font-style: normal;
  color: #9c8f6d;
  text-align: left;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.editable-body-holder blockquote.medium-quote-marker-two.left-quote, #editable_body_holder blockquote.medium-quote-marker-two.left-quote {
  text-align: center;
}

@media (min-width: 768px) {
  .editable-body-holder blockquote.medium-quote-marker-two.left-quote, #editable_body_holder blockquote.medium-quote-marker-two.left-quote {
    max-width: 70%;
    padding: 2rem 14.166666% 2.75rem;
  }
}

.editable-body-holder blockquote.medium-quote-marker-two.left-quote b, #editable_body_holder blockquote.medium-quote-marker-two.left-quote b {
  text-align: right;
}

@media (min-width: 1201px) {
  .editable-body-holder blockquote.medium-quote-marker-two, #editable_body_holder blockquote.medium-quote-marker-two {
    margin-left: calc(50% - 520px);
    margin-right: calc(50% - 520px);
    padding-left: 18%;
    padding-right: 18%;
  }
  .editable-body-holder blockquote.medium-quote-marker-two:before, #editable_body_holder blockquote.medium-quote-marker-two:before {
    margin-left: -4%;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .editable-body-holder blockquote.medium-quote-marker-two, #editable_body_holder blockquote.medium-quote-marker-two {
    margin-left: calc(50% - 500px);
    margin-right: calc(50% - 500px);
    padding-left: 12%;
    padding-right: 12%;
  }
  .editable-body-holder blockquote.medium-quote-marker-two:before, #editable_body_holder blockquote.medium-quote-marker-two:before {
    margin-left: -4%;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .editable-body-holder blockquote.medium-quote-marker-two, #editable_body_holder blockquote.medium-quote-marker-two {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 12%;
    padding-right: 12%;
  }
  .editable-body-holder blockquote.medium-quote-marker-two:before, #editable_body_holder blockquote.medium-quote-marker-two:before {
    margin-left: -4%;
  }
}

@media (max-width: 767px) {
  .editable-body-holder blockquote.medium-quote-marker-two, #editable_body_holder blockquote.medium-quote-marker-two {
    margin-left: 0;
    margin-right: 0;
  }
}

.more-about:after {
  content: ' ';
  width: 1.75em;
  height: 0;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #9c8f6d;
  display: block;
}

footer#footer {
  background-color: #f2f2f2;
  position: relative;
}

@media (min-width: 768px) {
  footer#footer {
    min-height: 10em;
    margin-top: 2em;
    padding-top: 1.5em;
  }
}

footer#footer a {
  color: #666666;
  text-transform: uppercase;
}

footer#footer a:hover {
  color: #3b3b3b;
}

footer#footer li {
  list-style: none;
}

footer#footer ul.level-1 {
  display: block;
}

footer#footer ul.level-1 > li.nav-item {
  margin-top: 1em;
}

footer#footer ul.level-1 > li.nav-item > a {
  font-weight: bold;
  padding-bottom: 0.75em;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 1.5em;
}

footer#footer ul.level-2 {
  padding-left: 1.25em;
}

footer#footer ul.level-2 li {
  text-align: left;
  font-size: 0.8em;
}

@media (min-width: 768px) and (max-width: 991px) {
  footer#footer .footer {
    width: 100%;
  }
}

footer#footer .basement {
  background-color: #737373;
  color: #fff;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  footer#footer .basement .container {
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

footer#footer .basement .footer-social-icons {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.2rem;
}

footer#footer .basement .footer-social-icons > * {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  color: #fff;
}

footer#footer .basement .footer-social-icons a.text_link {
  color: #ddd;
  font-size: 0.8rem;
  text-transform: none;
}

footer#footer .basement .footer-social-icons a.text_link:hover {
  color: #fff;
}

footer#footer .basement .footer-social-icons span.divider {
  border-right: 1px solid #fff;
  padding: 0;
}

footer#footer .basement .footer-social-icons a.fa:hover {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  footer#footer ul.level-1 {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
  }
  footer#footer ul.level-1 > li.nav-item {
    min-width: 10%;
    max-width: 30%;
  }
  footer#footer ul.level-1 > li.nav-item.footer-link-videos-, footer#footer ul.level-1 > li.nav-item.footer-link-photos- {
    max-width: 20%;
  }
}

@media (max-width: 767px) {
  .footer-link-videos- .frog {
    margin-bottom: 2rem;
  }
}

.recent-news-block {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 2em;
}

.recent-news-block a img {
  width: 100%;
}

.recent-news-block .recent-news-article:nth-child(odd) {
  padding-right: 7px;
}

.recent-news-block .recent-news-article:nth-child(even) {
  padding-left: 7px;
}

/* Slideshows */
slide .lead,
slidecaption .lead, .pswp__caption .lead {
  color: #9c8f6d;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

slide[template=b-with-date] slidecaption {
  top: 460px !important;
  left: 40px !important;
  bottom: 20px !important;
}

slide[template=d-with-date] slidecaption {
  top: 500px !important;
  bottom: 0 !important;
  left: 40px !important;
  right: auto !important;
  width: 645px !important;
  height: auto !important;
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
}

slide[template=e-with-date] slidecaption {
  top: 47px !important;
  bottom: 100px !important;
  right: 20px !important;
  width: 200px !important;
}

slide[template=n-with-date] slidecaption {
  left: 540px !important;
  top: 50px !important;
  bottom: 100px !important;
  right: 50px !important;
}

slide .lead-titleLine,
slidecaption .lead-titleLine {
  display: block;
  font-size: 1rem;
}

slide[template=q-5-with-band-special] slide .lead-titleLine,
slide[template=d-with-band-special] slide .lead-titleLine, slide[template=q-5-with-band-special]
slidecaption .lead-titleLine,
slide[template=d-with-band-special]
slidecaption .lead-titleLine {
  text-shadow: 1px 1px 2px black;
}

slide[template=b-with-date] slide .lead-titleLine,
slide[template=d-with-date] slide .lead-titleLine,
slide[template=e-with-date] slide .lead-titleLine,
slide .lead-titleLine slide[template=n-with-date], slide[template=b-with-date]
slidecaption .lead-titleLine,
slide[template=d-with-date]
slidecaption .lead-titleLine,
slide[template=e-with-date]
slidecaption .lead-titleLine,
slidecaption .lead-titleLine slide[template=n-with-date] {
  margin-bottom: 20px;
}

slidecaption .lead-date {
  font-size: 30px;
}

slide[template=b-with-date] slidecaption .lead-date,
slide[template=d-with-date] slidecaption .lead-date {
  margin-right: 30px;
  white-space: nowrap;
}

slide[template=e-with-date] slidecaption .lead-date,
slide[template=f-with-date] slidecaption .lead-date,
slide[template=n-with-date] slidecaption .lead-date,
slide[template=o-with-date] slidecaption .lead-date {
  margin-bottom: 40px;
  display: block;
}

slide.with-band slidecaption .lead {
  text-shadow: 1px 1px 3px black;
}

@media (max-width: 991px) {
  .owl-carousel .gak-slide {
    padding: 1rem;
  }
  .owl-carousel .gak-slide .timeline {
    padding-left: 2rem;
  }
  .owl-carousel .gak-slide .padded-text {
    padding: 0 2rem;
  }
}

@media (min-width: 464px) {
  .owl-carousel .gak-slide {
    width: 414px;
  }
}

.owl-carousel .gak-slide img {
  width: auto;
  margin: 0;
}

.owl-carousel .gak-slide p {
  margin-bottom: 0;
}

.owl-carousel .gak-slide p:not(:first-of-type) {
  text-indent: 2em;
}

.owl-carousel .gak-slide .gak-release-img {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
}

:lang(he) h3.timeline,
h3.timeline {
  font-size: 4.75em;
  line-height: 1em;
  margin-top: 0.2em !important;
  margin-bottom: 0.15em;
  border-bottom: 1px solid #b3b3b3;
  padding-top: 0.1em;
  padding-bottom: 0.15em;
}

.play-wrapper-16x9 {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.play-button-overlay {
  -webkit-border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -o-border-radius: 0.8em;
  border-radius: 0.8em;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: 0 0 1em rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0 0 1em rgba(255, 255, 255, 0.25);
  -o-box-shadow: 0 0 1em rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 1em rgba(255, 255, 255, 0.25);
  background: 0 0;
  border-radius: 0;
  border: 0;
  bottom: 0;
  box-shadow: none;
  cursor: pointer;
  display: block;
  font-size: 3em;
  height: 70px;
  width: 230px;
  left: 50%;
  right: 0;
  top: 50%;
  line-height: 1.5em;
  margin: -35px -115px;
  opacity: 1;
  padding: 0;
  position: absolute;
  text-align: center;
  transition: all .4s;
  vertical-align: middle;
  z-index: 2;
}

[dir="rtl"] .play-button-overlay {
  left: 0;
  right: 50%;
}

.play-button-overlay:after {
  content: '';
  background-image: url(/theme/images/play-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #fff;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 5px;
  right: 5px;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out;
}

.play-button-overlay:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: opacity .2s linear,visibility .2s linear;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  border: 2px solid #fff;
  color: #fff;
  content: '{{.TUC "Play Video"}}';
  font-family: Futura,'Trebuchet MS',Arial,sans-serif;
  font-size: 22px;
  line-height: 70px;
  opacity: 0;
  padding-right: 50px;
  text-shadow: none;
  transition: opacity .2s linear,visibility .2s linear;
  visibility: hidden;
}

.shrink-one-column {
  margin-left: 8.333333%;
  margin-right: 8.333333%;
  margin-bottom: 1.5em;
}

.shrink-one-column h3 {
  line-height: 1.5rem;
}

.star-of-trust .star-of-trust-image {
  margin: 0 auto;
  display: block;
}

@media (min-width: 700px) {
  .star-of-trust {
    position: relative;
  }
  .star-of-trust p {
    text-indent: 20px;
    margin-bottom: 0;
  }
  .star-of-trust .column-1 {
    width: 48%;
    float: left;
  }
  .star-of-trust .column-1:before {
    float: right;
    content: "";
    width: 125px;
    height: 250px;
  }
  .star-of-trust .column-1 p:first-of-type {
    text-indent: 0;
  }
  .star-of-trust .column-2 {
    width: 48%;
    float: right;
  }
  .star-of-trust .column-2:before {
    float: left;
    content: "";
    width: 125px;
    height: 220px;
  }
  .star-of-trust .star-of-trust-image {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -125px;
    max-width: 230px;
  }
}

@media (min-width: 1200px) {
  .star-of-trust {
    margin-left: calc(50% - 520px);
    margin-right: calc(50% - 520px);
  }
}

html {
  overflow-x: hidden;
}

.featureBlockPhotoGrid-photo {
  float: left;
  width: calc((100% - 10px * (3 - 1)) / 3);
  margin-left: 10px;
  margin-bottom: calc(10px / 0.913);
}

.featureBlockPhotoGrid-photo:nth-child(3n+1) {
  margin-left: 0;
  clear: left;
}

.featureBlockPhotoGrid-photo .feature-photo-image-wrapper {
  overflow: hidden;
}

.featureBlockPhotoGrid-photo img {
  width: 100%;
  max-width: none;
  opacity: 0.85;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.featureBlockPhotoGrid-photo:hover {
  cursor: pointer;
}

.featureBlockPhotoGrid-photo:hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.feature-photo-image-wrapper {
  position: relative;
}

.feature-photo-image-wrapper:hover .feature-photo-label {
  opacity: 1;
  transform: translatex(0);
}

.feature-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(174, 167, 132, 0.8);
  color: #fff;
  font-family: 'Mulish',  helvetica neue,helvetica,arial,sans-serif;
  padding: 2px 10px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translatex(-40px);
  transition: all .6s;
  font-size: 10px;
}

.feature-photo-label nobr {
  white-space: normal;
}

.feature-photo-image-wrapper img {
  width: 100%;
}

.feature-photo-image-wrapper a:hover {
  color: #9c8f6d;
}

.feature-photo-image-wrapper a:hover {
  color: #9c8f6d;
}

.featureBlockVideo {
  padding-left: 40px;
  padding-right: 0px;
}

p.featureBlockVideo-caption {
  font-size: 1.3em;
  color: black;
  margin: 10px;
}

.org-mosaic-wrapper,
.slider-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.slider-container .extender,
.grand-openings-mosaic-extender,
.org-mosaic-extender,
.future-orgs {
  margin-bottom: 1.5em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  border-top: 4px solid #9c8f6d;
  border-bottom: 4px solid #9c8f6d;
}

.slider {
  margin-bottom: 2em !important;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  border-top: 4px solid #9c8f6d;
  border-bottom: 4px solid #9c8f6d;
}

.gak-extender {
  margin-bottom: 1.5em;
  padding-top: 1.5em;
  padding-bottom: 1.25em;
  border-top: 5px solid #9c8f6d;
  border-bottom: 5px solid #9c8f6d;
}

@media (min-width: 992px) {
  .gak-extender {
    padding-top: 2.5em;
  }
}

.mobile-toggle {
  width: 56px;
  min-height: 50px;
  float: right;
  position: relative;
  margin-top: 0.9rem;
}

.mobile-toggle img {
  width: 40px;
}

.navbar-toggler-right {
  right: 0;
  top: 0.3rem;
}

@media (max-width: 767px) {
  ul {
    padding-left: 1rem;
  }
}

.primary-nav-mobile {
  position: absolute;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .primary-nav-mobile {
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
  }
}

.primary-nav-mobile nav ul {
  flex-direction: column;
  opacity: 0;
  margin-top: -800px;
  transition: opacity .1s ease-in-out, margin-top .25s ease-in-out;
}

.primary-nav-mobile nav.open ul {
  margin-top: 0;
  opacity: 1;
  transition: opacity .5s ease-in-out, margin-top .25s ease-in-out;
  padding: 0.7em 0.5rem 1em 0.5rem;
}

.primary-nav-mobile nav.open ul li {
  display: block;
}

.primary-nav-mobile nav li {
  width: 100%;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  margin-top: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: none;
}

.primary-nav-mobile nav li:hover {
  background: #898989;
}

.primary-nav-mobile nav li.navitem {
  border-bottom: 1px solid #aaa;
}

.primary-nav-mobile nav li.search-item {
  background: none;
}

.primary-nav-mobile nav li.search-item input {
  padding-left: 0.7rem;
  height: 40px;
}

.primary-nav-mobile nav li.search-item input:focus {
  outline: none;
}

.primary-nav-mobile nav li a {
  color: #fff;
  display: block;
}

.banner nav.navbar {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  float: left;
  clear: both;
  width: 100%;
  border: none;
  border-radius: 0;
  z-index: 10;
  margin-top: -13px;
}

@media (min-width: 992px) {
  .banner nav.navbar {
    min-height: 36px;
  }
}

.banner nav.navbar.open {
  -webkit-transform: translateY(11px);
  -ms-transform: translateY(11px);
  -moz-transform: translateY(11px);
  -o-transform: translateY(11px);
  transform: translateY(11px);
}

.banner nav.navbar.show-background {
  background: rgba(77, 77, 77, 0.97);
}

@media (min-width: 992px) {
  .banner nav.navbar {
    background: rgba(77, 77, 77, 0.97);
  }
}

.banner nav.navbar ul.nav .nav-moving-bar {
  height: 4px;
  margin: 0;
  background: #9b8e6c;
  border: none;
  clear: both;
  opacity: 0;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  left: 0;
  width: 1px;
}

.banner nav.navbar ul.nav:hover .nav-moving-bar {
  opacity: 1;
  display: block;
}

html.menu-opened body {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-top-mobilenav {
    margin-top: 0.5rem;
  }
  .banner-top-mobilenav .mobile-toggle {
    margin-top: 0;
  }
}

.banner .navbar-default .navbar-nav > li > a {
  color: #8f8f8f;
  font-size: 16px;
  text-align: center;
  line-height: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

.banner .navbar-default .navbar-nav > li > a:hover {
  color: #fff;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  background: none;
  color: #9b8e6c;
}

.row-tile figure img {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.row-tile figure img:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

figure.listing-tile {
  position: relative;
  overflow: hidden;
  background: rgba(27, 58, 76, 0.85);
}

@media (min-width: 992px) {
  figure.listing-tile {
    background: none;
  }
  figure.listing-tile .section-title {
    background: rgba(27, 58, 76, 0.85);
  }
}

@media (min-width: 1200px) {
  figure.listing-tile[data-path="/accomplishments/scientology-spiritual-headquarters.html"] .section-title {
    padding-right: 5rem;
  }
  figure.listing-tile[data-path="/accomplishments/a-religious-retreat-at-sea.html"] .section-title {
    padding-right: 12rem;
  }
  figure.listing-tile[data-path="/accomplishments/bringing-scientology-to-the-world/"] .section-title, figure.listing-tile[data-path="/accomplishments/social-betterment-campaigns/"] .section-title {
    padding-right: 4rem;
  }
}

figure.listing-tile figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-family: "Domine", georgia, serif;
  font-size: 1.1em;
  color: #fff;
  text-shadow: 0 0 1px #000, 1px 1px 4px #000;
  text-align: right;
  pointer-events: none;
  margin: 0;
}

@media (min-width: 992px) {
  figure.listing-tile figcaption {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    -moz-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
  figure.listing-tile figcaption .section-title {
    width: 50%;
    text-align: left;
    padding-left: 4rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-right: 3rem;
    text-transform: uppercase;
    line-height: 1.4rem;
  }
}

@media (min-width: 1200px) {
  figure.listing-tile figcaption .section-title {
    width: 40%;
    padding-right: 4rem;
  }
}

@media (max-width: 991px) {
  figure.listing-tile figcaption {
    position: relative;
    bottom: auto;
    right: auto;
    padding: 0.2rem 0.8rem;
    font-size: 0.9rem;
    margin: 0;
  }
  figure.listing-tile figcaption .call-to-action {
    position: relative;
    color: white !important;
    font-size: 0.8rem !important;
  }
}

.expanded figure.listing-tile figcaption {
  display: block;
  width: 100%;
  right: auto;
  left: auto;
  text-align: center;
  text-transform: uppercase;
}

figure.listing-tile figcaption span.call-to-action {
  display: block;
  text-transform: uppercase;
  color: #b49b55;
  text-shadow: 0 0 1px #000, 1px 1px 4px #000;
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  font-size: 1rem;
}

figure.listing-tile figcaption span.call-to-action:hover {
  color: #c7aa5c;
}

.path-accomplishments a[href="/accomplishments/renaissance-for-scientology/basic-books-and-lectures.html"] .listing-tile img {
  position: relative;
  z-index: -1;
}

.path-accomplishments a[href="/accomplishments/renaissance-for-scientology/basic-books-and-lectures.html"] .listing-tile:hover img {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.path-accomplishments a[href="/accomplishments/renaissance-for-scientology/basic-books-and-lectures.html"] .listing-tile:before {
  background: rgba(0, 0, 0, 0.3);
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.mos-block {
  overflow: hidden;
  position: relative;
}

.mos-block img {
  opacity: 0.85;
  transition: transform 0.25s ease-out, opacity 0.25s linear;
}

.mos-block span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(174, 167, 132, 0.8);
  color: #fff;
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  padding: 2px 10px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translatex(-40px);
  transition: all .6s;
  z-index: 1;
}

.mos-block:hover img {
  opacity: 1;
  transition: transform 0.25s ease-out, opacity 0.25s linear;
}

.mos-block:hover span {
  transform: translateX(0);
  opacity: 1;
}

#shell > .body-container {
  z-index: 11;
}

.search-form .search-container {
  width: 100%;
}

.search-form #search-box {
  width: 100%;
  padding: 4px 10px 2px;
}

.search-results {
  background-color: #fff;
  padding: 0.6em;
}

@media (min-width: 768px) {
  .search-results {
    padding: 2em;
  }
}

.search-results h1 {
  text-align: left;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #b3b3b3;
  margin-bottom: 1em;
}

.search-block {
  margin-bottom: 1.5em;
  padding: 0.5em 1em;
}

.search-block a {
  text-decoration: none;
}

.search-block:hover {
  background-color: #f2f2f2;
}

.search-block:hover a {
  color: #000;
}

.search-item mark {
  color: #9c8f6d;
  background: none;
}

.search-item-title {
  color: #333;
  font-family: "Domine", georgia, serif;
  font-size: 1.5em;
}

.search-item-snippet {
  color: #333;
}

.masthead-search {
  position: relative;
  display: none;
}

.masthead-search #search-bar {
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  color: #000;
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 0 calc(8.333333% + 2em);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.path-search .masthead-search #search-bar, .masthead-search #search-bar.open {
  height: auto;
  display: block;
  padding: 2.8em calc(8.333333% + 2em) 0.75em;
  opacity: 1;
}

.search-form {
  width: 100%;
}

.search-bar-toggle {
  margin-left: 20px;
  margin-top: -5px;
  float: right;
  font-size: 1.5em;
  color: #8f8f8f;
  cursor: pointer;
}

.search-bar-toggle img {
  margin-top: -5px;
}

.listing-tile .text-overlay-wrapper {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  -moz-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Domine", georgia, serif;
  font-weight: bold;
}

.listing-tile .text-overlay-wrapper:hover .image-text {
  opacity: 1;
}

.listing-tile .text-overlay-wrapper:hover .image-text span {
  -webkit-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  -moz-transform: translateX(0) !important;
  -o-transform: translateX(0) !important;
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(1) {
  -webkit-transition: transform 0.5s 0.1s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.1s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.1s ease-out, color 1s;
  -o-transition: transform 0.5s 0.1s ease-out, color 1s;
  transition: transform 0.5s 0.1s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(1):hover {
  -webkit-transition: transform 0.5s 0.1s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.1s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.1s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.1s ease-out, color 0.25s;
  transition: transform 0.5s 0.1s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(2) {
  -webkit-transition: transform 0.5s 0.2s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.2s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.2s ease-out, color 1s;
  -o-transition: transform 0.5s 0.2s ease-out, color 1s;
  transition: transform 0.5s 0.2s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(2):hover {
  -webkit-transition: transform 0.5s 0.2s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.2s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.2s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.2s ease-out, color 0.25s;
  transition: transform 0.5s 0.2s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(3) {
  -webkit-transition: transform 0.5s 0.3s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.3s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.3s ease-out, color 1s;
  -o-transition: transform 0.5s 0.3s ease-out, color 1s;
  transition: transform 0.5s 0.3s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(3):hover {
  -webkit-transition: transform 0.5s 0.3s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.3s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.3s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.3s ease-out, color 0.25s;
  transition: transform 0.5s 0.3s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(4) {
  -webkit-transition: transform 0.5s 0.4s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.4s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.4s ease-out, color 1s;
  -o-transition: transform 0.5s 0.4s ease-out, color 1s;
  transition: transform 0.5s 0.4s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(4):hover {
  -webkit-transition: transform 0.5s 0.4s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.4s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.4s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.4s ease-out, color 0.25s;
  transition: transform 0.5s 0.4s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(5) {
  -webkit-transition: transform 0.5s 0.5s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.5s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.5s ease-out, color 1s;
  -o-transition: transform 0.5s 0.5s ease-out, color 1s;
  transition: transform 0.5s 0.5s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(5):hover {
  -webkit-transition: transform 0.5s 0.5s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.5s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.5s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.5s ease-out, color 0.25s;
  transition: transform 0.5s 0.5s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(6) {
  -webkit-transition: transform 0.5s 0.6s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.6s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.6s ease-out, color 1s;
  -o-transition: transform 0.5s 0.6s ease-out, color 1s;
  transition: transform 0.5s 0.6s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(6):hover {
  -webkit-transition: transform 0.5s 0.6s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.6s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.6s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.6s ease-out, color 0.25s;
  transition: transform 0.5s 0.6s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(7) {
  -webkit-transition: transform 0.5s 0.7s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.7s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.7s ease-out, color 1s;
  -o-transition: transform 0.5s 0.7s ease-out, color 1s;
  transition: transform 0.5s 0.7s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(7):hover {
  -webkit-transition: transform 0.5s 0.7s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.7s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.7s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.7s ease-out, color 0.25s;
  transition: transform 0.5s 0.7s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(8) {
  -webkit-transition: transform 0.5s 0.8s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.8s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.8s ease-out, color 1s;
  -o-transition: transform 0.5s 0.8s ease-out, color 1s;
  transition: transform 0.5s 0.8s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(8):hover {
  -webkit-transition: transform 0.5s 0.8s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.8s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.8s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.8s ease-out, color 0.25s;
  transition: transform 0.5s 0.8s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(9) {
  -webkit-transition: transform 0.5s 0.9s ease-out, color 1s;
  -ms-transition: transform 0.5s 0.9s ease-out, color 1s;
  -moz-transition: transform 0.5s 0.9s ease-out, color 1s;
  -o-transition: transform 0.5s 0.9s ease-out, color 1s;
  transition: transform 0.5s 0.9s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(9):hover {
  -webkit-transition: transform 0.5s 0.9s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.9s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.9s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.9s ease-out, color 0.25s;
  transition: transform 0.5s 0.9s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(10) {
  -webkit-transition: transform 0.5s 1s ease-out, color 1s;
  -ms-transition: transform 0.5s 1s ease-out, color 1s;
  -moz-transition: transform 0.5s 1s ease-out, color 1s;
  -o-transition: transform 0.5s 1s ease-out, color 1s;
  transition: transform 0.5s 1s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(10):hover {
  -webkit-transition: transform 0.5s 1s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1s ease-out, color 0.25s;
  transition: transform 0.5s 1s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(11) {
  -webkit-transition: transform 0.5s 1.1s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.1s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.1s ease-out, color 1s;
  -o-transition: transform 0.5s 1.1s ease-out, color 1s;
  transition: transform 0.5s 1.1s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(11):hover {
  -webkit-transition: transform 0.5s 1.1s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.1s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.1s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.1s ease-out, color 0.25s;
  transition: transform 0.5s 1.1s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(12) {
  -webkit-transition: transform 0.5s 1.2s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.2s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.2s ease-out, color 1s;
  -o-transition: transform 0.5s 1.2s ease-out, color 1s;
  transition: transform 0.5s 1.2s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(12):hover {
  -webkit-transition: transform 0.5s 1.2s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.2s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.2s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.2s ease-out, color 0.25s;
  transition: transform 0.5s 1.2s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(13) {
  -webkit-transition: transform 0.5s 1.3s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.3s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.3s ease-out, color 1s;
  -o-transition: transform 0.5s 1.3s ease-out, color 1s;
  transition: transform 0.5s 1.3s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(13):hover {
  -webkit-transition: transform 0.5s 1.3s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.3s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.3s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.3s ease-out, color 0.25s;
  transition: transform 0.5s 1.3s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(14) {
  -webkit-transition: transform 0.5s 1.4s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.4s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.4s ease-out, color 1s;
  -o-transition: transform 0.5s 1.4s ease-out, color 1s;
  transition: transform 0.5s 1.4s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(14):hover {
  -webkit-transition: transform 0.5s 1.4s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.4s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.4s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.4s ease-out, color 0.25s;
  transition: transform 0.5s 1.4s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(15) {
  -webkit-transition: transform 0.5s 1.5s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.5s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.5s ease-out, color 1s;
  -o-transition: transform 0.5s 1.5s ease-out, color 1s;
  transition: transform 0.5s 1.5s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(15):hover {
  -webkit-transition: transform 0.5s 1.5s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.5s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.5s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.5s ease-out, color 0.25s;
  transition: transform 0.5s 1.5s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(16) {
  -webkit-transition: transform 0.5s 1.6s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.6s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.6s ease-out, color 1s;
  -o-transition: transform 0.5s 1.6s ease-out, color 1s;
  transition: transform 0.5s 1.6s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(16):hover {
  -webkit-transition: transform 0.5s 1.6s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.6s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.6s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.6s ease-out, color 0.25s;
  transition: transform 0.5s 1.6s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(17) {
  -webkit-transition: transform 0.5s 1.7s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.7s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.7s ease-out, color 1s;
  -o-transition: transform 0.5s 1.7s ease-out, color 1s;
  transition: transform 0.5s 1.7s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(17):hover {
  -webkit-transition: transform 0.5s 1.7s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.7s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.7s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.7s ease-out, color 0.25s;
  transition: transform 0.5s 1.7s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(18) {
  -webkit-transition: transform 0.5s 1.8s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.8s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.8s ease-out, color 1s;
  -o-transition: transform 0.5s 1.8s ease-out, color 1s;
  transition: transform 0.5s 1.8s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(18):hover {
  -webkit-transition: transform 0.5s 1.8s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.8s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.8s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.8s ease-out, color 0.25s;
  transition: transform 0.5s 1.8s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(19) {
  -webkit-transition: transform 0.5s 1.9s ease-out, color 1s;
  -ms-transition: transform 0.5s 1.9s ease-out, color 1s;
  -moz-transition: transform 0.5s 1.9s ease-out, color 1s;
  -o-transition: transform 0.5s 1.9s ease-out, color 1s;
  transition: transform 0.5s 1.9s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(19):hover {
  -webkit-transition: transform 0.5s 1.9s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 1.9s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 1.9s ease-out, color 0.25s;
  -o-transition: transform 0.5s 1.9s ease-out, color 0.25s;
  transition: transform 0.5s 1.9s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(20) {
  -webkit-transition: transform 0.5s 2s ease-out, color 1s;
  -ms-transition: transform 0.5s 2s ease-out, color 1s;
  -moz-transition: transform 0.5s 2s ease-out, color 1s;
  -o-transition: transform 0.5s 2s ease-out, color 1s;
  transition: transform 0.5s 2s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(20):hover {
  -webkit-transition: transform 0.5s 2s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2s ease-out, color 0.25s;
  transition: transform 0.5s 2s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(21) {
  -webkit-transition: transform 0.5s 2.1s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.1s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.1s ease-out, color 1s;
  -o-transition: transform 0.5s 2.1s ease-out, color 1s;
  transition: transform 0.5s 2.1s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(21):hover {
  -webkit-transition: transform 0.5s 2.1s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.1s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.1s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.1s ease-out, color 0.25s;
  transition: transform 0.5s 2.1s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(22) {
  -webkit-transition: transform 0.5s 2.2s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.2s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.2s ease-out, color 1s;
  -o-transition: transform 0.5s 2.2s ease-out, color 1s;
  transition: transform 0.5s 2.2s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(22):hover {
  -webkit-transition: transform 0.5s 2.2s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.2s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.2s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.2s ease-out, color 0.25s;
  transition: transform 0.5s 2.2s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(23) {
  -webkit-transition: transform 0.5s 2.3s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.3s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.3s ease-out, color 1s;
  -o-transition: transform 0.5s 2.3s ease-out, color 1s;
  transition: transform 0.5s 2.3s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(23):hover {
  -webkit-transition: transform 0.5s 2.3s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.3s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.3s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.3s ease-out, color 0.25s;
  transition: transform 0.5s 2.3s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(24) {
  -webkit-transition: transform 0.5s 2.4s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.4s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.4s ease-out, color 1s;
  -o-transition: transform 0.5s 2.4s ease-out, color 1s;
  transition: transform 0.5s 2.4s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(24):hover {
  -webkit-transition: transform 0.5s 2.4s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.4s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.4s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.4s ease-out, color 0.25s;
  transition: transform 0.5s 2.4s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(25) {
  -webkit-transition: transform 0.5s 2.5s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.5s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.5s ease-out, color 1s;
  -o-transition: transform 0.5s 2.5s ease-out, color 1s;
  transition: transform 0.5s 2.5s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(25):hover {
  -webkit-transition: transform 0.5s 2.5s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.5s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.5s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.5s ease-out, color 0.25s;
  transition: transform 0.5s 2.5s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(26) {
  -webkit-transition: transform 0.5s 2.6s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.6s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.6s ease-out, color 1s;
  -o-transition: transform 0.5s 2.6s ease-out, color 1s;
  transition: transform 0.5s 2.6s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(26):hover {
  -webkit-transition: transform 0.5s 2.6s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.6s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.6s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.6s ease-out, color 0.25s;
  transition: transform 0.5s 2.6s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(27) {
  -webkit-transition: transform 0.5s 2.7s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.7s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.7s ease-out, color 1s;
  -o-transition: transform 0.5s 2.7s ease-out, color 1s;
  transition: transform 0.5s 2.7s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(27):hover {
  -webkit-transition: transform 0.5s 2.7s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.7s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.7s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.7s ease-out, color 0.25s;
  transition: transform 0.5s 2.7s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(28) {
  -webkit-transition: transform 0.5s 2.8s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.8s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.8s ease-out, color 1s;
  -o-transition: transform 0.5s 2.8s ease-out, color 1s;
  transition: transform 0.5s 2.8s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(28):hover {
  -webkit-transition: transform 0.5s 2.8s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.8s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.8s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.8s ease-out, color 0.25s;
  transition: transform 0.5s 2.8s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(29) {
  -webkit-transition: transform 0.5s 2.9s ease-out, color 1s;
  -ms-transition: transform 0.5s 2.9s ease-out, color 1s;
  -moz-transition: transform 0.5s 2.9s ease-out, color 1s;
  -o-transition: transform 0.5s 2.9s ease-out, color 1s;
  transition: transform 0.5s 2.9s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(29):hover {
  -webkit-transition: transform 0.5s 2.9s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 2.9s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 2.9s ease-out, color 0.25s;
  -o-transition: transform 0.5s 2.9s ease-out, color 0.25s;
  transition: transform 0.5s 2.9s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(30) {
  -webkit-transition: transform 0.5s 3s ease-out, color 1s;
  -ms-transition: transform 0.5s 3s ease-out, color 1s;
  -moz-transition: transform 0.5s 3s ease-out, color 1s;
  -o-transition: transform 0.5s 3s ease-out, color 1s;
  transition: transform 0.5s 3s ease-out, color 1s;
}

.listing-tile .text-overlay-wrapper:hover .image-text > span:nth-child(30):hover {
  -webkit-transition: transform 0.5s 3s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 3s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 3s ease-out, color 0.25s;
  -o-transition: transform 0.5s 3s ease-out, color 0.25s;
  transition: transform 0.5s 3s ease-out, color 0.25s;
}

.listing-tile .text-overlay-wrapper .image-text {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14em;
  line-height: 1.1em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.68);
  -webkit-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 0;
}

@media (min-width: 1200px) {
  .listing-tile .text-overlay-wrapper .image-text {
    font-size: 18em;
    line-height: 0.67em;
  }
}

.listing-tile .text-overlay-wrapper .image-text > span {
  display: inline-block;
}

.listing-tile .text-overlay-wrapper .image-text > span:hover {
  color: rgba(255, 255, 255, 0.8);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(1) {
  -webkit-transition: transform 0.5s 0.24s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.24s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.24s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.24s ease-out, color 0.25s;
  transition: transform 0.5s 0.24s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(2) {
  -webkit-transition: transform 0.5s 0.22s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.22s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.22s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.22s ease-out, color 0.25s;
  transition: transform 0.5s 0.22s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(3) {
  -webkit-transition: transform 0.5s 0.2s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.2s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.2s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.2s ease-out, color 0.25s;
  transition: transform 0.5s 0.2s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(4) {
  -webkit-transition: transform 0.5s 0.18s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.18s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.18s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.18s ease-out, color 0.25s;
  transition: transform 0.5s 0.18s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(5) {
  -webkit-transition: transform 0.5s 0.16s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.16s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.16s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.16s ease-out, color 0.25s;
  transition: transform 0.5s 0.16s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(6) {
  -webkit-transition: transform 0.5s 0.14s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.14s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.14s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.14s ease-out, color 0.25s;
  transition: transform 0.5s 0.14s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(7) {
  -webkit-transition: transform 0.5s 0.12s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.12s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.12s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.12s ease-out, color 0.25s;
  transition: transform 0.5s 0.12s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(8) {
  -webkit-transition: transform 0.5s 0.1s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.1s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.1s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.1s ease-out, color 0.25s;
  transition: transform 0.5s 0.1s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(9) {
  -webkit-transition: transform 0.5s 0.08s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.08s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.08s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.08s ease-out, color 0.25s;
  transition: transform 0.5s 0.08s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(10) {
  -webkit-transition: transform 0.5s 0.06s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.06s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.06s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.06s ease-out, color 0.25s;
  transition: transform 0.5s 0.06s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(11) {
  -webkit-transition: transform 0.5s 0.04s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.04s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.04s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.04s ease-out, color 0.25s;
  transition: transform 0.5s 0.04s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(12) {
  -webkit-transition: transform 0.5s 0.02s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0.02s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0.02s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0.02s ease-out, color 0.25s;
  transition: transform 0.5s 0.02s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.listing-tile .text-overlay-wrapper .image-text > span:nth-child(13) {
  -webkit-transition: transform 0.5s 0s ease-out, color 0.25s;
  -ms-transition: transform 0.5s 0s ease-out, color 0.25s;
  -moz-transition: transform 0.5s 0s ease-out, color 0.25s;
  -o-transition: transform 0.5s 0s ease-out, color 0.25s;
  transition: transform 0.5s 0s ease-out, color 0.25s;
  -webkit-transform: translateX(1200px);
  -ms-transform: translateX(1200px);
  -moz-transform: translateX(1200px);
  -o-transform: translateX(1200px);
  transform: translateX(1200px);
}

.medium-insert-images,
.mediumInsert {
  margin-top: 0;
  margin-bottom: 0;
}

.medium-insert-images {
  margin-top: 2rem;
  margin-bottom: 2rem !important;
}

.main-container > .medium-insert-images:first-child,
.main-container > .medium-outside > .medium-insert-images:first-child {
  margin-top: 0;
}

.medium-insert-images.inline-images-wide, .medium-insert-images.inline-image-wide_outer_border {
  margin-top: 2em;
  margin-bottom: 2em;
}

.medium-insert-images.inline-image-left_50, .medium-insert-images.inline-image-right_50, .medium-insert-images.inline-image-left_outside, .medium-insert-images.inline-image-right_outside {
  margin-top: 0.4em;
  margin-bottom: 0 !important;
}

p.special-center {
  max-width: 78%;
  margin: 0 auto;
}

.pagination {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0em;
}

.pagination svg path,
.pagination svg polyline {
  stroke-width: 1.5;
}

.pagination .page-number,
.pagination .page-next,
.pagination .page-prev {
  padding: 0px 4px;
  line-height: 15px;
  height: 17px;
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.pagination .page-number:hover,
.pagination .page-next:hover,
.pagination .page-prev:hover {
  background: rgba(216, 197, 146, 0.63);
}

.pagination .page-number:hover a,
.pagination .page-next:hover a,
.pagination .page-prev:hover a {
  color: black;
  text-decoration: none;
}

.pagination .page-number:hover polyline,
.pagination .page-number:hover path,
.pagination .page-next:hover polyline,
.pagination .page-next:hover path,
.pagination .page-prev:hover polyline,
.pagination .page-prev:hover path {
  stroke: black;
}

.pagination .page-number a,
.pagination .page-next a,
.pagination .page-prev a {
  color: #d8c592;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.85em;
  line-height: 1px;
}

.pagination .page-number.active,
.pagination .page-next.active,
.pagination .page-prev.active {
  background: #d8c592;
}

.pagination .page-number.active a,
.pagination .page-next.active a,
.pagination .page-prev.active a {
  color: #000;
}

.pagination .page-prev {
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.without-master-head-image .pagination-wrapper {
  position: absolute;
  bottom: 1.1em;
}

.without-master-head-image .pagination-wrapper .pagination {
  padding-right: 15px;
}

.landmark-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.8em;
}

.landmark-image img {
  -webkit-transition: transform 0.25s ease-out;
  -ms-transition: transform 0.25s ease-out;
  -moz-transition: transform 0.25s ease-out;
  -o-transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
}

.landmark-image img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

[data-path="/accomplishments/renaissance-for-scientology.html"] .listing-tile .text-overlay-wrapper .image-text {
  font-size: 9em;
  line-height: 2.8em;
}

@media (min-width: 1200px) {
  [data-path="/accomplishments/renaissance-for-scientology.html"] .listing-tile .text-overlay-wrapper .image-text {
    font-size: 13em;
    line-height: 0.6em;
  }
}

[data-path="/accomplishments/renaissance-for-scientology.html"] figure.listing-tile figcaption {
  left: 0;
  width: 100%;
  right: auto;
  text-align: center;
  top: 2em;
  font-size: 3em;
}

.tile img {
  opacity: 0.85;
  -webkit-transition: transform 0.25s ease-out, opacity 0.25s linear;
  -ms-transition: transform 0.25s ease-out, opacity 0.25s linear;
  -moz-transition: transform 0.25s ease-out, opacity 0.25s linear;
  -o-transition: transform 0.25s ease-out, opacity 0.25s linear;
  transition: transform 0.25s ease-out, opacity 0.25s linear;
}

.tile:hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: transform 0.25s ease-out, opacity 0.25s linear, margin 0.5s ease-out;
  -ms-transition: transform 0.25s ease-out, opacity 0.25s linear, margin 0.5s ease-out;
  -moz-transition: transform 0.25s ease-out, opacity 0.25s linear, margin 0.5s ease-out;
  -o-transition: transform 0.25s ease-out, opacity 0.25s linear, margin 0.5s ease-out;
  transition: transform 0.25s ease-out, opacity 0.25s linear, margin 0.5s ease-out;
}

.front .image-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.front .arrow {
  left: 37px;
  width: 69px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  max-width: 91px;
  top: calc(50% - 30px);
  transform: rotateY(180deg);
  padding: 10px;
}

.front .right-arrow.arrow {
  left: auto;
  right: 37px;
  transform: none;
}

.front .masthead {
  position: relative;
  height: 200px;
}

@media (min-width: 768px) {
  .front .masthead {
    height: 320px;
  }
}

@media (min-width: 992px) {
  .front .masthead {
    height: 464px;
  }
}

@media (min-width: 1200px) {
  .front .masthead {
    height: 464px;
  }
}

.front .masthead-background {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.front .masthead-background.image-container {
  display: none;
  background-color: #fff;
}

.front .masthead-background img {
  width: 100%;
}

.front .masthead-background:before {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  bottom: 0;
}

.front .masthead .container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.transiting .masthead-background.image-container {
  display: block;
}

.masthead-background {
  height: 200px;
}

@media (max-width: 767px) {
  body:not(.front):not(.accomplishments-265px-tall) .masthead-background {
    height: 130% !important;
    max-height: 420px;
  }
}

.accomplishments-265px-tall .masthead {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .body-container {
    margin: 0 20px;
  }
}

@media (min-width: 768px) {
  .masthead-background {
    height: auto;
  }
}

@media (min-width: 992px) {
  .masthead-background {
    height: 260px;
  }
}

@media (min-width: 1200px) {
  .masthead-background {
    height: 320px;
  }
}

body.path-videos .editable-body-holder .video-block-quote blockquote.medium-quote-marker-two,
body.path-videos #editable_body_holder .video-block-quote blockquote.medium-quote-marker-two {
  margin-right: -3px;
}

.path-photos-galleries,
.path-videos {
  /*
	.slideheaderArea-arrow:hover .slideheaderArea-arrow-line {
		animation: slideheaderAreaArrowAnimation 1s linear forwards;
	}
	@keyframes slideheaderAreaArrowAnimation {
		to {
			stroke: #D7C491;
			stroke-width: 1.4px;
		}
	}
	*/
}

.path-photos-galleries .masthead-content,
.path-videos .masthead-content {
  overflow: visible;
  z-index: 100;
}

.path-photos-galleries .slideshow-page-header,
.path-videos .slideshow-page-header {
  margin-bottom: 80px;
}

.path-photos-galleries svg.slideshow-downarrow,
.path-videos svg.slideshow-downarrow {
  margin: 20px auto;
  display: block;
}

.path-photos-galleries .slideshow-blurb,
.path-videos .slideshow-blurb {
  text-align: center;
}

.path-photos-galleries .slideshow-downarrow,
.path-videos .slideshow-downarrow {
  cursor: pointer;
}

.path-photos-galleries .slideshow-downarrow:hover #Path-2,
.path-videos .slideshow-downarrow:hover #Path-2 {
  animation: dash 3s linear forwards;
}

@keyframes dash {
  to {
    stroke: #D7C491;
    stroke-width: 1.5px;
  }
}

.path-photos-galleries .slideheaderArea-arrow,
.path-videos .slideheaderArea-arrow {
  position: absolute;
  top: 50px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -ms-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -moz-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -o-transition: all .25s cubic-bezier(.694,.048,.335,1);
  transition: all .25s cubic-bezier(.694,.048,.335,1);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.path-photos-galleries .slideheaderArea-arrow:hover, .path-photos-galleries .slideheaderArea-arrow:focus,
.path-videos .slideheaderArea-arrow:hover,
.path-videos .slideheaderArea-arrow:focus {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

@media (min-width: 768px) {
  .path-photos-galleries .slideheaderArea-arrow,
  .path-videos .slideheaderArea-arrow {
    top: 120px;
  }
}

@media (min-width: 992px) {
  .path-photos-galleries .slideheaderArea-arrow,
  .path-videos .slideheaderArea-arrow {
    top: 385px;
  }
}

.path-photos-galleries .slideheaderArea-arrow.left-arrow,
.path-videos .slideheaderArea-arrow.left-arrow {
  left: 0px;
}

.path-photos-galleries .slideheaderArea-arrow,
.path-videos .slideheaderArea-arrow {
  right: 0px;
}

@media (max-width: 767px) {
  .path-photos-galleries slidecaption,
  .path-videos slidecaption {
    opacity: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .path-photos-galleries slidecaption,
  .path-videos slidecaption {
    opacity: 0 !important;
    font-size: 0.65rem;
  }
}

.path-photos-galleries .slideheader-container,
.path-videos .slideheader-container {
  height: 200px;
}

@media (min-width: 456px) and (max-width: 555px) {
  .path-photos-galleries .slideheader-container,
  .path-videos .slideheader-container {
    height: 250px;
  }
}

@media (min-width: 556px) and (max-width: 649px) {
  .path-photos-galleries .slideheader-container,
  .path-videos .slideheader-container {
    height: 300px;
  }
}

@media (min-width: 650px) and (max-width: 767px) {
  .path-photos-galleries .slideheader-container,
  .path-videos .slideheader-container {
    height: 350px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .path-photos-galleries .slideheader-container,
  .path-videos .slideheader-container {
    height: 300px;
  }
  .path-photos-galleries .slideheaderArea-arrow.left-arrow,
  .path-videos .slideheaderArea-arrow.left-arrow {
    left: -50px;
  }
  .path-photos-galleries .slideheaderArea-arrow,
  .path-videos .slideheaderArea-arrow {
    right: -50px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .path-photos-galleries .slideheader-container,
  .path-videos .slideheader-container {
    height: 390px;
  }
  .path-photos-galleries .slideheaderArea-arrow.left-arrow,
  .path-videos .slideheaderArea-arrow.left-arrow {
    left: -180px;
  }
  .path-photos-galleries .slideheaderArea-arrow,
  .path-videos .slideheaderArea-arrow {
    right: -180px;
    top: 187px;
  }
}

@media (min-width: 992px) {
  .path-photos-galleries .slideheaderArea-arrow.left-arrow,
  .path-videos .slideheaderArea-arrow.left-arrow {
    left: 0;
  }
  .path-photos-galleries .slideheaderArea-arrow,
  .path-videos .slideheaderArea-arrow {
    right: 0;
  }
}

@media (min-width: 1200px) {
  .path-photos-galleries .slideheader-container,
  .path-videos .slideheader-container {
    height: 500px;
  }
  .path-photos-galleries .slideheaderArea-arrow.left-arrow,
  .path-videos .slideheaderArea-arrow.left-arrow {
    left: 0;
  }
  .path-photos-galleries .slideheaderArea-arrow,
  .path-videos .slideheaderArea-arrow {
    right: 0;
    top: 250px;
  }
}

.slideshow-blurb .regular-font {
  font-style: italic;
}

.path-news .main-body h2.title {
  margin-top: 0px;
}

.swiper-button-disabled {
  opacity: 0.6;
}

.swiper-slide__video {
  margin-left: 20px;
  width: 200px;
}

@media (min-width: 768px) {
  .swiper-slide__video {
    width: 400px;
  }
}

.path-videos .videoListing-video {
  cursor: pointer;
  margin-bottom: 30px;
  cursor: pointer;
}

.path-videos .videoListing-video .videoListing-video-meta a {
  color: black;
}

.path-videos .videoListing-video a:hover,
.path-videos .videoListing-video a:focus {
  text-decoration: none;
}

.path-videos .toggle.hidden {
  display: none;
  overflow: hidden;
}

.path-videos body .editable-body-holder .video-block-quote blockquote.medium-quote-marker-two,
.path-videos body #editable_body_holder .video-block-quote blockquote.medium-quote-marker-two {
  margin: 20px 10px 20px !important;
  font-size: 22px;
}

.path-videos .video-quote.ray .medium-quote-marker-two {
  font-size: 24px !important;
}

a:not(.no-underline):not(.no-decoration) {
  position: relative;
  -webkit-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -ms-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -moz-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -o-transition: all .25s cubic-bezier(.694,.048,.335,1);
  transition: all .25s cubic-bezier(.694,.048,.335,1);
}

a:not(.no-underline):not(.no-decoration):after {
  -webkit-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -ms-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -moz-transition: all .25s cubic-bezier(.694,.048,.335,1);
  -o-transition: all .25s cubic-bezier(.694,.048,.335,1);
  transition: all .25s cubic-bezier(.694,.048,.335,1);
  background-color: #9B8E6C;
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  width: 0;
  height: 2px;
  z-index: 2;
}

a:not(.no-underline):not(.no-decoration):focus, a:not(.no-underline):not(.no-decoration):hover {
  color: #af9f76;
  text-decoration: none;
}

a:not(.no-underline):not(.no-decoration):focus:after, a:not(.no-underline):not(.no-decoration):hover:after {
  width: 100%;
  left: 0;
}

a.no-underline.share-logo:hover {
  color: #af9f76;
}

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

a.no-animation:hover:after, a.no-animation:focus:after, a.no-animation:active:after {
  display: none;
}

.about-cob-caption a:after {
  height: 4px;
  background-color: #d8c592;
  bottom: -2px;
}

.masthead-lead a:after {
  height: 2px;
  background-color: #d8c592;
  bottom: -1px;
}

.grandopening-mosaic-swiper #org_mosaic_slider,
.grandopening-mosaic-swiper #grand_openings_mosaic_slider,
.slider-container #org_mosaic_slider,
.slider-container #grand_openings_mosaic_slider,
.org-mosaic-slider #org_mosaic_slider,
.org-mosaic-slider #grand_openings_mosaic_slider,
.grand-openings-mosaic-slider #org_mosaic_slider,
.grand-openings-mosaic-slider #grand_openings_mosaic_slider {
  visibility: hidden;
  max-height: 450px;
}

.grandopening-mosaic-swiper .mos-block-video,
.slider-container .mos-block-video,
.org-mosaic-slider .mos-block-video,
.grand-openings-mosaic-slider .mos-block-video {
  display: block;
  width: 800px;
  height: 450px !important;
  position: relative;
}

.grandopening-mosaic-swiper .mos-slide,
.slider-container .mos-slide,
.org-mosaic-slider .mos-slide,
.grand-openings-mosaic-slider .mos-slide {
  width: 200px;
  height: 504px;
}

.grandopening-mosaic-swiper .mos-slide-double,
.slider-container .mos-slide-double,
.org-mosaic-slider .mos-slide-double,
.grand-openings-mosaic-slider .mos-slide-double {
  width: 400;
  height: 160px;
}

.grandopening-mosaic-swiper .mos-slide-quadro,
.slider-container .mos-slide-quadro,
.org-mosaic-slider .mos-slide-quadro,
.grand-openings-mosaic-slider .mos-slide-quadro {
  width: 450px;
}

.grandopening-mosaic-swiper .mos-slide.mos-slide-video,
.slider-container .mos-slide.mos-slide-video,
.org-mosaic-slider .mos-slide.mos-slide-video,
.grand-openings-mosaic-slider .mos-slide.mos-slide-video {
  width: 415px;
}

.grandopening-mosaic-swiper .mos-slide.mos-slide-video .inline-video,
.slider-container .mos-slide.mos-slide-video .inline-video,
.org-mosaic-slider .mos-slide.mos-slide-video .inline-video,
.grand-openings-mosaic-slider .mos-slide.mos-slide-video .inline-video {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .grandopening-mosaic-swiper .mos-slide.mos-slide-video,
  .slider-container .mos-slide.mos-slide-video,
  .org-mosaic-slider .mos-slide.mos-slide-video,
  .grand-openings-mosaic-slider .mos-slide.mos-slide-video {
    width: 800px;
    height: 450px !important;
  }
}

.grandopening-mosaic-swiper .mos-slide-special,
.slider-container .mos-slide-special,
.org-mosaic-slider .mos-slide-special,
.grand-openings-mosaic-slider .mos-slide-special {
  width: 110px;
  height: 450px;
}

.grandopening-mosaic-swiper .mos-block-double-height,
.grandopening-mosaic-swiper .mos-block-double,
.grandopening-mosaic-swiper .mos-block,
.slider-container .mos-block-double-height,
.slider-container .mos-block-double,
.slider-container .mos-block,
.org-mosaic-slider .mos-block-double-height,
.org-mosaic-slider .mos-block-double,
.org-mosaic-slider .mos-block,
.grand-openings-mosaic-slider .mos-block-double-height,
.grand-openings-mosaic-slider .mos-block-double,
.grand-openings-mosaic-slider .mos-block {
  display: block;
  height: 160px;
  margin-top: 10px;
  position: relative;
}

.grandopening-mosaic-swiper .mos-block-double-height,
.slider-container .mos-block-double-height,
.org-mosaic-slider .mos-block-double-height,
.grand-openings-mosaic-slider .mos-block-double-height {
  height: 450px;
}

.grandopening-mosaic-swiper .mos-block-double-height,
.grandopening-mosaic-swiper .mos-block-double,
.slider-container .mos-block-double-height,
.slider-container .mos-block-double,
.org-mosaic-slider .mos-block-double-height,
.org-mosaic-slider .mos-block-double,
.grand-openings-mosaic-slider .mos-block-double-height,
.grand-openings-mosaic-slider .mos-block-double {
  z-index: 2;
}

.grandopening-mosaic-swiper .mos-block-double-height:first-child,
.grandopening-mosaic-swiper .mos-block-double:first-child,
.grandopening-mosaic-swiper .mos-block:first-child,
.slider-container .mos-block-double-height:first-child,
.slider-container .mos-block-double:first-child,
.slider-container .mos-block:first-child,
.org-mosaic-slider .mos-block-double-height:first-child,
.org-mosaic-slider .mos-block-double:first-child,
.org-mosaic-slider .mos-block:first-child,
.grand-openings-mosaic-slider .mos-block-double-height:first-child,
.grand-openings-mosaic-slider .mos-block-double:first-child,
.grand-openings-mosaic-slider .mos-block:first-child {
  margin-top: 0;
}

.grandopening-mosaic-swiper .mos-block-double,
.slider-container .mos-block-double,
.org-mosaic-slider .mos-block-double,
.grand-openings-mosaic-slider .mos-block-double {
  background: none;
}

.grandopening-mosaic-swiper .mos-block-double .mos-block,
.grandopening-mosaic-swiper .mos-block-double.mos-block,
.slider-container .mos-block-double .mos-block,
.slider-container .mos-block-double.mos-block,
.org-mosaic-slider .mos-block-double .mos-block,
.org-mosaic-slider .mos-block-double.mos-block,
.grand-openings-mosaic-slider .mos-block-double .mos-block,
.grand-openings-mosaic-slider .mos-block-double.mos-block {
  border: none;
}

.grandopening-mosaic-swiper .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
.grandopening-mosaic-swiper .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
.slider-container .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
.slider-container .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
.org-mosaic-slider .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
.org-mosaic-slider .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
.grand-openings-mosaic-slider .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
.grand-openings-mosaic-slider .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro) {
  width: 410px;
}

@media (max-width: 768px) {
  .grandopening-mosaic-swiper .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .grandopening-mosaic-swiper .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .slider-container .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .slider-container .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .org-mosaic-slider .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .org-mosaic-slider .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .grand-openings-mosaic-slider .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .grand-openings-mosaic-slider .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro) {
    width: 231px;
  }
}

@media (max-width: 480px) {
  .grandopening-mosaic-swiper .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .grandopening-mosaic-swiper .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .slider-container .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .slider-container .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .org-mosaic-slider .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .org-mosaic-slider .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .grand-openings-mosaic-slider .mos-block-double .mos-block:not(.mos-block-double-height):not(.mos-block-quadro),
  .grand-openings-mosaic-slider .mos-block-double.mos-block:not(.mos-block-double-height):not(.mos-block-quadro) {
    width: 177px;
  }
}

.grandopening-mosaic-swiper .mos-block-double-height, .grandopening-mosaic-swiper .mos-block-quadro,
.slider-container .mos-block-double-height,
.slider-container .mos-block-quadro,
.org-mosaic-slider .mos-block-double-height,
.org-mosaic-slider .mos-block-quadro,
.grand-openings-mosaic-slider .mos-block-double-height,
.grand-openings-mosaic-slider .mos-block-quadro {
  width: 450px;
  background: none;
}

.grandopening-mosaic-swiper .mos-block-double-height .mos-block,
.grandopening-mosaic-swiper .mos-block-double-height .mos-block-quadro,
.slider-container .mos-block-double-height .mos-block,
.slider-container .mos-block-double-height .mos-block-quadro,
.org-mosaic-slider .mos-block-double-height .mos-block,
.org-mosaic-slider .mos-block-double-height .mos-block-quadro,
.grand-openings-mosaic-slider .mos-block-double-height .mos-block,
.grand-openings-mosaic-slider .mos-block-double-height .mos-block-quadro {
  height: 450px;
  border: none;
}

.grandopening-mosaic-swiper .mos-slide-double,
.slider-container .mos-slide-double,
.org-mosaic-slider .mos-slide-double,
.grand-openings-mosaic-slider .mos-slide-double {
  height: 450px;
}

.grandopening-mosaic-swiper .mos-block-quadro,
.slider-container .mos-block-quadro,
.org-mosaic-slider .mos-block-quadro,
.grand-openings-mosaic-slider .mos-block-quadro {
  height: 450px;
  width: 800px;
  z-index: 10;
}

.grandopening-mosaic-swiper .mos-block-placeholder,
.slider-container .mos-block-placeholder,
.org-mosaic-slider .mos-block-placeholder,
.grand-openings-mosaic-slider .mos-block-placeholder {
  pointer-events: none;
  background: none;
  border: none;
}

.grandopening-mosaic-swiper .org-mosaic-extender .owl-theme .owl-controls,
.slider-container .org-mosaic-extender .owl-theme .owl-controls,
.org-mosaic-slider .org-mosaic-extender .owl-theme .owl-controls,
.grand-openings-mosaic-slider .org-mosaic-extender .owl-theme .owl-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -65px;
}

.grandopening-mosaic-swiper .spaced-out-text,
.slider-container .spaced-out-text,
.org-mosaic-slider .spaced-out-text,
.grand-openings-mosaic-slider .spaced-out-text {
  min-height: 250px;
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.grandopening-mosaic-swiper .spaced-out-text.with-apple-dots-above,
.slider-container .spaced-out-text.with-apple-dots-above,
.org-mosaic-slider .spaced-out-text.with-apple-dots-above,
.grand-openings-mosaic-slider .spaced-out-text.with-apple-dots-above {
  margin-top: 13px;
}

.grandopening-mosaic-swiper .spaced-out-text .innards,
.slider-container .spaced-out-text .innards,
.org-mosaic-slider .spaced-out-text .innards,
.grand-openings-mosaic-slider .spaced-out-text .innards {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
}

.grandopening-mosaic-swiper .arrow-restrainer,
.grandopening-mosaic-swiper .holder.smaller,
.slider-container .arrow-restrainer,
.slider-container .holder.smaller,
.org-mosaic-slider .arrow-restrainer,
.org-mosaic-slider .holder.smaller,
.grand-openings-mosaic-slider .arrow-restrainer,
.grand-openings-mosaic-slider .holder.smaller {
  max-width: 860px;
}

.grandopening-mosaic-swiper .arrow-restrainer2,
.slider-container .arrow-restrainer2,
.org-mosaic-slider .arrow-restrainer2,
.grand-openings-mosaic-slider .arrow-restrainer2 {
  max-width: initial;
}

.grandopening-mosaic-swiper #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-right-arrow2.slide-arrow-holder,
.slider-container #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-right-arrow2.slide-arrow-holder,
.org-mosaic-slider #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-right-arrow2.slide-arrow-holder,
.grand-openings-mosaic-slider #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-right-arrow2.slide-arrow-holder {
  right: 11px;
}

.grandopening-mosaic-swiper #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-left-arrow2.slide-arrow-holder,
.slider-container #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-left-arrow2.slide-arrow-holder,
.org-mosaic-slider #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-left-arrow2.slide-arrow-holder,
.grand-openings-mosaic-slider #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-left-arrow2.slide-arrow-holder {
  left: 11px;
}

.grandopening-mosaic-swiper .arrow-bg,
.slider-container .arrow-bg,
.org-mosaic-slider .arrow-bg,
.grand-openings-mosaic-slider .arrow-bg {
  width: 50px;
}

@media (min-width: 1200px) {
  .grandopening-mosaic-swiper .arrow-restrainer2,
  .slider-container .arrow-restrainer2,
  .org-mosaic-slider .arrow-restrainer2,
  .grand-openings-mosaic-slider .arrow-restrainer2 {
    max-width: 1120px;
  }
  .grandopening-mosaic-swiper #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-right-arrow2.slide-arrow-holder,
  .slider-container #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-right-arrow2.slide-arrow-holder,
  .org-mosaic-slider #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-right-arrow2.slide-arrow-holder,
  .grand-openings-mosaic-slider #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-right-arrow2.slide-arrow-holder {
    right: -69px;
  }
  .grandopening-mosaic-swiper #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-left-arrow2.slide-arrow-holder,
  .slider-container #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-left-arrow2.slide-arrow-holder,
  .org-mosaic-slider #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-left-arrow2.slide-arrow-holder,
  .grand-openings-mosaic-slider #header_and_content_container .arrow-owl-extender .arrow-restrainer2 .slide-left-arrow2.slide-arrow-holder {
    left: -69px;
  }
}

.grandopening-mosaic-swiper .arrow-restrainer,
.slider-container .arrow-restrainer,
.org-mosaic-slider .arrow-restrainer,
.grand-openings-mosaic-slider .arrow-restrainer {
  margin: 0 auto;
  position: relative;
}

.grandopening-mosaic-swiper .arrow-owl-extender .arrow-restrainer .slide-right-arrow2.slide-arrow-holder,
.slider-container .arrow-owl-extender .arrow-restrainer .slide-right-arrow2.slide-arrow-holder,
.org-mosaic-slider .arrow-owl-extender .arrow-restrainer .slide-right-arrow2.slide-arrow-holder,
.grand-openings-mosaic-slider .arrow-owl-extender .arrow-restrainer .slide-right-arrow2.slide-arrow-holder {
  right: -69px;
  margin-top: -10px;
  top: 10px;
  height: 484px;
}

.grandopening-mosaic-swiper .arrow-owl-extender .arrow-restrainer .slide-left-arrow2.slide-arrow-holder,
.slider-container .arrow-owl-extender .arrow-restrainer .slide-left-arrow2.slide-arrow-holder,
.org-mosaic-slider .arrow-owl-extender .arrow-restrainer .slide-left-arrow2.slide-arrow-holder,
.grand-openings-mosaic-slider .arrow-owl-extender .arrow-restrainer .slide-left-arrow2.slide-arrow-holder {
  left: -69px;
  margin-top: -10px;
  top: 10px;
  height: 484px;
}

.grandopening-mosaic-swiper .arrow-owl-extender .arrow-restrainer .slide-left-arrow2.slide-arrow-holder .arrow-bg,
.grandopening-mosaic-swiper .arrow-owl-extender .arrow-restrainer .slide-right-arrow2.slide-arrow-holder .arrow-bg,
.slider-container .arrow-owl-extender .arrow-restrainer .slide-left-arrow2.slide-arrow-holder .arrow-bg,
.slider-container .arrow-owl-extender .arrow-restrainer .slide-right-arrow2.slide-arrow-holder .arrow-bg,
.org-mosaic-slider .arrow-owl-extender .arrow-restrainer .slide-left-arrow2.slide-arrow-holder .arrow-bg,
.org-mosaic-slider .arrow-owl-extender .arrow-restrainer .slide-right-arrow2.slide-arrow-holder .arrow-bg,
.grand-openings-mosaic-slider .arrow-owl-extender .arrow-restrainer .slide-left-arrow2.slide-arrow-holder .arrow-bg,
.grand-openings-mosaic-slider .arrow-owl-extender .arrow-restrainer .slide-right-arrow2.slide-arrow-holder .arrow-bg {
  top: 0;
  height: 484px;
}

.grandopening-mosaic-swiper #flag_slider,
.slider-container #flag_slider,
.org-mosaic-slider #flag_slider,
.grand-openings-mosaic-slider #flag_slider {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.grandopening-mosaic-swiper .restrained,
.slider-container .restrained,
.org-mosaic-slider .restrained,
.grand-openings-mosaic-slider .restrained {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .grandopening-mosaic-swiper #header .owl-carousel .owl-stage,
  .slider-container #header .owl-carousel .owl-stage,
  .org-mosaic-slider #header .owl-carousel .owl-stage,
  .grand-openings-mosaic-slider #header .owl-carousel .owl-stage {
    margin-left: 180px;
  }
}

@media (min-width: 992px) {
  .grandopening-mosaic-swiper #header .owl-carousel .owl-stage,
  .slider-container #header .owl-carousel .owl-stage,
  .org-mosaic-slider #header .owl-carousel .owl-stage,
  .grand-openings-mosaic-slider #header .owl-carousel .owl-stage {
    margin-left: 100px;
  }
}

@media (min-width: 1200px) {
  .grandopening-mosaic-swiper #header .owl-carousel .owl-stage,
  .slider-container #header .owl-carousel .owl-stage,
  .org-mosaic-slider #header .owl-carousel .owl-stage,
  .grand-openings-mosaic-slider #header .owl-carousel .owl-stage {
    margin-left: 29px;
  }
  .grandopening-mosaic-swiper .extender,
  .slider-container .extender,
  .org-mosaic-slider .extender,
  .grand-openings-mosaic-slider .extender {
    background: #eee;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1200px) {
  .grandopening-mosaic-swiper .extender,
  .slider-container .extender,
  .org-mosaic-slider .extender,
  .grand-openings-mosaic-slider .extender {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1040px) {
  .grandopening-mosaic-swiper .extender,
  .slider-container .extender,
  .org-mosaic-slider .extender,
  .grand-openings-mosaic-slider .extender {
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
  }
}

@media (max-width: 768px) {
  .grandopening-mosaic-swiper .owl-carousel .owl-stage,
  .slider-container .owl-carousel .owl-stage,
  .org-mosaic-slider .owl-carousel .owl-stage,
  .grand-openings-mosaic-slider .owl-carousel .owl-stage {
    margin-left: -25px;
  }
  .grandopening-mosaic-swiper .slide-arrow-holder,
  .slider-container .slide-arrow-holder,
  .org-mosaic-slider .slide-arrow-holder,
  .grand-openings-mosaic-slider .slide-arrow-holder {
    width: 50px;
    right: 0;
  }
  .grandopening-mosaic-swiper .extender.mb3.org-mosaic-extender,
  .grandopening-mosaic-swiper .extender.mb3.gak-extender,
  .slider-container .extender.mb3.org-mosaic-extender,
  .slider-container .extender.mb3.gak-extender,
  .org-mosaic-slider .extender.mb3.org-mosaic-extender,
  .org-mosaic-slider .extender.mb3.gak-extender,
  .grand-openings-mosaic-slider .extender.mb3.org-mosaic-extender,
  .grand-openings-mosaic-slider .extender.mb3.gak-extender {
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
  }
  .grandopening-mosaic-swiper .arrow-owl-extender .slide-arrow-holder .arrow-bg,
  .slider-container .arrow-owl-extender .slide-arrow-holder .arrow-bg,
  .org-mosaic-slider .arrow-owl-extender .slide-arrow-holder .arrow-bg,
  .grand-openings-mosaic-slider .arrow-owl-extender .slide-arrow-holder .arrow-bg {
    /*  width: 35px;*/
    top: 9px;
    height: 245px;
  }
  .grandopening-mosaic-swiper .arrow-owl-extender .slide-arrow-holder,
  .slider-container .arrow-owl-extender .slide-arrow-holder,
  .org-mosaic-slider .arrow-owl-extender .slide-arrow-holder,
  .grand-openings-mosaic-slider .arrow-owl-extender .slide-arrow-holder {
    top: 0;
    height: 245px;
  }
  .grandopening-mosaic-swiper .mos-block-double-height,
  .grandopening-mosaic-swiper .mos-block-double,
  .grandopening-mosaic-swiper .mos-block,
  .slider-container .mos-block-double-height,
  .slider-container .mos-block-double,
  .slider-container .mos-block,
  .org-mosaic-slider .mos-block-double-height,
  .org-mosaic-slider .mos-block-double,
  .org-mosaic-slider .mos-block,
  .grand-openings-mosaic-slider .mos-block-double-height,
  .grand-openings-mosaic-slider .mos-block-double,
  .grand-openings-mosaic-slider .mos-block {
    height: 110px;
  }
  .grandopening-mosaic-swiper .mos-slide,
  .slider-container .mos-slide,
  .org-mosaic-slider .mos-slide,
  .grand-openings-mosaic-slider .mos-slide {
    width: 110px;
    height: 336px;
  }
  .grandopening-mosaic-swiper .mos-slide-special,
  .slider-container .mos-slide-special,
  .org-mosaic-slider .mos-slide-special,
  .grand-openings-mosaic-slider .mos-slide-special {
    width: 40px;
    height: 230px;
  }
  .grandopening-mosaic-swiper .mos-block-double .mos-block, .grandopening-mosaic-swiper .mos-block-double.mos-block,
  .slider-container .mos-block-double .mos-block,
  .slider-container .mos-block-double.mos-block,
  .org-mosaic-slider .mos-block-double .mos-block,
  .org-mosaic-slider .mos-block-double.mos-block,
  .grand-openings-mosaic-slider .mos-block-double .mos-block,
  .grand-openings-mosaic-slider .mos-block-double.mos-block {
    width: 225px;
  }
  .grandopening-mosaic-swiper .mos-block-double-height .mos-block,
  .slider-container .mos-block-double-height .mos-block,
  .org-mosaic-slider .mos-block-double-height .mos-block,
  .grand-openings-mosaic-slider .mos-block-double-height .mos-block {
    height: 225px;
  }
  .grandopening-mosaic-swiper .mos-slide-double,
  .slider-container .mos-slide-double,
  .org-mosaic-slider .mos-slide-double,
  .grand-openings-mosaic-slider .mos-slide-double {
    height: 225px;
    width: 225px;
  }
  .grandopening-mosaic-swiper .mos-block-quadro,
  .slider-container .mos-block-quadro,
  .org-mosaic-slider .mos-block-quadro,
  .grand-openings-mosaic-slider .mos-block-quadro {
    height: 225px;
    width: 400px;
  }
}

@media (max-width: 480px) {
  .grandopening-mosaic-swiper .owl-carousel .owl-stage,
  .slider-container .owl-carousel .owl-stage,
  .org-mosaic-slider .owl-carousel .owl-stage,
  .grand-openings-mosaic-slider .owl-carousel .owl-stage {
    margin-left: 30px;
  }
  .grandopening-mosaic-swiper .slide-arrow-holder,
  .slider-container .slide-arrow-holder,
  .org-mosaic-slider .slide-arrow-holder,
  .grand-openings-mosaic-slider .slide-arrow-holder {
    width: 35px;
  }
  .grandopening-mosaic-swiper .arrow-owl-extender .slide-arrow-holder .arrow-bg,
  .slider-container .arrow-owl-extender .slide-arrow-holder .arrow-bg,
  .org-mosaic-slider .arrow-owl-extender .slide-arrow-holder .arrow-bg,
  .grand-openings-mosaic-slider .arrow-owl-extender .slide-arrow-holder .arrow-bg {
    width: 35px;
    top: 9px;
    height: 177px;
  }
  .grandopening-mosaic-swiper #org_mosaic_slider,
  .slider-container #org_mosaic_slider,
  .org-mosaic-slider #org_mosaic_slider,
  .grand-openings-mosaic-slider #org_mosaic_slider {
    max-height: 170px;
  }
  .grandopening-mosaic-swiper .mos-slide-special,
  .slider-container .mos-slide-special,
  .org-mosaic-slider .mos-slide-special,
  .grand-openings-mosaic-slider .mos-slide-special {
    width: 23px;
  }
  .grandopening-mosaic-swiper .arrow-owl-extender .slide-arrow-holder,
  .slider-container .arrow-owl-extender .slide-arrow-holder,
  .org-mosaic-slider .arrow-owl-extender .slide-arrow-holder,
  .grand-openings-mosaic-slider .arrow-owl-extender .slide-arrow-holder {
    top: 0;
    height: 195px;
  }
  .grandopening-mosaic-swiper .slide-right-arrow2 arrow,
  .slider-container .slide-right-arrow2 arrow,
  .org-mosaic-slider .slide-right-arrow2 arrow,
  .grand-openings-mosaic-slider .slide-right-arrow2 arrow {
    right: -8px;
  }
  .grandopening-mosaic-swiper .slide-left-arrow2 arrow,
  .slider-container .slide-left-arrow2 arrow,
  .org-mosaic-slider .slide-left-arrow2 arrow,
  .grand-openings-mosaic-slider .slide-left-arrow2 arrow {
    left: -8px;
  }
  .grandopening-mosaic-swiper .mos-block-double-height,
  .grandopening-mosaic-swiper .mos-block-double,
  .grandopening-mosaic-swiper .mos-block,
  .slider-container .mos-block-double-height,
  .slider-container .mos-block-double,
  .slider-container .mos-block,
  .org-mosaic-slider .mos-block-double-height,
  .org-mosaic-slider .mos-block-double,
  .org-mosaic-slider .mos-block,
  .grand-openings-mosaic-slider .mos-block-double-height,
  .grand-openings-mosaic-slider .mos-block-double,
  .grand-openings-mosaic-slider .mos-block {
    height: 77.5px;
  }
  .grandopening-mosaic-swiper .mos-slide,
  .slider-container .mos-slide,
  .org-mosaic-slider .mos-slide,
  .grand-openings-mosaic-slider .mos-slide {
    width: 82.5px;
    height: 230px;
  }
  .grandopening-mosaic-swiper .mos-block-double .mos-block, .grandopening-mosaic-swiper .mos-block-double.mos-block,
  .slider-container .mos-block-double .mos-block,
  .slider-container .mos-block-double.mos-block,
  .org-mosaic-slider .mos-block-double .mos-block,
  .org-mosaic-slider .mos-block-double.mos-block,
  .grand-openings-mosaic-slider .mos-block-double .mos-block,
  .grand-openings-mosaic-slider .mos-block-double.mos-block {
    width: 168.75px;
  }
  .grandopening-mosaic-swiper .mos-block-double-height .mos-block,
  .slider-container .mos-block-double-height .mos-block,
  .org-mosaic-slider .mos-block-double-height .mos-block,
  .grand-openings-mosaic-slider .mos-block-double-height .mos-block {
    height: 168.75px;
  }
  .grandopening-mosaic-swiper .gak-extender,
  .slider-container .gak-extender,
  .org-mosaic-slider .gak-extender,
  .grand-openings-mosaic-slider .gak-extender {
    margin-bottom: 2rem;
    padding-top: 2em;
  }
  .grandopening-mosaic-swiper .mos-slide-double,
  .slider-container .mos-slide-double,
  .org-mosaic-slider .mos-slide-double,
  .grand-openings-mosaic-slider .mos-slide-double {
    height: 168.75px;
    width: 168.75px;
  }
  .grandopening-mosaic-swiper .mos-block-quadro,
  .slider-container .mos-block-quadro,
  .org-mosaic-slider .mos-block-quadro,
  .grand-openings-mosaic-slider .mos-block-quadro {
    width: 300px;
  }
}

.grandopening-mosaic-swiper .org-double-listing,
.slider-container .org-double-listing,
.org-mosaic-slider .org-double-listing,
.grand-openings-mosaic-slider .org-double-listing {
  font-size: 15px;
}

.arrow-owl-extender {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  transform: translateX(calc(50% - 50vw));
}

.arrow-owl-extender .slide-arrow-holder {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 50px;
  /*background: rgba(255,255,255,.5);*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.arrow-owl-extender .slide-right-arrow2.slide-arrow-holder {
  right: 9px;
}

.arrow-owl-extender .slide-left-arrow2.slide-arrow-holder {
  left: 9px;
}

.arrow-owl-extender .slide-arrow-holder:hover.slide-arrow-holder:before {
  opacity: 1;
}

.arrow-owl-extender .slide-arrow-holder {
  outline: none;
}

.arrow-owl-extender .slide-right-arrow2.slide-arrow-holder:before {
  background-position: center right;
}

.gak-extender {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.fade-from-blur {
  animation-duration: 1s;
  animation-name: fadeFromBlur;
}

@keyframes fadeFromBlur {
  from {
    -webkit-filter: blur(10px);
    -ms-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    filter: blur(10px);
  }
  to {
    -webkit-filter: blur(0px);
    -ms-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

.deck {
  font-style: italic;
}

.deck p {
  font-size: 1.15em;
}

#advanced-organizations-slider.slider-container .mos-block {
  width: 548px;
  height: 308px;
  position: relative;
}

.path-about-biography-l-ron-hubbards-trusted-friend_html .medium-insert-images {
  margin-bottom: 2em;
}

.path-photos-david-miscavige-portraits-new figure,
.path-photos-david-miscavige-portraits figure {
  margin-bottom: 3em;
}

.prev-next .prev-next-tile {
  position: relative;
  width: 100%;
  display: block;
  margin-bottom: 1.5em;
}

.prev-next .prev-next-tile.active .active-underline {
  display: block;
}

.ap-button-style {
  display: flex;
  align-items: center;
  line-height: 1em;
  vertical-align: middle;
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.25em 1em;
  overflow: hidden;
}

.prev-next-tile .ap-button-style {
  color: #9c8f6d;
  padding: 0 0.25em 0 0;
  -webkit-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.prev-next-tile .ap-button-style:before {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  transition: all ease 0.8s;
  background: #31302B;
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.prev-next-tile .ap-button-style.active {
  background: rgba(156, 143, 109, 0.53);
  color: white;
}

.prev-next-tile .ap-button-style.active .ap-button-style p:after {
  content: ' ';
}

.prev-next-tile .ap-button-style:hover:not(.active) {
  color: #fff;
}

.prev-next-tile .ap-button-style:hover:not(.active):before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  background: #9c8f6d;
}

.prev-next-tile .ap-button-style p {
  position: relative;
  width: 100%;
}

.ap-button-style.active:before {
  color: white;
}

.ap-button-style img {
  position: relative;
}

.ap-button-style p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  line-height: 1.4em;
  font-size: 0.975rem;
  padding-left: 20px;
  padding-right: 40px;
}

@media (min-width: 768px) {
  .ap-button-style p {
    font-size: 1.175rem;
  }
}

.ap-button-style :after {
  top: 50%;
  transform: translateY(-50%);
  content: '❯';
  position: absolute;
  right: 1em;
}

@media (min-width: 992px) {
  .prev-next.offset-md-1 {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.active-underline {
  position: absolute;
  bottom: 0;
  left: 120px;
  right: 0;
  height: 5px;
  background: #9c8f6d;
  display: none;
}

.main-body h2.title,
.type-index-page main#body h2 {
  text-align: left;
  margin-bottom: 0;
  margin-top: 2em;
}

.orglisting-item {
  margin-bottom: 0.5em;
}

.rtc-symbol {
  width: 26%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.rtc-symbol figure {
  max-width: 360px;
}

button, input, optgroup, select, textarea {
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
}

.filter-buttons {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.5em;
  background: #d3b590;
}

.filter-buttons button {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  border: none;
  background: none;
  text-transform: uppercase;
  padding: 0 1em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: white;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.filter-buttons button.active {
  color: #9c8f6d;
  background-color: #d5c0a7;
  border-color: #9c8f6d;
}

.filter-buttons button:hover {
  background-color: #d5c0a7;
}

.filter-buttons button:focus,
.filter-buttons button:active {
  outline: none;
}

h3.more-photos {
  margin-top: 2em;
  margin-bottom: 1rem;
  text-align: center;
}

.gallery-heading__wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-heading__wrapper gallerycaption {
  padding: 6px 10px;
  font-size: 0.8rem;
  z-index: 2;
}

.left-side .gallery-heading__wrapper {
  margin-right: 10px;
}

.right-side .gallery-heading__wrapper {
  margin-left: 10px;
}

.gallery-heading__wrapper:hover:after {
  background: rgba(80, 80, 80, 0.25);
}

.gallery-heading__wrapper:hover gallerycaption {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.gallery-heading__wrapper:after {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.gallery-heading__photos-count {
  color: #d8c592;
  background: #9a9a9a;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(67, 67, 67, 0.77);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.1rem 0.3rem;
  font-size: 0.9rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 2;
}

.sign-form-wrapper {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100000;
}

.sign-form-wrapper .sign-form {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  position: relative;
  background: white;
  padding: 2rem 5rem;
}

.sign-form-wrapper form {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  width: 300px;
}

.sign-form-wrapper input {
  height: 45px;
  background: #f6f6f6;
  border: none;
  padding-left: 1rem;
}

.sign-form-wrapper input:hover, .sign-form-wrapper input:focus {
  outline: none;
}

.sign-form-wrapper button {
  -webkit-trasition: all 0.25s;
  -ms-trasition: all 0.25s;
  -moz-trasition: all 0.25s;
  -o-trasition: all 0.25s;
  trasition: all 0.25s;
  background: white;
  border: none;
  color: black;
  border-radius: 0;
  padding: 1.1rem 1rem;
  font-size: 1.2rem;
}

.sign-form-wrapper button:hover, .sign-form-wrapper button:focus {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  color: black;
  background: white;
  outline: none;
  cursor: pointer;
}

.sign-form-wrapper button:active {
  -webkit-transform: scaleX(0.9) scaleY(0.9);
  -ms-transform: scaleX(0.9) scaleY(0.9);
  -moz-transform: scaleX(0.9) scaleY(0.9);
  -o-transform: scaleX(0.9) scaleY(0.9);
  transform: scaleX(0.9) scaleY(0.9);
  background: #e7e7e7;
  color: black;
  border: none;
  outline: none;
}

.sign-form-wrapper .email-field {
  margin: 2rem 0;
}

.sign-form-wrapper .sign-up-title {
  letter-spacing: 3px;
  font-weight: bold;
  text-align: center;
}

.sign-form-wrapper .sign-up-divider {
  width: 70px;
  height: 1px;
  background: black;
  margin: 2rem auto;
}

.sign-form-wrapper .sign-up-close-button {
  position: absolute;
  cursor: pointer;
  top: 1rem;
  right: 1rem;
}

@media (max-width: 768px) {
  .sign-form-wrapper .sign-up-close-button {
    top: 0.6rem;
    right: 4rem;
  }
}

.sign-form-wrapper .sign-up-close-button img {
  max-width: 20px;
}

.adjacent {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.adjacent figure:not(:first-of-type) {
  margin-left: 1em;
}

.slider {
  margin-bottom: 2em !important;
  position: relative;
}

.slide-arrow-holder {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 2;
  cursor: pointer;
}

@media (max-width: 767px) {
  .slide-arrow-holder svg {
    width: 30px;
  }
}

.slide-arrow-holder.slide-left-arrow {
  left: 9px;
  outline: none;
}

@media (min-width: 992px) {
  .slide-arrow-holder.slide-left-arrow.outside {
    left: -152px;
  }
}

@media (min-width: 1200px) {
  .slide-arrow-holder.slide-left-arrow.outside {
    left: -50px;
  }
}

.slide-arrow-holder.slide-right-arrow {
  right: 9px;
  outline: none;
}

@media (min-width: 992px) {
  .slide-arrow-holder.slide-right-arrow.outside {
    right: -152px;
  }
}

@media (min-width: 1200px) {
  .slide-arrow-holder.slide-right-arrow.outside {
    right: -50px;
  }
}

.see-all-slide {
  color: #fff;
  background-color: #000;
  width: 240px;
  height: 240px;
  position: relative;
}

.path-accomplishments-bringing-scientology-to-the-world .see-all-slide {
  height: 280px;
}

span.see-all {
  text-transform: uppercase;
}

.see-all-slide a,
.see-all-slide img {
  position: absolute;
}

.see-all-slide a {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
}

.see-all-slide .see-all {
  pointer-events: none;
}

#fort-harrison-slider,
#flag-building-opening-slider {
  height: calc(240px + 2em);
  white-space: nowrap;
}

#freewinds-slider {
  white-space: nowrap;
}

@media (min-width: 992px) {
  #freewinds-slider {
    height: calc(380px + 2em);
  }
}

.path-accomplishments-social-betterment-campaigns-scientology-volunteer-ministers .masthead,
.path-accomplishments-social-betterment-campaigns-scientology-volunteer-ministers .masthead-background,
.path-accomplishments-social-betterment-campaigns-human-rights-initiative .masthead,
.path-accomplishments-social-betterment-campaigns-human-rights-initiative .masthead-background,
.path-accomplishments-social-betterment-campaigns-the-truth-about-drugs .masthead,
.path-accomplishments-social-betterment-campaigns-the-truth-about-drugs .masthead-background {
  height: 220px;
}

.path-about-biography-meeting-the-demand-for-scientology-materials .pagination-wrapper .pagination {
  margin-top: 0;
}

h2.section-title {
  border-bottom: 1px solid #b3b3b3;
  text-transform: uppercase;
  color: #9c8f6d;
  text-align: left;
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  font-size: 1.08rem;
  padding: 0 0.12em 0.4em;
}

.scientology-logo-key-fill {
  background-color: #9c8f6d;
}

.deck {
  color: #9c8f6d;
  font-family: "Domine", georgia, serif;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 1.5rem;
  border-top: 2px solid #9c8f6d;
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #9c8f6d;
  padding-bottom: 1rem;
}

.deck p:last-of-type {
  margin-bottom: 0;
}

.deck-author {
  color: #9c8f6d;
  font-family: "Domine", georgia, serif;
  font-size: 1.4rem;
  font-style: normal;
  padding-left: 12%;
  padding-right: 12%;
  text-align: center;
}

.prev-next-menu-dir {
  text-transform: uppercase;
  font-size: 0.8rem;
}

.type-index-page.path-news main#body h2.title.news-mainTitle {
  margin-top: 1em;
  text-align: center;
}

.up-overlay-low-masthead .event-date.text-left,
.up-overlay-low-masthead .news-mainTitle.text-left {
  text-align: left !important;
}

@media (max-width: 768px) {
  .news-mainTitle {
    font-size: 20px !important;
  }
}

.img-40 {
  width: 40%;
  float: left;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.img-40.right {
  float: right;
  margin-right: inherit;
  margin-left: 0.75rem;
}

.img-40 figure, .img-40 img {
  margin: 0;
}

.img-50 {
  width: 50%;
  float: left;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.img-50.right {
  float: right;
  margin-right: inherit;
  margin-left: 0.75rem;
}

.img-50 figure, .img-50 img {
  margin: 0;
}

.darken-effect {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0.85;
}

.feathreBlock figcaption {
  font-size: 16px;
  line-height: 20px;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.wrapper-16x9 {
  height: 0;
  padding-bottom: 56.25%;
}

ul ul.level-2 {
  padding-left: 1.2em;
  margin-top: 0.5em;
}

ul ul.level-2 li {
  margin-bottom: 0.5em;
}

p.location {
  font-weight: bold;
}

.in-groups-of.two {
  align-items: flex-start;
}

.flag-montage-grid {
  display: flex;
  justify-content: space-between;
}

.flag-montage-grid .flag-montage-item1 {
  width: calc(50% - 1rem/2) !important;
}

.flag-montage-grid .flag-montage-234 {
  width: calc(50% - 1rem/2) !important;
  display: flex;
  flex-direction: column;
}

.flag-montage-grid .flag-montage-34 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flag-montage-grid .flag-montage-item3 {
  flex: 1;
}

@media (min-width: 768px) {
  .flag-montage-grid .flag-montage-item3 {
    height: 240px !important;
  }
}

.flag-montage-grid .flag-montage-item4 {
  margin-left: 1rem;
  flex: 1.066666666666667;
}

@media (min-width: 768px) {
  .flag-montage-grid .flag-montage-item4 {
    height: 240px !important;
  }
}

.adjacent.medium-insert-images figure img,
.adjacent.mediumInsert figure img {
  margin-top: 0;
}

.path-about .masthead h2,
.path-about-biography .masthead h2 {
  font-size: 1.25rem;
  max-width: 500px;
}

.path-about.path-about-biography-creating-a-new-era-of-expansion_html .masthead h2, .path-about.path-about-biography-spearheading-global-humanitarian-initiatives_html .masthead h2,
.path-about-biography.path-about-biography-creating-a-new-era-of-expansion_html .masthead h2,
.path-about-biography.path-about-biography-spearheading-global-humanitarian-initiatives_html .masthead h2 {
  max-width: 600px;
}

.path-about.about .masthead h2 {
  max-width: 540px;
}

.path-about.path-about-biography-l-ron-hubbards-trusted-friend .masthead h2 {
  max-width: 400px;
}

@media (min-width: 1200px) {
  .full-container {
    margin-left: -210px;
    margin-right: -210px;
  }
  .full-container .path-about-biography-ensuring-the-purity-of-scientology figcaption,
  .full-container .path-accomplishments-scientology-spiritual-headquarters figcaption,
  .full-container .path-accomplishments-renaissance-for-scientology figcaption {
    margin-left: 210px !important;
    margin-right: 210px !important;
  }
}

@media (min-width: 1220px) {
  .full-container {
    margin-left: -217px;
    margin-right: -217px;
  }
  .full-container .path-about-biography-ensuring-the-purity-of-scientology figcaption,
  .full-container .path-accomplishments-scientology-spiritual-headquarters figcaption,
  .full-container .path-accomplishments-renaissance-for-scientology figcaption {
    margin-left: 217px !important;
    margin-right: 217px !important;
  }
}

@media (min-width: 992px) {
  .lead-container {
    margin: 0 -3rem;
  }
}

@media (min-width: 992px) {
  .medium-outside {
    margin-left: -101px;
    margin-right: -101px;
  }
  .medium-outside .path-about-biography-ensuring-the-purity-of-scientology figcaption,
  .medium-outside .path-accomplishments-scientology-spiritual-headquarters figcaption,
  .medium-outside .path-accomplishments-renaissance-for-scientology figcaption {
    margin-left: 101px !important;
    margin-right: 101px !important;
  }
}

.medium-insert-images.inline-image-wide {
  max-width: 978px;
}

@media (min-width: 992px) {
  .medium-insert-images.inline-image-wide {
    margin-left: -101px;
    margin-right: -101px;
  }
  .medium-insert-images.inline-image-wide .path-about-biography-ensuring-the-purity-of-scientology figcaption,
  .medium-insert-images.inline-image-wide .path-accomplishments-scientology-spiritual-headquarters figcaption,
  .medium-insert-images.inline-image-wide .path-accomplishments-renaissance-for-scientology figcaption {
    margin-left: 101px !important;
    margin-right: 101px !important;
  }
}

.path-photos-david-miscavige-portraits_html .slideheaderArea-arrow {
  display: none;
}

.w100 {
  width: 100% !important;
}

@media (min-width: 1200px) {
  .main-container {
    max-width: 806px;
  }
}

.path-photos-galleries .editable-body-holder slideimage img,
.path-photos-galleries #editable_body_holder slideimage img {
  max-height: 100%;
}

.left-align {
  text-align: left;
}

.navbar-toggler {
  padding: 0.05rem 0.25rem;
  background: #585858;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  background-image: url(/theme/images/menu-icon.svg);
  width: 1.8rem;
  height: 1.5rem;
}

.navbar-light .navbar-toggler {
  background-color: #d6d6d6;
  border-color: #d6d6d6;
}

@media (max-width: 767px) {
  .prev-next-menu-title {
    display: none;
  }
}

@media (max-width: 767px) {
  .bs-extender-xs {
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
  }
}

@media (max-width: 767px) {
  .banner-top-cob-title {
    height: 50px;
    padding-top: 8px;
    margin-top: -5px;
  }
}

.video-column-quote,
.video-quote {
  padding: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .video-column-quote .medium-quote-marker-two,
  .video-quote .medium-quote-marker-two {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .video-column-quote .medium-quote-marker-two,
  .video-quote .medium-quote-marker-two {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 767px) {
  body.type-video .editable-body-holder blockquote.medium-quote-marker-two {
    font-size: 1.2rem;
    margin-top: 1rem;
    line-height: 1.5rem;
  }
  body.type-video .editable-body-holder blockquote.medium-quote-marker-twolang(zh) {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}

.mobile-menu-container {
  width: 100%;
  height: 100%;
}

.rtc-logo {
  height: 44px;
}

@media (min-width: 768px) {
  .rtc-logo {
    width: 25px;
    height: 36px;
  }
}

.search-input {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  max-width: 500px;
  margin-bottom: 1rem;
}

.search-input input {
  padding-left: 1rem;
  height: 40px;
  font-size: 1.3rem;
}

.search-input input:focus {
  outline: none;
}

.search-input .btn {
  margin-left: 1rem;
  background: #505050;
  border-color: #505050;
}

.Lightitalic {
  font-style: italic;
}

.banner_logo img {
  margin-right: 8px;
  margin-top: -8px;
}

@media (min-width: 768px) {
  .banner_logo img {
    margin-right: 7px;
  }
}

.Lightitalic {
  font-style: italic;
}

@media (min-width: 1200px) {
  .gallery {
    padding-left: 15px;
  }
}

figure figcaption,
.editable-body-holder .medium-insert-images figure figcaption,
#editable_body_holder .medium-insert-images figure figcaption {
  font-size: 0.9rem;
  line-height: 1.7em;
  margin-top: 5px;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1200px) {
  ._inline-image-wide figure figcaption,
  .inline-image-wide_outer_border figure figcaption {
    padding-left: 3% !important;
    padding-right: 3% !important;
  }
}

hr.small {
  width: 33.333333%;
  max-width: 200px;
  border-top: 2px solid rgba(156, 143, 109, 0.7);
}

a.no-decoration:visited, a.no-decoration:link, a.no-decoration:active, a.no-decoration:hover, a.no-decoration:focus, a.no-decoration:link {
  color: inherit;
  text-decoration: inherit;
  font-weight: inherit;
}

.underlined {
  border-bottom: 1px solid black;
}

.prev-next-row {
  margin: 1.5rem 0 0 0;
}

blockquote.medium-quote-marker b,
blockquote.medium-quote-marker-two b {
  color: #000;
  display: block;
  font-family: "Mulish", "helvetica neue", helvetica, arial, sans-serif;
  font-size: 14px;
  font-style: initial;
  font-weight: lighter;
  line-height: 1.75rem;
  margin-top: 0.75em;
  /*padding-left: 1.5em;*/
  padding-left: 40%;
  padding-right: 5%;
  text-indent: -1.15em;
  text-transform: none;
}

@media (max-width: 767px) {
  blockquote.medium-quote-marker b,
  blockquote.medium-quote-marker-two b {
    padding-left: 15%;
  }
}

blockquote.medium-quote-marker b:before,
blockquote.medium-quote-marker-two b:before {
  content: '— ';
}

.pswp_stashed {
  pointer-events: none;
}

.pswp_stashed.opened {
  pointer-events: all;
}

p.lead-para:first-of-type {
  margin-top: 0.75rem;
}

p.lead-para + div.deck-author {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

div.deck-author + hr.small {
  margin-bottom: 1.75rem;
}

.tooltip.bs-tether-element-attached-bottom .tooltip-inner, .tooltip.bs-tether-element-attached-left .tooltip-inner, .tooltip.bs-tether-element-attached-right .tooltip-inner {
  background: rgba(77, 77, 77, 0.97);
  font-size: 0.7rem;
  line-height: 1.1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.tooltip.bs-tether-element-attached-bottom .tooltip-inner::before {
  border-top-color: rgba(77, 77, 77, 0.97);
  bottom: -4px;
  left: 50%;
  margin-left: -10px;
  content: "";
  border-width: 10px 10px 0;
}

.tooltip.bs-tether-element-attached-right .tooltip-inner::before {
  right: -4px;
  margin-top: -10px;
  border-width: 10px 0 10px 10px;
  border-left-color: rgba(77, 77, 77, 0.97);
}

.tooltip.bs-tether-element-attached-left .tooltip-inner::before {
  left: -4px;
  margin-top: -10px;
  border-width: 10px 10px 10px 0;
  border-right-color: rgba(77, 77, 77, 0.97);
}

.featureBlock .vjs-big-play-button {
  top: calc(50% - 60px);
  left: calc(50% - 20px);
}

.gallery-heading__featured {
  color: white;
  font-family: "Domine", georgia, serif;
  text-align: center;
  margin-bottom: 0.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.masthead-link {
  position: absolute !important;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0;
  z-index: 9;
}

@media (min-width: 1200px) {
  .masthead-link {
    left: -115px;
    right: -115px;
  }
}

figcaption.medium-news__caption {
  font-family: "Domine", georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.3;
}

.pswp__img--placeholder__hidden .pswp__img--placeholder {
  display: none !important;
}

.path-accomplishments-social-betterment-campaigns-scientology-volunteer-ministers_html .pagination {
  margin-top: 0.7rem;
}

.masthead-content p:last-of-type {
  margin-bottom: 0;
}

.tooltip-caption {
  margin-bottom: 0.3rem;
}

.tooltip-caption span {
  border-bottom: 1px solid white;
  padding-bottom: 0.3rem;
}

/* News Listing */
.main__news-listing-item {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  border-bottom: 2px solid #d2d2d2;
  padding: 1rem;
  display: block;
}

@media (min-width: 768px) {
  .main__news-listing-item {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
  }
}

.main__news-listing-item:hover {
  border-bottom-color: #357cc4;
  background: rgba(210, 210, 210, 0.3);
}

.main__news-listing-item:hover .main__news-listing-loc-date,
.main__news-listing-item:hover .main__news-listing-blurb,
.main__news-listing-item:hover .learn-more-link,
.main__news-listing-item:hover .main__news-listing-title {
  color: #000;
}

.main__news-listing-item:hover .main__news-listing-image img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.main__news-listing-item:hover .with-underline:before {
  width: 100%;
  left: 0;
}

.main__news-listing-location {
  text-transform: uppercase;
}

.main__news-listing-image {
  -webkit-flex: 0 0 220px;
  -ms-flex: 0 0 220px;
  -moz-flex: 0 0 220px;
  -o-flex: 0 0 220px;
  flex: 0 0 220px;
  overflow: hidden;
  min-width: 220px;
}

.main__news-listing-image img {
  -webkit-transition: transform 0.25s ease-out;
  -ms-transition: transform 0.25s ease-out;
  -moz-transition: transform 0.25s ease-out;
  -o-transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
}

@media (max-width: 991px) {
  .main__news-listing-image {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  .main__news-listing-text {
    padding-left: 1.4rem;
    width: 100%;
  }
}

.main__news-listing-title {
  -webkit-transition: color 0.25s ease-out;
  -ms-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
  color: #808080;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.prev-next-tile a h4.main__news-listing-title {
  font-size: 1.4rem;
  line-height: 1.25em;
  margin-bottom: 0.25em;
}

@media (max-width: 991px) {
  .prev-next-tile a h4.main__news-listing-title {
    font-size: 1.2rem;
  }
}

.main__news-listing-blurb {
  -webkit-transition: color 0.25s ease-out;
  -ms-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
  color: #494949;
}

.main__news-listing-loc-date {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-transition: color 0.25s ease-out;
  -ms-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
  color: #808080;
  font-size: 0.775rem;
  font-weight: 400;
}

.learn-more-link {
  -webkit-transition: color 0.25s ease-out;
  -ms-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
  color: #9b9b9b;
  font-size: 0.7rem;
  margin-top: 0.5rem;
  position: relative;
  display: inline-block;
  float: right;
}

.learn-more-link:after {
  -webkit-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  position: relative;
  display: inline-block;
  content: ' ';
  height: 8px;
  width: 8px;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.main__news-listing-image {
  position: relative;
}

.main__news-listing-image .fa-external-link-square {
  -webkit-transition: color .2s;
  -ms-transition: color .2s;
  -moz-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.3em;
  color: #fff;
}

/* End News Listing */
.footer-bottom__divider {
  border-bottom: 1px solid #666666;
  margin-bottom: 0;
}

.footer-item-title {
  font-size: 0.8rem;
  color: #777;
}

.footer-item-title strong {
  font-weight: normal;
}

.footer-item-title:hover {
  color: #111;
}

.footer .featureBlock {
  min-height: initial;
}

.footer .featureBlock {
  margin-top: 0;
}

.footer .featureBlock .vjs-big-play-button {
  top: calc(50% - 40px);
  left: calc(50% - 35px);
}

.video-subtitle_job {
  color: white;
  text-align: center;
  font-size: 1.1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.video-subtitle_location {
  color: white;
  text-align: center;
  font-size: 1.1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
}

p.with-dropcap::first-letter,
span.graph-dropcap {
  --baseline-multiplier: 0.22;
  --x-height-multiplier: 0.342;
  color: #abb3b7;
  font-family: medium-content-sans-serif-font,"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Arial,sans-serif;
  font-size: 48px;
  font-style: normal !important;
  font-weight: 500 !important;
  font-weight: 700;
  letter-spacing: -.05em;
  letter-spacing: 0;
  line-height: .83;
  margin-bottom: -.08em;
  margin-left: -5px;
  padding-top: 12px;
  padding-top: 6px;
}

.video-block-quote .videoListing-video-thumb + a {
  width: 30%;
  display: block;
}

.featureBlockPhotoGridU {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 1rem;
}

.featureBlockPhotoGridU img {
  width: 100%;
  max-width: none;
  opacity: 0.85;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.featureBlockPhotoGridU .feature-photo-image-wrapper {
  overflow: hidden;
}

.featureBlockPhotoGridU .feature-photo-image-wrapper:hover {
  cursor: pointer;
}

.featureBlockPhotoGridU .feature-photo-image-wrapper:hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.featureBlockPhotoGridU .item {
  overflow: hidden;
}

img {
  pointer-events: none;
}

.path-photos .pswp__share--download {
  display: none;
  pointer-events: none;
}

.path-news .masthead h2.subheading {
  max-width: 640px;
}

.banner-language-selector {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
}

.caption-meta {
  display: none;
}

.path-news.type-index-page .event-date,
.path-news.type-index-page .main__news-listing-date {
  text-transform: uppercase;
}

.main__news-listing-loc-date {
  display: block;
}

.main__news-listing-location,
.main__news-listing-date {
  display: inline;
}

.main__news-listing-date {
  white-space: nowrap;
}

.vjs-text-track-display > div {
  margin-bottom: 0 !important;
}

.vjs-text-track-display div > div {
  top: auto !important;
  bottom: 0 !important;
}

.path-videos blockquote.medium-quote-marker-two em {
  font-style: italic;
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 5px;
}

@media (min-width: 992px) {
  .video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
    bottom: 20px;
  }
}

.vjs-text-track-display div div div {
  border-radius: 8px;
  padding: 6px 16px;
  background-color: rgba(0, 0, 0, 0.8) !important;
  display: inline-block !important;
  font-size: 12px;
  line-height: 1.125;
}

@media (min-width: 575px) {
  .vjs-text-track-display div div div {
    font-size: 17px;
    line-height: 1.125;
  }
}

@media (min-width: 992px) {
  .vjs-text-track-display div div div {
    font-size: 22px;
    line-height: 1.2;
  }
}

@media (min-width: 1200px) {
  .vjs-text-track-display div div div {
    line-height: 1.2;
  }
}

video::-webkit-media-text-track-display {
  font-size: 12px;
  line-height: 1.125;
}

@media (min-width: 575px) {
  video::-webkit-media-text-track-display {
    font-size: 17px;
    line-height: 1.125;
  }
}

@media (min-width: 992px) {
  video::-webkit-media-text-track-display {
    font-size: 16px;
    line-height: 1.2;
  }
}

@media (min-width: 1200px) {
  video::-webkit-media-text-track-display {
    line-height: 1.2;
  }
}

video::-webkit-media-text-track-container {
  -webkit-transform: translateY(5px) !important;
  transform: translateY(5px) !important;
}

@media (min-width: 1200px) {
  video::-webkit-media-text-track-container {
    -webkit-transform: translateY(20px) !important;
    transform: translateY(20px) !important;
  }
}

.video-js.vjs-ended .vjs-poster {
  display: block;
}

.container__copyright {
  -webkit-display: flex !important;
  -ms-display: flex !important;
  -moz-display: flex !important;
  -o-display: flex !important;
  display: flex !important;
  -webkit-justify-content: flex-end !important;
  -ms-justify-content: flex-end !important;
  -moz-justify-content: flex-end !important;
  -o-justify-content: flex-end !important;
  justify-content: flex-end !important;
  height: auto !important;
}

@media (min-width: 992px) {
  .container__copyright {
    padding-right: 24px;
  }
}

.container__copyright a {
  color: white !important;
  font-size: 10px;
  text-transform: none !important;
}

@media (max-width: 991px) {
  .owl-item > .slide,
  .owl-item > .slide > figure img,
  .owl-item > .slide > figure {
    height: 100%;
  }
  .owl-item > .slide > figure img {
    max-width: 266px;
    max-height: 150px;
    object-fit: contain;
    width: auto;
    height: auto;
  }
  .owl-carousel .owl-item {
    max-width: 100vw;
  }
}

.bsclearfix {
  clear: both;
}

.masthead-background--home {
  z-index: 2 !important;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-width: 1200px) {
  .masthead-background--home {
    background-image: url("/FURL/imagecache/cropfit@w=2880@cr=0,624,2901,966@qa=85/data/www.davidmiscavige.org/files/about/aosh-anzo-david-miscavige-am2q9991-t.jpg") !important;
  }
}

.modal-full-viewport_press-release {
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  background: black;
  z-index: 1000000;
  padding: 70px 0;
}

.modal-full-viewport_press-release.visible {
  display: block;
}

.modal-full-viewport_press-release .modal-close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 40px;
  color: white;
  opacity: 1;
  cursor: pointer;
}

.modal-full-viewport_press-release .modal-close:focus {
  outline: none;
}

.modal-full-viewport_press-release .vjs-ended.vjs-has-started .vjs-poster {
  display: block;
}

.modal-video-wrapper {
  max-width: 1280px;
  width: 100%;
  width: 100%;
  height: 100%;
  max-height: calc(100vw / 16 * 9);
}

@media (min-width: 1280px) {
  .modal-video-wrapper {
    max-height: 720px;
  }
}

@media (max-height: 760px) {
  .modal-video-wrapper {
    max-height: calc(100vh - 40px);
  }
}

.modal-video-wrapper .video-js {
  height: 100%;
  padding-bottom: 0;
}

.modal-video-wrapper video {
  object-fit: contain !important;
}

.modal-video-wrapper .vjs-control-bar {
  max-width: calc( 100vh / 9 * 16);
  margin: 0 auto;
}

@media (max-height: 760px) {
  .modal-video-wrapper .vjs-control-bar {
    max-height: calc( (100vh - 40px) / 9 * 16);
  }
}

.modal-full-viewport__pressrelease-year-in-review-content .modal-video-wrapper {
  position: relative;
}

@media (max-width: 1199px) {
  .modal-full-viewport__pressrelease-year-in-review-content .modal-video-wrapper {
    height: auto;
  }
  .modal-full-viewport__pressrelease-year-in-review-content .modal-video-wrapper .video-js {
    height: auto;
    padding-bottom: 56.25%;
  }
  .modal-full-viewport__pressrelease-year-in-review-content .modal-video-wrapper video {
    max-height: 100vh;
  }
}

.modal-full-viewport__pressrelease-year-in-review-content {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  height: 100%;
  max-height: 766px;
}

@media (max-width: 1199px) {
  .modal-full-viewport__pressrelease-year-in-review-content {
    height: auto !important;
    padding-top: 50px;
  }
}

.download-bubble {
  left: 50% !important;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 52px;
  top: auto !important;
  right: auto;
  left: 0;
  background: rgba(66, 55, 56, 0.9);
  padding: 20px 20px 10px;
  border: 1px solid #423738;
  line-height: 12px;
  color: #fff;
  line-height: 1.2;
  text-align: left;
  cursor: default;
  position: absolute;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 100%;
  z-index: 10000;
}

@media (min-width: 410px) {
  .download-bubble {
    min-width: 400px;
  }
}

.download-bubble a {
  color: white !important;
  text-decoration: underline;
}

#shell .download-bubble u {
  border-bottom: 1px solid #fff;
  font-size: 14px;
  line-height: 1.4;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.download-bubble {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-transform: translateY(10px) translateX(-50%);
  -ms-transform: translateY(10px) translateX(-50%);
  -moz-transform: translateY(10px) translateX(-50%);
  -o-transform: translateY(10px) translateX(-50%);
  transform: translateY(10px) translateX(-50%);
  visibility: hidden;
  opacity: 0;
}

.download-image-link__activated .download-bubble {
  -webkit-transform: translateY(0px) translateX(-50%);
  -ms-transform: translateY(0px) translateX(-50%);
  -moz-transform: translateY(0px) translateX(-50%);
  -o-transform: translateY(0px) translateX(-50%);
  transform: translateY(0px) translateX(-50%);
  opacity: 1;
  visibility: visible;
}

.download-bubble .copyright {
  display: block;
  font-size: 11px;
  font-style: normal;
}

.gallery-photo-label {
  padding: 4px 10px;
  font-size: 16px;
  margin-left: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  color: rgba(67, 67, 67, 0.77);
  background: rgba(67, 67, 67, 0.9);
  color: #d8c592;
}

/*
 #######                         #     #                                            
 #       #    # #      #         #     # # ###### #    # #####   ####  #####  ##### 
 #       #    # #      #         #     # # #      #    # #    # #    # #    #   #   
 #####   #    # #      #         #     # # #####  #    # #    # #    # #    #   #   
 #       #    # #      #          #   #  # #      # ## # #####  #    # #####    #   
 #       #    # #      #           # #   # #      ##  ## #      #    # #   #    #   
 #        ####  ###### ######       #    # ###### #    # #       ####  #    #   #   
                                                                                    
*/
.modal-full-viewport {
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  background: black;
  z-index: 1000000;
  padding: 70px 0;
}

.modal-full-viewport.visible {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
}

.modal-full-viewport .modal-close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  position: absolute;
  top: 0px;
  right: 18px;
  font-size: 40px;
  color: white;
  opacity: 1;
  cursor: pointer;
}

.modal-full-viewport .modal-close:focus {
  outline: none;
}

.modal-full-viewport .vjs-ended.vjs-has-started .vjs-poster {
  display: block;
}

.modal-full-viewport_press-release {
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  background: black;
  z-index: 1000000;
  padding: 70px 0;
}

.modal-full-viewport_press-release.visible {
  display: block;
}

.modal-full-viewport_press-release .modal-close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 40px;
  color: white;
  opacity: 1;
  cursor: pointer;
}

.modal-full-viewport_press-release .modal-close:focus {
  outline: none;
}

.modal-full-viewport_press-release .vjs-ended.vjs-has-started .vjs-poster {
  display: block;
}

.modal-video-wrapper {
  max-width: 1280px;
  width: 100%;
  width: 100%;
  height: 100%;
  max-height: calc(100vw / 16 * 9);
}

@media (min-width: 1280px) {
  .modal-video-wrapper {
    max-height: 720px;
  }
}

@media (max-height: 760px) {
  .modal-video-wrapper {
    max-height: calc(100vh - 40px);
  }
}

.modal-video-wrapper .video-js {
  height: 100%;
  padding-bottom: 0;
  width: 100%;
}

.modal-video-wrapper video {
  object-fit: contain !important;
}

.modal-video-wrapper .vjs-control-bar {
  max-width: calc( 100vh / 9 * 16);
  margin: 0 auto;
}

@media (max-height: 760px) {
  .modal-video-wrapper .vjs-control-bar {
    max-height: calc( (100vh - 40px) / 9 * 16);
  }
}

.modal-full-viewport__pressrelease-year-in-review-content .modal-video-wrapper {
  position: relative;
}

@media (max-width: 1199px) {
  .modal-full-viewport__pressrelease-year-in-review-content .modal-video-wrapper {
    height: auto;
  }
  .modal-full-viewport__pressrelease-year-in-review-content .modal-video-wrapper .video-js {
    height: auto;
    padding-bottom: 56.25%;
  }
  .modal-full-viewport__pressrelease-year-in-review-content .modal-video-wrapper video {
    max-height: 100vh;
  }
}

.modal-full-viewport__pressrelease-year-in-review-content {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  height: 100%;
  max-height: 766px;
}

@media (max-width: 1199px) {
  .modal-full-viewport__pressrelease-year-in-review-content {
    height: auto !important;
    padding-top: 50px;
  }
}

.year-review-2022--back {
  cursor: pointer;
  max-width: 1300px;
  width: 100%;
  margin-bottom: 5px;
  color: #fff;
  font-size: 20px;
  padding: 10px 10px 0px;
  text-align: left;
}

@media (max-height: 425px) {
  .year-review-2022--back {
    display: none;
  }
}

.year-review-2022--back .icon-arrow-right {
  color: #fff;
  -webkit-transform: rotate(180deg) translateX(2px);
  -ms-transform: rotate(180deg) translateX(2px);
  -moz-transform: rotate(180deg) translateX(2px);
  -o-transform: rotate(180deg) translateX(2px);
  transform: rotate(180deg) translateX(2px);
  display: inline-block;
  float: none;
  padding: 0;
}

.year-review-2022--back .year-review-2021--back__underlined {
  -webkit-transition: 0.25s all ease-out;
  -ms-transition: 0.25s all ease-out;
  -moz-transition: 0.25s all ease-out;
  -o-transition: 0.25s all ease-out;
  transition: 0.25s all ease-out;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}

@media (min-width: 992px) {
  .year-review-2022--back .year-review-2021--back__underlined {
    padding: 0;
  }
}

.year-review-2022--back:hover .year-review-2021--back__underlined {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* HTML: <div class="loader"></div> */
.page-loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #d8c592;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #f9f8f6;
  clip-path: inset(0 0 0 100%);
  pointer-events: none;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: clip-path;
}

@keyframes wipe-in-left {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes wipe-out-left {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}

.page-transition-overlay__active {
  animation: 0.6s cubic-bezier(0.47, 0, 0.75, 0.72) wipe-in-left both;
  clip-path: inset(0 0 0 0);
}

.page-transition-overlay__out {
  animation: 0.6s cubic-bezier(0.39, 0.57, 0.56, 1) wipe-out-left both;
}

.image-abs-wrapper {
  position: relative;
}

.image-abs-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.masthead-arrows {
  position: relative;
  z-index: 100;
  pointer-events: none;
}

.masthead-arrows a {
  pointer-events: all;
}
