/*
 * a small mixin for easy use of rem with px as fallback
 * usage: @include calc-rem(font-size, 14px)
 * usage: @include calc-rem(marign, 0 12px 2 1.2)
 * usage: @include calc-rem(padding, 1.5 24px)
 *
 * thanks to Eric Meyer for https://github.com/ericam/susy
 * and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/
 */
/*! minireset.css v0.0.2 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal; }

ul {
  list-style: none; }

button,
input,
select,
textarea {
  margin: 0; }

html {
  box-sizing: border-box; }

* {
  box-sizing: inherit; }

*:before, *:after {
  box-sizing: inherit; }

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
  border: 0 none; }

iframe {
  border: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0;
  text-align: left; }

html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

a {
  color: #0a4d95;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s, opacity 0.25s; }
  a:hover, a:focus, a:active {
    text-decoration: none;
    color: #0f72dd; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

input[type="text"], input[type="password"], input[type="search"], input[type="tel"], input[type="email"] {
  margin: 0;
  padding: 0;
  padding-left: 26.6666666667px;
  padding-right: 26.6666666667px;
  border: 1px solid #d2d2d2;
  background-color: #ffffff;
  color: #2b2a2a;
  height: 40px;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  transition: background-color 0.25s;
  -moz-appearance: none;
  -webkit-appearance: none; }
  input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder {
    color: #2b2a2a; }
  input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="search"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="email"]:-moz-placeholder {
    color: #2b2a2a; }
  input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="email"]::-moz-placeholder {
    color: #2b2a2a; }
  input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder {
    color: #2b2a2a; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="email"]:focus {
    border-color: #e8e8e8; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="email"]:focus {
    background-color: #ffffff;
    outline: 0;
    box-shadow: none;
    -webkit-focus-ring-color: none; }

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  display: none; }

input[type="submit"], input[type="button"] {
  border-radius: 0;
  margin: 0;
  width: auto;
  height: auto;
  background-color: #0a4d95;
  border: 0 none;
  color: #ffffff;
  font-weight: lighter;
  padding: 10px 30px 8px;
  text-transform: uppercase;
  transition: background-color 0.25s;
  cursor: pointer; }
  input[type="submit"]:hover, input[type="button"]:hover {
    background-color: #073465;
    color: #ffffff; }

textarea {
  margin: 0;
  padding: 0;
  padding-left: 26.6666666667px;
  padding-right: 26.6666666667px;
  border: 1px solid #d2d2d2;
  background-color: #ffffff;
  color: #2b2a2a;
  height: 40px;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  height: auto;
  padding: 7px;
  resize: none; }
  textarea::-webkit-input-placeholder {
    color: #2b2a2a; }
  textarea:-moz-placeholder {
    color: #2b2a2a; }
  textarea::-moz-placeholder {
    color: #2b2a2a; }
  textarea:-ms-input-placeholder {
    color: #2b2a2a; }
  textarea:focus {
    border-color: #e8e8e8; }

.selector {
  margin: 0;
  padding: 0;
  padding-left: 26.6666666667px;
  padding-right: 26.6666666667px;
  border: 1px solid #d2d2d2;
  background-color: #ffffff;
  color: #2b2a2a;
  height: 40px;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem; }
  .selector::-webkit-input-placeholder {
    color: #2b2a2a; }
  .selector:-moz-placeholder {
    color: #2b2a2a; }
  .selector::-moz-placeholder {
    color: #2b2a2a; }
  .selector:-ms-input-placeholder {
    color: #2b2a2a; }
  .selector:focus {
    border-color: #e8e8e8; }

.select {
  position: relative;
  overflow: hidden;
  padding: 0 40px 0 0;
  margin: 0;
  width: auto;
  border-radius: 5px;
  border: 1px solid #d2d2d2;
  background-color: #ffffff;
  color: #2b2a2a;
  font-size: 14px;
  font-size: 0.875rem; }
  .select select {
    font-size: 14px;
    font-size: 0.875rem;
    width: calc(100% + 75px);
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    padding: 11px 8px 10px !important;
    margin: 0;
    height: auto;
    color: inherit; }

.hide-block {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute; }

.hide-text, .hidden {
  font: 0/0 a;
  text-shadow: none;
  color: transparent; }

.typography {
  line-height: 1.7;
  color: #2b2a2a;
  font-size: 20px;
  font-size: 1.25em; }
  .typography h1:not(.hidden) {
    line-height: 1.5;
    overflow: hidden;
    font-weight: bold;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-size: 2em;
    padding: 15px 0; }
  .typography h2:not(.hidden) {
    line-height: 1.4375;
    overflow: hidden;
    font-weight: bold;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-size: 31px;
    font-size: 1.9375em;
    padding: 15px 0; }
  .typography h3:not(.hidden) {
    line-height: 1.375;
    overflow: hidden;
    font-weight: bold;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-size: 1.875em;
    padding: 15px 0; }
  .typography h4:not(.hidden) {
    line-height: 1.3125;
    overflow: hidden;
    font-weight: bold;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-size: 29px;
    font-size: 1.8125em;
    padding: 15px 0; }
  .typography h5:not(.hidden) {
    line-height: 1.25;
    overflow: hidden;
    font-weight: bold;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-size: 1.75em;
    padding: 15px 0; }
  .typography h6:not(.hidden) {
    line-height: 1.1875;
    overflow: hidden;
    font-weight: bold;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-size: 1.6875em;
    padding: 15px 0; }
  .typography p {
    margin: 0;
    padding: 0.625em 0 0.3125em 0; }
    .typography p a {
      color: #0a4d95;
      text-decoration: underline;
      word-break: break-all; }
      .typography p a:hover {
        text-decoration: none; }
  .typography blockquote, .typography quote, .typography q {
    margin: 1.25em 0;
    color: #363737;
    font-weight: lighter;
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 1.65; }
    .typography blockquote:before, .typography blockquote:after, .typography quote:before, .typography quote:after, .typography q:before, .typography q:after {
      color: #000000;
      font-size: 35px;
      font-size: 2.1875rem;
      display: inline-block;
      position: relative;
      top: 0.25em;
      height: 40px;
      margin-top: -40em; }
    .typography blockquote:before, .typography quote:before, .typography q:before {
      left: -5px; }
    .assets-alt .typography blockquote, .typography quote, .typography q {
      font-style: italic; }
    .typography blockquote:before, .typography quote:before, .typography q:before {
      content: '\201C'; }
    .typography blockquote:after, .typography quote:after, .typography q:after {
      content: '\201D'; }
    .typography blockquote p, .typography quote p, .typography q p {
      padding: 0; }
  .typography strong, .typography b {
    font-weight: bold; }
  .typography em, .typography i {
    font-style: italic; }
  .typography ul {
    list-style-type: disc; }
  .typography ul, .typography ol {
    padding: 0 0 1.25em 2.5em;
    margin: -1.25em 0 0 0; }
    .typography ul > li, .typography ol > li {
      margin-top: 0.625em;
      margin-bottom: 0.625em; }
  .typography img {
    max-width: 100%;
    height: auto; }
  .typography img[align="right"], .typography .alignright {
    float: right;
    margin: 0.1875em 0 1.25em 1.25em; }
  .typography img[align="left"], .typography .alignleft {
    float: left;
    margin: 0.1875em 1.25em 1.25em 0; }
  .typography img[align="center"], .typography .aligncenter {
    display: block;
    margin: 2.5em auto; }
  .typography hr {
    border: 0px none;
    border-top: 1px solid #d2d2d2; }
  .typography table {
    border-collapse: collapse;
    margin-bottom: 1.25em; }
    .typography table caption {
      padding: 1.25em 0 1.25em; }
    .typography table th {
      padding: 0.625em 1.25em;
      background-color: #f9f9f9;
      border: 1px solid #d2d2d2; }
    .typography table td {
      padding: 0.625em 1.25em;
      background-color: #f9f9f9;
      border: 1px solid #d2d2d2; }
  .typography .container-video-inline {
    height: 0;
    position: relative;
    padding-bottom: 56.25%; }
    .typography .container-video-inline iframe, .typography .container-video-inline embed {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      display: block; }

/*! Hint.css - v2.3.0 - 2016-05-21
* http://kushagragour.in/lab/hint/
* Copyright (c) 2016 Kushagra Gour; Licensed  */
/*-------------------------------------*	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*="hint--"] {
  position: relative;
  display: inline-block;
  /**
	 * tooltip arrow
	 */
  /**
	 * tooltip body
	 */ }

[class*="hint--"]:before, [class*="hint--"]:after {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  transition-delay: 0ms; }

[class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
  visibility: visible;
  opacity: 1; }

[class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  transition-delay: 100ms; }

[class*="hint--"]:before {
  content: '';
  position: absolute;
  background: transparent;
  border: 6px solid transparent;
  z-index: 1000001; }

[class*="hint--"]:after {
  background: #0a4d95;
  color: #ffffff;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap; }

[class*="hint--"][data-hint]:after {
  content: attr(data-hint); }

[class*="hint--"][data-hint]:after {
  content: attr(data-hint); }

[data-hint='']:before, [data-hint='']:after,
[data-hint='']:before,
[data-hint='']:after {
  display: none !important; }

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top-left:before {
  border-top-color: #0a4d95; }

.hint--top-right:before {
  border-top-color: #0a4d95; }

.hint--top:before {
  border-top-color: #0a4d95; }

.hint--bottom-left:before {
  border-bottom-color: #0a4d95; }

.hint--bottom-right:before {
  border-bottom-color: #0a4d95; }

.hint--bottom:before {
  border-bottom-color: #0a4d95; }

.hint--left:before {
  border-left-color: #0a4d95; }

.hint--right:before {
  border-right-color: #0a4d95; }

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -11px; }

.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%; }

.hint--top:before {
  left: calc(50% - 6px); }

.hint--top:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

.hint--top:hover:before, .hint--top:focus:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top:hover:after, .hint--top:focus:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -11px; }

.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%; }

.hint--bottom:before {
  left: calc(50% - 6px); }

.hint--bottom:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

.hint--bottom:hover:before, .hint--bottom:focus:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom:hover:after, .hint--bottom:focus:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -11px;
  margin-bottom: -6px; }

.hint--right:after {
  margin-bottom: -14px; }

.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%; }

.hint--right:hover:before, .hint--right:focus:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

.hint--right:hover:after, .hint--right:focus:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -11px;
  margin-bottom: -6px; }

.hint--left:after {
  margin-bottom: -14px; }

.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%; }

.hint--left:hover:before, .hint--left:focus:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--left:hover:after, .hint--left:focus:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

/**
 * top-left tooltip
 */
.hint--top-left:before {
  margin-bottom: -11px; }

.hint--top-left:before, .hint--top-left:after {
  bottom: 100%;
  left: 50%; }

.hint--top-left:before {
  left: calc(50% - 6px); }

.hint--top-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%); }

.hint--top-left:after {
  margin-left: 12px; }

.hint--top-left:hover:before, .hint--top-left:focus:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top-left:hover:after, .hint--top-left:focus:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

/**
 * top-right tooltip
 */
.hint--top-right:before {
  margin-bottom: -11px; }

.hint--top-right:before, .hint--top-right:after {
  bottom: 100%;
  left: 50%; }

.hint--top-right:before {
  left: calc(50% - 6px); }

.hint--top-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

.hint--top-right:after {
  margin-left: -12px; }

.hint--top-right:hover:before, .hint--top-right:focus:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top-right:hover:after, .hint--top-right:focus:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

/**
 * bottom-left tooltip
 */
.hint--bottom-left:before {
  margin-top: -11px; }

.hint--bottom-left:before, .hint--bottom-left:after {
  top: 100%;
  left: 50%; }

.hint--bottom-left:before {
  left: calc(50% - 6px); }

.hint--bottom-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%); }

.hint--bottom-left:after {
  margin-left: 12px; }

.hint--bottom-left:hover:before, .hint--bottom-left:focus:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom-left:hover:after, .hint--bottom-left:focus:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

/**
 * bottom-right tooltip
 */
.hint--bottom-right:before {
  margin-top: -11px; }

.hint--bottom-right:before, .hint--bottom-right:after {
  top: 100%;
  left: 50%; }

.hint--bottom-right:before {
  left: calc(50% - 6px); }

.hint--bottom-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

.hint--bottom-right:after {
  margin-left: -12px; }

.hint--bottom-right:hover:before, .hint--bottom-right:focus:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom-right:hover:after, .hint--bottom-right:focus:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after {
  white-space: normal;
  line-height: 1.4em; }

.hint--small:after {
  width: 80px; }

.hint--medium:after {
  width: 150px; }

.hint--large:after {
  width: 300px; }

/**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
[class*="hint--"] {
  /**
	 * tooltip body
	 */ }

[class*="hint--"]:after {
  text-shadow: 0 -1px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); }

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0px #592726; }

.hint--error.hint--top-left:before {
  border-top-color: #b34e4d; }

.hint--error.hint--top-right:before {
  border-top-color: #b34e4d; }

.hint--error.hint--top:before {
  border-top-color: #b34e4d; }

.hint--error.hint--bottom-left:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--bottom-right:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--left:before {
  border-left-color: #b34e4d; }

.hint--error.hint--right:before {
  border-right-color: #b34e4d; }

/**
 * Warning
 */
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0px #6c5328; }

.hint--warning.hint--top-left:before {
  border-top-color: #c09854; }

.hint--warning.hint--top-right:before {
  border-top-color: #c09854; }

.hint--warning.hint--top:before {
  border-top-color: #c09854; }

.hint--warning.hint--bottom-left:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--bottom-right:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--bottom:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--left:before {
  border-left-color: #c09854; }

.hint--warning.hint--right:before {
  border-right-color: #c09854; }

/**
 * Info
 */
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0px #1a3c4d; }

.hint--info.hint--top-left:before {
  border-top-color: #3986ac; }

.hint--info.hint--top-right:before {
  border-top-color: #3986ac; }

.hint--info.hint--top:before {
  border-top-color: #3986ac; }

.hint--info.hint--bottom-left:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--bottom-right:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--bottom:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--left:before {
  border-left-color: #3986ac; }

.hint--info.hint--right:before {
  border-right-color: #3986ac; }

/**
 * Success
 */
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0px #1a321a; }

.hint--success.hint--top-left:before {
  border-top-color: #458746; }

.hint--success.hint--top-right:before {
  border-top-color: #458746; }

.hint--success.hint--top:before {
  border-top-color: #458746; }

.hint--success.hint--bottom-left:before {
  border-bottom-color: #458746; }

.hint--success.hint--bottom-right:before {
  border-bottom-color: #458746; }

.hint--success.hint--bottom:before {
  border-bottom-color: #458746; }

.hint--success.hint--left:before {
  border-left-color: #458746; }

.hint--success.hint--right:before {
  border-right-color: #458746; }

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible; }

.hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

.hint--always.hint--top-left:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top-left:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

.hint--always.hint--top-right:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top-right:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

.hint--always.hint--bottom-left:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom-left:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

.hint--always.hint--bottom-right:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom-right:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--always.hint--left:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

.hint--always.hint--right:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:after {
  border-radius: 4px; }

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
  -webkit-transition-duration: 0ms;
  -moz-transition-duration: 0ms;
  transition-duration: 0ms; }

.hint--bounce:before, .hint--bounce:after {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); }

.icon:before {
  font-family: 'iconfont';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: attr(data-icon); }

.js-ligaturesOn .icon:before, .js-ligaturesOn .icon:after {
  display: none !important; }

.iconGenerated {
  font-family: 'iconfont';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/**
* Owl Carousel v2.1.0
* Copyright 2013-2016 David Deutsch
* Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
*/
/*
*  Owl Carousel - Core
*/
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  display: none; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
*  Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
* 	Owl Carousel - Auto Height Plugin
*/
.owl-height {
  transition: height 500ms ease-in-out; }

/*
* 	Owl Carousel - Lazy Load Plugin
*/
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/*
* 	Owl Carousel - Video Plugin
*/
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.owl-dots {
  text-align: center;
  font-size: 0;
  margin-top: 25px; }
  .owl-dots .owl-dot {
    display: inline-block !important;
    margin: 5px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 100px;
    background-color: #e8e8e8; }
    .owl-dots .owl-dot.active {
      background-color: #0a4d95; }
    .owl-dots .owl-dot:only-child {
      display: none !important; }

#outdated {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  text-align: center;
  text-transform: uppercase;
  z-index: 1500;
  background-color: #f25648;
  color: #ffffff; }
  #outdated h6 {
    font-size: 25px;
    line-height: 25px;
    margin: 30px 0 10px; }
  #outdated p {
    font-size: 12px;
    line-height: 12px;
    margin: 0; }
  #outdated #btnUpdateBrowser {
    display: block;
    position: relative;
    padding: 10px 20px;
    margin: 30px auto 0;
    width: 230px;
    /*need for IE*/
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    cursor: pointer; }
    #outdated #btnUpdateBrowser:hover {
      color: #f25648;
      background-color: #ffffff; }
  #outdated .last {
    position: absolute;
    top: 10px;
    right: 25px;
    width: 20px;
    height: 20px; }
    #outdated .last[dir='rtl'] {
      right: auto !important;
      left: 25px !important; }
  #outdated #btnCloseUpdateBrowser {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
    font-size: 36px;
    line-height: 36px; }
  * html #outdated {
    position: absolute; }

/*!
 * FullCalendar v2.2.7 Stylesheet
 * Docs & License: http://arshaw.com/fullcalendar/
 * (c) 2013 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left; }

.fc-rtl {
  text-align: right; }

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed hr,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-row,
.fc-unthemed .fc-popover {
  border-color: #ddd; }

.fc-unthemed .fc-popover {
  background-color: #fff; }

.fc-unthemed hr,
.fc-unthemed .fc-popover .fc-header {
  background: #eee; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666; }

.fc-unthemed .fc-today {
  background: #fcf8e3; }

.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */ }

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */ }

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #ccc; }

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  font-size: 2em;
  line-height: .5em;
  height: .5em;
  /* will make the total height 1em */
  font-family: "Courier New", Courier, monospace; }

.fc-icon-left-single-arrow:after {
  content: "\02039";
  font-weight: bold; }

.fc-icon-right-single-arrow:after {
  content: "\0203A";
  font-weight: bold; }

.fc-icon-left-double-arrow:after {
  content: "\000AB"; }

.fc-icon-right-double-arrow:after {
  content: "\000BB"; }

.fc-icon-x:after {
  content: "\000D7"; }

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 .6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer; }

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0; }

.fc-state-default {
  /* non-theme */
  border: 1px solid; }

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

/* icons in buttons */
.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: .05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 .1em; }

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6; }

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear; }

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none; }

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  display: inline-block; }

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px; }

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); }

.fc-popover .fc-header {
  padding: 2px 4px; }

.fc-popover .fc-header .fc-title {
  margin: 0 2px; }

.fc-popover .fc-header .fc-close {
  cursor: pointer; }

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left; }

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right; }

/* unthemed */
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 25px;
  margin-top: 4px; }

/* jqui themed */
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */ }

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc hr {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-style: solid;
  border-width: 1px 0; }

.fc-clear {
  clear: both; }

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */ }

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */ }

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */ }

.fc th {
  text-align: center; }

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top; }

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */ }

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0; }

.fc-row table {
  /* don't put left/right border on anything within a fake row.
	   the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent; }

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */ }

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative; }

.fc-row .fc-bg {
  z-index: 1; }

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent; }

.fc-row .fc-bgevent-skeleton {
  z-index: 2; }

.fc-row .fc-highlight-skeleton {
  z-index: 3; }

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */ }

.fc-row .fc-helper-skeleton {
  z-index: 5; }

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
  /* don't put a border between events and/or the day number */
  border-bottom: 0; }

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0; }

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  /* this class goes on elements for guaranteed vertical scrollbars */
  overflow-y: scroll;
  overflow-x: hidden; }

.fc-scroller > * {
  /* we expect an immediate inner element */
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
  overflow: hidden;
  /* don't let negative margins or absolute positioning create further scroll */ }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */
  background-color: #3a87ad;
  /* default BACKGROUND color */
  font-weight: normal;
  /* undo jqui's ui-widget-header bold */ }

/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */ }

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */ }

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed; }

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px; }

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-day-grid-event.fc-not-start,
.fc-rtl .fc-day-grid-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.fc-ltr .fc-day-grid-event.fc-not-end,
.fc-rtl .fc-day-grid-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.fc-day-grid-event > .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden; }

.fc-day-grid-event .fc-time {
  font-weight: bold; }

/* resize handle (outside of fc-content, so can go outside of bounds) */
.fc-day-grid-event .fc-resizer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7px; }

.fc-ltr .fc-day-grid-event .fc-resizer {
  right: -3px;
  cursor: e-resize; }

.fc-rtl .fc-day-grid-event .fc-resizer {
  left: -3px;
  cursor: w-resize; }

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none; }

a.fc-more:hover {
  text-decoration: underline; }

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none; }

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */ }

.fc-more-popover {
  z-index: 2;
  width: 220px; }

.fc-more-popover .fc-event-container {
  padding: 10px; }

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center;
  margin-bottom: 1em; }

.fc-toolbar .fc-left {
  float: left; }

.fc-toolbar .fc-right {
  float: right; }

.fc-toolbar .fc-center {
  display: inline-block; }

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: .75em; }

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0; }

/* title text */
.fc-toolbar h2 {
  margin: 0; }

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative; }

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2; }

.fc-toolbar .fc-state-down {
  z-index: 3; }

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4; }

.fc-toolbar button:focus {
  z-index: 5; }

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1; }

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* we are sure there are no day numbers in these views, so... */
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */ }

.fc-basic-view tbody .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */ }

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden; }

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

/* week and day number styling */
.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 0 2px; }

.fc-basic-view td.fc-week-number span,
.fc-basic-view td.fc-day-number {
  padding-top: 2px;
  padding-bottom: 2px; }

.fc-basic-view .fc-week-number {
  text-align: center; }

.fc-basic-view .fc-week-number span {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em; }

.fc-ltr .fc-basic-view .fc-day-number {
  text-align: right; }

.fc-rtl .fc-basic-view .fc-day-number {
  text-align: left; }

.fc-day-number.fc-other-month {
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* for IE */
  /* opacity with small font can sometimes look too faded
	   might want to set the 'color' property instead
	   making day-numbers bold also fixes the problem */ }

/* YearView
--------------------------------------------------------------------------------------------------*/
.fc-year-main-table {
  border-spacing: 5px; }

.fc td.fc-year-monthly-td,
.fc td.fc-year-month-separator,
.fc td.fc-year-month-border {
  border-color: transparent; }

.fc-year-monthly-td {
  text-align: center; }

.fc-year-month-border.fc-first {
  width: 0;
  max-width: 8px; }

.fc-year-month-border.fc-last {
  width: 0;
  max-width: 8px; }

.fc-year-month-separator {
  width: 8px; }

.fc-year-view .fc-row table.fc-year-month-header {
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd; }

.fc-year-monthly-name {
  margin-top: 16px;
  line-height: 24px; }

.fc-year-monthly-name.fc-first {
  margin-top: 0; }

.fc-year-monthly-name a {
  color: black;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none; }

.fc-year-view .fc-row .fc-bg table {
  /* missing borders */
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd; }

.fc-year-view .fc-row.fc-last .fc-bg table {
  /* missing borders */
  border-bottom: 1px solid #dddddd; }

.fc-year-view .fc-week-number-head.ui-widget-header,
.fc-year-view .fc-day-header.ui-widget-header {
  /* non visible with 1px due to .fc-row:first-child table style */
  border-bottom-width: 2px; }

.fc-year-view .fc-rigid.fc-row {
  /* fix: right and bottom borders hidden with overflow hidden */
  overflow: inherit; }

.fc-year-view .fc-day-grid .fc-row {
  min-height: 42px;
  /* ensure that all rows are at least this tall */ }

.fc-year-view table {
  font-size: .9em; }

.fc-ltr .fc-year-view .fc-day-number {
  text-align: right; }

.fc-year-view td.fc-day-number {
  padding: 0 2px; }

/* week numbers */
.fc-year-view th.fc-week-number-head {
  font-size: 0.85em;
  font-weight: normal; }

.fc-year-view .fc-week-number-head {
  max-width: 22px;
  overflow-x: hidden;
  vertical-align: middle; }

.fc-year-view td.fc-week-number {
  text-align: center;
  border-left-width: 1px;
  border-left-style: solid;
  /* border-left-color: #dddddd; */
  font-size: 0.92em;
  font-weight: normal;
  padding-left: 2px; }

/* events */
.fc-year-view .fc-event {
  font-size: .76em;
  line-height: 1.15;
  text-align: left;
  border-radius: 2px; }

.fc-year-view .fc-event-inner {
  white-space: nowrap;
  text-overflow: ellipsis; }

.fc-year-view .fc-time {
  /* hide time in year view */
  display: none; }

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */ }

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */ }

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */ }

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap; }

.fc-ltr .fc-axis {
  text-align: right; }

.fc-rtl .fc-axis {
  text-align: left; }

.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome jqui theme making it bold */ }

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1; }

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */ }

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent; }

.fc-time-grid > .fc-bg {
  z-index: 1; }

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2; }

.fc-time-grid .fc-bgevent-skeleton,
.fc-time-grid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.fc-time-grid .fc-bgevent-skeleton {
  z-index: 3; }

.fc-time-grid .fc-highlight-skeleton {
  z-index: 4; }

.fc-time-grid .fc-content-skeleton {
  z-index: 5; }

.fc-time-grid .fc-helper-skeleton {
  z-index: 6; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */ }

.fc-slats .fc-minor td {
  border-top-style: dotted; }

.fc-slats .ui-widget-content {
  /* for jqui theme */
  background: none;
  /* see through to fc-bg */ }

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */ }

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */ }

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-event-container,
.fc-time-grid .fc-bgevent-container {
  /* a div within a cell within the fc-bgevent-skeleton */
  position: relative; }

.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px; }

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%; }

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */ }

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0; }

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.fc-time-grid-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */ }

.fc-time-grid-event > .fc-content {
  /* contains the time and title, but no bg and resizer */
  position: relative;
  z-index: 2;
  /* above the bg */ }

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px; }

.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap; }

.fc-time-grid-event .fc-bg {
  z-index: 1;
  background: #fff;
  opacity: .25;
  filter: alpha(opacity=25);
  /* for IE */ }

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap; }

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top; }

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */ }

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */ }

.fc-time-grid-event.fc-short .fc-time:after {
  content: "\000A0-\000A0";
  /* seperate with a dash, wrapped in nbsp's */ }

.fc-time-grid-event.fc-short .fc-title {
  font-size: .85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */ }

/* resizer */
.fc-time-grid-event .fc-resizer {
  position: absolute;
  z-index: 3;
  /* above content */
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize; }

.fc-time-grid-event .fc-resizer:after {
  content: "="; }

html, body {
  min-height: 100%;
  height: 100%; }

body.home {
  background-color: #f6f6f6; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25; }

body {
  background-color: #ffffff;
  position: relative;
  min-width: 992px;
  color: #2b2a2a;
  font-family: 'Titillium', Helvetica, Arial, sans-serif; }
  body.fake-grid:before {
    pointer-events: none;
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.5;
    background: repeat-y center top url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAABCAYAAADO+FcMAAAALElEQVR42u3SIQEAAAgDsFcnOTTA3E6swbLJwCMFv/ALv/DLL/zCL/zyi9oB6X3P6/RHsyEAAAAASUVORK5CYII=); }

.js-offset[data-offset="top"] {
  top: -10000%; }

.js-offset[data-offset="right"] {
  right: -10000%; }

.js-offset[data-offset="bottom"] {
  bottom: -10000%; }

.js-offset[data-offset="left"] {
  left: -10000%; }

.js-offset[data-offset="margin-top"] {
  margin-top: -10000%; }

.js-offset[data-offset="margin-right"] {
  margin-right: -10000%; }

.js-offset[data-offset="margin-bottom"] {
  margin-bottom: -10000%; }

.js-offset[data-offset="margin-left"] {
  margin-left: -10000%; }

.wrap {
  zoom: 1;
  margin: 0 auto;
  width: 100%;
  min-width: 980px;
  min-width: 1px;
  overflow: hidden; }
  .wrap:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  @media (min-width: 1220px) {
    .wrap {
      max-width: 1220px; } }

.program .slider .owl-carousel {
  padding: 0; }
  .program .slider .owl-carousel .owl-nav.disabled {
    display: block !important; }
    .program .slider .owl-carousel .owl-nav.disabled .owl-prev {
      left: 0;
      top: 0;
      width: 51px !important;
      height: 51px !important;
      background-color: #cdcccc !important;
      border-right: 3px solid #f6f6f6; }
    .program .slider .owl-carousel .owl-nav.disabled .owl-next {
      right: 0;
      top: 0;
      width: 51px !important;
      height: 51px !important;
      background-color: #cdcccc !important;
      border-left: 3px solid #f6f6f6; }
  .program .slider .owl-carousel .owl-nav .owl-prev {
    left: 0;
    top: 0;
    width: 51px !important;
    height: 51px !important;
    background-color: #cdcccc !important;
    border-right: 3px solid #f6f6f6;
    border-radius: 0 !important;
    padding-top: 10px; }
  .program .slider .owl-carousel .owl-nav .owl-next {
    right: 0;
    top: 0;
    width: 51px !important;
    height: 51px !important;
    background-color: #cdcccc !important;
    border-left: 3px solid #f6f6f6;
    border-radius: 0 !important;
    padding-top: 10px; }

#program .page__contentContainer .tabWrap .tab__content {
  margin-top: 20px !important; }

.heroWrap.heroWrap--alt .hero__titleWrap-alt .hero__img {
  display: none; }

.no-records-found {
  font-size: 30px;
  font-size: 1.875rem; }

.twitter-feed {
  height: 250px !important;
  overflow: auto; }

body.archive section[role="main"] {
  min-height: 100%;
  height: auto; }

body.archive.post-type-archive-media-gallery section[role="main"], body.archive.category-news section[role="main"], body.archive.category-observatory section[role="main"], body.archive.tax-media-gallery-tax section[role="main"] {
  height: auto; }

.page__not-foundListWrap {
  padding-bottom: 50px; }

.news_item_imgWrap:before {
  position: absolute;
  right: 0;
  bottom: -26px; }

#story {
  margin-bottom: 0; }
  #story.page__titleWrap {
    margin: 0; }
  #story .page__title {
    margin: 0; }

.page__contentContainer-full {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.no-margin {
  margin-left: -10px;
  margin-right: -10px; }

.page__contentContainer .page__titleWrap {
  margin: 0; }

.page__contentContainer .page__titleWrap .page__title {
  margin: 0; }

.btn--medium.icon {
  padding-right: 30px !important; }

.btn--medium {
  padding: 8px 29px !important; }

.hero__btn {
  margin-top: 0 !important; }

.no-border {
  border: 0 !important; }

.wrap-small {
  padding: 0 5%; }
  @media (min-width: 1220px) {
    .wrap-small {
      padding: 0; } }

.current-menu-item .testata__navigationItemLink {
  color: #008ac5 !important; }

.has-margin {
  margin: 20px 0 !important; }

.selectWrap {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .selectWrap:before {
    position: absolute;
    color: #feeb14;
    font-size: 23px;
    font-size: 1.4375rem;
    right: -30px;
    top: 7px; }

.bg-dark {
  background-color: #f6f6f6;
  padding: 20px 0; }

.typography {
  margin: 0 10px; }

.events_title {
  margin-bottom: 20px;
  line-height: 1.25;
  width: 70%;
  text-align: left;
  font-size: 40px;
  font-size: 2.5rem; }

.view_btn {
  border: 1px solid #185593;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  color: #185593;
  font-weight: bold;
  padding: 8px 29px; }
  .view_btnWrap {
    position: relative;
    float: right;
    top: 13px;
    right: 10px; }

.page__contentWrap {
  padding-left: 0;
  padding-right: 20px; }

.list__btnWrap {
  margin-bottom: -30px; }

.testata__logoTitleWrap {
  float: left;
  width: 70%;
  padding-right: 10px;
  line-height: 1; }
  @media (min-width: 1220px) {
    .testata__logoTitleWrap {
      position: relative;
      left: -5px;
      top: 14px; } }

.testata__logoImgWrap {
  display: inline-block; }

.language {
  margin: 0;
  opacity: 0.65;
  transition: opacity 0.25s;
  border-radius: 50%; }
  .language a {
    padding: 0; }
  .language:hover {
    opacity: 1;
    transition: opacity 0.25s; }
  .language-active {
    opacity: 1; }

.program {
  margin: 20px 0;
  background-color: #f6f6f6; }

.program .page__contentContainer .page__title {
  margin: 27px 0; }

#venue .page__contentContainer .venue .page__title {
  margin: 20px 0;
  padding-left: 0; }

.photoGallery {
  padding: 30px 0;
  margin: 20px 0; }
  .photoGallery .page__titleWrap .page__title {
    font-weight: bold;
    text-transform: none; }

.sidebar_item_title {
  font-weight: bold;
  font-size: 25px;
  font-size: 1.5625rem;
  margin-bottom: 20px; }

.sidebar_share {
  text-align: center; }
  .sidebar_share-alt {
    text-align: right;
    margin-top: 20px; }
    .dettaglio_content .sidebar_share-alt {
      margin-top: 40px; }
    .breadcrumbs--single + .wrap .sidebar_share-alt {
      display: block;
      float: right;
      margin-top: 0;
      position: relative;
      padding: 0px 30px; }
  .hero--missions + .sidebar_share {
    margin: 0;
    padding: 0;
    padding-top: 10px;
    min-height: auto; }

.hero_sidebar {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 25%;
  right: 10px;
  padding: 0 10px; }
  @media (min-width: 1220px) {
    .hero_sidebar {
      right: 0; } }
  .hero_sidebar .item:first-of-type:not(:only-child) .widget__infoWrap-alt {
    margin-bottom: 10px;
    background-color: #ffffff; }
    .hero_sidebar .item:first-of-type:not(:only-child) .widget__infoWrap-alt .widget__info .widget__infoHead {
      text-align: center;
      margin-bottom: 10px; }
      .hero_sidebar .item:first-of-type:not(:only-child) .widget__infoWrap-alt .widget__info .widget__infoHead img {
        border: 1px solid #d2d2d2;
        max-width: 210px; }
        @media (min-width: 1220px) {
          .hero_sidebar .item:first-of-type:not(:only-child) .widget__infoWrap-alt .widget__info .widget__infoHead img {
            max-width: 230px; } }
    .hero_sidebar .item:first-of-type:not(:only-child) .widget__infoWrap-alt .widget__info .btn--medium.icon {
      padding-right: 20px; }
    .hero_sidebar .item:first-of-type:not(:only-child) .widget__infoWrap-alt .widget__info .hero__btn.btn {
      color: #185593;
      background-color: #ebeaea;
      border: 1px solid #d2d2d2; }
      .hero_sidebar .item:first-of-type:not(:only-child) .widget__infoWrap-alt .widget__info .hero__btn.btn.btn--medium {
        padding: 15px 20px; }
  .hero_sidebar .item .widget__infoWrap-alt {
    margin-bottom: 0; }
    .hero_sidebar .item .widget__infoWrap-alt .hero__btn.btn {
      font-size: 13px;
      font-size: 0.8125rem;
      border: 1px solid #008ac5;
      color: #feeb14;
      background: transparent; }
      @media (min-width: 1220px) {
        .hero_sidebar .item .widget__infoWrap-alt .hero__btn.btn {
          font-size: 15px;
          font-size: 0.9375rem; } }
  .hero_sidebar .item .widget__infoWrap-alt .widget__infoHead p {
    padding: 0;
    padding-bottom: 10px;
    font-size: 14px;
    font-size: 0.875rem; }
    @media (min-width: 1220px) {
      .hero_sidebar .item .widget__infoWrap-alt .widget__infoHead p {
        font-size: 18px;
        font-size: 1.125rem; } }
  .hero_sidebar .widget__infoWrap-alt {
    width: 100%; }

.share_btn {
  margin: 0px 10px;
  color: #000000;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  transition: color 0.25s;
  font-size: 15px;
  font-size: 0.9375rem; }
  .share_btn:hover {
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.25s; }
  .share_btn:before {
    border-radius: 50%;
    width: 100%;
    padding-top: 17px;
    background-color: #ebeaea;
    height: 100%;
    display: block;
    margin: 10px auto;
    color: #000;
    padding: 10px;
    font-size: 18px;
    font-size: 1.125rem; }

.slider .owl-prev, .slider .owl-next {
  top: -20px !important;
  width: 51px !important;
  background-color: #d2d2d2 !important;
  border-radius: 0 !important;
  height: 51px !important; }
  .slider .owl-prev span:before, .slider .owl-next span:before {
    color: #185593 !important;
    padding: 12px 0 !important; }
  .slider .owl-prev span:hover:before, .slider .owl-next span:hover:before {
    color: #d2d2d2 !important; }

.slider .owl-prev {
  border-right: 5px solid #ebeaea; }

.slider .owl-next {
  border-left: 5px solid #ebeaea; }

.slider--carousel .owl-stage-outer {
  min-height: 0 !important; }

.sliderWrap {
  background-color: transparent !important;
  margin: 0 !important; }

.slider--carousel .item {
  text-align: center !important; }

.tab .item a {
  background-color: #d2d2d2 !important;
  font-weight: bold;
  color: #185593;
  transition: color 0.25s;
  padding: 15px 30px 15px 30px !important; }
  .tab .item a:hover {
    transition: color 0.25s;
    color: #008ac5; }

.programWrap .program {
  margin: 0; }
  .programWrap .program .program__content {
    padding: 0; }
    .programWrap .program .program__content table thead tr th {
      padding: 20px;
      background-color: #d2d2d2; }
    .programWrap .program .program__content table tbody tr:nth-child(odd) {
      background-color: #ffffff !important; }
    .programWrap .program .program__content table tbody tr td {
      padding: 20px !important; }

.shareThis {
  text-align: right;
  cursor: pointer;
  display: inline-block; }

.shareThis label {
  cursor: pointer;
  text-transform: uppercase;
  color: #000000;
  transition: color 0.25s; }

.shareThis input[name="share-button"] {
  display: none; }

.shareThis .modal {
  width: 330px;
  height: auto;
  text-align: left;
  background-color: #fff;
  cursor: auto;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.54);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.54);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.54);
  position: fixed;
  z-index: 5;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  Transform: translateY(-50%);
  display: none;
  visibility: visible !important;
  opacity: 1 !important; }

.shareThis .modalWrap::before {
  content: '';
  position: fixed;
  z-index: 5;
  width: 1000%;
  height: 1000%;
  background-color: rgba(0, 0, 0, 0.3);
  left: -500%;
  top: -500%;
  cursor: auto;
  display: none; }

.shareThis .modal label {
  font-size: 3.8rem;
  position: absolute;
  left: 85%;
  cursor: pointer;
  color: #000;
  top: -20px; }

.shareThis .modal h4 {
  font-size: 1.6rem;
  margin: 20px;
  text-transform: uppercase; }

.shareThis .modal ul {
  list-style-type: none;
  padding: 0;
  margin: 20px; }

.shareThis .modal ul li {
  font-size: 1rem;
  margin: 20px 0; }

.shareThis .modal ul li a {
  display: inline-block;
  vertical-align: middle;
  color: #000; }
  .shareThis .modal ul li a:before {
    font-size: 18px;
    font-size: 1.125rem;
    margin-right: 10px;
    position: relative;
    top: 3px; }

.shareThis .modal ul li img {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  width: 32px;
  margin-right: 15px; }

.modal ul li.facebook a:before {
  color: #3b5998 !important; }

.modal ul li.twitter a:before {
  color: #59aeee !important; }

.modal ul li.whatsapp a:before {
  color: #25D366 !important; }

.modal ul li.telegram a:before {
  color: #0088cc !important; }

.modal ul li.email a:before {
  color: #feeb14 !important; }

.shareThis input:checked ~ .modalWrap .modal {
  display: block; }

.shareThis input:checked ~ .modalWrap::before {
  display: block; }

.shareThis .shareThis__wrap.is-error .modalWrap {
  display: none; }

.shareThis__wrap.is-loading label.icon:before {
  content: 'loading2';
  animation: spin infinite 1s; }

.shareThis__wrap.is-error label.icon:before {
  content: 'warning';
  color: #e30613; }

.shareThis__wrap.is-loading input:checked ~ .modalWrap .modal {
  display: none; }

.shareThis__wrap.is-loading input:checked ~ .modalWrap::before {
  display: none; }

.news-list .shareThis .modal label {
  position: absolute;
  top: -10px; }

.news-list .shareThis .modal {
  width: 80%;
  height: auto; }

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (orientation: landscape) {
  .shareThis input:checked ~ .modalWrap .modal {
    text-align: center;
    width: 75%; }
  .shareThis .modal ul li {
    font-size: 0;
    display: inline-block; }
  a.icon-pp::before {
    font-size: 45px; } }

.grid {
  margin-left: -10px;
  margin-right: -10px;
  overflow: hidden; }
  .grid--dynamic .grid__item {
    position: absolute;
    height: 0;
    overflow: hidden; }
  .grid__item--x-0 {
    margin-left: 0%; }
  .grid__item--x-1 {
    margin-left: 33.3333333333%; }
  .grid__item--x-2 {
    margin-left: 66.6666666667%; }
  .grid__item--y-0 {
    margin-top: 0%; }
  .grid__item--y-1 {
    margin-top: 33.3333333333%; }
  .grid__item--y-2 {
    margin-top: 66.6666666667%; }
  .grid__item--y-3 {
    margin-top: 100%; }
  .grid__item--y-4 {
    margin-top: 133.333333333%; }
  .grid__item--y-5 {
    margin-top: 166.666666667%; }
  .grid__item--y-6 {
    margin-top: 200%; }
  .grid__item--y-7 {
    margin-top: 233.333333333%; }
  .grid__item--y-8 {
    margin-top: 266.666666667%; }
  .grid__item--y-9 {
    margin-top: 300%; }
  .grid__item--y-10 {
    margin-top: 333.333333333%; }
  .grid__item--y-11 {
    margin-top: 366.666666667%; }
  .grid__item--y-12 {
    margin-top: 400%; }
  .grid__item--y-13 {
    margin-top: 433.333333333%; }
  .grid__item--y-14 {
    margin-top: 466.666666667%; }
  .grid__item--y-15 {
    margin-top: 500%; }
  .grid__item--y-16 {
    margin-top: 533.333333333%; }
  .grid__item--y-17 {
    margin-top: 566.666666667%; }
  .grid__item--y-18 {
    margin-top: 600%; }
  .grid__item--y-19 {
    margin-top: 633.333333333%; }
  .grid__item--y-20 {
    margin-top: 666.666666667%; }
  .grid__item--y-21 {
    margin-top: 700%; }
  .grid__item--y-22 {
    margin-top: 733.333333333%; }
  .grid__item--y-23 {
    margin-top: 766.666666667%; }
  .grid__item--y-24 {
    margin-top: 800%; }
  .grid__item--y-25 {
    margin-top: 833.333333333%; }
  .grid__item--y-26 {
    margin-top: 866.666666667%; }
  .grid__item--y-27 {
    margin-top: 900%; }
  .grid__item--y-28 {
    margin-top: 933.333333333%; }
  .grid__item--y-29 {
    margin-top: 966.666666667%; }
  .grid__item--w-1 {
    width: 33.3333333333%; }
  .grid__item--w-2 {
    width: 66.6666666667%; }
  .grid__item--w-3 {
    width: 100%; }
  .grid__item--h-1, .grid--h-1 {
    padding-bottom: 33.3333333333%; }
  .grid__item--h-2, .grid--h-2 {
    padding-bottom: 66.6666666667%; }
  .grid__item--h-3, .grid--h-3 {
    padding-bottom: 100%; }
  .grid__item--h-4, .grid--h-4 {
    padding-bottom: 133.333333333%; }
  .grid__item--h-5, .grid--h-5 {
    padding-bottom: 166.666666667%; }
  .grid__item--h-6, .grid--h-6 {
    padding-bottom: 200%; }
  .grid__item--h-7, .grid--h-7 {
    padding-bottom: 233.333333333%; }
  .grid__item--h-8, .grid--h-8 {
    padding-bottom: 266.666666667%; }
  .grid__item--h-9, .grid--h-9 {
    padding-bottom: 300%; }
  .grid__item--h-10, .grid--h-10 {
    padding-bottom: 333.333333333%; }
  .grid__item--h-11, .grid--h-11 {
    padding-bottom: 366.666666667%; }
  .grid__item--h-12, .grid--h-12 {
    padding-bottom: 400%; }
  .grid__item--h-13, .grid--h-13 {
    padding-bottom: 433.333333333%; }
  .grid__item--h-14, .grid--h-14 {
    padding-bottom: 466.666666667%; }
  .grid__item--h-15, .grid--h-15 {
    padding-bottom: 500%; }
  .grid__item--h-16, .grid--h-16 {
    padding-bottom: 533.333333333%; }
  .grid__item--h-17, .grid--h-17 {
    padding-bottom: 566.666666667%; }
  .grid__item--h-18, .grid--h-18 {
    padding-bottom: 600%; }
  .grid__item--h-19, .grid--h-19 {
    padding-bottom: 633.333333333%; }
  .grid__item--h-20, .grid--h-20 {
    padding-bottom: 666.666666667%; }
  .grid__item--h-21, .grid--h-21 {
    padding-bottom: 700%; }
  .grid__item--h-22, .grid--h-22 {
    padding-bottom: 733.333333333%; }
  .grid__item--h-23, .grid--h-23 {
    padding-bottom: 766.666666667%; }
  .grid__item--h-24, .grid--h-24 {
    padding-bottom: 800%; }
  .grid__item--h-25, .grid--h-25 {
    padding-bottom: 833.333333333%; }
  .grid__item--h-26, .grid--h-26 {
    padding-bottom: 866.666666667%; }
  .grid__item--h-27, .grid--h-27 {
    padding-bottom: 900%; }
  .grid__item--h-28, .grid--h-28 {
    padding-bottom: 933.333333333%; }
  .grid__item--h-29, .grid--h-29 {
    padding-bottom: 966.666666667%; }
  .grid__item--h-30, .grid--h-30 {
    padding-bottom: 1000%; }
  .grid--special {
    margin-left: 0;
    margin-right: 0;
    min-height: 460px;
    padding-bottom: 25%; }
    .wrapSlider .grid--special {
      padding-bottom: 0; }
    .grid--special .slider .owl-carousel {
      padding-left: 0;
      padding-right: 0; }
    .grid--special .owl-carousel {
      height: 100%; }
      .grid--special .owl-carousel .owl-stage {
        height: 100%; }
        .grid--special .owl-carousel .owl-stage-outer {
          height: 100%; }
      .grid--special .owl-carousel .owl-item {
        height: 100%; }
        .grid--special .owl-carousel .owl-item .item {
          height: 100%; }
      .grid--special .owl-carousel .owl-nav {
        margin: 0; }
    .grid--special .grid__item {
      padding-bottom: 25%;
      min-height: 460px; }
      .wrapSlider .grid--special .grid__item {
        position: relative;
        padding-bottom: 35%; }
    .grid--special .slider {
      display: block;
      height: 100%; }
      .grid--special .sliderWrap .owl-nav .owl-prev, .grid--special .sliderWrap .owl-nav .owl-next {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 48px;
        height: 48px;
        transition: left 0.25s, right 0.25s, background-color 0.25s;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 100px; }
        .grid--special .sliderWrap .owl-nav .owl-prev:hover, .grid--special .sliderWrap .owl-nav .owl-next:hover {
          background-color: rgba(255, 255, 255, 0.95); }
        .grid--special .sliderWrap .owl-nav .owl-prev .icon:before, .grid--special .sliderWrap .owl-nav .owl-prev .icon .iconGenerated, .grid--special .sliderWrap .owl-nav .owl-next .icon:before, .grid--special .sliderWrap .owl-nav .owl-next .icon .iconGenerated {
          color: #a1d552;
          font-size: 28px;
          display: block;
          position: relative;
          padding-top: 6px;
          text-align: center; }
    .grid--special .sliderWrap .slider .owl-carousel .owl-nav .owl-prev,
    .grid--special .sliderWrap .slider .owl-carousel .owl-nav .owl-next {
      width: 40px !important;
      height: 40px !important; }
    .grid--special .sliderWrap .slider .owl-carousel .owl-nav .owl-prev {
      left: -50px; }
    .grid--special .sliderWrap .slider .owl-carousel .owl-nav .owl-next {
      right: -50px; }
    .grid--special .sliderWrap:hover .slider .owl-carousel .owl-nav .owl-prev, .grid--special .sliderWrap:focus .slider .owl-carousel .owl-nav .owl-prev {
      left: 20px; }
    .grid--special .sliderWrap:hover .slider .owl-carousel .owl-nav .owl-next, .grid--special .sliderWrap:focus .slider .owl-carousel .owl-nav .owl-next {
      right: 20px; }
    .grid--special .wrap {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      height: 100%; }
  .gridWrap {
    font-size: 0;
    zoom: 1; }
    .gridWrap:after {
      display: block;
      visibility: hidden;
      height: 0;
      clear: both;
      content: "."; }
  .grid__title {
    text-align: center;
    text-transform: uppercase;
    color: #383f3c;
    font-size: 28px;
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 40px;
    font-weight: normal; }
    .gridWrap .grid__title {
      text-align: left;
      padding-left: 10px;
      padding-right: 10px;
      margin-bottom: -20px;
      text-transform: none;
      color: #363737; }
      .gridWrap .grid__title ~ .grid--blog {
        margin-left: -32px;
        margin-right: -32px; }
  .grid__item {
    display: block;
    font-size: 16px;
    font-size: 1rem; }
    .grid__itemWrap {
      padding: 10px; }
      .grid--special .grid__itemWrap {
        padding: 0; }
    .grid__itemContent {
      display: block; }
      .grid__itemContentWrap {
        padding: 25px 20px; }
        .grid__itemContentWrap .video__data {
          margin-top: 20px; }
    .grid__itemPosition {
      display: block;
      position: relative;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      height: 100%; }
    .grid__itemLink {
      display: block;
      position: relative;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      height: 100%; }
      .grid__itemLink:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.25s;
        pointer-events: none; }
      .grid__itemLink:after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0; }
      .grid--special .grid__itemLink:before, .grid--special .grid__itemLink:after {
        display: none; }
      .grid--special .owl-carousel .grid__itemLink {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%; }
      .grid__itemLink:hover:before, .grid__itemLink:focus:before {
        opacity: 0.5; }
    .grid__itemBtn {
      text-align: center;
      display: inline-block;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 17px;
      font-size: 1.0625rem;
      padding: 15px;
      color: #383f3c;
      background-color: #e5d22e; }
      .slider .grid__itemBtn {
        display: inline-block; }
      .grid__itemBtn:hover, .grid__itemBtn:focus {
        color: #383f3c;
        background-color: #eddc04; }
      .grid__itemBtnWrap {
        display: block;
        text-align: center;
        max-width: 100%;
        font-size: 18px;
        font-size: 1.125rem;
        width: 100%;
        padding-top: 5px; }
      @media (min-width: 1220px) {
        .grid__itemBtn {
          font-size: 22px;
          font-size: 1.375rem;
          padding: 20px; } }
    .grid__itemInfo {
      display: block; }
      .grid__itemInfoWrap {
        display: block; }
    .grid__itemTitle {
      font-weight: lighter;
      color: #ffffff;
      text-shadow: 0 1px 0 #000000;
      font-size: 22px;
      font-size: 1.375rem; }
      .grid__itemTitleWrap {
        display: block;
        position: relative;
        width: 100%;
        z-index: 1;
        will-change: opacity;
        transition: transform 0.25s, opacity 0.25s;
        color: #ffffff;
        text-shadow: 0 1px 0 #000000; }
        .js-slider:not(.js-slider-moving) .owl-item:not(.active) .grid__itemTitleWrap {
          opacity: 0; }
        .js-slider-moving .owl-item .grid__itemTitleWrap {
          opacity: 0; }
        .grid__itemTitleWrap--align-top {
          top: 5% !important;
          transform: none !important; }
          @media (max-width: 745px) {
            .grid__itemTitleWrap--align-top {
              top: 50% !important;
              transform: translateY(-50%) !important; } }
        .grid__itemTitleWrap--align-middle {
          top: 50% !important;
          transform: translateY(-50%) !important; }
        .grid__itemTitleWrap--align-bottom {
          top: auto !important;
          bottom: 5% !important;
          transform: none !important; }
          @media (max-width: 745px) {
            .grid__itemTitleWrap--align-bottom {
              bottom: auto !important;
              top: 50% !important;
              transform: translateY(-50%) !important; } }
        .grid__itemTitleWrap--align-right {
          position: absolute;
          left: auto;
          text-align: left;
          right: 80px; }
          @media (min-width: 1220px) {
            .grid__itemTitleWrap--align-right {
              right: 0; } }
        .grid__itemTitleWrap--align-left {
          position: absolute;
          right: auto;
          text-align: right;
          left: 80px; }
          @media (min-width: 1220px) {
            .grid__itemTitleWrap--align-left {
              left: 0; } }
        .grid__itemTitleWrap--align-center {
          position: absolute;
          right: 0;
          left: 0;
          margin: 0 auto;
          text-align: center; }
        .grid__itemTitleWrap--text-align-right {
          text-align: right; }
        .grid__itemTitleWrap--text-align-left {
          text-align: left; }
        .grid__itemTitleWrap--text-align-center {
          text-align: center; }
        .grid__itemTitleWrap--special {
          text-align: center;
          top: 50%;
          transform: translateY(-50%); }
    .grid__itemDescription {
      display: block;
      font-weight: lighter;
      line-height: 1.5;
      margin-bottom: 10px;
      font-size: 18px;
      font-size: 1.125rem; }
      .grid__itemDescriptionWrap {
        display: block;
        margin-top: 20px; }
    .grid__itemImg {
      display: block; }
      .grid--special .owl-carousel .grid__itemImg {
        display: none; }
      .grid__itemImgWrap {
        display: block; }
        .grid--special .grid__itemImgWrap {
          visibility: hidden;
          height: 0;
          padding-bottom: calc(100% / 4); }
          .wrapSlider .grid--special .grid__itemImgWrap {
            padding-bottom: calc((100% / 3) + 9%); }
            @media (min-width: 1220px) {
              .wrapSlider .grid--special .grid__itemImgWrap {
                padding-bottom: calc((100% / 3) + 3%); } }
    .grid__item--simple {
      display: inline-block;
      vertical-align: top;
      width: 50%;
      padding-left: 10px;
      padding-right: 10px; }
      .grid__item--simple .grid__itemLink {
        background-image: none !important; }
    .grid__item--horizontal {
      padding-left: 10px;
      padding-right: 10px;
      padding-bottom: 40px;
      display: inline-block;
      vertical-align: top;
      width: 50%; }
      .grid__item--horizontal .grid__itemLink {
        background-image: none !important;
        font-size: 0; }
      .grid__item--horizontal .grid__itemImgWrap, .grid__item--horizontal .grid__itemContentWrap {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding-left: 10px;
        padding-right: 10px; }
      .grid__item--horizontal .grid__itemContentWrap {
        padding: 10px 20px 10px 10px; }
      .grid__item--horizontal .grid__itemTitle {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.35; }
        @media (min-width: 1220px) {
          .grid__item--horizontal .grid__itemTitle {
            font-size: 18px;
            font-size: 1.125rem; } }
      .grid__item--horizontal .video__data {
        margin-top: 10px; }
    .grid__item--special .grid__itemLink:before {
      background-color: rgba(161, 213, 82, 0.5);
      height: 200%;
      width: 150%;
      transform: rotate(20deg);
      top: -78%;
      left: calc(-60% + 3px); }
    .grid__item--special .grid__itemLink:hover .video__data--date {
      background-color: white; }
    .grid__item--special .grid__itemLink:hover .video__data--time {
      background-color: #f0f0f0; }
    .grid__item--special .grid__itemTitle {
      color: #383f3c;
      font-weight: normal;
      margin-bottom: 10px;
      line-height: 1.4;
      font-size: 18px;
      font-size: 1.125rem; }
      .sidebar .grid__item--special .grid__itemTitle {
        font-size: 14px;
        font-size: 0.875rem; }
    .grid__item--special .grid__itemImgWrap {
      visibility: hidden; }
    .grid__item--special .grid__itemContentWrap {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      text-shadow: 1px 1px 0 #000000;
      padding: 15px 70px 15px 15px; }
      .grid__item--special .grid__itemContentWrap .video__data {
        margin-top: 0; }
        .grid__item--special .grid__itemContentWrap .video__dataWrap {
          display: inline-block;
          vertical-align: middle; }
        .grid__item--special .grid__itemContentWrap .video__data .icon {
          display: inline-block;
          vertical-align: middle;
          padding-right: 0; }
      @media (min-width: 1220px) {
        .grid__item--special .grid__itemContentWrap {
          padding: 20px 70px 20px 20px; } }
      .sidebar .grid__item--special .grid__itemContentWrap {
        padding-right: 30px; }
    .grid__item--special .video__data--time {
      background-color: rgba(240, 240, 240, 0.8); }
    .grid__item--small .grid__itemLink:before {
      background-color: rgba(51, 51, 51, 0.2); }
    .grid__item--small .grid__itemLink:after {
      background: rgba(51, 51, 51, 0.4);
      background: -moz-linear-gradient(top, rgba(51, 51, 51, 0.4) 25%, transparent 50%);
      background: -webkit-linear-gradient(top, rgba(51, 51, 51, 0.4) 25%, transparent 50%);
      background: linear-gradient(to bottom, rgba(51, 51, 51, 0.4) 25%, transparent 50%); }
    .grid__item--small .grid__itemTitle {
      font-size: 28px;
      font-size: 1.75rem;
      line-height: 1.35; }
    .grid__item--small .grid__itemTitleWrap:not(.grid__itemTitleWrap--special) {
      top: 0; }
    .grid__item--small .grid__itemTitleWrap {
      padding: 20px; }
    .grid__item--small .grid__itemDescription {
      width: 75%;
      font-size: 15px;
      font-size: 0.9375rem;
      margin-top: 3px;
      line-height: 1.35; }
    .grid__item--medium .grid__itemLink:before, .grid__item--large .grid__itemLink:before {
      background-color: rgba(51, 51, 51, 0.2); }
    .grid__item--medium .grid__itemLink:after, .grid__item--large .grid__itemLink:after {
      background: rgba(51, 51, 51, 0.6);
      background: -moz-linear-gradient(top, rgba(51, 51, 51, 0.6) 25%, transparent 50%);
      background: -webkit-linear-gradient(top, rgba(51, 51, 51, 0.6) 25%, transparent 50%);
      background: linear-gradient(to bottom, rgba(51, 51, 51, 0.6) 25%, transparent 50%); }
    .grid__item--medium .grid__itemTitleWrap, .grid__item--large .grid__itemTitleWrap {
      padding: 15px 20px 20px;
      z-index: 1;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
      width: 100%; }
      .grid__item--medium .grid__itemTitleWrap.grid__itemTitleWrap--align-left, .grid__item--medium .grid__itemTitleWrap.grid__itemTitleWrap--align-right, .grid__item--medium .grid__itemTitleWrap.grid__itemTitleWrap--align-center, .grid__item--large .grid__itemTitleWrap.grid__itemTitleWrap--align-left, .grid__item--large .grid__itemTitleWrap.grid__itemTitleWrap--align-right, .grid__item--large .grid__itemTitleWrap.grid__itemTitleWrap--align-center {
        width: 50%; }
      .grid__item--medium .grid__itemTitleWrap.grid__itemTitleWrap--align-left, .grid__item--large .grid__itemTitleWrap.grid__itemTitleWrap--align-left {
        text-align: right; }
      .grid__item--medium .grid__itemTitleWrap.grid__itemTitleWrap--align-right, .grid__item--large .grid__itemTitleWrap.grid__itemTitleWrap--align-right {
        text-align: left; }
    .grid__item--medium .grid__itemTitle, .grid__item--large .grid__itemTitle {
      font-size: 46px;
      font-size: 2.875rem;
      will-change: opacity; }
    .grid__item--medium .grid__itemDescription, .grid__item--large .grid__itemDescription {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 1.25;
      font-weight: lighter;
      margin-top: 6.6666666667px; }
    .grid__item--vertical .grid__itemTitleWrap {
      text-align: left; }
    .grid__item--vertical .grid__itemTitle {
      font-size: 35px;
      font-size: 2.1875rem;
      line-height: 1; }
    .grid__item--vertical .grid__itemDescription {
      color: #383f3c;
      font-size: 23px;
      font-size: 1.4375rem;
      width: 80%;
      text-transform: uppercase;
      margin-top: 5px;
      line-height: 1.25; }
  .grid:not(.grid--dynamic) {
    margin-top: 30px; }
    .grid:not(.grid--dynamic)[data-gridItemsPerRow="2"] .grid__item {
      width: 50%; }
    .grid:not(.grid--dynamic)[data-gridItemsPerRow="3"] .grid__item {
      width: 33.333334%; }
    .grid:not(.grid--dynamic)[data-gridItemsPerRow="4"] .grid__item {
      width: 25%; }
    .grid:not(.grid--dynamic)[data-gridItemsPerRow="5"] .grid__item {
      width: 20%; }
    .grid:not(.grid--dynamic)[data-gridItemsPerRow="10"] .grid__item {
      width: 10%; }
    .grid:not(.grid--dynamic) .grid__item {
      float: left;
      width: 33.333334%; }
      .grid:not(.grid--dynamic) .grid__item.grid__itemNewsletter {
        width: 50%; }
    .grid:not(.grid--dynamic) .grid__itemImg {
      width: 100%;
      visibility: hidden; }
    .grid:not(.grid--dynamic) .grid__itemLink {
      position: relative;
      padding-bottom: 100%;
      height: 0;
      display: block; }
    .grid:not(.grid--dynamic) .grid__item:not(.grid__item--product) .grid__itemTitleWrap:not(.grid__itemTitleWrap--align-left):not(.grid__itemTitleWrap--align-right) {
      text-align: center; }

.assets {
  float: left;
  width: 50%;
  padding-right: 6px;
  padding-left: 6px; }
  .assets_inner {
    zoom: 1;
    height: 100%;
    background-color: #f2f2f2;
    padding: 10px; }
    .assets_inner:after {
      display: block;
      visibility: hidden;
      height: 0;
      clear: both;
      content: "."; }
  .assetsWrap {
    zoom: 1;
    padding: 0 10px;
    margin: 0 -10px; }
    .assetsWrap:after {
      display: block;
      visibility: hidden;
      height: 0;
      clear: both;
      content: "."; }
    .assetsWrap .item {
      height: 100%;
      float: left;
      width: 16.6666666667%;
      padding-right: 6px;
      padding-left: 6px; }
      .assetsWrap .item .widget__infoWrap {
        background-color: #ffffff;
        height: 100%; }
        .assetsWrap .item .widget__infoWrap .widget__info .widget__infoHead .widget__infoHeadTitle {
          color: #000000;
          font-size: 35px;
          font-size: 2.1875rem;
          line-height: 0.95; }
        .assetsWrap .item .widget__infoWrap .widget__info .widget__infoHead img {
          border: 1px solid #d2d2d2;
          margin-bottom: 36px; }
          @media (max-width: 980px) {
            .assetsWrap .item .widget__infoWrap .widget__info .widget__infoHead img {
              max-height: 400px;
              display: block;
              margin-left: auto;
              margin-right: auto;
              width: auto; } }
        .assetsWrap .item .widget__infoWrap .hero__btn.btn {
          background-color: #feeb14;
          border: 1px solid #d2d2d2;
          color: #000000; }
  .assets.bg-odd {
    background-color: #ffffff; }
  .assets p {
    font-size: 16px;
    font-size: 1rem;
    margin: 10px 40px; }
  .assets .heroWrap {
    margin-bottom: 30px; }
    .assets .heroWrap .hero__titleWrap-alt {
      bottom: 27px;
      left: 20px; }
  .assets-odd {
    background-color: transparent !important; }
  .assets-alt {
    float: none;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    padding: 30px 0;
    padding-top: 0; }
    .assets-alt p {
      font-size: 20px;
      font-size: 1.25rem;
      margin: 0; }
    .assets-alt.text_left {
      text-align: left; }
    .assets-alt .assets_itemWrap {
      overflow: visible;
      margin-bottom: 0;
      border-radius: 0;
      display: inline-block;
      float: none;
      margin-bottom: 40px;
      width: auto; }
      .assets-alt .assets_itemWrap .assets_item {
        display: block;
        overflow: visible;
        border-radius: 0;
        padding: 45px;
        padding-top: 20px; }
        .assets-alt .assets_itemWrap .assets_item:hover img {
          opacity: 0.8;
          transition: opacity 0.25s; }
        .assets-alt .assets_itemWrap .assets_item img {
          border-radius: 50%;
          opacity: 1;
          transition: opacity 0.25s;
          visibility: visible;
          max-width: 200px; }
        .assets-alt .assets_itemWrap .assets_item .command_role {
          display: block;
          color: #008ac5;
          font-weight: bold;
          text-transform: capitalize;
          font-size: 20px;
          font-size: 1.25rem; }
          .assets-alt .assets_itemWrap .assets_item .command_roleSub {
            display: block;
            font-size: 16px;
            font-size: 1rem;
            font-weight: normal;
            text-transform: capitalize; }
        .assets-alt .assets_itemWrap .assets_item .command_roleSub {
          color: #000000;
          line-height: 1.25; }
        .assets-alt .assets_itemWrap .assets_item .command_name {
          color: #000000;
          font-weight: bold;
          line-height: 1.25;
          font-size: 23px;
          font-size: 1.4375rem;
          text-transform: uppercase; }
          .assets-alt .assets_itemWrap .assets_item .command_name strong {
            line-height: 1.25;
            font-size: 16px;
            font-size: 1rem;
            display: block; }
    .assets-alt .page__titleWrap {
      margin-bottom: 20px;
      margin-top: 6px;
      zoom: 1; }
      .assets-alt .page__titleWrap:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: "."; }
      .assets-alt .page__titleWrap + .news {
        margin-top: 30px !important; }
      .assets-alt .page__titleWrap .page__title {
        color: #000000;
        text-shadow: none;
        text-transform: none;
        font-size: 35px;
        font-size: 2.1875rem;
        font-family: 'titillium', arial, sans-serif; }
        .assets-alt .page__titleWrap .page__title:not(:only-child) {
          float: left; }
        .assets-alt .page__titleWrap .page__title-left {
          text-align: left; }
  .assets_content {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 1rem; }
  .assetsWrap {
    zoom: 1; }
    .assetsWrap:after {
      display: block;
      visibility: hidden;
      height: 0;
      clear: both;
      content: "."; }
  .assets .page__titleWrap {
    text-align: center;
    padding-bottom: 10px; }
  .assets .page__title {
    font-size: 35px;
    font-size: 2.1875rem;
    text-transform: uppercase;
    color: #feeb14;
    font-weight: bold;
    text-shadow: -1px 2px 4px #969696; }
  .assets .hero__btn.btn--medium {
    padding-right: 35px; }
  .assets .hero__btn.btn {
    font-weight: bold;
    box-shadow: none;
    border-radius: 0;
    border: 1px solid #d2d2d2;
    font-size: 16px;
    font-size: 1rem; }
    .assets .hero__btn.btn:before {
      display: none; }
  .assets_item {
    background: no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 0;
    border-radius: 10000px;
    padding-bottom: 100%; }
    .assets_item img {
      visibility: hidden;
      opacity: 0; }
    .assets_item_content {
      background-color: rgba(24, 85, 147, 0.8);
      position: absolute;
      text-align: center;
      color: #feeb14;
      width: 100%;
      left: 0;
      bottom: 0;
      height: 80px; }
      .assets_item_content p {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.25; }
    .assets_itemWrap {
      border-radius: 50%;
      overflow: hidden;
      display: block;
      margin-bottom: 20px;
      float: left;
      padding: 0 20px;
      width: 33.333334%; }
  .assets-dark {
    background-color: #f1f1f1; }

.callToAction {
  padding: 20px;
  zoom: 1; }
  .callToAction:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .callToAction_item {
    float: left;
    padding: 0 10px;
    width: 33.333334%; }
    .callToAction_itemWrap {
      display: block;
      color: #ffffff;
      background-color: #185593; }
      .callToAction_itemWrap:before {
        color: #ffffff;
        padding: 0 20px;
        font-size: 35px;
        font-size: 2.1875rem;
        display: inline-block;
        vertical-align: middle; }
    .callToAction_item_link {
      border-left: 1px solid #008ac5;
      display: inline-block;
      padding: 20px;
      vertical-align: middle;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 20px;
      font-size: 1.25rem; }

.contactWrap {
  padding: 0 10px;
  margin: 0 -10px;
  zoom: 1; }
  @media (min-width: 1220px) {
    .contactWrap {
      margin: 0 -10px; } }
  .contactWrap:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .contactWrap-alt {
    margin: 0 -10px; }
    .contactWrap-alt .contact_itemWrap {
      width: 25%;
      margin: 20px 0px;
      height: 256px; }
    .contactWrap-alt .contact_item {
      color: #000000;
      border: 2px solid #D3D4D8; }
      .contactWrap-alt .contact_item:hover .contact_icon:before {
        opacity: 0.8;
        transition: opacity 0.25s; }
      .contactWrap-alt .contact_item .contact_icon:before {
        transition: opacity 0.25s; }
    .contactWrap-alt .contact_icon {
      background-color: transparent; }
      .contactWrap-alt .contact_icon:before {
        background-color: #ebeaea;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        padding-top: 25px;
        font-size: 50px;
        font-size: 3.125rem;
        color: #185593; }
  .contactWrap-odd {
    margin-bottom: 30px;
    margin: 0 -10px; }
    .contactWrap-odd .contact_item {
      background-color: #f6f6f6;
      border: 1px solid #ebeaea; }
    .contactWrap-odd .contact_itemWrap {
      width: 33.333334%; }
      .contactWrap-odd .contact_itemWrap:first-of-type .contact_item .contact_icon:before {
        font-size: 35px;
        font-size: 2.1875rem; }

.contact_item {
  text-align: center;
  height: 100%;
  background-color: #ffffff;
  padding: 20px; }
  .contact_itemWrap {
    height: 100%;
    float: left;
    width: 33.3333333333%;
    padding-right: 6px;
    padding-left: 6px; }
  .contact_item_phone {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 20px;
    display: block; }
    .contact_item_phone strong {
      font-weight: normal;
      display: block; }
  .contact_item_email {
    color: #008ac5;
    line-break: anywhere;
    font-size: 16px;
    font-size: 1rem; }

.contact_icon {
  margin: 10px 0;
  margin-top: 0;
  display: block;
  text-transform: capitalize;
  font-weight: bold;
  color: #000000;
  font-size: 25px;
  font-size: 1.5625rem; }
  .contact_icon:before {
    margin: 20px auto;
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 14px 0;
    background-color: #000000;
    color: #ffffff;
    font-size: 30px;
    font-size: 1.875rem; }

.contact_info .profile_title {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: normal; }
  .contact_info .profile_title .profile_position {
    font-size: 35px;
    font-size: 2.1875rem;
    font-weight: bold; }

.contact_info_mobile {
  display: block;
  font-size: 20px;
  font-size: 1.25rem; }

.contact_info_office {
  display: block;
  font-size: 20px;
  font-size: 1.25rem; }

.contact_info_mail {
  font-weight: bold;
  margin-top: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #185593;
  display: block; }

.dettaglio {
  float: left;
  margin-bottom: 30px;
  float: left;
  width: 50%;
  padding-right: 6px;
  padding-left: 6px; }
  @media (min-width: 1220px) {
    .dettaglio {
      padding-left: 0;
      padding-right: 0; } }
  .dettaglio--news {
    width: 100%;
    float: none; }
  .dettaglio_header {
    position: relative;
    padding: 0 10px; }
  .dettaglio_date {
    font-size: 20px;
    font-size: 1.25rem;
    display: block; }
  .dettaglio_title {
    line-height: 1.25;
    font-weight: bold;
    font-size: 35px;
    font-size: 2.1875rem;
    margin-bottom: 20px; }
    .dettaglio--news .dettaglio_title {
      margin-bottom: 14px;
      font-size: 50px;
      font-size: 3.125rem; }
    .dettaglio_titleSub {
      display: block; }
      .dettaglio--news .dettaglio_titleSub {
        font-size: 1.4rem;
        margin-bottom: 16px;
        font-weight: lighter; }
  .dettaglio .hero__btnWrap {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 20px; }
    .dettaglio .hero__btnWrap .hero__btn.btn {
      background-color: #ebeaea;
      color: #185593;
      transition: opacity 0.25s;
      font-weight: bold;
      font-size: 16px;
      font-size: 1rem;
      box-shadow: none;
      border-radius: 0; }
      .dettaglio .hero__btnWrap .hero__btn.btn:before {
        display: none; }
      .dettaglio .hero__btnWrap .hero__btn.btn:hover {
        opacity: 0.8;
        transition: opacity 0.25s; }
  .dettaglio_content .dettaglio_imgWrap ~ em {
    padding: 20px 10px;
    font-size: 20px;
    font-size: 1.25rem;
    display: block; }
  .dettaglio_content strong {
    color: #185593; }
  .dettaglio_content .sliderWrap {
    display: block; }
  .dettaglio_imgWrap {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 56.25%;
    margin-bottom: 10px; }
    .dettaglio_imgWrap
img {
      width: auto;
      height: auto;
      transition: opacity 0.25s;
      position: absolute;
      visibility: hidden;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      margin: auto;
      max-height: 100%; }
  .dettaglioWrap {
    padding-top: 30px;
    zoom: 1; }
    .dettaglioWrap:after {
      display: block;
      visibility: hidden;
      height: 0;
      clear: both;
      content: "."; }
    .dettaglioWrap .sidebarWrap {
      float: left;
      width: 16.6666666667%;
      padding-right: 6px;
      padding-left: 6px; }

.filter {
  background-color: #142230;
  padding: 20px 0;
  text-align: center; }
  .filter-alt .filter_title {
    text-transform: none;
    margin-left: 20px; }
  .filter-alt .filter_form .hero__btnWrap .hero__btn.btn {
    padding: 9px 40px; }
  .filter_check {
    vertical-align: middle;
    padding-right: 20px;
    display: block; }
    @media (min-width: 1220px) {
      .filter_check {
        display: inline-block; } }
    .filter_check_item {
      cursor: pointer;
      border: 1px solid #feeb14;
      display: inline-block;
      margin-right: 10px;
      vertical-align: middle;
      color: #feeb14;
      font-weight: bold; }
      .filter_check_item_title {
        display: inline-block;
        vertical-align: middle;
        color: #feeb14;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 16px;
        font-size: 1rem; }
      .filter_check_itemWrap {
        padding: 10px 10px 10px 35px; }
      .filter_check_item .checkbox_wrap {
        position: relative; }
        .filter_check_item .checkbox_wrap .filter_check_item {
          border: none;
          position: relative; }
        .filter_check_item .checkbox_wrap .check {
          width: 17px;
          height: 17px;
          display: inline-block;
          vertical-align: middle;
          position: relative;
          right: 15px;
          top: -1px;
          border-radius: 50%;
          border: 3px solid #feeb14; }
          .filter_check_item .checkbox_wrap .check:before {
            content: '';
            position: absolute;
            width: 5px;
            height: 5px;
            background-color: #feeb14;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            opacity: 0; }
        .filter_check_item .checkbox_wrap input[type="radio"] {
          position: absolute;
          left: -16px;
          top: 7px;
          z-index: 2;
          width: 20px;
          height: 20px;
          opacity: 0; }
          .filter_check_item .checkbox_wrap input[type="radio"]:checked ~ .check:before {
            opacity: 1; }
      .filter_check_item input[type="checkbox"] {
        width: 15px;
        height: 15px;
        cursor: pointer;
        margin-right: 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        border: 1px solid #feeb14;
        border-radius: 0; }
        .filter_check_item input[type="checkbox"]:checked + .filter_check_item:before {
          background-color: #feeb14; }
    .filter_check:last-of-type {
      border-right: 0;
      margin-top: 20px; }
      .filter_check:last-of-type .hero__btnWrap {
        margin-top: 0; }
        @media (min-width: 1220px) {
          .filter_check:last-of-type .hero__btnWrap {
            margin-top: 0px; } }
      .filter_check:last-of-type .filter_title {
        margin-left: -10px; }
        @media (min-width: 1220px) {
          .filter_check:last-of-type .filter_title {
            margin-left: 20px; } }
      .filter_check:last-of-type .select {
        margin-right: 15px; }
        @media (min-width: 1220px) {
          .filter_check:last-of-type .select {
            margin-right: 20px; } }
      @media (min-width: 1220px) {
        .filter_check:last-of-type {
          margin-top: 0; } }
  .filter_title {
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 10px;
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px; }
    .filter_title:last-of-type {
      margin-left: 20px; }
    @media (min-width: 1220px) {
      .filter_title {
        margin-bottom: 0; } }
  .filter_form {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    padding: 0 10px; }
    .filter_form .select {
      padding: 0;
      border: 0;
      display: inline-block;
      vertical-align: middle;
      max-width: 132px;
      padding-right: 75px;
      margin-right: 20px;
      margin-bottom: 10px; }
      @media (min-width: 1220px) {
        .filter_form .select {
          margin-bottom: 0; } }
      .filter_form .select input[type="text"] {
        padding-left: 9px !important;
        text-transform: capitalize; }
      .filter_form .select:not(.icon):before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 4px 0 4px;
        border-color: #000000 transparent transparent transparent;
        position: absolute;
        right: 10px;
        top: 1px;
        bottom: 0;
        margin: auto;
        pointer-events: none;
        transform: scale(0.999); }
      .filter_form .select:before {
        color: #0357A2;
        position: absolute;
        right: 5px;
        top: 9px;
        font-size: 25px; }
    .filter_form .hero__btn.btn {
      transition: opacity 0.25s;
      padding: 11px 29px !important; }
    .filter_form .hero__btn.btn:hover {
      color: #000000;
      opacity: 0.8;
      transition: opacity 0.25s; }
    .filter_form_item {
      background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAiCAYAAACnSgJKAAAACXBIWXMAAAsTAAALEwEAmpwYAADmpGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzggNzkuMTU5ODI0LCAyMDE2LzA5LzE0LTAxOjA5OjAxICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgICAgICAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyI+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCk8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMTctMDMtMjBUMTU6MDU6MTkrMDE6MDA8L3htcDpDcmVhdGVEYXRlPgogICAgICAgICA8eG1wOk1ldGFkYXRhRGF0ZT4yMDE4LTAyLTA4VDE2OjQ5OjUzKzAxOjAwPC94bXA6TWV0YWRhdGFEYXRlPgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxOC0wMi0wOFQxNjo0OTo1MyswMTowMDwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5Db2F0ZWQgRk9HUkEzOSAoSVNPIDEyNjQ3LTI6MjAwNCk8L3Bob3Rvc2hvcDpJQ0NQcm9maWxlPgogICAgICAgICA8cGhvdG9zaG9wOlRleHRMYXllcnM+CiAgICAgICAgICAgIDxyZGY6QmFnPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+bmV3czwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+bmV3czwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5zdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5zdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPmFib3V0IHVzPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5hYm91dCB1czwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5jb250YWN0IHVzPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5jb250YWN0IHVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPm5ld3M8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0Pm5ld3M8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+c2hhZGUgbWVkPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5zaGFkZSBtZWQ8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+YWJvdXQgdXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PmFib3V0IHVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPmNvbnRhY3QgdXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PmNvbnRhY3QgdXM8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+U2VhcmNoPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5TZWFyY2g8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+RVVOQVZGT1IgTUVEIDwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+RVVOQVZGT1IgTUVEIDwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5TT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5vcGVyYXRpb248L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0Pm9wZXJhdGlvbjwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5FVU5BVkZPUiBNRUQgPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5FVU5BVkZPUiBNRUQgPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+U09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPm9wZXJhdGlvbjwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+b3BlcmF0aW9uPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPm5ld3M8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0Pm5ld3M8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+c2hhZGUgbWVkPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5zaGFkZSBtZWQ8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+YWJvdXQgdXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PmFib3V0IHVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPmNvbnRhY3QgdXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PmNvbnRhY3QgdXM8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+SG9tZSAmZ3Q7IE5ld3M8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkhvbWUgJmd0OyBOZXdzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+U0hBREUgTUVEIGZpZnRoIGVkaXRpb24gaW4gUm9tZTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+U0hBREUgTUVEIGZpZnRoIGVkaXRpb24gaW4gUm9tZTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMjgvMTEvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDI4LzExLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+bmV3IHN0b3JpZXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0Pm5ldyBzdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+U2hhcmVkIEF3YXJlbmVzcyBhbmQgRGUtQ29uZmxpY3Rpb24gaW4gdGhlIE1lZGl0ZXJyYW5lYW48L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlNoYXJlZCBBd2FyZW5lc3MgYW5kIERlLUNvbmZsaWN0aW9uIGluIHRoZSBNZWRpdGVycmFuZWFuPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAyMS8xMS8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5QdWJibGljYXRpb24gZGF0ZTogMjEvMTEvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5uZXcgc3RvcmllczwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+bmV3IHN0b3JpZXM8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5JdGFsaWFuIE5hdnkgU2hpcCBaZWZmaXJvIGpvaW5zIE9wLiBTb3BoaWE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0Pkl0YWxpYW4gTmF2eSBTaGlwIFplZmZpcm8gam9pbnMgT3AuIFNvcGhpYTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMDcvMDkvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDA3LzA5LzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+bmV3IHN0b3JpZXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0Pm5ldyBzdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+UHViYmxpY2F0aW9uIGRhdGU6IDAxLzA5LzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlB1YmJsaWNhdGlvbiBkYXRlOiAwMS8wOS8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPm5ldyBzdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5uZXcgc3RvcmllczwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlR3byBtb250aHMgb2YgYWN0aXZpdHkgZm9yIExpdGh1YW5pYW4gQm9hcmRpbmcgVGVhbSBvbiBib2FyZCBvZjwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+VHdvIG1vbnRocyBvZiBhY3Rpdml0eSBmb3IgTGl0aHVhbmlhbiBCb2FyZGluZyBUZWFtIG9uIGJvYXJkIG9mIEZHUyBSSEVJTiAgPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAgMDkvMDgvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6ICAwOS8wOC8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPm5ldyBzdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5uZXcgc3RvcmllczwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT4xPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD4xPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPjI8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PjI8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+MzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+MzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPjE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PjE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+bmV3IHN0b3JpZXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0Pm5ldyBzdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+U0hBREUgTUVEIGZpZnRoIGVkaXRpb24gaW4gUm9tZTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+U0hBREUgTUVEIGZpZnRoIGVkaXRpb24gaW4gUm9tZTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT4yOC8xMS8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD4yOC8xMS8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPm5ldyBzdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5uZXcgc3RvcmllczwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlNoYXJlZCBBd2FyZW5lc3MgYW5kIERlLUNvbmZsaWN0aW9uIGluIHRoZSBNZWRpdGVycmFuZWFuPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5TaGFyZWQgQXdhcmVuZXNzIGFuZCBEZS1Db25mbGljdGlvbiBpbiB0aGUgTWVkaXRlcnJhbmVhbjwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT4xNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD4xNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPm5ldyBzdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5uZXcgc3RvcmllczwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkl0YWxpYW4gTmF2eSBTaGlwIFplZmZpcm8gam9pbnMgT3AuIFNvcGhpYTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+SXRhbGlhbiBOYXZ5IFNoaXAgWmVmZmlybyBqb2lucyBPcC4gU29waGlhPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPjE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PjE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+bmV3IHN0b3JpZXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0Pm5ldyBzdG9yaWVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+MTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+MTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5uZXcgc3RvcmllczwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+bmV3IHN0b3JpZXM8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BIG5ldyBGb3JjZSBDb21tYW5kZXIgYW5kIGEgbmV3IGZsYWdzaGlwIGZvciBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+UHViYmxpY2F0aW9uIGRhdGU6IDE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkEgbmV3IEZvcmNlIENvbW1hbmRlciBhbmQgYSBuZXcgZmxhZ3NoaXAgZm9yIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QSBuZXcgRm9yY2UgQ29tbWFuZGVyIGFuZCBhIG5ldyBmbGFnc2hpcCBmb3IgU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkF1dGhvcjogUHJlc3MgVGVhbSBvZiB0aGUgTWlzc2lvbiBFVU5BVkZPUiBNRUQgT3BlcmF0aW9uIFNPUEhJQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlB1YmJsaWNhdGlvbiBkYXRlOiAxNS8xMi8yMDE3PC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5QdWJibGljYXRpb24gZGF0ZTogMTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5Ud28gbW9udGhzIG9mIGFjdGl2aXR5IGZvciBMaXRodWFuaWFuIEJvYXJkaW5nIFRlYW0gb24gYm9hcmQgb2Y8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlR3byBtb250aHMgb2YgYWN0aXZpdHkgZm9yIExpdGh1YW5pYW4gQm9hcmRpbmcgVGVhbSBvbiBib2FyZCBvZiBGR1MgUkhFSU48L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QXV0aG9yOiBQcmVzcyBUZWFtIG9mIHRoZSBNaXNzaW9uIEVVTkFWRk9SIE1FRCBPcGVyYXRpb24gU09QSElBPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5BdXRob3I6IFByZXNzIFRlYW0gb2YgdGhlIE1pc3Npb24gRVVOQVZGT1IgTUVEIE9wZXJhdGlvbiBTT1BISUE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+MTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+MTUvMTIvMjAxNzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5uZXcgc3RvcmllczwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+bmV3IHN0b3JpZXM8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+VHV0dGUgbGUgZGF0ZTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+VHV0dGUgbGUgZGF0ZTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5maWx0ZXIgYnkgRGF0ZTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+ZmlsdGVyIGJ5IERhdGU8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+VHV0dGUgbGUgY2F0ZWdvcmllPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5UdXR0ZSBsZSBjYXRlZ29yaWU8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+RnJvbTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+RnJvbTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5UdXR0ZSBsZSBjYXRlZ29yaWU8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PlR1dHRlIGxlIGNhdGVnb3JpZTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5UbzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+VG88L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+VHV0dGUgbGUgZGF0ZTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+VHV0dGUgbGUgZGF0ZTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5maWx0ZXIgYnkgQ0FURUdPUklFUzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+ZmlsdGVyIGJ5IENBVEVHT1JJRVM8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+VHV0dGUgbGUgY2F0ZWdvcmllPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5UdXR0ZSBsZSBjYXRlZ29yaWU8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+QWxsIGNhdGVnb3JpZXM8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkFsbCBjYXRlZ29yaWVzPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlR1dHRlIGxlIGNhdGVnb3JpZTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+VHV0dGUgbGUgY2F0ZWdvcmllPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPlRvPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5UbzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5GSUxURVJTPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5GSUxURVJTPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPkNlcmNhIHN1bGxhIGNhcnRpbmE8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PkNlcmNhIHN1bGxhIGNhcnRpbmE8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+Q0VSQ0EgU1VMTEEgQ0FSVElOQTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+Q0VSQ0EgU1VMTEEgQ0FSVElOQTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT5uZXcgc3RvcmllczwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+bmV3IHN0b3JpZXM8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+T3BlcmF0aW9uIFNPUEhJQSB0cmFpbmluZyB2ZXNzZWwgSVRTIFNhbkdpb3JnaW8gaGVhZHMgYmFjayBob21lPC9waG90b3Nob3A6TGF5ZXJOYW1lPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyVGV4dD5PcGVyYXRpb24gU09QSElBIHRyYWluaW5nIHZlc3NlbCBJVFMgU2FuR2lvcmdpbyBoZWFkcyBiYWNrIGhvbWUhPC9waG90b3Nob3A6TGF5ZXJUZXh0PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJOYW1lPjE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllck5hbWU+CiAgICAgICAgICAgICAgICAgIDxwaG90b3Nob3A6TGF5ZXJUZXh0PjE1LzEyLzIwMTc8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+TkVXUzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+TkVXUzwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOkJhZz4KICAgICAgICAgPC9waG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgPHBob3Rvc2hvcDpEb2N1bWVudEFuY2VzdG9ycz4KICAgICAgICAgICAgPHJkZjpCYWc+CiAgICAgICAgICAgICAgIDxyZGY6bGk+MDBENzE0OEU2NkJCN0U4RkFFNkRCOTNBMkUwMEU3RTY8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT4wN0FDQkJDQzVCNTI1MzE2QzVGRUNDREU4M0VBMDA5MTwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPjBDRjhDRDNGMkVGMjJDN0VBOUVBNzVDMzBCQkRENzExPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGk+MjhEMjlCMTZENkMxN0ExOTY1NzE0RUVGQTBDRjdDNDA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT4yRDNDOTgwQzg2QTY3MUM4RThCNzUyNUMyQzFDQjU3NzwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPjJFNjBGNjdCNUNCNUFBMURFRTNBODQ4OEUyMUJFQzdBPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGk+Mzg2MEY0MzM2MjNEODU0ODMzNkU3QjI3MkFGNUQ3NEE8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT40QTFFNDUyRjlDREUxNzJEMjNEODUzNEI3Q0U2REM5NjwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPjU2M0IwOUExOEEzQThCN0QzOTIyRjQ1NTlEOUNEMzJEPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGk+NjM0RDUzQkY0OTdBQ0E0QjNFREM2REY4NDIwMkYyNkM8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT42ODY0RTRGMzZBMDczNkE2MUVBNzQzQUQ0NDIzRkMyMTwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPjZCMzdCNDREMDY3M0E5ODc0NTYzMDE5MTdERDhCMjEyPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGk+ODRBNjYyQjJGRDRBNzBGMTA2MzhFREJCRTdCQTZCQ0U8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT45MkM3RTI2NEM1MzVFN0Y2NjgxOTA4MjIwRjMyQzU3RjwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPkFCRTk3Nzg2NzE3REQ4MDAwQjU1NDE5ODZDMTg3REI5PC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGk+QzA5Q0M3RTBDOUFCNkFDOENENDlGQTdGRUY0NDc2RjY8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT5DMzJFRDExNkVGM0UzODdCMDY4MzY5RDlFRTk5ODc0MzwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPkNEN0VDQUM5MUYwMzdCQjc1QTE0NkM5REI2QTM3NjcxPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGk+RDFGRTBERTM3M0QwQUNFMjUxM0I0NUY5Q0ZEQzMyOTM8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT5ENkFBNEVFMEExMzI3REUwMzU1NjM0RDRFQjQ2RjhFMTwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPkREQkJBRDVBOTIwNkYyNUU5QkY1M0FGRTYyQUM2MUNGPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGk+RkM4QTg5Qjk1QjdGNTE5Njg2NTY5RTIyRkZBMjU1Q0U8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6NGNhYTc0NmQtNDBhOS0xMTdiLWFjYmQtYjc3ZGMzZjU2MmEyPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjY1NTQwYTYwLWYyZmQtMTE3YS1hYTdhLTg1Zjk0MzZkMDEyMjwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpCYWc+CiAgICAgICAgIDwvcGhvdG9zaG9wOkRvY3VtZW50QW5jZXN0b3JzPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjNjOGZlZjg3LTkzNTctNDZhNS04ZmYyLTRmNTExNjU5ODU0NzwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjBlZWYzOTkwLTRkNzYtMTE3Yi05YjE4LWQwNzAwYjI0MDNkODwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjNhMDE0ODVkLTc1NmItNDE2ZS1hZjgwLTQxMmJhYmE2NTdhZjwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDozYTAxNDg1ZC03NTZiLTQxNmUtYWY4MC00MTJiYWJhNjU3YWY8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTctMDMtMjBUMTU6MDU6MTkrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE3IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo3MThiZWFmZi1hYzY3LTQ0YWMtYTgyZS00Njk4ODkzYWU2Njg8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTctMDMtMjBUMTU6MzM6MjErMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE3IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDpkN2M4Y2I1OC02Mzk0LTQzM2EtOTA3OC1mMTVkYThkZGJlMGQ8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTgtMDItMDhUMTY6NDk6NTMrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE3IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y29udmVydGVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpwYXJhbWV0ZXJzPmZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmc8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5kZXJpdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpwYXJhbWV0ZXJzPmNvbnZlcnRlZCBmcm9tIGFwcGxpY2F0aW9uL3ZuZC5hZG9iZS5waG90b3Nob3AgdG8gaW1hZ2UvcG5nPC9zdEV2dDpwYXJhbWV0ZXJzPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDozYzhmZWY4Ny05MzU3LTQ2YTUtOGZmMi00ZjUxMTY1OTg1NDc8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTgtMDItMDhUMTY6NDk6NTMrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE3IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDx4bXBNTTpEZXJpdmVkRnJvbSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgIDxzdFJlZjppbnN0YW5jZUlEPnhtcC5paWQ6ZDdjOGNiNTgtNjM5NC00MzNhLTkwNzgtZjE1ZGE4ZGRiZTBkPC9zdFJlZjppbnN0YW5jZUlEPgogICAgICAgICAgICA8c3RSZWY6ZG9jdW1lbnRJRD5hZG9iZTpkb2NpZDpwaG90b3Nob3A6NThjNzY5NWUtNDBhOS0xMTdiLWFjYmQtYjc3ZGMzZjU2MmEyPC9zdFJlZjpkb2N1bWVudElEPgogICAgICAgICAgICA8c3RSZWY6b3JpZ2luYWxEb2N1bWVudElEPnhtcC5kaWQ6M2EwMTQ4NWQtNzU2Yi00MTZlLWFmODAtNDEyYmFiYTY1N2FmPC9zdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDwveG1wTU06RGVyaXZlZEZyb20+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjY1NTM1PC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWERpbWVuc2lvbj4zMTwvZXhpZjpQaXhlbFhEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zNDwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+vHDSIQAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAA20lEQVR42uzWvQqDMBAH8H9LcUneQFwC8VUU2q046BO0oG+ixM2CfYz2hcQ5o4MErnOhtCi1Qrkbc5f7kQ9CNn3XkR8E+HWM44gtVgrP89bDATDOOOOMM75M7KYUn88n3O+3j3X7/QFNc/nuysuygtbh2xqtQ5Rl9f1tF0Kgba+QUr7MSynRtlcIIZY5c6UUjKlf5oypoZRa9sJFUYw8L57G8rxAFMXTGvVdR3PCOUdZllIQ+JRlKTnnJveYjRMRWWspSY5krZ01f7PWB5KfV8YZZ5zx/8OHYcBjAHKBEj66FQhlAAAAAElFTkSuQmCC);
      background-repeat: no-repeat;
      background-position: right;
      overflow: hidden;
      cursor: pointer;
      margin-left: 10px;
      display: inline-block;
      vertical-align: middle;
      width: 130px;
      padding: 10px;
      font-size: 14px;
      font-size: 0.875rem;
      height: 40px;
      padding-right: 35px;
      -webkit-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      margin-right: 20px; }
      .filter_form_itemTitle {
        position: relative;
        vertical-align: middle;
        font-size: 16px;
        font-size: 1rem;
        color: #ffffff;
        text-transform: capitalize;
        margin: 0 14px;
        display: inline-block;
        margin-bottom: 10px; }
        @media (min-width: 1220px) {
          .filter_form_itemTitle {
            margin: 0 15px;
            margin-bottom: 0; } }
        .filter_form_itemTitle:before {
          position: absolute;
          right: -15px;
          top: 2px;
          color: #feeb14;
          font-size: 30px;
          font-size: 1.875rem; }
  .filter .hero__btnWrap {
    display: inline-block;
    vertical-align: middle;
    margin-top: 10px; }
    .filter .hero__btnWrap .hero__btn {
      margin-top: 0; }
    .filter .hero__btnWrap .hero__btn.btn--medium {
      padding: 9px 40px; }
    .filter .hero__btnWrap .hero__btn.btn {
      border-radius: 0 !important;
      -webkit-appearance: none;
      font-weight: bold;
      box-shadow: none;
      background-color: #fff021;
      color: #000; }
      .filter .hero__btnWrap .hero__btn.btn:before {
        display: none; }
      .filter .hero__btnWrap .hero__btn.btn:focus {
        outline: none; }

.mediaGallery {
  margin: 0 -10px;
  padding: 0 10px; }
  @media (min-width: 1220px) {
    .mediaGallery {
      padding: 0; } }
  .mediaGallery .item {
    float: left;
    width: 16.6666666667%;
    padding-right: 6px;
    padding-left: 6px;
    float: left;
    padding: 0 10px; }
    .mediaGallery .item .widget__infoWrap {
      background-color: #1c345a;
      padding-left: 20px;
      padding-right: 20px;
      height: 100%; }
      .mediaGallery .item .widget__infoWrap .widget__info {
        position: relative;
        top: 50%;
        transform: translateY(-50%); }
        @media (max-width: 980px) {
          .mediaGallery .item .widget__infoWrap .widget__info {
            transform: none;
            top: 0; } }
    .mediaGallery .item .widget__infoHead p {
      color: #ffffff;
      padding: 0;
      font-size: 17px;
      font-size: 1.0625rem;
      text-transform: none;
      font-weight: normal; }
      .mediaGallery .item .widget__infoHead p.widget__infoHeadTitle {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 30px;
        font-size: 1.875rem;
        margin-bottom: 10px; }
    .mediaGallery .item .widget__infoContact .widget__infoContactTel {
      color: #ffffff;
      font-size: 16px;
      font-size: 1rem; }
    .mediaGallery .item .hero__btnWrap {
      margin-top: 20px; }
      .mediaGallery .item .hero__btnWrap .btn--medium.icon {
        padding-right: 20px; }
    .mediaGallery .item .hero__btn.btn {
      font-weight: bold;
      box-shadow: none;
      border-radius: 0;
      color: #000000;
      background-color: #feeb14;
      border: 1px solid #ffffff;
      font-size: 16px;
      font-size: 1rem; }
      .mediaGallery .item .hero__btn.btn:before {
        display: none; }
  .mediaGallery:after {
    content: '';
    display: block;
    clear: both; }
  .mediaGallery_img {
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    bottom: 0;
    display: block;
    margin: auto;
    max-height: 100%;
    position: absolute; }
  .mediaGallery_item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height: 0;
    padding-bottom: 56.82%; }
    .mediaGallery_item:before {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      color: #ffffff;
      z-index: 2;
      font-size: 50px;
      font-size: 3.125rem; }
    .mediaGallery_item:after {
      content: '';
      background-color: rgba(0, 0, 0, 0.6);
      transition: background-color 0.25s;
      position: absolute;
      z-index: 0;
      width: 100%;
      display: block;
      height: 100%;
      top: 0;
      left: 0; }
    .mediaGallery_itemWrap {
      float: left;
      width: 25%;
      padding-right: 6px;
      padding-left: 6px;
      margin-bottom: 10px; }
      .mediaGallery_itemWrap-full {
        float: none;
        width: 100%;
        display: block;
        padding: 0; }
        .mediaGallery_itemWrap-full .mediaGallery_item {
          min-height: 560px;
          padding-bottom: 0; }
          .mediaGallery_itemWrap-full .mediaGallery_item:before {
            font-size: 80px;
            font-size: 5rem; }
          .mediaGallery_itemWrap-full .mediaGallery_item .mediaGallery_content {
            text-align: center;
            width: 100%;
            zoom: 1;
            padding: 30px; }
            .mediaGallery_itemWrap-full .mediaGallery_item .mediaGallery_content:after {
              display: block;
              visibility: hidden;
              height: 0;
              clear: both;
              content: "."; }
            .mediaGallery_itemWrap-full .mediaGallery_item .mediaGallery_content p {
              text-align: left;
              display: inline-block;
              vertical-align: middle;
              font-size: 30px;
              font-size: 1.875rem; }
            .mediaGallery_itemWrap-full .mediaGallery_item .mediaGallery_content .mediaGallery_label {
              background-color: #2b2a2a;
              display: inline-block;
              vertical-align: middle;
              border-radius: 10px; }
              .mediaGallery_itemWrap-full .mediaGallery_item .mediaGallery_content .mediaGallery_label span {
                font-size: 20px;
                font-size: 1.25rem;
                float: right; }
      .mediaGallery_itemWrap:hover .mediaGallery_item:after {
        background-color: rgba(0, 0, 0, 0.5);
        transition: background-color 0.25s; }
  .mediaGallery_content {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    font-size: 0; }
    .mediaGallery_content p {
      color: #ffffff;
      text-transform: uppercase;
      line-height: 1.25;
      display: inline-block;
      width: 80%;
      vertical-align: middle;
      padding-right: 10px;
      font-size: 14px;
      font-size: 0.875rem;
      padding: 20px; }
      @media (min-width: 1220px) {
        .mediaGallery_content p {
          font-size: 18px;
          font-size: 1.125rem; } }
    .mediaGallery_content span {
      color: #ffffff;
      font-size: 14px;
      font-size: 0.875rem;
      padding: 8px 10px; }
      @media (min-width: 1220px) {
        .mediaGallery_content span {
          font-size: 18px;
          font-size: 1.125rem;
          padding: 8px 16px; } }
  .mediaGallery_label {
    background-color: #2b2a2a;
    display: inline-block;
    vertical-align: middle;
    border-radius: 10px;
    padding: 2px 0; }

.mediaGallery .mediaGallery_itemWrap {
  display: block; }

.photoGallery {
  display: block; }

.news {
  zoom: 1;
  margin-top: 27px; }
  .news:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .news__img {
    display: block; }
  .news_item {
    float: left;
    padding: 0 10px;
    margin-bottom: 20px;
    padding-bottom: 50px;
    width: 25%; }
    .page__contentMediaTax .news_item {
      padding-bottom: 0; }
    .page--shadeMed.news_item {
      padding: 0px 8px; }
    .news--shadeMed .news_item {
      padding: 0px 8px; }
    .news_item a {
      display: block; }
    .news_item-alt:hover .news_item_imgWrap {
      opacity: 0.8;
      transition: opacity 0.25s; }
    .news_item_img {
      width: auto;
      height: auto;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      margin: auto;
      max-height: 100%;
      visibility: hidden; }
      .news_item_imgWrap {
        height: 0;
        position: relative;
        padding-bottom: 56.42%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; }
    .news_item_date {
      color: #d6c111;
      font-size: 15px;
      font-size: 0.9375rem;
      margin: 10px 0;
      display: block; }
    .news_item_title {
      color: #00327B;
      font-weight: bold;
      margin-bottom: 20px;
      line-height: 1.1;
      font-size: 16px;
      font-size: 1rem;
      text-transform: uppercase;
      padding: 10px 0px; }
      .news--shadeMed .news_item_title {
        padding: 10px 20px;
        text-transform: initial; }
    .news_item_author {
      display: block;
      color: #000000;
      text-transform: capitalize;
      font-size: 14px;
      font-size: 0.875rem; }
      .news_item_author strong {
        color: #185593; }
    .news_item_button {
      display: inline-block;
      background-color: #e8e8e8;
      color: #185593;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 15px;
      font-size: 0.9375rem;
      padding: 7px; }
      .news_item_buttonWrap {
        margin: 20px 0;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 0 10px; }
    .search-results .page__contentContainer .news .news_item {
      width: 100%; }
  .search-results .page__contentContainer .news {
    float: left;
    width: 50%;
    padding-right: 10px; }
  .search-no-results .page__contentContainer .news {
    float: left;
    width: 50%;
    padding-right: 10px; }
  .news .widget__attachmentsListItemLink {
    display: block;
    box-shadow: 0 1px 0 0 #b4b3b3, 0 2px 0 0 #ffffff;
    padding: 20px 5px; }
    .news .widget__attachmentsListItemLink span {
      color: #185593;
      font-weight: bold;
      font-size: 16px;
      font-size: 1rem;
      display: inline-block;
      vertical-align: middle;
      position: relative;
      padding-right: 20px;
      padding-left: 10px; }
      .news .widget__attachmentsListItemLink span:before {
        display: none; }

.profile {
  zoom: 1;
  padding: 0 10px; }
  .profile:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .profile_title {
    font-weight: bold;
    text-transform: capitalize;
    display: inline-block;
    vertical-align: top;
    margin: 0px 10px;
    padding: 0;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.25;
    font-size: 46px;
    font-size: 2.875rem; }
  .profile_position {
    display: block;
    font-weight: normal;
    text-transform: none;
    padding-bottom: 10px;
    font-size: 35px;
    font-size: 2.1875rem; }
    .profile_position strong {
      margin-left: 10px;
      font-weight: bold; }
  .profile_img {
    border-radius: 100%; }
    .profile_imgWrap {
      float: left;
      display: inline-block;
      vertical-align: top;
      width: 20%;
      padding-right: 10px; }
  .profile_content {
    float: left;
    padding-left: 10px;
    width: 70%; }
    @media (min-width: 1220px) {
      .profile_content {
        width: 78%; } }
    .profile_content p {
      padding: 10px 0;
      margin: 0 !important;
      margin: 0; }
      .profile_content p:first-of-type {
        margin: 0;
        padding: 0; }

.secondaryMenu {
  position: relative;
  padding: 20px 0px;
  zoom: 1; }
  .secondaryMenu:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .secondaryMenu--assets {
    padding-top: 0; }
  .secondaryMenu-alt {
    position: relative;
    border-bottom: 0; }
    .secondaryMenu-alt .secondaryMenu_title {
      display: block;
      font-weight: bold;
      font-family: 'titillium_webblack', 'Titillium', Arial, Helvetica, sans-serif;
      font-size: 50px;
      width: 55%;
      font-size: 30px;
      font-size: 1.875rem; }
      @media (min-width: 1220px) {
        .secondaryMenu-alt .secondaryMenu_title {
          font-size: 35px;
          font-size: 2.1875rem; } }
    .secondaryMenu-alt .secondaryMenu_list {
      right: 10px;
      margin-bottom: 10px;
      top: auto;
      bottom: 8px;
      position: absolute; }
      @media (min-width: 1220px) {
        .secondaryMenu-alt .secondaryMenu_list {
          right: 20px; } }
      .secondaryMenu-alt .secondaryMenu_list .secondaryMenu_list_item:hover {
        border-bottom: none; }
  .secondaryMenu_title {
    font-weight: bold;
    margin-right: 22px;
    font-size: 50px;
    font-size: 3.125rem;
    text-transform: uppercase;
    display: block;
    position: relative;
    font-weight: bold;
    font-family: 'titillium_webblack', 'Titillium', Arial, Helvetica, sans-serif;
    width: 100%; }
    .secondaryMenu_title span {
      font-size: 2.2rem;
      font-family: 'Titillium'; }
    .secondaryMenu_title.js-toggleClass:before {
      display: none; }
  .secondaryMenu_list {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 4px; }
    .wrap .secondaryMenu_list {
      padding: 0px 10px; }
    .secondaryMenu_list-alt {
      width: 72%;
      text-align: right; }
    .secondaryMenu_list_item {
      margin: 0 10px;
      display: inline-block;
      vertical-align: middle; }
      .secondaryMenu_list_item:first-of-type {
        margin-left: 0; }
      .secondaryMenu_list_item:last-of-type {
        margin-right: 0px; }
      .secondaryMenu_list_item-alt {
        padding-right: 10px; }
        @media (min-width: 1220px) {
          .secondaryMenu_list_item-alt {
            padding-right: 15px; } }
        .secondaryMenu_list_item-alt:last-of-type {
          border-right: 0;
          padding-right: 0; }
        .secondaryMenu_list_item-alt .secondaryMenu_list_link {
          background-color: #ebeaea;
          padding: 7px 9px;
          display: inline-block;
          text-transform: uppercase; }
    .secondaryMenu_list_link {
      color: #124885;
      transition: color 0.25s;
      text-transform: capitalize;
      border-bottom: 1px solid transparent;
      display: block; }
      .secondaryMenu_list_link:hover {
        color: #000000;
        border-bottom-color: #d6c111; }
      .secondaryMenu_list_link h3 {
        font-weight: bold; }

.shadeMenu {
  background-color: rgba(28, 52, 90, 0.9);
  position: absolute;
  padding-top: 10px;
  text-align: center;
  z-index: 7;
  top: 0;
  left: 0;
  width: 100%; }
  .shadeMenu_title {
    display: block;
    text-align: left;
    text-transform: uppercase;
    color: #feeb14;
    font-size: 35px;
    font-size: 2.1875rem; }
    .shadeMenu_title strong {
      color: #ffffff;
      text-transform: none;
      margin-left: 30px;
      font-size: 25px;
      font-size: 1.5625rem; }
  .shadeMenu_list {
    display: block;
    padding: 20px 0; }
    .shadeMenu_listItem {
      padding: 0 30px;
      display: inline-block;
      text-transform: capitalize;
      border-left: 1px solid #008ac5; }
      .shadeMenu_listItem:first-of-type {
        padding-left: 0;
        border-left: none; }
      .shadeMenu_listItem:last-of-type {
        border-left: none; }
      .shadeMenu_listItem-alt {
        border-right: none;
        padding: 7px 12px;
        background-color: #feeb14;
        transition: opacity 0.25s; }
        .shadeMenu_listItem-alt:hover {
          opacity: 0.8;
          transition: opacity 0.25s; }
        .shadeMenu_listItem-alt .shadeMenu_listItem_link {
          color: #000000;
          display: block;
          text-transform: uppercase; }
          .shadeMenu_listItem-alt .shadeMenu_listItem_link h3 {
            font-weight: bold; }
      .shadeMenu_listItem_link {
        font-weight: bold;
        color: #ffffff;
        font-weight: bold;
        font-size: 17px;
        font-size: 1.0625rem; }
        .shadeMenu_listItem_link h3 {
          font-weight: bold; }

.sidebar_related {
  padding: 0 10px; }
  @media (min-width: 1220px) {
    .sidebar_related {
      padding-left: 0; } }
  .sidebar_related_item {
    margin-bottom: 30px;
    display: block; }
    .sidebar_related_item:hover .sidebar_related_item_img {
      opacity: 0.8;
      transition: opacity 0.25s; }
    .sidebar_related_item_img {
      width: auto;
      height: auto;
      transition: opacity 0.25s;
      position: absolute;
      visibility: hidden;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      margin: auto;
      max-height: 100%; }
      .sidebar_related_item_imgWrap {
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 56.94%; }
    .sidebar_related_item_date {
      font-size: 16px;
      font-size: 1rem;
      display: block;
      margin: 10px 0;
      color: #000000; }
    .sidebar_related_item_title {
      font-size: 25px;
      font-size: 1.5625rem;
      font-weight: bold;
      padding-right: 20px;
      color: #000000; }

.sidebarWrap {
  padding-right: 10px !important; }
  @media (min-width: 1220px) {
    .sidebarWrap {
      padding-right: 0 !important; } }
  .search-results .page__contentContainer .sidebarWrap .sidebar .page__title {
    margin-top: 0 !important; }
  .sidebarWrap .sidebar .page__title {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 100px; }
  @media (min-width: 1220px) {
    .sidebarWrap .sidebar .banner__event {
      padding: 0; } }
  .sidebarWrap .sidebar .banner__event.banner__event-sidebar .mediaGallery_item:before {
    font-size: 30px;
    font-size: 1.875rem; }
    @media (min-width: 1220px) {
      .sidebarWrap .sidebar .banner__event.banner__event-sidebar .mediaGallery_item:before {
        font-size: 60px;
        font-size: 3.75rem; } }
  .sidebarWrap .sidebar .banner__event.banner__event-sidebar .mediaGallery_itemWrap {
    float: none;
    margin-bottom: 20px;
    width: 100%; }
    .sidebarWrap .sidebar .banner__event.banner__event-sidebar .mediaGallery_itemWrap .mediaGallery_content span {
      padding: 4px 6px;
      font-size: 13px;
      font-size: 0.8125rem; }
      @media (min-width: 1220px) {
        .sidebarWrap .sidebar .banner__event.banner__event-sidebar .mediaGallery_itemWrap .mediaGallery_content span {
          padding: 4px 9px;
          font-size: 15px;
          font-size: 0.9375rem; } }
    .sidebarWrap .sidebar .banner__event.banner__event-sidebar .mediaGallery_itemWrap .mediaGallery_content p {
      width: 85%;
      font-size: 10px;
      font-size: 0.625rem;
      padding: 10px; }
      @media (min-width: 1220px) {
        .sidebarWrap .sidebar .banner__event.banner__event-sidebar .mediaGallery_itemWrap .mediaGallery_content p {
          font-size: 14px;
          font-size: 0.875rem; } }
  .sidebarWrap .sidebar .banner__event.banner__event-sidebar .item {
    float: none;
    width: 100%;
    padding: 0; }
    .sidebarWrap .sidebar .banner__event.banner__event-sidebar .item .widget__infoWrap {
      background-color: transparent;
      border: none;
      padding: 0 10px; }
    .sidebarWrap .sidebar .banner__event.banner__event-sidebar .item .widget__info {
      background-color: #1c345a;
      border: 1px solid #cdcccc;
      padding: 20px; }
      .sidebarWrap .sidebar .banner__event.banner__event-sidebar .item .widget__info .widget__infoHead p {
        font-size: 30px;
        font-size: 1.875rem; }
      .sidebarWrap .sidebar .banner__event.banner__event-sidebar .item .widget__info .widget__infoContact .widget__infoContactTel {
        font-size: 15px;
        font-size: 0.9375rem; }
  .sidebarWrap .sidebar .banner__event.banner__event-sidebar .mediaGallery .item .widget__infoWrap .widget__info {
    transform: none; }
  .sidebarWrap .sidebar .mediaGallery {
    padding: 0; }
  .sidebarWrap .widget__infoWrap {
    font-size: 0;
    margin-bottom: 10px;
    text-align: center; }
    .sidebarWrap .widget__infoWrap.widget__infoWrap-alt .widget__info .hero__btnWrap .hero__btn {
      border: 1px solid #008ac5; }
    .sidebarWrap .widget__infoWrap:before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      height: 100%;
      width: 1px;
      margin-left: -1px; }
    .sidebarWrap .widget__infoWrap .widget__info {
      text-align: center;
      font-size: 16px;
      font-size: 1rem;
      display: inline-block;
      vertical-align: middle; }
      .sidebarWrap .widget__infoWrap .widget__info strong {
        font-weight: bold;
        font-size: 35px;
        font-size: 2.1875rem; }
      .sidebarWrap .widget__infoWrap .widget__info .widget__infoImgWrap {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
        border-radius: 50%;
        -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.45);
        -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.45);
        box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.45); }
        .sidebarWrap .widget__infoWrap .widget__info .widget__infoImgWrap img {
          visibility: hidden;
          opacity: 0;
          padding-bottom: 100%;
          height: 0; }
      .sidebarWrap .widget__infoWrap .widget__info .widget__infoHead p {
        font-weight: normal; }
      .sidebarWrap .widget__infoWrap .widget__info .widget__infoHeadTitle {
        font-weight: bold;
        font-size: 30px !important;
        margin: 0 !important;
        padding: 10px 0 !important; }
      .sidebarWrap .widget__infoWrap .widget__info .hero__btnWrap .hero__btn {
        border: 1px solid #d2d2d2;
        border-radius: 0;
        font-weight: bold;
        box-shadow: none !important; }
  .sidebarWrap .item:last-of-type .widget__infoWrap {
    margin-bottom: 0; }

.text_block {
  margin: 20px 0;
  padding: 0 10px; }
  .text_block .typography {
    margin: 0; }
  .text_block_title {
    font-weight: bold;
    font-size: 35px;
    font-size: 2.1875rem; }

.units {
  zoom: 1;
  margin-right: -10px;
  margin-left: -10px; }
  .units:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .units_item {
    float: left;
    padding: 0 10px;
    margin: 20px 0;
    width: 25%; }
    .units_item:hover .units_imgWrap {
      opacity: 0.8;
      transition: opacity 0.25s; }
    .units_itemWrap {
      display: block; }
    .units_item_title {
      margin-top: 10px; }
      .units_item_title_link {
        display: block;
        color: #185593;
        text-transform: uppercase;
        font-size: 20px;
        font-size: 1.25rem; }
        .units_item_title_link:hover {
          color: #185593; }
  .units_img {
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    visibility: hidden;
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    margin: auto;
    max-height: 100%; }
    .units_imgWrap {
      height: 0;
      background: no-repeat center center;
      background-size: cover;
      position: relative;
      transition: opacity 0.25s;
      padding-bottom: 56.78%; }
      .bg-dark .assetsWrap .widget__infoWrap .widget__infoHead .units_imgWrap {
        margin-bottom: 40px; }
  .units_flag {
    position: absolute;
    padding: 5px;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.6); }
    .units_flag img {
      margin-bottom: -4px; }

.venue {
  padding: 0 10px; }
  .minisite__contentWrap .venue {
    padding: 0; }
  .venue_panel {
    background-color: #f1f1f1;
    padding: 20px; }
    .venue_panelTitle {
      font-size: 18px;
      font-size: 1.125rem;
      display: block;
      margin-bottom: 10px; }
      .venue_panelTitle-alt {
        font-size: 18px;
        font-size: 1.125rem; }
    .venue_panelSub {
      font-size: 16px;
      font-size: 1rem; }
    .venue_panelLocation {
      zoom: 1;
      margin-top: 10px; }
      .venue_panelLocation:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: "."; }
      .venue_panelLocation_info {
        position: relative;
        float: left;
        width: 75%; }
        .venue_panelLocation_info span {
          text-transform: uppercase;
          font-size: 20px;
          font-size: 1.25rem; }
        .venue_panelLocation_info h2 {
          font-size: 16px;
          font-size: 1rem; }
        .venue_panelLocation_info address {
          font-style: normal;
          font-size: 16px;
          font-size: 1rem; }
    .venue_panel_email {
      background-color: #fff;
      padding: 10px;
      text-align: center;
      margin: 20px 0;
      font-size: 16px;
      font-size: 1rem; }
      .venue_panel_email span {
        font-size: 20px;
        font-size: 1.25rem;
        display: block; }
      .venue_panel_email a {
        font-weight: bold;
        font-size: 20px;
        font-size: 1.25rem;
        color: #185593;
        transition: color 0.25s; }
        .venue_panel_email a:hover {
          transition: color 0.25s;
          color: #008ac5; }
    .venue_panel_imgWrap {
      float: left;
      width: 18%; }

.slider .owl-carousel {
  padding-left: calc(8.3333333333% + 10px);
  padding-right: calc(8.3333333333% + 10px); }
  .typography .slider .owl-carousel {
    padding-left: 0;
    padding-right: 0; }
  .slider .owl-carousel .owl-nav .owl-prev, .slider .owl-carousel .owl-nav .owl-next {
    border: none;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    height: 30px !important;
    width: 30px !important; }
    .slider .owl-carousel .owl-nav .owl-prev span:before, .slider .owl-carousel .owl-nav .owl-next span:before {
      font-size: 16px;
      font-size: 1rem;
      padding: 7px 0 !important; }
  .slider .owl-carousel .owl-nav .owl-prev {
    left: calc(8.3333333333% + 30px);
    top: 0 !important; }
    .typography .slider .owl-carousel .owl-nav .owl-prev {
      left: 20px; }
  .slider .owl-carousel .owl-nav .owl-next {
    right: calc(8.3333333333% + 30px);
    top: 0 !important; }
    .typography .slider .owl-carousel .owl-nav .owl-next {
      right: 20px; }
  .slider .owl-carousel .owl-dots {
    bottom: 30px;
    position: absolute;
    left: calc(50% - 50px);
    z-index: 1; }
  .slider .owl-carousel#sync2 .item {
    padding: 10px; }

.typography .sliderWrap {
  margin-top: 40px !important; }

.slider__itemCaption, .typography .slider__itemCaption {
  padding: 20px 80px 20px 20px;
  font-weight: bold;
  width: 100%;
  background-color: #ffffff; }

.slider__count {
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  border-radius: 10px;
  padding: 7px 15px;
  margin-top: 18px; }
  .slider__count--current {
    content: ''; }
  .slider__count--total {
    font-weight: normal; }
    strong.slider__count--total {
      color: #ffffff;
      font-weight: normal; }
  .slider__count em {
    font-style: normal;
    padding: 0 1px; }
  .slider__countWrap {
    font-size: 14px;
    font-size: 0.875rem;
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 60px; }

.dettaglio_content .sliderWrap {
  background: #f8f8f8 !important;
  padding-top: 20px; }
  .dettaglio_content .sliderWrap .owl-stage .owl-item .slider__itemCaption {
    background-color: #f8f8f8;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.35; }

.page__contentContainer .sliderWrap {
  background: #f8f8f8 !important;
  padding-top: 20px; }
  .page__contentContainer .sliderWrap .owl-stage .owl-item .slider__itemCaption {
    background-color: #f8f8f8;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.35; }

.dettaglio_content .sliderWrap + .sliderWrap {
  margin-top: 0 !important;
  background: transparent;
  padding: 0; }
  .dettaglio_content .sliderWrap + .sliderWrap .slider {
    margin-top: 0 !important; }

.sliderWrap + .sliderWrap .slider {
  margin-top: 30px; }
  .sliderWrap + .sliderWrap .slider .owl-carousel {
    padding-left: 8.3333333333%;
    padding-right: 8.3333333333%; }
    .typography .sliderWrap + .sliderWrap .slider .owl-carousel {
      padding-left: 0;
      padding-right: 0; }
    .sliderWrap + .sliderWrap .slider .owl-carousel:not(.slider--carousel) .slider__item img {
      visibility: hidden !important; }
  .sliderWrap + .sliderWrap .slider .slider__item {
    position: relative;
    cursor: pointer; }
  .sliderWrap + .sliderWrap .slider .owl-stage {
    margin: 0 auto; }
    .sliderWrap + .sliderWrap .slider .owl-stage .owl-item.current .slider__item:after {
      content: '';
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      z-index: 2;
      left: 0;
      top: 0; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge; }

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s; }

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s; }

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms; }

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms; }

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s; }

@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important; } }

.share__list:not(.share__list--expanded) .icon {
  font: 0/0 a;
  text-shadow: none;
  color: transparent; }
  .share__list:not(.share__list--expanded) .icon:hover[data-icon="facebook"]:before, .share__list:not(.share__list--expanded) .icon:hover[data-icon="facebook"] .iconGenerated, .share__list:not(.share__list--expanded) .icon:focus[data-icon="facebook"]:before, .share__list:not(.share__list--expanded) .icon:focus[data-icon="facebook"] .iconGenerated {
    color: #3b5998; }
  .share__list:not(.share__list--expanded) .icon:hover[data-icon="twitter"]:before, .share__list:not(.share__list--expanded) .icon:hover[data-icon="twitter"] .iconGenerated, .share__list:not(.share__list--expanded) .icon:focus[data-icon="twitter"]:before, .share__list:not(.share__list--expanded) .icon:focus[data-icon="twitter"] .iconGenerated {
    color: #59aeee; }
  .share__list:not(.share__list--expanded) .icon:hover[data-icon="gplus"]:before, .share__list:not(.share__list--expanded) .icon:hover[data-icon="gplus"] .iconGenerated, .share__list:not(.share__list--expanded) .icon:focus[data-icon="gplus"]:before, .share__list:not(.share__list--expanded) .icon:focus[data-icon="gplus"] .iconGenerated {
    color: #dd4b39; }

.share__list .icon {
  margin-left: 15px;
  margin-right: 15px;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: top;
  min-height: inherit; }
  .share__list .icon:before, .share__list .icon .iconGenerated {
    font-size: 20px;
    color: #b4b3b3; }

.share__list--expanded {
  font-size: 0;
  padding: 10px 0; }
  .share__list--expanded .icon {
    width: auto;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    padding: 8px 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: #2b2a2a;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem; }
    .share__list--expanded .icon:first-of-type {
      margin-left: 0; }
    .share__list--expanded .icon:last-of-type {
      margin-right: 0; }
    .share__list--expanded .icon:not(.plain) {
      background-color: #f9f9f9;
      border: 1px solid #d2d2d2; }
      .share__list--expanded .icon:not(.plain):hover, .share__list--expanded .icon:not(.plain):focus {
        background-color: white; }
    .share__list--expanded .icon:before, .share__list--expanded .icon .iconGenerated {
      width: 20px;
      height: 20px;
      color: #e8e8e8;
      display: inline-block;
      vertical-align: middle;
      font-size: 19px; }
    .share__list--expanded .icon:hover:before, .share__list--expanded .icon:focus:before {
      color: #c2c2c2; }
    .share__list--expanded .icon span:not(.hidden):not(.iconGenerated) {
      display: inline-block;
      vertical-align: middle;
      margin-left: 20px;
      margin-right: 10px; }
      .share__list--expanded .icon span:not(.hidden):not(.iconGenerated):empty {
        display: none; }
    .share__list--expanded .icon[data-icon="facebook"]:before, .share__list--expanded .icon[data-icon="facebook"] .iconGenerated {
      color: #3b5998; }
    .share__list--expanded .icon[data-icon="twitter"]:before, .share__list--expanded .icon[data-icon="twitter"] .iconGenerated {
      color: #59aeee; }
    .share__list--expanded .icon[data-icon="gplus"]:before, .share__list--expanded .icon[data-icon="gplus"] .iconGenerated {
      color: #dd4b39; }

.share__tooltipWrap {
  position: absolute;
  bottom: 20px;
  right: 20px; }

.share__tooltip:after {
  font-weight: normal; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.share__tooltip.is-loading .icon:before, .share__tooltip.is-loading .icon .iconGenerated {
  content: 'loading';
  animation: spin infinite 1s; }

.share__tooltip.is-error .icon:before, .share__tooltip.is-error .icon .iconGenerated {
  content: 'warning';
  color: #e30613; }

.share__tooltip:not(.is-loading) input:checked ~ .share__tooltipButton:before, .share__tooltip:not(.is-loading) input:checked ~ .share__tooltipButton .iconGenerated {
  color: #2b2a2a; }

.share__tooltip:not(.is-loading) input:checked ~ .share--popup:after {
  background-color: #b4b3b3;
  transition-delay: 0.8s; }

.share__tooltip:not(.is-loading) input:checked ~ .share--popup:before {
  background-color: #f9f9f9;
  border-color: #d2d2d2;
  transition-delay: 0.8s; }

.share__tooltip:not(.is-loading) input:checked ~ .share--popup .icon {
  pointer-events: all; }
  .share__tooltip:not(.is-loading) input:checked ~ .share--popup .icon[data-icon="gplus"] {
    right: 38px;
    opacity: 1;
    transition-delay: 0.2s; }
  .share__tooltip:not(.is-loading) input:checked ~ .share--popup .icon[data-icon="twitter"] {
    right: 76px;
    opacity: 1;
    transition-delay: 0.4s; }
  .share__tooltip:not(.is-loading) input:checked ~ .share--popup .icon[data-icon="facebook"] {
    right: 114px;
    opacity: 1;
    transition-delay: 0.6s; }

.share__tooltip input {
  display: none; }

.share__tooltipButton {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  cursor: pointer;
  display: block;
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 3; }
  .share__tooltipButton:before {
    font-size: 22px;
    color: #565757;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 90%;
    transform-origin: center;
    display: block;
    width: 21px; }
  .share__tooltipButton:hover:before, .share__tooltipButton:focus:before {
    color: #2b2a2a; }

.share--popup {
  position: relative;
  top: -16px; }
  .share--popup:before {
    content: '';
    display: block;
    position: absolute;
    width: 158px;
    height: 40px;
    background-color: transparent;
    border: 1px solid transparent;
    z-index: 2;
    transition: background-color 0.25s, border-color 0.25s;
    pointer-events: none;
    right: -5px;
    top: -15px; }
  .share--popup:after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    height: 40px;
    width: 1px;
    background-color: transparent;
    z-index: 2;
    transition: background-color 0.25s;
    pointer-events: none;
    top: -15px; }
  .share--popup .icon {
    z-index: 3;
    display: block;
    margin: 0;
    width: 38px;
    height: 38px;
    text-align: center;
    position: absolute;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, right 0.25s, background 0.25s;
    padding: 9px;
    top: -14px; }
    .share--popup .icon:hover, .share--popup .icon:focus {
      background-color: #ebeaea; }
    .share--popup .icon[data-icon="facebook"]:before, .share--popup .icon[data-icon="facebook"] .iconGenerated {
      color: #3b5998; }
    .share--popup .icon[data-icon="twitter"]:before, .share--popup .icon[data-icon="twitter"] .iconGenerated {
      color: #59aeee; }
    .share--popup .icon[data-icon="gplus"]:before, .share--popup .icon[data-icon="gplus"] .iconGenerated {
      color: #dd4b39; }

.wrapContainer {
  zoom: 1;
  margin-left: -20px;
  margin-right: -20px; }
  .wrapContainer:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }

section[role="main"] {
  position: relative; }

.testata {
  text-align: left;
  position: relative; }
  .testata:after {
    content: '';
    position: absolute;
    height: 2px;
    bottom: 0;
    z-index: 2;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.22); }
  .testata .page__titleWrap {
    margin-bottom: 0; }
    .testata .page__titleWrap .page__title {
      font-weight: bold;
      text-transform: uppercase; }
  .testata__top {
    padding: 5px 20px;
    text-align: right;
    position: relative;
    z-index: 4; }
    @media (min-width: 1220px) {
      .testata__top {
        padding-bottom: 20px; } }
    .testata__top .wrap {
      overflow: visible; }
  .testata__bottom {
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden; }
    .navSub-open .testata__bottom, .js-toggleActive .testata__bottom {
      overflow: visible; }
    .testata__bottom .wrap {
      overflow: visible; }
  .testata__logo {
    display: block;
    text-align: left;
    font-size: 0;
    position: relative;
    z-index: 1; }
    .testata__logo:after {
      content: '';
      display: block;
      clear: both; }
    @media (min-width: 1220px) {
      .testata__logo {
        padding: 10px;
        margin-bottom: -80px;
        left: -20px; } }
    .testata__logoWrap {
      position: relative;
      float: left;
      padding-left: 6px;
      width: 36%;
      top: 15px;
      left: -40px; }
      @media (min-width: 1220px) {
        .testata__logoWrap {
          width: 33.3333333333%;
          top: 0;
          left: 0; } }
      .testata__logoWrap:before {
        content: '';
        display: block;
        height: 60%;
        width: 1px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        background-color: #d2d2d2;
        opacity: 0; }
      @media (min-width: 1220px) {
        .testata__logoWrap {
          padding-right: 8.3333333333%; } }
    .testata__logoImg {
      width: 142px; }
      .testata__logoImgWrap {
        float: left;
        width: 30%;
        position: relative;
        left: 20px;
        top: -10px;
        padding: 10px; }
        @media (min-width: 1220px) {
          .testata__logoImgWrap {
            left: 5px;
            top: -1px; } }
    .testata__logoTitle {
      width: calc(100% - 142px);
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      font-weight: bold;
      color: #2b2a2a;
      text-transform: uppercase;
      padding-left: 10px;
      max-width: 320px;
      font-size: 28px;
      font-size: 1.75rem; }
      .testata__logoTitle-alt {
        font-weight: normal;
        text-transform: lowercase;
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        display: block;
        color: #2b2a2a;
        padding-left: 10px;
        font-size: 19px;
        font-size: 1.1875rem;
        padding-left: 21%; }
        .testata__logoTitle-alt strong {
          color: #feeb14;
          font-size: 27px;
          font-size: 1.6875rem;
          text-transform: uppercase;
          text-shadow: -1px 2px 4px #969696; }
      @media (min-width: 1220px) {
        .testata__logoTitle {
          font-size: 32px;
          font-size: 2rem; } }
      @media (min-width: 1220px) {
        .testata__logoTitle {
          padding-top: 10px;
          vertical-align: top; } }
  .testata__badge {
    display: block;
    margin: 0 0 0 auto; }
    .testata__badgeWrap {
      display: inline-block;
      vertical-align: middle;
      width: auto;
      padding-left: 20px;
      padding-right: 6px;
      padding-top: 20px; }
      @media (min-width: 1220px) {
        .testata__badgeWrap {
          padding-top: 10px;
          position: relative;
          top: 15px;
          right: 10px; } }
  .testata__navigation {
    font-size: 0;
    padding-left: 20px;
    text-align: left;
    font-family: 'Titillium', Helvetica, Arial, sans-serif; }
    @media (min-width: 1220px) {
      .testata__navigation {
        text-align: center;
        padding-left: 0;
        margin-left: -220px; } }
    .testata__navigationWrap {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      margin: 0 auto;
      overflow: visible; }
    .testata__navigation .current-menu-item > .testata__navigationItemLink, .testata__navigation .current-menu-item > .testata__navigationSubItemLink {
      color: #c2b725; }
      .testata__navigation .current-menu-item > .testata__navigationItemLink.icon:before, .testata__navigation .current-menu-item > .testata__navigationItemLink.icon .iconGenerated, .testata__navigation .current-menu-item > .testata__navigationSubItemLink.icon:before, .testata__navigation .current-menu-item > .testata__navigationSubItemLink.icon .iconGenerated {
        color: #185593; }
    .testata__navigationItem {
      display: block;
      font-size: 16px;
      font-size: 1rem;
      position: relative;
      z-index: 4; }
      .footerWrap .testata__navigationItem {
        padding: 5px 6px;
        display: inline-block;
        font-size: 0.8rem; }
      .js-login .testata__navigationItem {
        z-index: 3; }
      .testata__navigationItemLink {
        display: block;
        text-transform: uppercase;
        color: #1F2700;
        will-change: opacity;
        font-size: 14.4px;
        font-size: 0.9rem;
        position: relative;
        z-index: 1;
        padding: 16px 10px; }
        @media (min-width: 1220px) {
          .testata__navigationItemLink {
            padding-left: 15px;
            padding-right: 15px;
            font-size: 16px;
            font-size: 1rem; } }
        .testata__navigationItemLink:hover, .testata__navigationItemLink:focus {
          will-change: opacity;
          color: #2b2a2a;
          opacity: 0.75; }
        .testata__navigationItemLink.js-toggleClass.icon:before, .testata__navigationItemLink.js-toggleClass.icon .iconGenerated {
          color: #0a4d95;
          font-size: 16px;
          margin-left: 10px;
          will-change: transform;
          transition: transform 0.25s;
          transform: rotate(90deg);
          display: block;
          z-index: 1;
          position: absolute;
          top: 19px;
          right: 15px; }
        .testata__navigationItemLink.js-toggleClass .testata__navigationItemTitle {
          position: relative;
          z-index: 1;
          padding-right: 26px;
          font-size: 1.5rem; }
        .testata__navigationItemLink.js-toggleClass.js-toggleClass-active:hover, .testata__navigationItemLink.js-toggleClass.js-toggleClass-active:focus {
          color: #2b2a2a;
          opacity: 1; }
        .testata__navigationItemLink.js-toggleClass.js-toggleClass-active:after {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: #e8e8e8;
          box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.3); }
        .testata__navigationItemLink.js-toggleClass.js-toggleClass-active:before {
          transform: rotate(-90deg); }
        .testata__navigationItemLink.icon[data-icon="home"] {
          padding: 18px 19px 17px;
          color: #2b2a2a; }
          .testata__navigationItemLink.icon[data-icon="home"] .testata__navigationItemTitle {
            font: 0/0 a;
            text-shadow: none;
            color: transparent; }
          .testata__navigationItemLink.icon[data-icon="home"]:before, .testata__navigationItemLink.icon[data-icon="home"] .iconGenerated {
            font-size: 20px;
            color: #2b2a2a;
            text-align: left; }
      .testata__navigationItemTitle {
        text-align: left;
        font-weight: bold; }
    .testata__navigationSub {
      display: block;
      opacity: 0;
      transition: opacity 0.25s;
      will-change: opacity;
      position: absolute;
      padding-bottom: 10px;
      margin-bottom: 20px;
      background-color: #e8e8e8;
      padding-left: 10px;
      padding-right: 10px;
      pointer-events: none;
      width: 100%; }
      .testata__navigationSub:before {
        content: '';
        display: block;
        width: 100%;
        height: calc(100% + 2px);
        position: absolute;
        top: -5%;
        left: 0;
        background-color: #e8e8e8;
        box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
        z-index: -1; }
      .testata__navigationSub:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #e8e8e8;
        width: 100%;
        height: 100%;
        z-index: -1; }
      .navSub-open .testata__navigationSub {
        z-index: 5; }
      .js-toggleClass-active ~ .testata__navigationSub {
        opacity: 1;
        pointer-events: all; }
      .testata__navigationSubItem {
        border-top: 1px solid #ffffff;
        border-bottom: 1px solid #d2d2d2; }
        .testata__navigationSubItem:first-of-type {
          box-shadow: 0 -1px 0 0 #d2d2d2; }
        .testata__navigationSubItem:last-of-type {
          border-bottom: 0 none; }
        .testata__navigationSubItemLink {
          display: block;
          text-transform: uppercase;
          color: #2b2a2a;
          font-size: 14px;
          font-size: 0.875rem;
          padding: 10px 10px; }
          .testata__navigationSubItemLink:hover, .testata__navigationSubItemLink:focus {
            color: #928f8f; }
        .testata__navigationSubItemTitle {
          text-align: left; }
    .testata__navigationTop {
      margin-top: 14px;
      font-size: 0; }
      .testata__navigationTopWrap {
        display: inline-block;
        vertical-align: middle;
        text-align: left;
        width: 40%; }
        @media (min-width: 1220px) {
          .testata__navigationTopWrap {
            width: 30%;
            position: relative;
            top: 15px; } }
      .testata__navigationTopItem {
        display: inline-block;
        vertical-align: middle;
        position: relative; }
        .testata__navigationTopItem:first-of-type {
          border-left: 0 none; }
        .testata__navigationTopItem:last-of-type {
          padding-left: 10px;
          padding-right: 10px; }
        .testata__navigationTopItem > a {
          display: block;
          padding: 8px 10px; }
          @media (min-width: 1220px) {
            .testata__navigationTopItem > a {
              padding-left: 10px;
              padding-right: 10px;
              padding: 12px 15px; } }
        .testata__navigationTopItemLink:hover, .testata__navigationTopItemLink:focus {
          opacity: 0.75; }
        .testata__navigationTopItemTitle {
          font-family: 'Titillium', Helvetica, Arial, sans-serif;
          font-weight: bold;
          text-transform: uppercase;
          font-size: 22px;
          font-size: 1.375rem; }
        .testata__navigationTopItem .icon {
          margin-top: 3px; }
          .testata__navigationTopItem .icon .testata__navigationTopItemTitle {
            font: 0/0 a;
            text-shadow: none;
            color: transparent; }
          .testata__navigationTopItem .icon:hover, .testata__navigationTopItem .icon:focus {
            opacity: 0.75; }
          .testata__navigationTopItem .icon:before, .testata__navigationTopItem .icon .iconGenerated {
            font-size: 20px;
            color: #8c97a8; }
  .testata__search {
    text-align: left;
    padding-right: 20px; }
    .testata__search.icon {
      position: relative; }
      .testata__search.icon:before, .testata__search.icon .iconGenerated {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 30px;
        pointer-events: none;
        z-index: 1;
        font-size: 20px;
        display: block;
        width: 20px;
        height: 20px;
        color: #2b2a2a; }
    .testata__search input {
      text-align: left; }
      .testata__search input[type="search"], .testata__search input[type="text"] {
        border-radius: 22px;
        border: 1px solid #d2d2d2;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 12px;
        height: 38px;
        width: 100%; }
        @media (min-width: 1220px) {
          .testata__search input[type="search"], .testata__search input[type="text"] {
            padding-left: 20px;
            padding-right: 40px;
            font-size: 14px; } }
      .testata__search input[type="submit"] {
        position: absolute;
        z-index: 0;
        top: 0;
        right: 20px;
        padding: 0;
        font: 0/0 a;
        text-shadow: none;
        color: transparent;
        width: 44px;
        height: 38px;
        padding: 0;
        border: 0 none;
        background-color: transparent; }
    .testata__searchWrap {
      padding-top: 10px;
      padding-bottom: 10px;
      position: relative;
      z-index: 1;
      padding-left: 15px;
      padding-right: 15px; }
      .testata__searchWrap form {
        text-align: left; }
  .testata__userWelcome {
    padding: 10px 5px;
    overflow: hidden;
    position: relative;
    text-align: left; }
    .testata__userWelcome p {
      margin-top: 1px;
      padding: 0 7px 2px; }
      .testata__userWelcome p strong {
        color: #2b2a2a;
        font-weight: normal;
        display: block;
        font-size: 12px;
        font-size: 0.75rem; }
      .testata__userWelcome p span {
        display: inline-block;
        vertical-align: middle;
        overflow: hidden;
        white-space: nowrap;
        width: 150px;
        text-overflow: ellipsis; }
      .testata__userWelcome p a {
        display: inline-block;
        vertical-align: middle;
        text-transform: none;
        font-size: 14px;
        font-size: 0.875rem;
        margin-right: 20px;
        transition: opacity 0.25s; }
        .testata__userWelcome p a:hover, .testata__userWelcome p a:focus {
          opacity: 0.75; }
    .testata__userWelcome .icon {
      display: block;
      font-size: 12px;
      font-size: 0.75rem;
      position: absolute;
      top: 15px;
      right: 6px;
      line-height: 1; }
      .testata__userWelcome .icon:hover:before, .testata__userWelcome .icon:focus:before {
        color: #2b2a2a; }
      .testata__userWelcome .icon:before {
        transition: color 0.25s;
        color: #2b2a2a; }
  .testata__login {
    position: absolute;
    transition: opacity 0.25s, box-shadow 0.25s;
    opacity: 0;
    will-change: opacity;
    pointer-events: none;
    padding: 15px 20px;
    background-color: #008ac5;
    width: 300px;
    right: 10px; }
    .js-toggleClass-active[data-toggleclass="js-login"] {
      color: #ffffff;
      border-color: #008ac5;
      background-color: #008ac5;
      border-radius: 0; }
      .js-toggleClass-active[data-toggleclass="js-login"]:hover, .js-toggleClass-active[data-toggleclass="js-login"]:focus {
        opacity: 1;
        color: #ffffff;
        border-color: #008ac5;
        background-color: #008ac5; }
    .js-login .testata__login {
      pointer-events: all;
      opacity: 1; }
    .js-toggleActive .testata__login {
      box-shadow: 0 7px 20px -5px #404141; }
    .testata__login form {
      padding-bottom: 10px;
      position: relative; }
      .testata__login form p {
        margin-bottom: 10px; }
        .testata__login form p:nth-last-child(1), .testata__login form p:nth-last-child(2) {
          direction: rtl;
          text-align: right;
          padding-top: 10px;
          display: inline-block;
          vertical-align: middle;
          margin-bottom: 0; }
        .testata__login form p label {
          font-size: 13px;
          font-size: 0.8125rem;
          color: #ffffff;
          display: block;
          text-align: left; }
          .testata__login form p label .required {
            color: #ffffff; }
      .testata__login form + .login-reglink {
        border-top: 0 none; }
        .testata__login form + .login-reglink + .login-reglink {
          border-top: 0 none; }
    .testata__login input[type="text"], .testata__login input[type="password"] {
      padding-left: 10px;
      padding-right: 10px;
      width: 100%;
      margin-top: 5px;
      border-radius: 0; }
    .testata__login input[type="submit"] {
      background-color: #10b7fe;
      color: #ffffff;
      text-transform: uppercase;
      font-size: 18px;
      font-size: 1.125rem;
      padding: 10px 20px;
      cursor: pointer;
      display: inline-block;
      vertical-align: middle;
      margin-left: 10px;
      transition: opacity 0.25s;
      will-change: opacity; }
      .testata__login input[type="submit"]:hover, .testata__login input[type="submit"]:focus {
        color: #ffffff;
        opacity: 0.75; }
      .testata__login input[type="submit"]:hover, .testata__login input[type="submit"]:focus {
        opacity: 0.75;
        background-color: #10b7fe; }
    .testata__login .login-remember {
      display: inline-block;
      vertical-align: middle;
      color: #ffffff;
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: lighter;
      cursor: pointer;
      margin-top: 0;
      position: absolute;
      left: 0;
      bottom: 20px; }
    .testata__login .login-reglink {
      display: block;
      font-size: 12px;
      font-size: 0.75rem;
      color: #ffffff;
      direction: ltr;
      text-align: left;
      position: relative;
      margin-top: 10px;
      border-top: 1px solid #ffffff;
      font-weight: lighter;
      padding-top: 0; }
      .testata__login .login-reglink a {
        color: #ffffff;
        padding-top: 10px;
        display: inline-block; }
      .testata__login .login-reglink strong {
        font-size: 16px;
        font-size: 1rem; }
  .testata__hamburger {
    display: none; }
    .testata__hamburgerWrap {
      display: none; }

.grid {
  font-size: 0; }
  .gridWrap {
    padding-top: 20px; }
  .gridItem {
    font-size: 16px;
    font-size: 1rem;
    padding: 30px 40px 40px;
    background-color: #ffffff;
    border: 1px solid #d2d2d2;
    height: 100%; }
    .gridItemLink {
      display: block;
      position: relative;
      height: 100%;
      padding-bottom: 40px; }
      .gridItemLink:after {
        font-family: 'iconfont';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        /* Enable Ligatures ================ */
        letter-spacing: 0;
        -webkit-font-feature-settings: "liga";
        -moz-font-feature-settings: "liga=1";
        -moz-font-feature-settings: "liga";
        -ms-font-feature-settings: "liga" 1;
        -o-font-feature-settings: "liga";
        font-feature-settings: "liga";
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "arrow";
        color: #008ac5;
        font-size: 16px;
        position: absolute;
        bottom: 0;
        right: 0;
        display: inline-block;
        width: 30px;
        height: 30px;
        background-color: #ebeaea;
        border-radius: 100px;
        padding: 7px 0;
        text-align: center;
        transition: color 0.25s; }
        .js-ligaturesOn .gridItemLink:after {
          display: none; }
      .gridItemLink:hover:after, .gridItemLink:focus:after {
        color: #10b7fe; }
      .gridItemLink:hover .gridItem__title, .gridItemLink:focus .gridItem__title {
        color: #10b7fe; }
    .gridItemWrap {
      display: inline-block;
      vertical-align: top;
      padding: 10px; }
      .gridItemWrap:first-of-type {
        padding-left: 0; }
      .gridItemWrap:last-of-type {
        padding-right: 0; }
      .gridItemWrap--full {
        width: 100%; }
      .gridItemWrap--half {
        width: 50%; }
      .gridItemWrap--third {
        width: 33.333334%; }
      .gridItemWrap--fourth {
        width: 25%; }
    .gridItem__title {
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      color: #008ac5;
      font-size: 38px;
      font-size: 2.375rem;
      margin-bottom: 15px;
      font-weight: bold;
      transition: color 0.25s; }
    .gridItem__description {
      color: #2b2a2a;
      line-height: 1.5;
      font-weight: lighter; }

.callTo {
  text-align: center; }
  .callToWrap {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 2px dashed #d2d2d2;
    border-bottom: 2px dashed #d2d2d2;
    text-align: center;
    width: 75%;
    margin: 30px auto; }
  .callTo__title {
    text-align: center;
    font-weight: bold;
    line-height: 1.25; }
  .callTo__btn {
    text-align: center;
    display: inline-block;
    border-radius: 7px;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    background-color: #008ac5;
    color: #ffffff;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.125rem;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25); }
    .callTo__btn:hover, .callTo__btn:focus {
      color: #ffffff;
      background-color: #10b7fe; }
    .callTo__btnWrap {
      width: 75%;
      margin: 10px auto 0;
      background-color: #ebeaea;
      padding: 10px; }

.directorate .page__title {
  font-weight: bold; }

.directorate .page__contentWrap .news__list {
  zoom: 1;
  margin-left: -10px;
  margin-right: -10px; }
  .directorate .page__contentWrap .news__list:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  @media (min-width: 1220px) {
    .directorate .page__contentWrap .news__list {
      margin-left: -20px;
      margin-right: -20px; } }

.directorate .page__contentWrap .news__listItem {
  float: left;
  width: calc(50% - 20px);
  margin-left: 10px;
  margin-right: 10px; }
  @media (min-width: 1220px) {
    .directorate .page__contentWrap .news__listItem {
      width: calc(50% - 40px);
      margin-left: 20px;
      margin-right: 20px; } }
  .directorate .page__contentWrap .news__listItem .news__listItemLink {
    padding-top: 50px;
    padding-bottom: 50px; }
  .directorate .page__contentWrap .news__listItem .news__listItemImgWrap {
    width: 50%;
    padding-bottom: 50%;
    margin-right: 20px; }
  .directorate .page__contentWrap .news__listItem .news__listItemImg {
    border-radius: 1000px; }
  .directorate .page__contentWrap .news__listItem .news__listItemTitleWrap {
    display: block;
    padding-right: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(50% - 20px);
    transform: translateY(-50%); }
  .directorate .page__contentWrap .news__listItem .news__listItemTitle {
    padding-left: 0;
    font-size: 28px;
    font-size: 1.75rem;
    color: #008ac5; }
  .directorate .page__contentWrap .news__listItem .listBtnWrap {
    position: static;
    text-align: left;
    margin-top: 10px; }
  .directorate .page__contentWrap .news__listItem .listBtn.btn {
    color: #ffffff; }
    .directorate .page__contentWrap .news__listItem .listBtn.btn.icon:before, .directorate .page__contentWrap .news__listItem .listBtn.btn.icon .iconGenerated {
      color: #10b7fe; }

.directorate .page__contentWrap .page__infoWrap {
  border-top: 0 none;
  border-bottom: 0 none;
  padding-top: 0;
  margin-top: -10px;
  margin-bottom: 10px; }

.directorate .page__contentWrap .page__contentImg {
  display: block;
  padding: 20px;
  border: 1px solid #d2d2d2;
  background-color: #ffffff;
  width: 100%;
  height: auto;
  position: static;
  max-height: none; }

.directorate .page__contentWrap .page__contentImgWrap {
  padding-bottom: 0;
  height: auto;
  position: absolute;
  top: 15px;
  left: 0;
  width: 25%;
  padding-right: 25px; }
  .directorate .page__contentWrap .page__contentImgWrap ~ .typography {
    margin-top: 0;
    padding-left: calc(25% + 20px); }

.tab {
  margin: 0;
  padding: 0;
  list-style-type: none;
  zoom: 1;
  position: relative;
  z-index: 1; }
  .tab:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .minisite .tab {
    padding-left: 57px;
    padding-right: 57px;
    padding-bottom: 0; }
  .tab + .tab__content, .sliderWrap + .tab__content {
    display: block; }
  .tab__content {
    display: none;
    margin-top: 0px !important;
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #d2d2d2;
    position: relative;
    margin-left: 3px;
    margin-right: 3px;
    font-size: 18px;
    font-size: 1.125rem; }
    .sliderWrap ~ .tab__content {
      padding: 0 10px;
      background-color: #f6f6f6;
      box-shadow: none;
      margin: 0; }
      @media (min-width: 1220px) {
        .sliderWrap ~ .tab__content {
          padding: 0; } }
  .tabWrap {
    padding: 0 20px;
    margin-bottom: 20px; }
    @media (min-width: 1220px) {
      .tabWrap {
        padding: 0 10px; } }
    .minisite .tabWrap {
      margin-left: 0; }
      .minisite .tabWrap .sliderWrap {
        margin-top: 0;
        margin-bottom: 0; }
        .minisite .tabWrap .sliderWrap .item {
          padding-left: 2px;
          padding-right: 2px; }
          .minisite .tabWrap .sliderWrap .item a {
            text-align: center;
            padding-left: 10px;
            padding-right: 10px;
            display: block; }
        .minisite .tabWrap .sliderWrap .owl-prev,
        .minisite .tabWrap .sliderWrap .owl-next {
          width: 55px;
          height: 51px;
          background-color: transparent;
          border-radius: 0;
          cursor: pointer;
          padding-top: 15px;
          padding-bottom: 15px;
          background-color: #ebeaea; }
          .minisite .tabWrap .sliderWrap .owl-prev .icon:before, .minisite .tabWrap .sliderWrap .owl-prev .icon .iconGenerated,
          .minisite .tabWrap .sliderWrap .owl-next .icon:before,
          .minisite .tabWrap .sliderWrap .owl-next .icon .iconGenerated {
            color: #008ac5;
            font-size: 22px;
            padding: 0; }
          .minisite .tabWrap .sliderWrap .owl-prev.disabled,
          .minisite .tabWrap .sliderWrap .owl-next.disabled {
            cursor: default; }
            .minisite .tabWrap .sliderWrap .owl-prev.disabled .icon:before, .minisite .tabWrap .sliderWrap .owl-prev.disabled .icon .iconGenerated,
            .minisite .tabWrap .sliderWrap .owl-next.disabled .icon:before,
            .minisite .tabWrap .sliderWrap .owl-next.disabled .icon .iconGenerated {
              color: #b4b3b3; }
        .minisite .tabWrap .sliderWrap .owl-prev {
          left: 0; }
        .minisite .tabWrap .sliderWrap .owl-next {
          right: 0; }
    .tabWrap table {
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: lighter;
      width: 100%; }
      .tabWrap table a {
        display: block; }
    .tabWrap thead {
      text-align: left; }
    .tabWrap tr {
      text-align: left; }
    .tabWrap th {
      font-size: 16px;
      font-size: 1rem;
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      padding-bottom: 5px;
      padding-left: 15px; }
      .tabWrap th:first-child {
        padding-left: 0; }
    .tabWrap td {
      border: 1px solid #d2d2d2;
      border-top-style: dashed;
      border-bottom-style: dashed;
      padding: 11px 15px; }
      .tabWrap td:first-child {
        border-left: 0 none;
        padding-left: 0; }
      .tabWrap td:last-child {
        border-right: 0 none; }
  .tab li, .tab .item {
    float: left;
    padding-left: 3px;
    padding-right: 3px;
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
    font-weight: lighter; }
    .tab li a, .tab .item a {
      position: relative;
      height: 100%;
      background-color: #f6f6f6;
      padding: 30px; }
      .tab li a:before, .tab .item a:before {
        content: '';
        display: block;
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: transparent;
        transition: background 0.25s; }
    .tab li.js-tab-active a, .tab .item.js-tab-active a {
      position: relative;
      color: #2b2a2a;
      background-color: #ffffff;
      border: 1px solid #d2d2d2; }
      .tab li.js-tab-active a:before, .tab .item.js-tab-active a:before {
        background-color: #ffffff; }
      .tab li.js-tab-active a:hover, .tab li.js-tab-active a:focus, .tab .item.js-tab-active a:hover, .tab .item.js-tab-active a:focus {
        color: #2b2a2a; }
      .minisite .tab li.js-tab-active a, .tab .item.js-tab-active a {
        box-shadow: none;
        background-color: #b4b3b3; }
        .minisite .tab li.js-tab-active a:before, .tab .item.js-tab-active a:before {
          display: none; }
    .tab li:first-child:nth-last-child(1),
    .tab li:first-child:nth-last-child(1) ~ li, .tab .item:first-child:nth-last-child(1),
    .tab .item:first-child:nth-last-child(1) ~ li {
      width: 100%; }
    .tab li:first-child:nth-last-child(2),
    .tab li:first-child:nth-last-child(2) ~ li, .tab .item:first-child:nth-last-child(2),
    .tab .item:first-child:nth-last-child(2) ~ li {
      width: 50%; }
    .tab li:first-child:nth-last-child(3),
    .tab li:first-child:nth-last-child(3) ~ li, .tab .item:first-child:nth-last-child(3),
    .tab .item:first-child:nth-last-child(3) ~ li {
      width: 33.333334%; }
    .tab li:first-child:nth-last-child(4),
    .tab li:first-child:nth-last-child(4) ~ li, .tab .item:first-child:nth-last-child(4),
    .tab .item:first-child:nth-last-child(4) ~ li {
      width: 25%; }
    .tab li:first-child:nth-last-child(5),
    .tab li:first-child:nth-last-child(5) ~ li, .tab .item:first-child:nth-last-child(5),
    .tab .item:first-child:nth-last-child(5) ~ li {
      width: 20%; }
    .tab li:first-child:nth-last-child(6),
    .tab li:first-child:nth-last-child(6) ~ li, .tab .item:first-child:nth-last-child(6),
    .tab .item:first-child:nth-last-child(6) ~ li {
      width: 16.666667%; }
    .tab li:first-child:nth-last-child(7),
    .tab li:first-child:nth-last-child(7) ~ li, .tab .item:first-child:nth-last-child(7),
    .tab .item:first-child:nth-last-child(7) ~ li {
      width: 14.285714%; }
    .tab li:first-child:nth-last-child(8),
    .tab li:first-child:nth-last-child(8) ~ li, .tab .item:first-child:nth-last-child(8),
    .tab .item:first-child:nth-last-child(8) ~ li {
      width: 12.5%; }
    .tab li:first-child:nth-last-child(9),
    .tab li:first-child:nth-last-child(9) ~ li, .tab .item:first-child:nth-last-child(9),
    .tab .item:first-child:nth-last-child(9) ~ li {
      width: 11.111112%; }
    .tab li:first-child:nth-last-child(10),
    .tab li:first-child:nth-last-child(10) ~ li, .tab .item:first-child:nth-last-child(10),
    .tab .item:first-child:nth-last-child(10) ~ li {
      width: 10%; }
    .tab li a, .tab .item a {
      display: block; }
  .minisite .tab .owl-stage {
    white-space: nowrap;
    font-size: 0; }
  .minisite .tab .owl-stage-outer {
    min-height: initial; }
  .minisite .tab .owl-item {
    float: none;
    display: inline-block;
    width: 20%;
    min-width: 140px; }

.slider {
  display: block; }
  .sliderWrap {
    background-color: #ffffff;
    background-clip: content-box;
    margin-top: 40px;
    margin-bottom: 40px; }
    .sliderWrap .grid__itemTitle {
      text-transform: uppercase;
      font-family: 'titillium_webblack', Helvetica, Arial, sans-serif;
      font-size: 55px;
      font-size: 3.4375rem; }
    .page__contentWrap .sliderWrap {
      margin-top: 10px; }
  .sliderHome .grid__itemPosition:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.25s;
    position: absolute;
    z-index: 0;
    width: 100%;
    display: block;
    height: 100%;
    top: 0;
    left: 0; }
  .slider__title {
    text-align: center;
    text-transform: uppercase;
    color: #2b2a2a;
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 25px;
    font-weight: bold;
    padding: 20px 20px 0; }
  .slider__item {
    display: block; }
    .slider__item img {
      display: block;
      width: auto;
      height: auto;
      max-width: 100%; }
  .slider .owl-prev, .slider .owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 47px;
    height: 47px;
    z-index: 1;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.8);
    transition: background 0.25s; }
    .slider .owl-prev .icon:before, .slider .owl-prev .icon .iconGenerated, .slider .owl-next .icon:before, .slider .owl-next .icon .iconGenerated {
      color: #b4b3b3;
      font-size: 25px;
      display: block;
      position: relative;
      padding: 11px 0;
      text-align: center;
      transition: color 0.25s; }
    .slider .owl-prev:hover, .slider .owl-prev:focus, .slider .owl-next:hover, .slider .owl-next:focus {
      background-color: #000000; }
      .slider .owl-prev:hover .icon:before, .slider .owl-prev:hover .icon .iconGenerated, .slider .owl-prev:focus .icon:before, .slider .owl-prev:focus .icon .iconGenerated, .slider .owl-next:hover .icon:before, .slider .owl-next:hover .icon .iconGenerated, .slider .owl-next:focus .icon:before, .slider .owl-next:focus .icon .iconGenerated {
        color: #ffffff; }
  .slider .owl-prev {
    left: 20px;
    text-indent: 4px; }
    .slider .owl-prev .icon:before, .slider .owl-prev .icon .iconGenerated {
      transform: rotate(180deg); }
  .slider .owl-next {
    right: 20px;
    text-indent: 4px; }
  .has-slider {
    overflow: visible; }
    .has-slider.generic__col {
      overflow: visible; }
    .has-slider .sliderWrap {
      padding: 0;
      background-color: transparent;
      margin-top: 0; }
    .has-slider .owl-prev {
      left: -103px; }
    .has-slider .owl-next {
      right: -103px; }
  .slider .owl-carousel:not(.slider--carousel) .sliderWrap {
    background-color: transparent; }
  .slider .owl-carousel:not(.slider--carousel) .owl-stage-outer {
    z-index: 1; }
  .slider .owl-carousel:not(.slider--carousel) .slider__item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    .slider .owl-carousel:not(.slider--carousel) .slider__item img {
      width: auto;
      height: auto;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      margin: auto;
      max-height: 100%; }
  .slider .owl-carousel:not(.slider--carousel) .owl-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .slider .owl-carousel:not(.slider--carousel) .owl-nav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0; }
  .slider--carousel {
    padding: 0 20px 20px; }
    .slider--carousel .owl-stage-outer {
      height: 100%;
      min-height: 130px; }
      .slider--carousel .owl-stage-outer .owl-stage {
        height: 100%; }
      .slider--carousel .owl-stage-outer .owl-item {
        height: 100%; }
    .slider--carousel .item {
      position: relative;
      height: 100%; }
    .slider--carousel .slider__item {
      position: relative;
      padding-bottom: 56.25%;
      padding-top: 25px;
      height: 0;
      display: block; }
      .slider--carousel .slider__item img {
        width: auto;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        margin: auto;
        max-height: 100%; }

.breadcrumb {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #f6f6f6;
  padding: 20px 0; }
  .breadcrumb #breadcrumbs {
    padding: 20px 0;
    float: left;
    width: 100%;
    padding-right: 6px;
    padding-left: 6px; }
  .event .breadcrumb {
    margin-bottom: 10px; }
  .breadcrumb span {
    padding: 0 5px; }
    .breadcrumb span > span > *:first-child {
      margin-left: 0; }
    .breadcrumb span > span > *:last-child {
      margin-right: 0; }
    .breadcrumb span > span a, .breadcrumb span > span span {
      margin-left: 4px;
      margin-right: 4px; }
  .breadcrumb a {
    color: #008ac5;
    font-weight: bold; }
    .breadcrumb a:hover, .breadcrumb a:focus {
      color: #008ac5;
      opacity: 0.75; }
  .breadcrumb span {
    font-weight: bold;
    color: #2b2a2a; }

.page__title {
  font-family: 'Titillium', Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: bold;
  padding: 0 10px; }
  .page__title span {
    font-family: 'Titillium', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 2.2rem; }
  .page__contentShadeMed .page__title {
    font-weight: lighter; }
  .breadcrumbs + .page__titleWrap .page__title {
    font-family: 'titillium_webblack', 'Titillium', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 50px;
    font-size: 3.125rem; }
  .breadcrumbs + section .page__titleWrap .page__title {
    font-family: 'titillium_webblack', 'Titillium', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 50px;
    font-size: 3.125rem; }
  .page__title--center {
    text-align: center; }
  .page__title-alt {
    font-size: 50px;
    font-size: 3.125rem; }
  .event .page__title {
    font-size: 54px;
    font-size: 3.375rem;
    font-weight: bold; }
  .news .page__title {
    font-weight: bold; }
  .page__titleSub {
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-weight: normal;
    padding: 0;
    margin-top: -20px;
    margin-bottom: 20px;
    font-size: 24px;
    font-size: 1.5rem; }
  .page__title-bordered {
    border-bottom: 1px solid #d2d2d2;
    display: inline-block;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px !important;
    margin-top: 27px; }
    .page__title-bordered ~ .page__titleSub {
      margin-top: 0 !important;
      padding-left: 0 !important; }
  .page__titleWrap {
    padding: 30px 0;
    margin-top: 20px; }
    .page__titleWrap--assets {
      padding-bottom: 10px; }
    .page__titleWrap .events_title {
      padding: 0 10px; }

.page__category {
  font-family: 'Titillium', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem; }

.page__content {
  position: relative;
  font-weight: lighter; }
  .page__contentContainer {
    display: block;
    padding-top: 20px; }
    .minisite__pageRight .widget__attachmentsWrap .page__contentContainer {
      padding-top: 0; }
    .minisite__contentWrap .page__contentContainer {
      padding-top: 0; }
      .minisite__contentWrap .page__contentContainer .sliderWrap {
        padding-top: 0;
        background-color: #fff !important; }
        .minisite__contentWrap .page__contentContainer .sliderWrap .slider__itemCaption {
          background-color: #fff !important; }
    .page__contentContainer .typography {
      margin: 0; }
    .page__contentContainer--shadeMed {
      padding: 0px 40px;
      padding-bottom: 40px; }
      .page__contentLeftWrap {
        width: 72%;
        display: inline-block;
        vertical-align: middle;
        padding-right: 20px; }
      .page__contentRightWrap {
        width: 27%;
        display: inline-block;
        vertical-align: top; }
    .page__contentContainer .page__title {
      font-weight: bold;
      padding: 0; }
      .page__contentContainer .page__titleWrap {
        padding: 15px 0px; }
        .page__contentContainer .page__titleWrap + .typography {
          margin: 0;
          font-size: 22px;
          font-size: 1.375rem; }
    .page__contentContainer ul {
      list-style: inherit;
      margin: auto; }
      .page__contentContainer ul li {
        margin: 10px 0; }
    .page__contentContainer h1, .page__contentContainer h2, .page__contentContainer h3, .page__contentContainer h4, .page__contentContainer h5, .page__contentContainer h6 {
      font-weight: bold; }
    .page__contentContainer--alt {
      background-color: #f1f1f1;
      padding-top: 10px;
      padding-bottom: 20px; }
  .page__contentImg {
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    margin: auto;
    max-height: 100%; }
    .page__contentImgWrap {
      position: relative;
      padding-bottom: 58%;
      height: 0;
      display: block; }
      .page__contentImgWrap ~ .typography {
        margin-top: 40px; }
  .page__contentWrap {
    display: block;
    float: left;
    width: 50%;
    padding-left: 10px;
    padding-bottom: 40px;
    zoom: 1; }
    .page__contentWrap:after {
      display: block;
      visibility: hidden;
      height: 0;
      clear: both;
      content: "."; }
    .page__contentWrap:only-child {
      width: 100%;
      padding-right: 6px; }
  .page__contentBtn {
    background-color: #363737;
    color: #10b7fe; }
    .page__contentBtn.btn {
      display: inline-block;
      vertical-align: middle;
      text-transform: uppercase;
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-size: 1.25rem; }
      .page__contentBtn.btn:hover, .page__contentBtn.btn:focus {
        color: #008ac5; }
      .page__contentBtn.btn.icon {
        position: relative;
        direction: rtl; }
        .page__contentBtn.btn.icon:before, .page__contentBtn.btn.icon .iconGenerated {
          display: inline-block;
          vertical-align: middle;
          color: #ffffff;
          font-size: 16px;
          height: 16px; }
    .page__contentBtnWrap {
      text-align: center;
      background-color: #ffffff;
      padding-top: 20px;
      padding-bottom: 20px;
      margin-top: 20px; }
  .page__contentTag {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    font-size: 0.875rem;
    margin: 5px; }
    .page__contentTagLink {
      display: block;
      padding: 10px 15px;
      color: #ffffff;
      background-color: #008ac5; }
      .page__contentTagLink:hover, .page__contentTagLink:focus {
        color: #ffffff;
        background-color: #10b7fe; }
    .page__contentTagList {
      font-size: 0; }
      .page__contentTagListWrap {
        display: block;
        margin-top: 50px;
        border-top: 1px solid #d2d2d2;
        padding-top: 20px;
        padding-bottom: 20px; }
  .page__content form:not(.has-special) {
    width: 50%; }
    .page__content form:not(.has-special) label {
      display: block;
      margin-bottom: 8px; }
    .page__content form:not(.has-special) br {
      display: none; }
    .page__content form:not(.has-special) input[type="text"], .page__content form:not(.has-special) input[type="password"], .page__content form:not(.has-special) input[type="search"], .page__content form:not(.has-special) input[type="tel"], .page__content form:not(.has-special) input[type="email"] {
      width: 100%; }
    .page__content form:not(.has-special) input[type="submit"] {
      padding: 12px 30px;
      font-size: 14px;
      font-size: 0.875rem; }
    .page__content form:not(.has-special) div.submit {
      margin-top: 20px; }

.page__info {
  display: inline-block;
  vertical-align: top; }
  .page__info:before {
    content: ' - ';
    font-weight: lighter; }
  .page__info:first-child:before {
    display: none; }
  .page__info strong {
    text-align: left; }
  .page__info span {
    text-align: left; }
  .page__infoWrap {
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    font-size: 14px;
    font-size: 0.875rem;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: lighter;
    margin-bottom: 10px; }

.page__event {
  display: block; }
  .page__eventDate {
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    color: #c2b725;
    font-size: 28px;
    font-size: 1.75rem; }
  .page__eventSign {
    display: block; }
    .page__eventSignWrap {
      display: block;
      position: relative;
      padding-top: 30px; }
      .sidebar .page__eventSignWrap {
        padding-top: 0; }
      .page__eventSignWrap--closed .page__eventSignBtnWrap, .sidebar .page__eventSignWrap--closed .page__eventSignBtnWrap {
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: #e8e8e8;
        border-radius: 0; }
      .page__eventSignWrap--closed .page__eventSignBtn, .sidebar .page__eventSignWrap--closed .page__eventSignBtn {
        background-color: #8d1c25;
        border-radius: 0;
        box-shadow: 0 none;
        text-shadow: none;
        padding: 10px 60px;
        font-size: 24px;
        font-size: 1.5rem;
        display: inline-block;
        width: auto;
        margin-left: 0; }
        .page__eventSignWrap--closed .page__eventSignBtn:before, .sidebar .page__eventSignWrap--closed .page__eventSignBtn:before {
          display: none; }
        .page__eventSignWrap--closed .page__eventSignBtn:hover, .page__eventSignWrap--closed .page__eventSignBtn:focus, .sidebar .page__eventSignWrap--closed .page__eventSignBtn:hover, .sidebar .page__eventSignWrap--closed .page__eventSignBtn:focus {
          background-color: #8d1c25; }
      .page__eventSignWrap--registration-closed .page__eventSignBtnWrap, .sidebar .page__eventSignWrap--registration-closed .page__eventSignBtnWrap {
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: #e8e8e8;
        border-radius: 0; }
      .page__eventSignWrap--registration-closed .page__eventSignBtn, .sidebar .page__eventSignWrap--registration-closed .page__eventSignBtn {
        background-color: #d6c111;
        color: #2b2a2a;
        border-radius: 0;
        box-shadow: 0 none;
        text-shadow: none;
        padding: 10px 60px;
        font-size: 24px;
        font-size: 1.5rem;
        display: inline-block;
        width: auto;
        margin-left: 0; }
        .page__eventSignWrap--registration-closed .page__eventSignBtn:before, .sidebar .page__eventSignWrap--registration-closed .page__eventSignBtn:before {
          display: none; }
        .page__eventSignWrap--registration-closed .page__eventSignBtn:hover, .page__eventSignWrap--registration-closed .page__eventSignBtn:focus, .sidebar .page__eventSignWrap--registration-closed .page__eventSignBtn:hover, .sidebar .page__eventSignWrap--registration-closed .page__eventSignBtn:focus {
          background-color: #d6c111;
          color: #2b2a2a; }
    .page__eventSignBtn {
      display: inline-block;
      background-color: #008ac5;
      color: #ffffff;
      border-radius: 6px;
      text-transform: uppercase;
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      position: relative;
      padding: 20px 115px;
      font-size: 30px;
      font-size: 1.875rem;
      box-shadow: 0 5px 10px -4px rgba(0, 0, 0, 0.4);
      text-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
      text-align: center; }
      .minisite .sidebar .page__eventSignBtn {
        text-shadow: none; }
      .page__eventSignBtn:before {
        content: '';
        display: block;
        position: absolute;
        top: -10px;
        left: -10px;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
        background-color: #e8e8e8;
        border-radius: 8px;
        z-index: -1; }
      .page__eventSignBtn:hover, .page__eventSignBtn:focus {
        color: #ffffff;
        background-color: #10b7fe; }
      .sidebar .page__eventSignBtn {
        display: block;
        padding-left: 0;
        padding-right: 0;
        width: calc(100% - 20px);
        margin-left: 10px; }
      .page__eventSignBtnWrap {
        display: block;
        text-align: center;
        background-color: #ffffff;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative; }
        .sidebar .page__eventSignBtnWrap {
          background-color: transparent;
          padding-top: 10px;
          padding-bottom: 10px;
          border-radius: 10px; }

.page--shadeMed {
  padding: 40px; }
  .page--shadeMed .page__title {
    padding: 0px 24px;
    margin-bottom: 16px;
    font-family: 'titillium_webblack', Arial, Helvetica, sans-serif;
    text-transform: uppercase; }
    .page--shadeMed .page__title--center {
      font-family: 'Titillium', Arial, Helvetica, sans-serif;
      font-weight: initial; }
  .page--shadeMed .page__date {
    padding: 0px 24px;
    margin-bottom: 16px; }
  .page--shadeMed .page__content {
    padding: 0px 24px; }
    .page--shadeMed .page__content--full {
      padding: 0; }
  .page--shadeMed .typography {
    margin: 0; }

.sidebar {
  zoom: 1;
  display: block; }
  .sidebar:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .sidebarWrap {
    float: left;
    width: 16.6666666667%;
    padding-right: 6px;
    padding-left: 6px; }
  .sidebar .page__titleWrap {
    padding: 0; }
    .sidebar .page__titleWrap .page__title {
      font-size: 30px;
      font-size: 1.875rem; }
  .sidebar .item {
    margin-bottom: 20px; }
    .sidebar .item:only-child {
      margin-top: 35px; }
  .sidebar .share {
    background-color: #ffffff;
    border: 1px solid #d2d2d2;
    padding: 5px 0;
    text-align: center; }

.calendar {
  text-align: left; }
  .calendar__widget {
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    color: #ffffff;
    background-color: #363737;
    padding: 0 15px;
    height: 100%;
    padding-bottom: 90px;
    position: relative; }
    .calendar__widget-alt {
      padding-bottom: 0;
      background-color: #ffffff;
      border: 1px solid #d2d2d2; }
      .calendar__widget-alt .calendar__widgetImage {
        text-align: center;
        padding: 0 20px; }
        .calendar__widget-alt .calendar__widgetImage .calendar__widgetImage_wrap {
          background-color: #f9f9f9;
          border-radius: 50%;
          padding: 30px;
          border: 1px solid #d2d2d2; }
      .calendar__widget-alt .calendar__widgetTitle {
        text-align: center;
        color: #000000;
        font-weight: bold;
        font-size: 28px;
        font-size: 1.75rem;
        line-height: 1.25;
        box-shadow: none; }
      .calendar__widget-alt .calendar__widgetList .calendar__widgetListItem {
        box-shadow: none;
        border-bottom: 2px dashed #000; }
        .calendar__widget-alt .calendar__widgetList .calendar__widgetListItem:first-of-type {
          margin-top: 20px;
          border-top: 2px dashed #000;
          border-bottom: 2px dashed #000; }
      .calendar__widget-alt .calendar__widgetListItemLink {
        zoom: 1;
        padding-top: 7px;
        padding-bottom: 7px; }
        .calendar__widget-alt .calendar__widgetListItemLink:after {
          display: block;
          visibility: hidden;
          height: 0;
          clear: both;
          content: "."; }
        .calendar__widget-alt .calendar__widgetListItemLink .calendar__widgetListItemDate {
          margin-right: 0;
          padding: 0; }
        .calendar__widget-alt .calendar__widgetListItemLink .calendar__widgetListItemDateDay {
          display: inline-block;
          vertical-align: middle;
          margin-right: 10px;
          font-size: 30px;
          font-size: 1.875rem;
          font-weight: bold;
          color: #185593;
          text-align: left; }
        .calendar__widget-alt .calendar__widgetListItemLink .calendar__widgetListItemDateMonth {
          display: inline-block;
          vertical-align: middle;
          font-weight: bold;
          text-align: left;
          font-size: 14px;
          font-size: 0.875rem; }
      .calendar__widget-alt .calendar__widgetBtnWrap {
        position: relative; }
        .calendar__widget-alt .calendar__widgetBtnWrap .calendar__widgetBtn.btn--medium {
          padding: 15px 20px; }
        .calendar__widget-alt .calendar__widgetBtnWrap .calendar__widgetBtn {
          border: 1px solid #d2d2d2;
          box-shadow: none;
          background-color: #feeb14;
          color: #000000;
          text-shadow: none;
          font-weight: bold;
          border-radius: 0;
          font-size: 17px;
          font-size: 1.0625rem; }
    .calendar__widgetWrap {
      float: left;
      width: 16.6666666667%;
      padding-right: 6px;
      padding-left: 6px;
      height: 100%; }
      .calendar__widgetWrap-alt .item {
        margin-bottom: 20px; }
        .calendar__widgetWrap-alt .item .widget__infoWrap {
          padding-left: 10px;
          padding-right: 10px; }
          .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info {
            text-align: center; }
            .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info strong {
              font-size: 30px;
              font-size: 1.875rem;
              text-transform: uppercase;
              margin-bottom: 10px;
              color: #1c345a;
              display: block; }
            .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info .widget__infoHead p {
              font-weight: bold;
              text-transform: uppercase;
              font-size: 15px;
              font-size: 0.9375rem; }
            .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info .widget__infoContact {
              padding-top: 7px; }
              .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info .widget__infoContact .widget__infoContactTel {
                font-size: 15px;
                font-size: 0.9375rem; }
            .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info .hero__btnWrap .hero__btn.btn {
              border: 1px solid #d2d2d2;
              border-radius: 0;
              box-shadow: none;
              font-size: 15px;
              font-size: 0.9375rem;
              font-weight: bold; }
              .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info .hero__btnWrap .hero__btn.btn:before {
                display: none; }
            .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info .widget__infoImgWrap {
              max-width: 200px; }
              .calendar__widgetWrap-alt .item .widget__infoWrap .widget__info .widget__infoImgWrap .widget__infoImg {
                -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.49);
                -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.49);
                box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.49); }
      .calendar__widgetWrap-header {
        padding: 0;
        float: none;
        width: 100%;
        margin-bottom: 10px; }
        .calendar__widgetWrap-header .calendar__widget-alt {
          text-align: center;
          padding: 20px 0; }
          .calendar__widgetWrap-header .calendar__widget-alt img {
            max-width: 200px; }
          .calendar__widgetWrap-header .calendar__widget-alt .calendar__widgetBtnWrap {
            padding: 0 15px; }
        .calendar__widgetWrap-header .calendar__widget-alt .calendar__widgetImage {
          padding: 0 30px; }
        .calendar__widgetWrap-header .calendar__widget-alt .calendar__widgetImage .calendar__widgetImage_wrap {
          padding: 20px; }
        .calendar__widgetWrap-header .calendar__widget-alt .calendar__widgetBtnWrap .calendar__widgetBtn {
          font-size: 16px;
          font-size: 1rem;
          background-color: #ebeaea;
          color: #185593;
          border: 1px solid #d2d2d2; }
      .sidebar .calendar__widgetWrap {
        width: 100%;
        float: none;
        padding: 0; }
        .sidebar .calendar__widgetWrap .calendar__widget {
          padding-bottom: 25px; }
    .calendar__widgetTitle {
      text-transform: uppercase;
      font-size: 20px;
      font-size: 1.25rem;
      padding: 13px 0 10px;
      box-shadow: 0 1px 0 0 #2b2a2a, 0 2px 0 0 #565757;
      color: #b4b3b3; }
    .calendar__widgetList {
      text-align: left; }
      .calendar__widgetListItem {
        box-shadow: 0 1px 0 0 #2b2a2a, 0 2px 0 0 #565757; }
        .calendar__widgetListItemLink {
          display: block;
          font-size: 0;
          padding-top: 15px;
          padding-bottom: 15px; }
          .calendar__widgetListItemLink:hover, .calendar__widgetListItemLink:focus {
            opacity: 0.75; }
        .calendar__widgetListItemDate {
          display: inline-block;
          vertical-align: middle;
          background-color: #ffffff;
          color: #363737;
          text-transform: uppercase;
          padding: 7px 12px;
          line-height: 1;
          text-align: center;
          margin-right: 12px; }
          .calendar__widgetListItemDateMonth {
            display: block;
            font-size: 14px;
            font-size: 0.875rem; }
          .calendar__widgetListItemDateDay {
            display: block;
            font-size: 22px;
            font-size: 1.375rem;
            margin-top: 2px; }
        .calendar__widgetListItemTitle {
          width: calc(100% - 65px);
          font-size: 16px;
          font-size: 1rem;
          display: inline-block;
          vertical-align: middle;
          color: #ffffff;
          text-transform: uppercase;
          line-height: 1.35; }
    .calendar__widgetBtn {
      font-size: 18px;
      font-size: 1.125rem;
      text-transform: uppercase;
      color: #10b7fe;
      background-color: #565757;
      box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.5);
      text-shadow: 1px 3px 3px rgba(0, 0, 0, 0.5); }
      .calendar__widgetBtn.btn {
        padding-top: 10px;
        padding-bottom: 10px; }
      .calendar__widgetBtn:focus, .calendar__widgetBtn:hover {
        background-color: #494a4a;
        color: #ffffff; }
      .calendar__widgetBtnWrap {
        padding: 20px 15px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto; }
    .calendar__widget .listBtn.btn {
      background-color: #10b7fe;
      color: #ffffff; }
    .calendar__widget .listBtnWrap {
      position: static;
      padding-top: 20px;
      padding-bottom: 0; }
  .calendar__color {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border: 1px solid #d2d2d2; }
    .calendar__color--events {
      background-color: #fcf5be; }
    .calendar__color--course {
      background-color: #deecf9; }
    .calendar__color--meetings {
      background-color: #cae1cf; }
    .calendar__color--visits {
      background-color: #f9e8cd; }
    .calendar__color ~ small {
      display: inline-block;
      vertical-align: middle;
      font-size: 12px;
      font-size: 0.75rem;
      text-transform: uppercase;
      margin-left: 5px;
      margin-right: 10px; }
  .calendar .fc-toolbar {
    margin-bottom: 0;
    padding: 20px;
    background-color: #f2f2f2; }
    .calendar .fc-toolbar h2 {
      font-size: 22px;
      font-size: 1.375rem;
      font-weight: lighter; }
    .calendar .fc-toolbar > * > * {
      margin-left: 10px; }
      @media (min-width: 1220px) {
        .calendar .fc-toolbar > * > * {
          margin-left: 20px; } }
    .calendar .fc-toolbar .fc-button-group .fc-button {
      margin-left: 20px; }
      .calendar .fc-toolbar .fc-button-group .fc-button:first-child {
        margin-left: 0; }
    .calendar .fc-toolbar .fc-button {
      height: auto;
      padding: 0;
      font-size: 14px;
      background: transparent;
      color: #008ac5;
      text-shadow: none;
      box-shadow: none;
      border: 0 none;
      text-transform: uppercase;
      position: relative;
      top: 3px; }
      .calendar .fc-toolbar .fc-button .fc-icon {
        position: static;
        margin: -5px 0 0;
        font-size: 26px;
        line-height: 1;
        height: 30px;
        width: auto;
        display: block; }
      .calendar .fc-toolbar .fc-button.fc-state-disabled {
        opacity: 0.9;
        color: #b4b3b3; }
      .calendar .fc-toolbar .fc-button.fc-state-active {
        color: #c2b725; }
  .calendar .fc-year-view th, .calendar .fc-year-view td,
  .calendar .fc-month-view th,
  .calendar .fc-month-view td {
    border: 0 none; }
  .calendar .fc-axis {
    background-color: #e9e9e9; }
  .calendar .fc-widget-header th, .calendar .fc-widget-header td {
    background-color: #e9e9e9; }
  .calendar .fc-widget-header.fc-day-header {
    padding: 15px 20px;
    text-align: left;
    font-weight: normal;
    font-size: 14px;
    font-size: 0.875rem; }
  .calendar .fc-year-view {
    margin-top: 20px; }
    .calendar .fc-year-view .fc-widget-header.fc-day-header {
      padding: 10px; }
  .calendar .fc-year-monthly-name {
    padding: 0 10px;
    margin: 0;
    text-align: left; }
    .calendar .fc-year-monthly-name a {
      font-weight: normal; }
  .calendar .fc-widget-content .fc-row,
  .calendar .fc-year-view .fc-day-grid .fc-row {
    border-bottom: 1px solid #d2d2d2; }
  .calendar .fc-year-view .fc-day-grid .fc-row:last-of-type {
    border-bottom: 0 none; }
  .calendar .fc-basic-view .fc-day-number {
    text-align: left;
    padding: 10px 20px; }
  .calendar .fc-year-view .fc-day-number {
    text-align: left;
    padding: 0 10px; }
  .calendar .fc-content-skeleton .fc-state-highlight {
    color: #e30613; }
  .calendar .fc-bg .fc-state-highlight,
  .calendar .fc-bg .fc-today {
    background-color: #f2f2f2; }

.list {
  box-shadow: 0 1px 0 0 #d2d2d2, 0 2px 0 0 #ffffff; }
  .listCourse {
    display: block; }
  .listWrap {
    float: left;
    width: 33.333334%;
    padding-left: 30px;
    padding-right: 30px;
    border-right: 1px solid #d2d2d2;
    margin-top: 55px;
    margin-bottom: 60px; }
    .listWrap:last-of-type {
      border-right: 0 none; }
  .listContainer {
    background-color: #ebeaea;
    height: 100%;
    position: relative;
    padding: 10px 15px 70px; }
  .listTitle {
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: bold; }
    .listTitleWrap {
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      color: #565757; }
  .listDescription {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
    margin-top: 3px;
    padding-bottom: 15px; }
  .listItem {
    box-shadow: 0 -1px 0 0 #ffffff, 0 -2px 0 0 #d2d2d2; }
    .listItemLink {
      display: block;
      padding-top: 10px;
      padding-bottom: 15px; }
      .listItemLink.icon {
        position: relative;
        padding-right: 30px; }
        .listItemLink.icon:before, .listItemLink.icon .iconGenerated {
          position: absolute;
          right: 0;
          top: 0;
          bottom: 0;
          margin: auto;
          width: 22px;
          height: 22px;
          font-size: 22px;
          display: block; }
    .listItemTitle {
      display: block;
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      font-size: 22px;
      font-size: 1.375rem;
      padding-bottom: 6px; }
    .listItemDescription {
      display: block;
      color: #363737;
      font-size: 12px;
      font-size: 0.75rem;
      line-height: 1.5; }
    .listItemCourse {
      display: block;
      border: 1px solid #d2d2d2;
      background-color: #ffffff;
      margin-bottom: 30px;
      position: relative; }
      .listItemCourse.icon:before {
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 50px;
        text-align: right;
        padding: 7px;
        z-index: 1;
        pointer-events: none;
        font-size: 18px; }
      .listItemCourse.icon:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 80px 50px 0;
        border-color: transparent #feeb14 transparent transparent;
        pointer-events: none;
        z-index: 0; }
      .listItemCourseCategoryLink {
        display: inline-block;
        margin: 30px 20px 0;
        font-size: 18px;
        font-size: 1.125rem; }
        .listItemCourseCategoryLink ~ .listItemCourseLink {
          padding-top: 0;
          position: static; }
      .listItemCourseCategoryTitle {
        display: block;
        font-family: 'Titillium', Helvetica, Arial, sans-serif; }
      .listItemCourseLink {
        display: block;
        padding: 20px;
        position: relative; }
        .listItemCourseLink:hover .listItemCourseTitle,
        .listItemCourseLink:hover .listItemCourseImgWrap, .listItemCourseLink:focus .listItemCourseTitle,
        .listItemCourseLink:focus .listItemCourseImgWrap {
          opacity: 0.75; }
        .listItemCourseLink:hover .listItemCourseBtn, .listItemCourseLink:focus .listItemCourseBtn {
          background-color: #10b7fe; }
      .listItemCourseImg {
        display: block; }
        .listItemCourseImgWrap {
          display: block;
          position: absolute;
          left: 20px;
          padding-bottom: calc(15.3275% + 10px);
          height: 0;
          transition: opacity 0.25s;
          width: calc(25% - 45px); }
          .listItemCourseImgWrap img {
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: block;
            margin: auto;
            max-height: 100%;
            border: 1px solid #d2d2d2; }
      .listItemCourseDate {
        display: block;
        color: #c2b725;
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        padding-bottom: 10px; }
      .listItemCourseTitle {
        display: block;
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        font-size: 24px;
        font-size: 1.5rem;
        color: #2b2a2a;
        line-height: 1.2;
        padding-bottom: 6px;
        transition: opacity 0.25s;
        will-change: opacity; }
        .listItemCourse--library .listItemCourseTitle {
          font-size: 36px;
          font-size: 2.25rem;
          font-weight: bold; }
        .listItemCourseTitleWrap {
          padding-right: 16.6666666667%;
          padding-top: 10px;
          padding-bottom: 17px; }
          .listItemCourseImgWrap ~ .listItemCourseTitleWrap {
            padding-left: 25%; }
      .listItemCourseDescription {
        display: block;
        color: #363737;
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.25;
        padding-bottom: 10px;
        font-weight: lighter; }
      .listItemCourseInfo {
        display: inline-block;
        vertical-align: top; }
        .listItemCourseInfo:before {
          content: ' - ';
          font-weight: lighter; }
        .listItemCourseInfo:first-child:before {
          display: none; }
        .listItemCourseInfo strong {
          font-weight: normal; }
        .listItemCourseInfo span {
          text-align: left; }
        .listItemCourseInfoWrap {
          color: #565757;
          font-size: 14px;
          font-size: 0.875rem;
          font-family: 'Titillium', Helvetica, Arial, sans-serif; }
      .listItemCourseBtn.btn {
        display: inline-block;
        vertical-align: middle;
        border-radius: 5px;
        background-color: #008ac5;
        color: #ffffff;
        text-transform: uppercase;
        font-weight: normal;
        font-size: 12px;
        font-size: 0.75rem;
        transition: background 0.25s;
        position: relative;
        top: 50%;
        transform: translateY(-50%); }
        .listItemCourseBtn.btn:before {
          content: '';
          display: block;
          position: absolute;
          top: -5px;
          left: -5px;
          width: calc(100% + 10px);
          height: calc(100% + 10px);
          border-radius: 10px;
          border: 5px solid #ebeaea; }
      .listItemCourseBtnWrap {
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 40px;
        margin: auto; }
  .listBtn.btn {
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    background-color: #363737;
    color: #10b7fe;
    text-transform: lowercase;
    font-weight: normal;
    font-size: 12px;
    font-size: 0.75rem; }
    .listBtn.btn.icon {
      padding-right: 35px; }
      .listBtn.btn.icon:before, .listBtn.btn.icon .iconGenerated {
        color: #ffffff;
        position: absolute;
        right: 15px;
        top: 1px;
        bottom: 0;
        margin: auto;
        width: 11px;
        height: 11px;
        display: block;
        font-size: 11px; }
    .listBtn.btn:hover, .listBtn.btn:focus {
      opacity: 0.75; }
  .listBtnWrap {
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    text-align: right;
    padding-top: 15px;
    padding-bottom: 5px;
    position: absolute;
    bottom: 10px;
    right: 15px; }
  .list__btnWrap {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff; }
    .minisite .list__btnWrap {
      margin-top: 30px; }
    .list__btnWrap .page-numbers {
      display: inline-block;
      vertical-align: middle;
      margin-left: 5px;
      margin-right: 5px; }
      .list__btnWrap .page-numbers.prev {
        color: #2b2a2a;
        margin-left: 0;
        margin-right: 10px; }
        .list__btnWrap .page-numbers.prev:hover, .list__btnWrap .page-numbers.prev:focus {
          color: #0a4d95; }
      .list__btnWrap .page-numbers.next {
        color: #2b2a2a;
        margin-right: 0;
        margin-left: 10px; }
        .list__btnWrap .page-numbers.next:hover, .list__btnWrap .page-numbers.next:focus {
          color: #0a4d95; }
      .list__btnWrap .page-numbers.current {
        color: #2b2a2a; }
      .list__btnWrap .page-numbers.dots {
        margin-left: 10px;
        margin-right: 10px; }

.instructions {
  background-color: #ffffff;
  height: 100%;
  position: relative;
  padding: 10px 15px 70px; }
  .instructionsWrap {
    float: left;
    width: 33.333334%;
    padding-left: 30px;
    padding-right: 30px;
    border-right: 1px solid #d2d2d2;
    margin-top: 55px;
    margin-bottom: 60px; }
    .instructionsWrap:last-of-type {
      border-right: 0 none; }
  .instructionsTitle {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 50px);
    font-size: 24px;
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: bold; }
    @media (min-width: 1220px) {
      .instructionsTitle {
        font-size: 26px;
        font-size: 1.625rem; } }
    .instructionsTitleWrap {
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      color: #363737; }
      .instructionsTitleWrap.icon {
        padding-left: 60px;
        min-height: 60px;
        margin-bottom: 10px; }
        .instructionsTitleWrap.icon:before, .instructionsTitleWrap.icon .iconGenerated {
          font-size: 60px;
          height: 60px;
          width: 60px;
          display: block;
          color: #feeb14;
          position: absolute;
          left: 10px;
          top: 10px; }
    .instructionsTitleSub {
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      color: #363737;
      font-size: 18px;
      font-size: 1.125rem;
      margin-bottom: 15px; }
  .instructions > p:not(.instructionsTitleSub) {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #363737;
    font-weight: lighter; }

.about {
  height: 100%;
  position: relative;
  padding: 10px 15px 70px; }
  .aboutWrap {
    float: left;
    width: 33.333334%;
    padding-left: 30px;
    padding-right: 30px;
    border-right: 1px solid #d2d2d2;
    margin-top: 55px;
    margin-bottom: 60px; }
    .aboutWrap:last-of-type {
      border-right: 0 none; }
  .aboutTitle {
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    display: block;
    font-size: 26px;
    font-size: 1.625rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 15px; }
  .about > p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #363737;
    font-weight: lighter;
    margin-bottom: 10px; }
    .about > p:last-of-type {
      margin-bottom: 0; }

.program {
  display: block;
  background-color: #fff !important; }
  .programWrap {
    background-color: #ffffff;
    border: 1px solid #d2d2d2; }
  .program__title {
    display: block;
    padding: 8px 10px;
    border-bottom: 1px solid #d2d2d2; }
    .program__titleWrap {
      text-transform: uppercase;
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      font-size: 24px;
      font-size: 1.5rem;
      padding: 0 10px 10px; }
  .program__content {
    display: block;
    padding: 0 20px; }
    .program__content tr:nth-child(even) {
      background: #F1F1F1; }
    .program__content td {
      border: none !important; }
    .program__content thead tr th {
      background-color: #f1f1f1 !important; }
    .program__content:first-child th {
      padding-top: 10px; }
    .program__content table {
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: lighter;
      width: 100%; }
      .program__content table ul {
        margin: 10px 0 0 20px;
        list-style-type: disc; }
        .program__content table ul li {
          padding: 5px 0;
          line-height: 1.35; }
      .program__content table a {
        display: block; }
    .program__content thead {
      text-align: left; }
    .program__content tr {
      text-align: left; }
    .program__content th {
      font-size: 26px;
      font-size: 1.625rem;
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      padding-bottom: 5px; }
    .program__content td {
      border: 1px solid #d2d2d2;
      border-top-style: dashed;
      border-bottom-style: dashed;
      padding: 11px 15px;
      font-size: 1rem;
      font-weight: normal; }
      .program__content td:first-child {
        border-left: 0 none;
        padding-left: 0; }
      .program__content td:last-child {
        border-right: 0 none; }
      .program__content td[colspan="2"] {
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        font-size: 20px;
        font-size: 1.25rem; }
  .program__btn.btn {
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    background-color: #363737;
    color: #10b7fe;
    text-transform: lowercase;
    font-weight: normal;
    font-size: 12px;
    font-size: 0.75rem;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    padding: 7px 25px; }
    .program__btn.btn:hover, .program__btn.btn:focus {
      opacity: 0.75; }
  .program__btnWrap {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px; }
    .program__btnWrap ~ .program__content {
      display: none;
      margin-bottom: 40px; }
    .program__btnWrap.js-toggleClass-parent-active {
      margin-bottom: 20px; }
      .program__btnWrap.js-toggleClass-parent-active ~ .program__content {
        display: block; }
  .program .tabWrap {
    padding: 0; }

.widget {
  display: block; }
  .widget__info {
    display: block; }
    .widget__infoWrap {
      border: 1px solid #d2d2d2;
      background-color: #ffffff;
      padding: 10px; }
      .widget__infoWrap-alt {
        background-color: #185593;
        border: none;
        margin-bottom: 20px; }
        .widget__infoWrap-alt .widget__infoHead p {
          padding: 20px 0;
          font-size: 15px;
          font-size: 0.9375rem;
          text-transform: uppercase;
          font-weight: bold;
          color: #ffffff; }
        .widget__infoWrap-alt .hero__btnWrap {
          transition: opacity 0.25s; }
          .widget__infoWrap-alt .hero__btnWrap:hover {
            opacity: 0.8;
            transition: opacity 0.25s; }
        .widget__infoWrap-alt .hero__btn.btn {
          display: inline-block;
          font-size: 16px;
          font-size: 1rem;
          margin-top: 0;
          background-color: transparent;
          border: 1px solid #008ac5;
          color: #feeb14;
          font-weight: bold;
          box-shadow: none;
          border-radius: 0; }
      @media (min-width: 1220px) {
        .widget__infoWrap {
          padding-left: 20px;
          padding-right: 20px; } }
    .widget__infoImg {
      display: block;
      border-radius: 1000px; }
      .widget__infoImgWrap {
        margin: 0 auto;
        display: block;
        max-width: 170px; }
    .widget__infoHead {
      line-height: 1.25; }
      .widget__infoHead.icon {
        position: relative;
        padding-left: 65px; }
        .widget__infoHead.icon:before, .widget__infoHead.icon .iconGenerated {
          width: 46px;
          height: 46px;
          display: block;
          color: #c2b725;
          position: absolute;
          left: 0;
          top: 0;
          font-size: 46px; }
      .widget__infoHead:first-child p {
        margin-top: 0; }
      .widget__infoHead p {
        text-align: center;
        margin: 10px 0;
        font-size: 20px;
        font-size: 1.25rem;
        font-weight: lighter;
        padding-left: 20px;
        padding-right: 20px; }
      .widget__infoHead strong {
        text-align: center;
        display: block;
        margin-top: 5px;
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 1.2; }
      .widget__infoHead span {
        display: block; }
    .widget__infoContact {
      display: block;
      text-align: center;
      padding-top: 15px;
      font-size: 18px;
      font-size: 1.125rem; }
      .widget__infoContactTel {
        display: block;
        padding-bottom: 10px; }
      .widget__infoContactMail {
        display: block; }
  .widget__attachments {
    text-align: left;
    padding: 0 10px; }
    .minisite__pageRight .widget__attachmentsWrap .widget__attachments {
      padding: 0; }
    .widget__attachmentsWrap {
      background-color: #fff; }
      .widget__attachmentsWrap.bg-odd {
        background: #ffffff; }
      .widget__attachmentsWrap-alt .widget__attachmentsTitle {
        font-weight: bold;
        font-size: 35px;
        font-size: 2.1875rem;
        text-transform: none; }
      .widget__attachmentsWrap-alt .widget__attachmentsList {
        box-shadow: none; }
      .widget__attachmentsWrap-alt .widget__attachmentsListItem {
        padding: 20px 5px;
        box-shadow: none;
        border-bottom: 2px solid #b1b1b1; }
        .widget__attachmentsWrap-alt .widget__attachmentsListItem .widget__attachmentsListItemLink span {
          color: #185593;
          font-weight: bold;
          width: calc(100% - 40px); }
          .widget__attachmentsWrap-alt .widget__attachmentsListItem .widget__attachmentsListItemLink span:before {
            display: none; }
    .widget__attachmentsHead {
      margin-bottom: 20px; }
    .widget__attachmentsTitle {
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      font-size: 20px;
      font-size: 1.25rem;
      margin-bottom: 10px; }
    .widget__attachmentsDescription {
      font-weight: lighter;
      line-height: 1.25;
      font-size: 16px;
      font-size: 1rem; }
    .widget__attachmentsList {
      box-shadow: 0 -1px 0 0 #ffffff, 0 -2px 0 0 #b4b3b3; }
      .widget__attachmentsListItem {
        display: block;
        box-shadow: 0 1px 0 0 #b4b3b3, 0 2px 0 0 #ffffff;
        padding: 10px 5px; }
        .widget__attachmentsListItemLink {
          display: block;
          color: #2b2a2a;
          font-family: 'Titillium', Helvetica, Arial, sans-serif;
          font-size: 0; }
          .page__contentLeftWrap .widget__attachmentsListItemLink {
            color: #185593;
            font-weight: bold; }
          .widget__attachmentsListItemLink.icon {
            position: relative; }
            .widget__attachmentsListItemLink.icon:before, .widget__attachmentsListItemLink.icon .iconGenerated {
              display: inline-block;
              vertical-align: middle;
              font-size: 34px;
              width: 40px;
              height: 40px; }
          .widget__attachmentsListItemLink:hover, .widget__attachmentsListItemLink:focus {
            opacity: 0.65;
            color: #2b2a2a; }
        .widget__attachmentsListItem span {
          font-size: 14px;
          font-size: 0.875rem; }
          @media (min-width: 1220px) {
            .widget__attachmentsListItem span {
              font-size: 16px;
              font-size: 1rem; } }
          .widget__attachmentsListItem span.icon {
            display: inline-block;
            vertical-align: middle;
            position: relative;
            padding-right: 20px;
            padding-left: 10px;
            width: calc(100% - 40px); }
            .widget__attachmentsListItem span.icon:before, .widget__attachmentsListItem span.icon .iconGenerated {
              display: block;
              width: 20px;
              height: 20px;
              position: absolute;
              top: 0;
              bottom: 0;
              right: 0;
              margin: auto;
              font-size: 18px;
              color: #10b7fe; }
  .widget__news {
    text-align: left; }
    .widget__newsWrap {
      background-color: #ffffff;
      border: 1px solid #d2d2d2;
      padding: 10px 20px; }
    .widget__newsHead {
      text-align: left; }
      .widget__newsHeadWrap {
        text-transform: uppercase;
        padding-bottom: 5px;
        border-bottom: 1px solid #d2d2d2;
        color: #2b2a2a;
        margin-bottom: 20px;
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        font-size: 24px;
        font-size: 1.5rem; }
    .widget__newsItem {
      margin-bottom: 20px; }
      .widget__newsItemLink {
        display: block;
        color: #2b2a2a; }
        .widget__newsItemLink:hover, .widget__newsItemLink:focus {
          opacity: 0.75;
          color: #2b2a2a; }
      .widget__newsItemDate {
        display: block;
        color: #c2b725;
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        font-size: 13px;
        font-size: 0.8125rem;
        text-transform: uppercase;
        margin-bottom: 5px; }
      .widget__newsItemTitle {
        font-weight: lighter;
        line-height: 1.25;
        font-size: 16px;
        font-size: 1rem; }
  .widget__events {
    text-align: left; }
    .widget__eventsWrap {
      padding: 10px;
      border: 1px solid #d2d2d2;
      background-color: #ffffff; }
    .widget__eventsHead {
      text-align: left; }
      .widget__eventsHeadWrap {
        padding: 5px 10px 0;
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        text-transform: uppercase;
        font-size: 19px;
        font-size: 1.1875rem;
        font-weight: bold;
        margin-bottom: -5px; }
    .widget__events .listBtn.btn {
      background-color: #10b7fe;
      color: #ffffff; }
    .widget__events .listBtnWrap {
      position: static;
      padding-top: 0;
      padding-bottom: 0; }

.recap__list {
  font-size: 0; }
  .recap__listWrap {
    padding-top: 20px; }
  .recap__listItem {
    display: inline-block;
    vertical-align: top;
    width: 33.333334%;
    font-size: 15px;
    font-size: 0.9375rem;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px; }
    .recap__listItem strong {
      display: block;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap; }
      .recap__listItem strong:first-child {
        padding-bottom: 5px; }
    .recap__listItem span {
      display: block;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap; }
      .recap__listItem span:first-child {
        padding-bottom: 5px; }

.modal {
  z-index: 99;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  overflow: auto;
  margin: auto;
  font-family: 'Titillium', Helvetica, Arial, sans-serif;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.25s, visibility 0.25s;
  visibility: hidden;
  opacity: 0; }
  .modal p:empty {
    display: none; }
  .js-modal {
    overflow-y: hidden;
    min-height: inherit; }
  .modal-custom .modal--custom {
    visibility: visible;
    opacity: 1; }
    .modal-custom .modal--custom .modalWrap {
      pointer-events: all; }
      .modal-custom .modal--custom .modalWrap a {
        pointer-events: all !important; }
  .modal-custom a {
    pointer-events: none !important; }
  .modal-custom .ui-datepicker a, .modal-custom #cookie-law-info-bar a {
    pointer-events: all !important; }
  .modal__container {
    width: 100%;
    height: calc(100% - 19px); }
    .modal__container:before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 1px;
      height: 100%;
      margin-left: -1px; }
  .modal__headLogo {
    display: none; }
  .modal__headTitle {
    margin: 0;
    background-color: #ebeaea;
    color: #363737;
    padding: 26.6666666667px 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: bold; }
    .modal__headTitle:empty {
      display: none; }
  .modal__note {
    padding: 120px 40px 120px;
    text-align: center;
    background-color: #f9f9f9; }
    .modal__note img {
      display: block;
      max-width: 100%;
      height: auto;
      display: block;
      padding: 0 20px; }
    .modal__note p:not([class*="modal__"]) {
      margin: 20px 0 0;
      font-size: 19px;
      font-size: 1.1875rem; }
  .modal__title {
    margin: 0;
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #10b7fe;
    display: block;
    padding-bottom: 10px; }
  .modal__special {
    margin: 20px 0 0;
    color: #e8e8e8;
    font-size: 17px;
    font-size: 1.0625rem;
    text-transform: uppercase; }
    .modal__special strong {
      margin-left: 20px;
      font-size: 19px;
      font-size: 1.1875rem;
      text-transform: none;
      font-weight: bold;
      color: #2b2a2a; }
  .modal__btn {
    text-align: left; }
    .modal__btnWrap {
      text-align: center;
      padding: 40px 0; }

.minisite .testata {
  position: relative;
  z-index: 2; }
  .minisite .testata__badgeWrap, .minisite .testata__navigationTopItem, .minisite .testata__logoWrap:before,
  .minisite .testata__logo img {
    display: none; }
  .minisite .testata__login {
    right: 0; }
  .minisite .testata__bottom {
    z-index: 3;
    overflow: visible; }
  .minisite .testata__navigation {
    margin-left: 0;
    padding: 10px 10px 20px;
    background-color: #e8e8e8; }
    .minisite .testata__navigationTop {
      margin-top: 0; }
      .minisite .testata__navigationTopWrap {
        margin-right: 240px; }
      .minisite .testata__navigationTopItem:last-child {
        display: block;
        margin: 0;
        padding: 0; }
      .minisite .testata__navigationTopItemLink {
        padding-top: 10px;
        padding-bottom: 10px; }
    .minisite .testata__navigationWrap {
      position: absolute;
      top: 0;
      left: 0;
      right: auto;
      background-color: #e8e8e8;
      z-index: 1;
      min-width: 250px;
      opacity: 0;
      transition: opacity 0.25s;
      pointer-events: none;
      overflow: visible; }
      .minisite .testata__navigationWrap:before {
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 1000%;
        box-shadow: 0px 0px 10px -2px #000000;
        pointer-events: none; }
      .minisite .testata__navigationWrap:after {
        content: '';
        display: block;
        position: absolute;
        top: -50%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #e8e8e8;
        z-index: -1;
        pointer-events: none; }
      .js-minisite-menu-open.minisite .testata__navigationWrap {
        opacity: 1;
        pointer-events: all; }
    .minisite .testata__navigationItem {
      display: block; }
      .minisite .testata__navigationItem.js-toggleClass-parent-active {
        overflow: hidden; }
      .minisite .testata__navigationItem:first-child {
        box-shadow: 0px -1px 0px 0px #ffffff, 0px -2px 0px 0px #d2d2d2; }
      .minisite .testata__navigationItemTitle {
        display: block; }
      .minisite .testata__navigationItemLink {
        padding-top: 10px;
        padding-bottom: 8px;
        font-size: 12px;
        font-size: 0.75rem;
        box-shadow: 0px 1px 0px 0px #d2d2d2, 0px 2px 0px 0px #ffffff; }
        .minisite .testata__navigationItemLink:after {
          display: none !important; }
        .minisite .testata__navigationItemLink.js-toggleClass.js-toggleClass-active {
          transition: none;
          background-color: #e8e8e8; }
          .minisite .testata__navigationItemLink.js-toggleClass.js-toggleClass-active:hover, .minisite .testata__navigationItemLink.js-toggleClass.js-toggleClass-active:focus {
            opacity: 1; }
        .minisite .testata__navigationItemLink.icon[data-icon="home"] {
          padding: 10px 15px 8px; }
          .minisite .testata__navigationItemLink.icon[data-icon="home"] .testata__navigationItemTitle {
            color: #2b2a2a;
            font-size: 12px;
            font-size: 0.75rem;
            line-height: 1.15;
            font-family: 'Titillium', Helvetica, Arial, sans-serif; }
        .minisite .testata__navigationItemLink.icon:before, .minisite .testata__navigationItemLink.icon .iconGenerated {
          display: none; }
        .minisite .testata__navigationItemLink.icon.js-toggleClass:before, .minisite .testata__navigationItemLink.icon.js-toggleClass .iconGenerated {
          display: block;
          font-size: 14px;
          top: 10px; }
    .minisite .testata__navigationSub {
      position: static;
      transition: margin 0.25s;
      margin-bottom: 0;
      background-color: transparent;
      padding-left: 20px;
      padding-right: 20px; }
      .minisite .testata__navigationSub:before {
        display: none; }
      .minisite .testata__navigationSub .testata__navigationSubItemLink {
        font-size: 12px;
        font-size: 0.75rem; }
      .minisite .js-toggleClass-parent-active > .testata__navigationSub {
        margin-top: 0 !important; }
  .minisite .testata__logo {
    display: inline-block;
    margin-bottom: 0;
    padding: 0; }
    .minisite .testata__logoWrap {
      text-align: left; }
    .minisite .testata__logo:before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 78px;
      height: 38px;
      background: transparent no-repeat center url(../../shared/img/logo-nato.svg); }
    .minisite .testata__logo:after {
      content: 'NATO M&S COE';
      display: inline-block;
      vertical-align: middle;
      margin-left: 10px;
      font-size: 18px;
      font-size: 1.125rem;
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      color: #2b2a2a; }
    .minisite .testata__logoTitle {
      font: 0/0 a;
      text-shadow: none;
      color: transparent;
      padding: 0;
      width: auto;
      float: right;
      cursor: pointer; }
      .minisite .testata__logoTitle:before {
        font-family: 'iconfont';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        /* Enable Ligatures ================ */
        letter-spacing: 0;
        -webkit-font-feature-settings: "liga";
        -moz-font-feature-settings: "liga=1";
        -moz-font-feature-settings: "liga";
        -ms-font-feature-settings: "liga" 1;
        -o-font-feature-settings: "liga";
        font-feature-settings: "liga";
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "arrow";
        color: #008ac5;
        font-size: 16px;
        display: inline-block;
        transform: rotate(90deg);
        margin: 10px;
        transition: transform 0.25s; }
        .js-minisite-menu-open.minisite .testata__logoTitle:before {
          transform: rotate(-90deg); }
      .minisite .testata__logoTitle:after {
        content: '';
        display: block;
        position: absolute;
        top: -20px;
        left: -10px;
        width: calc(100% + 20px);
        height: 78px;
        background-color: #e8e8e8;
        z-index: -1;
        transition: opacity 0.25s;
        opacity: 0;
        pointer-events: none;
        cursor: pointer;
        will-change: opacity; }
        .js-minisite-menu-open.minisite .testata__logoTitle:after {
          opacity: 1;
          pointer-events: all; }
  .minisite .testata__search {
    padding-right: 0; }
    .minisite .testata__searchWrap {
      float: none;
      position: absolute;
      top: 3px;
      right: 0;
      padding-top: 5px;
      padding-bottom: 5px; }
    .minisite .testata__search.icon:before, .minisite .testata__search.icon .iconGenerated {
      right: 10px; }
    .minisite .testata__search input[type="submit"] {
      right: 0; }
  .minisite .testata__top .wrap {
    position: relative; }
  .minisite .testata__bottom .wrap {
    position: relative; }

.minisite .program__content {
  margin-bottom: 40px; }

.minisite .typography h1:not(.hidden) {
  zoom: 1;
  font-size: 22px;
  font-size: 1.375rem;
  overflow: visible;
  display: block; }
  .minisite .typography h1:not(.hidden):after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }

.minisite .typography h2:not(.hidden) {
  zoom: 1;
  font-size: 22px;
  font-size: 1.375rem;
  overflow: visible;
  display: block; }
  .minisite .typography h2:not(.hidden):after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }

.minisite .typography h3:not(.hidden) {
  zoom: 1;
  font-size: 22px;
  font-size: 1.375rem;
  overflow: visible;
  display: block; }
  .minisite .typography h3:not(.hidden):after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }

.minisite .typography h4:not(.hidden) {
  zoom: 1;
  font-size: 22px;
  font-size: 1.375rem;
  overflow: visible;
  display: block; }
  .minisite .typography h4:not(.hidden):after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }

.minisite .typography h5:not(.hidden) {
  zoom: 1;
  font-size: 22px;
  font-size: 1.375rem;
  overflow: visible;
  display: block; }
  .minisite .typography h5:not(.hidden):after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }

.minisite .typography h6:not(.hidden) {
  zoom: 1;
  font-size: 22px;
  font-size: 1.375rem;
  overflow: visible;
  display: block; }
  .minisite .typography h6:not(.hidden):after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }

.minisite .typography .minisite-form_wrapper #field_14_1,
.minisite .typography .minisite-form_wrapper #field_14_2 {
  display: none; }

.minisite .typography .btn {
  display: inline-block;
  margin: 10px;
  border-radius: 5px;
  background-color: #008ac5;
  color: #ffffff;
  text-shadow: 0px 2px 2px rgba(43, 42, 42, 0.5);
  padding: 10px 20px;
  font-style: normal;
  font-family: 'Titillium', Helvetica, Arial, sans-serif;
  box-shadow: 0px 2px 3px 0 #d2d2d2; }

.minisite .typography cite {
  display: block;
  background-color: #e8e8e8;
  padding: 20px;
  text-align: center;
  font-style: normal;
  clear: both;
  overflow: hidden;
  zoom: 1;
  margin-top: 10px;
  margin-bottom: 10px; }
  .minisite .typography cite:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: "."; }
  .minisite .typography cite strong {
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-size: 1.125rem; }
    .minisite .typography cite strong:first-child {
      margin-right: 10px; }

.minisite .typography img {
  float: left;
  margin-bottom: 10px;
  max-width: 176px; }
  .minisite .typography img:first-child {
    margin-right: 20px; }
  .minisite .typography img:last-child {
    margin-left: 20px; }
  .minisite .typography img:only-child {
    max-width: 100%;
    float: none;
    display: block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; }
  .minisite .typography img + br {
    display: none; }

.minisite .typography blockquote {
  display: block;
  border: 1px solid #d2d2d2;
  background-color: #ffffff;
  padding: 10px 20px;
  line-height: 1.5;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem; }
  .minisite .typography blockquote:first-child {
    margin-top: 0; }
  .minisite .typography blockquote:before, .minisite .typography blockquote:after {
    content: '';
    display: none; }
  .minisite .typography blockquote p {
    padding: 5px 0;
    clear: both;
    overflow: hidden; }
  .minisite .typography blockquote ul {
    margin-top: 0; }
    .minisite .typography blockquote ul:last-child {
      padding-bottom: 0; }
  .minisite .typography blockquote cite {
    text-align: left; }
  .minisite .typography blockquote h1:not(.hidden) {
    border-bottom: 1px solid #d2d2d2;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .minisite .typography blockquote h1:not(.hidden) + p {
      padding-top: 0; }
  .minisite .typography blockquote h2:not(.hidden) {
    border-bottom: 1px solid #d2d2d2;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .minisite .typography blockquote h2:not(.hidden) + p {
      padding-top: 0; }
  .minisite .typography blockquote h3:not(.hidden) {
    border-bottom: 1px solid #d2d2d2;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .minisite .typography blockquote h3:not(.hidden) + p {
      padding-top: 0; }
  .minisite .typography blockquote h4:not(.hidden) {
    border-bottom: 1px solid #d2d2d2;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .minisite .typography blockquote h4:not(.hidden) + p {
      padding-top: 0; }
  .minisite .typography blockquote h5:not(.hidden) {
    border-bottom: 1px solid #d2d2d2;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .minisite .typography blockquote h5:not(.hidden) + p {
      padding-top: 0; }
  .minisite .typography blockquote h6:not(.hidden) {
    border-bottom: 1px solid #d2d2d2;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .minisite .typography blockquote h6:not(.hidden) + p {
      padding-top: 0; }

.minisite__testata {
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 10px -10px #000000; }
  .minisite__testataTop {
    background-color: #2b2a2a;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px; }
    .minisite__testataTop .wrap {
      position: relative;
      padding-left: 6px;
      padding-right: 6px; }
  .minisite__testataLogo {
    font-size: 0;
    display: block; }
    .minisite__testataLogoWrap {
      padding-right: 16.6666666667%; }
    .minisite__testataLogoImg {
      display: inline-block;
      vertical-align: middle; }
    .minisite__testataLogoTitle {
      font-size: 16px;
      font-size: 1rem;
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      margin-left: 20px;
      padding-left: 20px;
      border-left: 1px solid #404141;
      display: inline-block;
      vertical-align: middle;
      margin-top: 20px;
      padding-top: 10px;
      padding-bottom: 10px; }
  .minisite__testataList {
    text-align: center;
    font-size: 0; }
    .minisite__testataListWrap {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      width: 16.6666666667%;
      height: 37px; }
    .minisite__testataListItem {
      display: inline-block;
      vertical-align: middle;
      font-size: 16px;
      font-size: 1rem;
      margin-left: 10px;
      margin-right: 10px; }
      .minisite__testataListItemLink {
        display: block;
        color: #ffffff; }
        .minisite__testataListItemLink:hover, .minisite__testataListItemLink:focus {
          color: #ffffff; }
          .minisite__testataListItemLink:hover.icon, .minisite__testataListItemLink:focus.icon {
            background-color: #404141; }
        .minisite__testataListItemLink.icon {
          font-size: 20px;
          font-size: 1.25rem;
          padding: 8px;
          height: 37px;
          width: 37px;
          text-align: center;
          background-color: #000000; }
          .minisite__testataListItemLink.icon:before, .minisite__testataListItemLink.icon .iconGenerated {
            display: block; }
  .minisite__testataHamburger {
    display: none; }
    .minisite__testataHamburgerWrap {
      display: none; }
  .minisite__testataBottom {
    background-color: #363737; }
  .minisite__testataMenu {
    text-align: center;
    font-size: 0; }
    .minisite__testataMenuWrap {
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      padding: 10px 0; }
    .minisite__testataMenuItem {
      display: inline-block;
      vertical-align: middle;
      font-size: 14px;
      font-size: 0.875rem;
      margin-left: 20px;
      margin-right: 20px; }
      .minisite__testataMenuItemLink {
        color: #ffffff;
        text-transform: uppercase; }
        .minisite__testataMenuItemLink:hover, .minisite__testataMenuItemLink:focus {
          color: #ffffff;
          opacity: 0.75; }
        .minisite__testataMenuItemLink.icon {
          font-size: 16px;
          font-size: 1rem; }
          .minisite__testataMenuItemLink.icon .minisite__testataMenuItemTitle {
            font: 0/0 a;
            text-shadow: none;
            color: transparent; }
          .minisite__testataMenuItemLink.icon:before, .minisite__testataMenuItemLink.icon .iconGenerated {
            text-align: left; }
        .minisite__testataMenuItemLink--btn {
          color: #2b2a2a;
          border-radius: 5px;
          padding: 2px 20px; }
          .minisite__testataMenuItemLink--btn:hover, .minisite__testataMenuItemLink--btn:focus {
            color: #2b2a2a; }
      .minisite__testataMenuItemTitle {
        text-align: left; }

.minisite__footer {
  background-color: #e8e8e8;
  margin-bottom: -30px;
  padding-top: 20px;
  padding-bottom: 20px; }
  .minisite__footer .wrap {
    padding-left: 6px;
    padding-right: 6px; }
  .minisite__footerSlider {
    font-size: 0;
    float: left;
    width: 33.3333333333%;
    padding-right: 6px;
    padding-left: 6px;
    padding-left: 0; }
    .minisite__footerSliderItem {
      font-size: 0;
      display: inline-block;
      vertical-align: middle;
      width: 33.333334%;
      padding-left: 5px;
      padding-right: 5px;
      height: 100%; }
      .minisite__footerSliderItem:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        height: 100%;
        width: 1px;
        margin-left: -1px; }
      .minisite__footerSliderItem:first-of-type {
        padding-left: 0; }
      .minisite__footerSliderItem:last-of-type {
        padding-right: 0; }
      .minisite__footerSliderItem .slider {
        text-align: left; }
        .minisite__footerSliderItem .slider .owl-prev,
        .minisite__footerSliderItem .slider .owl-next {
          width: 10px;
          height: 12px;
          background-color: transparent;
          border-radius: 0; }
          .minisite__footerSliderItem .slider .owl-prev .icon:before, .minisite__footerSliderItem .slider .owl-prev .icon .iconGenerated,
          .minisite__footerSliderItem .slider .owl-next .icon:before,
          .minisite__footerSliderItem .slider .owl-next .icon .iconGenerated {
            color: #008ac5;
            font-size: 10px;
            padding: 0; }
          .minisite__footerSliderItem .slider .owl-prev.disabled,
          .minisite__footerSliderItem .slider .owl-next.disabled {
            cursor: default; }
            .minisite__footerSliderItem .slider .owl-prev.disabled .icon:before, .minisite__footerSliderItem .slider .owl-prev.disabled .icon .iconGenerated,
            .minisite__footerSliderItem .slider .owl-next.disabled .icon:before,
            .minisite__footerSliderItem .slider .owl-next.disabled .icon .iconGenerated {
              color: #b4b3b3; }
        .minisite__footerSliderItem .slider .owl-prev {
          left: 10px; }
        .minisite__footerSliderItem .slider .owl-next {
          right: 10px; }
        .minisite__footerSliderItem .sliderWrap {
          margin: 0;
          display: inline-block;
          vertical-align: middle;
          width: 100%;
          min-height: 115px; }
        .minisite__footerSliderItem .slider__title {
          text-align: center;
          font-size: 11px;
          font-size: 0.6875rem;
          font-family: 'Titillium', Helvetica, Arial, sans-serif;
          margin-bottom: 0;
          padding: 10px 0 0;
          color: #565757; }
        .minisite__footerSliderItem .slider--carousel {
          padding: 0; }
          .minisite__footerSliderItem .slider--carousel .owl-stage-outer {
            min-height: initial; }
        .minisite__footerSliderItem .slider .item {
          padding-left: 20px;
          padding-right: 20px; }
        .minisite__footerSliderItem .slider__item {
          text-align: left; }
          .minisite__footerSliderItem .slider__item img {
            text-align: left; }
  .minisite__footerSpringer {
    display: inline-block;
    vertical-align: middle;
    width: 100%; }
    .minisite__footerSpringerWrap {
      float: left;
      width: 16.6666666667%;
      padding-right: 6px;
      padding-left: 6px;
      font-size: 0; }
      .minisite__footerSpringerWrap:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        height: 100%;
        width: 1px;
        margin-left: -1px; }
    .minisite__footerSpringerTitle {
      font-size: 13px;
      font-size: 0.8125rem;
      margin-bottom: 10px; }
      .minisite__footerSpringerTitleWrap {
        text-align: left; }
    .minisite__footerSpringerImg {
      display: block; }
    .minisite__footerSpringerDescription {
      font-size: 11px;
      font-size: 0.6875rem; }
  .minisite__footerSponsor {
    padding: 10px 20px;
    border: 1px solid #d2d2d2;
    display: inline-block;
    vertical-align: middle;
    width: 100%; }
    .minisite__footerSponsorWrap {
      float: left;
      width: 33.3333333333%;
      padding-right: 6px;
      padding-left: 6px;
      padding-right: 0;
      color: #565757;
      font-size: 0; }
      .minisite__footerSponsorWrap:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        height: 100%;
        width: 1px;
        margin-left: -1px; }
    .minisite__footerSponsorTitle {
      font-family: 'Titillium', Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      margin-bottom: 5px;
      font-size: 12px;
      font-size: 0.75rem; }
    .minisite__footerSponsorList {
      font-size: 10px;
      font-size: 0.625rem; }
      .minisite__footerSponsorListItem {
        display: block; }
        .minisite__footerSponsorListItem strong {
          text-align: left; }

.minisite__hero {
  position: relative;
  padding-bottom: 35.84%;
  height: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: -50px;
  overflow: hidden;
  min-height: 560px; }
  .minisite__hero .wrap {
    position: relative;
    padding-bottom: 35.84%;
    height: 0;
    display: block;
    overflow: visible;
    min-height: 560px; }
  .minisite__heroWrap {
    display: block; }
  .minisite__heroInfo {
    color: #ffffff;
    padding: 120px 40px 150px;
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
    .minisite__heroInfoWrap {
      position: absolute;
      width: 50%;
      padding-left: 50px;
      height: 100%;
      top: 0;
      right: 0;
      font-family: 'Titillium', Helvetica, Arial, sans-serif; }
      .minisite__heroInfoWrap:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 50px;
        width: 1000%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        pointer-events: none; }
    .minisite__heroInfoDate {
      font-size: 26px;
      font-size: 1.625rem;
      margin-bottom: -13px; }
    .minisite__heroInfoTitle {
      font-size: 62px;
      font-size: 3.875rem;
      font-weight: bold;
      line-height: 1.2;
      margin: 20px 0; }
    .minisite__heroInfoBtn {
      display: inline-block;
      padding: 8px 50px;
      color: #2b2a2a;
      border-radius: 5px;
      position: relative;
      text-transform: uppercase;
      font-weight: bold; }
      .minisite__heroInfoBtn:hover, .minisite__heroInfoBtn:focus {
        color: #2b2a2a; }
      .minisite__heroInfoBtnWrap {
        text-align: center; }
      .minisite__heroInfoBtnContainer {
        font-size: 0; }
        .minisite__heroInfoBtnContainer .minisite__heroInfoBtnLabel,
        .minisite__heroInfoBtnContainer .minisite__heroInfoBtnWrap {
          display: inline-block;
          vertical-align: middle;
          width: 50%; }
        .minisite__heroInfoBtnContainer .minisite__heroInfoBtnLabel {
          font-size: 16px;
          font-size: 1rem; }
        .minisite__heroInfoBtnContainer .minisite__heroInfoBtnWrap {
          font-size: 20px;
          font-size: 1.25rem; }
        @media (min-width: 1220px) {
          .minisite__heroInfoBtnContainer {
            padding-right: 140px; } }
      .minisite__heroInfoBtnLabel {
        text-align: left; }
    .minisite__heroInfoJoin {
      background-color: rgba(0, 0, 0, 0.5);
      padding-top: 15px;
      padding-bottom: 15px; }
      .minisite__heroInfoJoinWrap {
        font-size: 15px;
        font-size: 0.9375rem;
        border-top: 2px dashed #ffffff;
        border-bottom: 2px dashed #ffffff;
        padding-top: 5px;
        padding-bottom: 5px;
        margin-top: 20px;
        text-align: center; }
        @media (min-width: 1220px) {
          .minisite__heroInfoJoinWrap {
            margin-right: 140px; } }
      .minisite__heroInfoJoinLink {
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px; }
        .minisite__heroInfoJoinLink.icon {
          position: relative;
          direction: rtl; }
          .minisite__heroInfoJoinLink.icon:before, .minisite__heroInfoJoinLink.icon .iconGenerated {
            display: inline-block;
            vertical-align: middle;
            position: relative;
            top: -1px;
            margin-left: 5px; }

.minisite__grid {
  font-size: 0;
  text-align: center;
  position: relative;
  top: -50px; }
  .sidebar .minisite__grid {
    position: static;
    min-width: 0; }
    @media (min-width: 1220px) {
      .sidebar .minisite__grid {
        max-width: none; } }
  .minisite__gridWrap {
    position: relative;
    background-color: #f9f9f9;
    padding-left: 6px;
    padding-right: 6px; }
  .minisite__gridItem {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding-left: 5px;
    padding-right: 5px; }
    .minisite__gridItem:first-of-type {
      padding-left: 0; }
    .minisite__gridItem:last-of-type {
      padding-right: 0; }
    .sidebar .minisite__gridItem {
      display: block;
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 20px; }
    .minisite__gridItemLink {
      width: 100%;
      height: 100%;
      display: block;
      padding: 15px 20px 30px;
      background-color: #ffffff;
      border: 1px solid #d2d2d2; }
      .minisite__gridItemLink:hover, .minisite__gridItemLink:focus {
        background-color: #ebeaea; }
    .minisite__gridItemTitle {
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: bold;
      text-align: left; }
      .minisite__gridItemTitleIcon {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        top: -3px;
        margin-right: 10px; }
        .minisite__gridItemTitleIcon.icon {
          font-size: 40px; }
          .minisite__gridItemTitleIcon.icon:before, .minisite__gridItemTitleIcon.icon .iconGenerated {
            text-align: left; }
      .minisite__gridItemTitleWrap {
        font-family: 'Titillium', Helvetica, Arial, sans-serif;
        color: #2b2a2a;
        text-transform: uppercase; }
    .minisite__gridItemDescription {
      text-align: left; }
      .minisite__gridItemDescriptionWrap {
        font-size: 13px;
        font-size: 0.8125rem;
        font-weight: lighter;
        color: #2b2a2a;
        line-height: 1.4;
        padding-top: 5px; }

.btn {
  display: block;
  text-align: center;
  border-radius: 5px; }
  .btn.icon {
    position: relative; }
    .btn.icon:before, .btn.icon .iconGenerated {
      position: absolute;
      font-size: 24px;
      right: 24px;
      top: 0;
      bottom: 0;
      margin: auto;
      display: block;
      height: 24px; }
  .btn--blu {
    background-color: #008ac5;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.125rem; }
    .btn--blu:hover, .btn--blu:focus {
      color: #ffffff;
      opacity: 0.75; }
  .btn--azzurro {
    background-color: #10b7fe;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.125rem; }
    .btn--azzurro:hover, .btn--azzurro:focus {
      color: #ffffff;
      opacity: 0.75; }
  .btn--giallo {
    background-color: #feeb14;
    color: #000000;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.125rem; }
    .btn--giallo:hover, .btn--giallo:focus {
      color: #000000;
      opacity: 0.75; }
  .btn--grigioChiaro {
    background-color: #565757;
    color: #008ac5;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.125rem; }
    .btn--grigioChiaro:hover, .btn--grigioChiaro:focus {
      color: #008ac5;
      opacity: 0.75; }
  .btn--grigioScuro {
    background-color: #404141;
    color: #008ac5;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.125rem; }
    .btn--grigioScuro:hover, .btn--grigioScuro:focus {
      color: #008ac5;
      opacity: 0.75; }
  .btn--inline {
    display: inline-block; }
  .btn--small {
    padding: 10px 20px; }
  .btn--medium {
    padding: 15px 40px; }
    .btn--medium.icon {
      padding-right: 50px; }
  .btn--large {
    padding: 20px 50px; }

.myaccount__head {
  font-size: 0;
  clear: both;
  overflow: hidden;
  display: block;
  padding: 10px 0;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 60px; }
  .myaccount__head > p {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-size: 1rem;
    font-family: 'Titillium', Helvetica, Arial, sans-serif; }
  .myaccount__head > div {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-size: 1rem;
    margin-left: 20px;
    border-left: 1px solid #d2d2d2;
    padding: 10px 0 10px 10px; }
    .myaccount__head > div p {
      display: inline-block;
      vertical-align: middle;
      margin: 0 10px; }

.sticky-list {
  margin-top: 40px !important;
  margin-bottom: 120px !important;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-size: 0.875rem;
  color: #404141;
  text-align: left; }
  .sticky-list th {
    font-weight: normal;
    padding: 10px 20px;
    color: #2b2a2a;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-size: 1.125rem; }
  .sticky-list tr {
    border-bottom: 1px solid #d2d2d2; }
  .sticky-list td {
    padding: 26.6666666667px 20px;
    font-weight: bold; }

.has-special_wrapper .gsection {
  border-bottom: 1px solid #d2d2d2; }

.has-special_wrapper ul li.gfield {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  padding-top: 0 !important;
  vertical-align: bottom !important;
  position: relative; }
  .has-special_wrapper--feedback.has-special_wrapper ul li.gfield {
    margin-top: 10px !important;
    vertical-align: top !important; }
  .has-special_wrapper--feedback.has-special_wrapper ul li.gfield.gfield_contains_required .gfield_description {
    padding-left: 40px; }
  .has-special_wrapper ul li.gfield.gfield_error {
    background-color: transparent;
    border-top: 0 none;
    border-bottom: 0 none; }
    .has-special_wrapper ul li.gfield.gfield_error.gfield_contains_required label.gfield_label {
      margin-top: 0; }

.has-special_wrapper .gfield_radio li label {
  margin: 6px 0 0 8px; }

.has-special_wrapper .ginput_container_date label {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute; }

.has-special_wrapper--feedback.has-special_wrapper .gfield_description {
  font-size: 90%;
  padding-top: 3px;
  padding-left: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d2d2d2; }

.has-special_wrapper .top_label .gfield_label {
  font-size: 14px;
  font-size: 0.875rem;
  position: absolute;
  top: -23px;
  margin-top: 0; }
  .has-special_wrapper--feedback.has-special_wrapper .top_label .gfield_label {
    font-size: 20px;
    font-size: 1.25rem;
    top: 0; }

.has-special_wrapper .top_label div.ginput_container {
  margin-top: 0 !important;
  overflow: hidden;
  width: 100%; }
  .has-special_wrapper .top_label div.ginput_container .clear-multi {
    overflow: hidden;
    clear: both;
    width: 100%; }
  .has-special_wrapper .top_label div.ginput_container .ginput_container {
    width: 28% !important;
    margin-top: 0;
    overflow: hidden; }

.has-special_wrapper .description_above .gfield_description {
  position: relative;
  top: 2px;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: -7px; }

.has-special_wrapper input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
  font-size: 14px;
  font-size: 0.875rem; }

.has-special_wrapper input[type="text"], .has-special_wrapper input[type="password"], .has-special_wrapper input[type="search"], .has-special_wrapper input[type="tel"], .has-special_wrapper input[type="email"] {
  border-radius: 5px; }

.has-special_wrapper textarea {
  border-radius: 5px; }

.has-special_wrapper .gform_footer {
  display: block;
  position: relative;
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px; }
  .has-special_wrapper .gform_footer input[type="submit"] {
    display: inline-block;
    background-color: #008ac5;
    color: #ffffff;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    position: relative;
    padding: 15px 50px;
    font-size: 18px;
    font-size: 1.125rem;
    box-shadow: 0 5px 10px -4px rgba(0, 0, 0, 0.4);
    text-align: center; }
    .has-special_wrapper .gform_footer input[type="submit"]:before {
      content: '';
      display: block;
      position: absolute;
      top: -10px;
      left: -10px;
      width: calc(100% + 20px);
      height: calc(100% + 20px);
      background-color: #e8e8e8;
      border-radius: 8px;
      z-index: -1; }
    .has-special_wrapper .gform_footer input[type="submit"]:hover, .has-special_wrapper .gform_footer input[type="submit"]:focus {
      color: #ffffff;
      background-color: #10b7fe; }

.wrapSlider {
  max-width: none; }

.sidebar-home--center + .bg-dark .wrap .assetsWrap {
  display: block;
  text-align: center; }

.sidebar-home--center + .bg-dark .wrap .assetsWrap .item {
  display: inline-block;
  float: none;
  width: 33%; }

.sidebar-home--center + .bg-dark .wrap .assetsWrap .item .widget__infoWrap .widget__info .widget__infoHead .widget__infoHeadTitle {
  padding: 20px 25px; }

.hide {
  display: none; }

iframe {
  width: 100%; }

.header {
  display: block;
  position: relative; }
  .header:before {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    left: 0;
    height: 100%;
    background-color: #142230; }
  .header:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    right: 0;
    height: 100%;
    background-color: #F8E81C; }
  .header .wrap {
    overflow: visible; }
  .headerWrap {
    display: block;
    font-size: 0;
    background-color: #F8E81C;
    position: relative; }
  .header__logo {
    display: block;
    width: 280px; }
    .header__logoLink {
      display: flex;
      align-items: center;
      position: relative;
      left: 0px;
      z-index: 4; }
    .header__logoWrap {
      display: inline-block;
      width: 50%;
      font-size: 1rem;
      vertical-align: middle;
      background-color: #142230;
      position: relative;
      padding: 20px;
      padding-left: 0; }
    .header__logoImg {
      display: block;
      position: absolute;
      z-index: 1;
      border: 15px solid #142233;
      border-radius: 100%;
      transform: translateY(-30%);
      width: 150px; }
      .header__logoImgWrap {
        display: block;
        border: 10px solid #142230;
        border-radius: 100%;
        width: 128px; }
    .header__logoTitle {
      display: block;
      color: white;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 1.5rem; }
      .header__logoTitleSub {
        display: block;
        font-size: 1.1rem;
        color: #fff;
        text-transform: lowercase;
        font-weight: lighter;
        text-align: right; }
        .header__logoTitleSub strong {
          text-transform: uppercase;
          color: #F8E71C;
          font-size: 2rem; }
      .header__logoTitleWrap {
        display: block;
        padding-left: 3rem;
        line-height: 1; }
  .header__navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    position: relative;
    left: 25px; }
    .header__navigationWrap {
      display: inline-block;
      width: 48%;
      font-size: 1rem;
      vertical-align: middle;
      position: relative;
      z-index: 1; }
      .header__navigationWrap:before {
        content: '';
        display: block;
        border-style: solid;
        border-color: transparent transparent #f8e81c transparent;
        border-width: 0 0 96px 25px;
        width: 0;
        height: 0;
        position: absolute;
        top: -13px;
        left: -25px; }
    .header__navigationSocial {
      display: block; }
      .header__navigationSocialWrap {
        display: inline-block;
        vertical-align: middle;
        position: relative; }
      .header__navigationSocialList {
        display: block; }
        .header__navigationSocialListItem {
          display: inline-block;
          padding: 0px 5px;
          transition: all 1s; }
          .header__navigationSocialListItem:hover {
            opacity: 0.6;
            transition: all 1s; }
          .header__navigationSocialListItemLink {
            display: block; }
            .header__navigationSocialListItemLink:before {
              display: block;
              border-radius: 50%;
              background: white;
              padding: 8px;
              color: #444444;
              font-size: 0.8rem; }
  .header__badge {
    display: block;
    width: 75%; }
    .header__badgeWrap {
      display: inline-block;
      vertical-align: middle;
      position: relative;
      left: 10px; }
      .header__badgeWrap:hover {
        opacity: 0.6; }
    .header__badgeLink {
      display: block; }
  .header__hamburger {
    display: block;
    padding: 20px;
    width: 60px; }
    .header__hamburger--bar {
      display: block;
      margin-top: 3px;
      margin-bottom: 3px;
      height: 3px;
      background-color: #000;
      max-width: 20px;
      border-radius: 30%; }
    .header__hamburgerWrap {
      display: inline-block;
      vertical-align: middle;
      padding-top: 10px; }

.menu {
  display: none;
  font-size: 1rem; }
  .js-hamburger-active .menu {
    background-color: #F8E81D;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    top: 90px !important;
    transition: top 0.25s;
    width: 100%;
    z-index: 4;
    right: 0;
    width: 30%;
    padding: 15px; }

.breadcrumbs {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 20px 0;
  position: absolute;
  top: 96px;
  z-index: 3;
  width: 100%;
  background: rgba(156, 167, 175, 0.5); }
  .breadcrumbs--single {
    position: static;
    top: 0;
    display: block;
    background: #fff; }
    .breadcrumbs--single + .wrap {
      overflow: visible; }
  .breadcrumbsList {
    margin: 0;
    padding: 0;
    padding-left: 168px;
    font-size: 0.8rem; }
    .breadcrumbsList li {
      display: inline-block;
      vertical-align: middle;
      color: #000000;
      padding-right: 10px; }
      .breadcrumbsList li a {
        display: block;
        color: #034B97;
        cursor: pointer; }

.hero {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: none;
  height: 100%;
  position: relative; }
  .hero.hero--singleShadeMed {
    height: unset; }
    .hero.hero--singleShadeMed:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4); }
  .hero.hero-shadeMed {
    font-size: 1rem;
    display: inline-block;
    vertical-align: top;
    width: 70%; }
  .hero.hero--archive {
    width: 100%; }
    .hero.hero--archive:after {
      content: '';
      background-color: rgba(0, 0, 0, 0.5);
      transition: background-color 0.25s;
      position: absolute;
      z-index: 0;
      width: 100%;
      display: block;
      height: 100%;
      top: 0;
      left: 0; }
    .hero.hero--archive:hover:after {
      background-color: rgba(0, 0, 0, 0); }
    .hero.hero--archive .wrapLarge {
      height: 100%; }
  .hero.hero--missions {
    width: 100%; }
    .hero.hero--missions:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.3); }
  .hero.hero--shade-med {
    width: 100%; }
  .hero.hero--about-us {
    width: 100%; }
  .wrap .hero {
    height: 100%; }
  .heroWrap {
    display: block;
    position: static;
    position: relative;
    height: 575px;
    display: block;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover; }
    .hero--missions .heroWrap {
      height: 100%; }
    .wrapSlider + .heroWrap {
      height: auto; }
  .hero__content {
    display: block;
    position: absolute;
    top: 30%;
    right: 5%; }
    .hero--archive .hero__content {
      top: 45%;
      left: 5%;
      text-align: left; }
    .hero--missions .hero__content {
      display: block;
      text-align: left;
      position: absolute;
      left: 3%;
      width: 90%;
      bottom: 10%;
      top: auto; }
    .hero--singleShadeMed .hero__content {
      display: block;
      text-align: left;
      position: absolute;
      left: 5%;
      width: 90%;
      bottom: 10%;
      top: auto; }
    .hero__contentWrap {
      position: absolute;
      width: 50%;
      height: 100%;
      background: rgba(16, 66, 135, 0.5);
      right: 0;
      clip-path: polygon(46% 0, 100% 0%, 100% 100%, 0% 100%);
      text-align: right;
      color: #ffffff;
      z-index: 2; }
      .hero--singleShadeMed .hero__contentWrap {
        clip-path: none;
        text-align: center;
        width: 100%;
        background: none;
        position: relative; }
      .hero--archive .hero__contentWrap {
        clip-path: none;
        text-align: center;
        width: 100%;
        background: none;
        position: relative; }
      .hero-shadeMed .hero__contentWrap {
        clip-path: none;
        text-align: center;
        width: 30%; }
      .hero--missions .hero__contentWrap {
        clip-path: none;
        text-align: center;
        width: 100%;
        background: none;
        position: relative; }
      .hero--about-us .hero__contentWrap {
        clip-path: none;
        text-align: center;
        width: 100%;
        background: none;
        position: relative; }
      .hero--shade-med .hero__contentWrap {
        clip-path: none;
        text-align: center;
        width: 100%;
        background: none;
        position: relative; }
    .hero__contentDate {
      display: block;
      font-size: 1.2rem; }
      .hero__contentDateWrap {
        display: block;
        padding-bottom: 5px; }
    .hero__contentTitle {
      display: block;
      font-size: 50px;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1;
      font-family: 'titillium_webblack', 'Titillium', Arial, Helvetica, sans-serif; }
      .hero--archive .hero__contentTitle {
        text-transform: none;
        font-family: 'Titillium', Arial, Helvetica, sans-serif;
        font-size: 55px;
        font-size: 3.4375rem; }
      .hero__contentTitleWrap {
        display: block;
        width: 55%;
        margin-left: auto;
        padding-bottom: 10px; }
        .hero--archive .hero__contentTitleWrap {
          width: 100%;
          padding-top: 5px; }
        .hero--missions .hero__contentTitleWrap {
          width: 100%; }
        .hero--singleShadeMed .hero__contentTitleWrap {
          width: 100%; }
    .hero__contentAbstract {
      display: block;
      font-weight: bold;
      font-size: 20px; }
      .hero--singleShadeMed .hero__contentAbstract {
        width: 100%;
        font-size: 30px;
        text-transform: uppercase;
        line-height: 1.2; }
      .hero__contentAbstractWrap {
        display: block;
        margin-left: auto;
        width: 60%;
        font-weight: bold;
        padding-bottom: 20px; }
        .hero--archive .hero__contentAbstractWrap {
          width: 100%; }
        .hero--missions .hero__contentAbstractWrap {
          width: 100%; }
        .hero--singleShadeMed .hero__contentAbstractWrap {
          width: 100%; }
    .hero__contentAction {
      padding: 10px 30px;
      color: black;
      text-transform: uppercase;
      font-weight: bold;
      background-color: #F8E71C;
      border: none;
      display: inline-block; }
      .hero__contentActionWrap {
        display: block;
        padding-top: 20px;
        transition: all 0.25s; }
        .hero__contentActionWrap a:hover {
          opacity: 0.6;
          transition: all 0.25s;
          color: #000000; }
  .heroCaption {
    font-size: 1rem;
    width: 38%;
    background-color: #0B4691;
    vertical-align: top;
    display: inline-block;
    position: relative; }
    .heroCaptionWrap {
      position: relative;
      top: 30%;
      left: 0%;
      text-align: right;
      padding: 0px 40px;
      height: calc(100% - 30%); }
    .heroCaption__title {
      display: block;
      font-family: 'titillium_webblack', Arial, Helvetica, sans-serif;
      font-size: 50px;
      color: #fff; }
      .heroCaption__titleWrap {
        display: block; }
      .heroCaption__titleSub {
        display: block;
        font-size: 20px;
        color: #fff;
        font-weight: bold; }
        .heroCaption__titleSubWrap {
          display: block;
          padding-bottom: 10px; }
    .heroCaption__action {
      display: block;
      padding: 10px 30px;
      color: black;
      text-transform: uppercase;
      font-weight: bold;
      background-color: #F8E71C;
      display: inline-block; }
      .heroCaption__actionWrap {
        display: block; }

.item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  font-size: 1rem;
  padding: 20px; }
  .slider .item {
    width: 100%;
    padding: 0; }
  .item-group--social .item {
    width: 33.3%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    margin: 0px 10px; }
  .item-group--social {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px; }
  .item-group--action {
    padding: 35px 0px; }
  .itemWrap {
    display: block; }
  .item__img {
    display: block; }
    .item-group--action .item__img {
      display: block;
      max-width: 100%;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .item__imgWrap {
      display: block;
      margin: 0 auto;
      width: 6.5rem;
      height: 6.5rem;
      background-color: #142230;
      border: 1px solid #F5E700;
      border-radius: 50%;
      position: relative; }
  .item__link {
    display: block;
    position: relative;
    height: 100%; }
    .item-group--action .item__link {
      display: block; }
  .item__info {
    display: block; }
    .item__infoWrap {
      display: block; }
      .item-group--action .item__infoWrap {
        text-align: center; }
    .item__infoTitle {
      display: block; }
      .item-group--action .item__infoTitle {
        font-weight: bold;
        color: #F3E21A;
        font-size: 19px;
        text-transform: capitalize;
        font-family: 'Titillium', Arial, Helvetica, sans-serif; }
      .item-group--social .item__infoTitle {
        font-weight: bold;
        text-transform: uppercase; }
      .item__infoTitleWrap {
        display: block; }
        .item-group--action .item__infoTitleWrap {
          padding: 10px; }
        .item-group--social .item__infoTitleWrap {
          display: block;
          color: #ffffff;
          line-height: 1.1;
          padding-bottom: 30px; }
          .item-group--social .item__infoTitleWrap:before {
            color: #ffffff;
            display: inline-block;
            position: absolute;
            right: 0;
            font-size: 1.4rem; }
        .item--social .item__infoTitleWrap {
          position: relative; }
          .item--social .item__infoTitleWrap.icon:before {
            position: absolute;
            right: 0; }
      .item-group--social .item__infoTitleSub {
        text-transform: uppercase;
        font-size: 0.8rem; }
    .item__infoAbstract {
      display: block;
      color: #ffffff; }
      .item__infoAbstractWrap {
        display: block; }

.banner {
  display: block;
  background-color: #1D3247; }
  .banner--small {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    background: #fff; }
    .banner--small .wrap {
      height: 100%; }
  .banner--download {
    background-color: #14222F;
    padding: 4px 16px;
    margin: 0 auto;
    padding-bottom: 20px; }
  .banner--newsletter {
    padding: 0px 50px;
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #154D97; }
  .banner--newsArchive {
    padding: 20px;
    text-align: center; }
  .bannerWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 50px; }
    .banner--newsletter .bannerWrap {
      border-bottom: 1px solid #fff;
      padding: 0;
      padding-bottom: 35px;
      justify-content: space-between; }
    .banner--small .bannerWrap {
      justify-content: space-around;
      align-items: center;
      height: 100%; }
    .banner--download .bannerWrap {
      padding: 8px 20px;
      margin: 0 auto;
      border: 1px solid #AEB180;
      width: fit-content;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: unset; }
      .banner--download .bannerWrap h3 {
        color: #fff;
        text-transform: uppercase;
        font-family: 'titillium_webblack';
        font-size: 1.8rem; }
        .banner--download .bannerWrap h3 span {
          color: #F8E71A; }
      .banner--download .bannerWrap a {
        background: #F8E71A;
        color: #000;
        margin-left: 30px;
        padding: 6px;
        display: block;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 0.9rem; }
        .banner--download .bannerWrap a:hover {
          color: #0f72dd; }
  .banner__content {
    display: block; }
    .banner__contentWrap {
      display: block;
      width: 70%; }
      .banner__contentWrap--light {
        color: #fff; }
    .banner--small .banner__contentTitle {
      color: #000;
      font-size: 1.6rem;
      line-height: 1.3;
      text-transform: uppercase;
      font-family: 'Titillium_webblack', Arial, Helvetica, sans-serif; }
    .banner--small .banner__contentWrap--light .banner__contentTitle {
      color: #fff;
      font-size: 1.6rem;
      line-height: 1.3;
      text-transform: uppercase;
      font-family: 'Titillium_webblack', Arial, Helvetica, sans-serif; }
  .banner__title {
    display: block;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #FDEA14;
    line-height: 0.9; }
    .banner--newsletter .banner__title {
      color: #ffffff;
      font-size: 3.5rem;
      font-family: 'titillium_webblack', 'Titillium', Arial, Helvetica, sans-serif; }
    .banner__titleWrap {
      display: inline-block;
      width: 15%;
      line-height: 1.1; }
      .banner--newsletter .banner__titleWrap {
        width: 35%; }
      .banner--small .banner__titleWrap {
        display: inline-block;
        width: 65%; }
  .banner__info {
    display: block;
    font-weight: bold;
    line-height: 1.4;
    color: #ffffff;
    font-size: 1.2rem; }
    .banner--newsletter .banner__info {
      font-weight: normal; }
    .banner__infoWrap {
      display: inline-block;
      width: 40%; }
      .banner--newsletter .banner__infoWrap {
        width: 35%; }
    .banner__infoLink {
      color: #E9E455;
      display: block;
      text-transform: uppercase; }
  .banner__button {
    display: block;
    background-color: #142230;
    color: #F8E71C;
    padding: 10px 40px;
    text-transform: uppercase;
    font-weight: bold;
    border: none; }
    .banner__buttonWrap {
      display: inline-block; }

.section {
  background-color: #142230; }
  .section--infographic .wrap {
    max-width: 1280px; }
  .section--dettaglioMissions {
    background-color: #fff;
    padding: 40px 40px; }
  .section--newsArchive {
    background-color: #fff;
    padding: 40px 40px; }
  .section--overview {
    background-color: #1D3247; }
  .section--relatedNews {
    background-color: #fff; }
  .section--gallery {
    background-color: #1D3247; }
    .section--gallery .container {
      width: 50%;
      display: inline-block;
      vertical-align: top; }
    .section--gallery .container--large {
      width: 50%;
      display: inline-block;
      vertical-align: top; }
  .section--relatedNews .container {
    width: 50%;
    display: inline-block;
    vertical-align: top; }
  .section--mediaGallery .container--large {
    width: 50%;
    display: inline-block;
    vertical-align: top; }
  .sectionWrap {
    font-size: 0; }
    .section--overview .sectionWrap {
      height: auto;
      font-size: 1rem;
      position: relative; }
    .section--infographic .sectionWrap {
      padding: 56px 100px; }
  .section--infographic .section__img {
    max-height: 470px;
    width: 100%; }
  .section--overview .section__img {
    max-height: 470px; }
  .section__imgWrap {
    display: block; }
    .section--infographic .section__imgWrap {
      display: inline-block;
      vertical-align: top;
      font-size: 1rem;
      width: 70%;
      padding-right: 50px; }
  .section__link {
    display: block; }
    .section--overview .section__link img {
      display: block;
      width: 100%; }
  .section__content {
    display: block; }
    .section--overview .section__content {
      padding-left: 5rem; }
    .section__contentWrap {
      display: block; }
      .section--infographic .section__contentWrap {
        display: inline-block;
        vertical-align: top;
        font-size: 1rem;
        width: 30%;
        padding: 50px 0px;
        padding-left: 50px; }
      .section--overview .section__contentWrap {
        display: block;
        font-size: 1rem;
        background: #f8e71a;
        position: relative;
        padding: 25px 0px;
        width: 60%;
        position: absolute;
        top: 0;
        left: 0; }
        .section--overview .section__contentWrap:after {
          content: "";
          position: absolute;
          top: 0;
          right: -20%;
          width: 20%;
          height: 10px;
          background: linear-gradient(to right bottom, #F8E71A 50%, transparent 50%);
          height: 100%; }
    .section__contentTitle {
      display: block; }
      .section--overview .section__contentTitle {
        font-size: 40px;
        text-transform: uppercase;
        font-weight: bold;
        color: #000;
        font-family: 'titillium_webblack', 'Titillium', Arial, Helvetica, sans-serif; }
      .section--infographic .section__contentTitle {
        display: block;
        font-size: 1.6rem;
        color: #fff;
        font-weight: bold; }
    .section--infographic .section__contentInfo {
      display: block;
      color: white;
      font-size: 1.2rem; }
    .section__contentInfo_Wrap {
      display: block; }
    .section--infographic .section__contentAction {
      display: inline-block;
      background-color: #F8E71C;
      color: #142230;
      padding: 10px 40px;
      text-transform: uppercase;
      font-weight: bold;
      border: none; }
      .section--infographic .section__contentAction:hover {
        color: #0f72dd; }
    .section__contentActionWrap {
      display: block; }
      .section--infographic .section__contentActionWrap {
        padding-top: 50px; }
    .section--overview .section__contentDivider {
      background-color: transparent;
      position: absolute;
      top: 0;
      right: -200px;
      bottom: 0;
      border-style: solid;
      border-width: 150px 200px 0 0;
      border-color: #F8E71A transparent transparent transparent; }

.box {
  display: inline-block;
  width: 33.3%; }
  .container--large .box {
    width: 100%; }
  .container--medium .box {
    width: 50%; }
  .boxWrap {
    display: block; }
    .section--relatedNews .boxWrap {
      position: relative; }
  .box__link {
    display: block;
    font-size: 1rem;
    overflow: hidden;
    position: relative; }
    .section--relatedNews .box__link {
      width: 100%;
      display: inline-block;
      overflow: hidden; }
  .box__image {
    display: block;
    width: 100%; }
    .section--gallery .box__image {
      width: auto;
      height: auto;
      position: absolute;
      top: 0;
      visibility: hidden;
      opacity: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      margin: auto;
      max-height: 100%; }
    .section--mediaGallery .box__image {
      width: auto;
      height: auto;
      position: absolute;
      top: 0;
      visibility: hidden;
      opacity: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      margin: auto;
      max-height: 100%; }
    .section--relatedNews .box__image {
      width: auto;
      height: auto;
      position: absolute;
      top: 0;
      visibility: hidden;
      opacity: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      margin: auto;
      max-height: 100%;
      border: 1px solid #cdcccc; }
    .box__imageWrap {
      display: block; }
      .section--gallery .box__imageWrap {
        display: block;
        background: no-repeat center center;
        background-size: cover;
        position: relative;
        padding-bottom: 50%;
        height: 0;
        display: block;
        float: left;
        transition: opacity 0.25s;
        width: 100%; }
        .section--gallery .box__imageWrap.icon:hover:before {
          background: rgba(0, 0, 0, 0.8); }
        .section--gallery .box__imageWrap.icon:before {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 2.5rem;
          color: #F8E71E;
          padding: 20px;
          background: rgba(0, 0, 0, 0.6);
          border-radius: 100%; }
        .section--gallery .box__imageWrap:after {
          content: '';
          background-color: rgba(0, 0, 0, 0.5);
          transition: background-color 0.25s;
          position: absolute;
          z-index: 0;
          width: 100%;
          display: block;
          height: 100%;
          top: 0;
          left: 0; }
        .section--gallery .box__imageWrap:hover:after {
          background-color: rgba(0, 0, 0, 0); }
      .section--mediaGallery .box__imageWrap {
        display: block;
        background: no-repeat center center;
        background-size: cover;
        position: relative;
        padding-bottom: 50%;
        height: 0;
        display: block;
        float: left;
        transition: opacity 0.25s;
        width: 100%; }
        .section--mediaGallery .box__imageWrap:before {
          position: absolute;
          top: 50%;
          left: 50%;
          font-size: 3rem;
          transform: translate(-50%, -50%);
          color: #ffffff; }
        .section--mediaGallery .box__imageWrap:after {
          content: '';
          background-color: rgba(0, 0, 0, 0.5);
          transition: background-color 0.25s;
          position: absolute;
          z-index: 0;
          width: 100%;
          display: block;
          height: 100%;
          top: 0;
          left: 0; }
        .section--mediaGallery .box__imageWrap:hover:after {
          background-color: rgba(0, 0, 0, 0); }
      .section--mediaGallery .box--vertical .box__imageWrap {
        padding-bottom: 100%; }
      .section--relatedNews .box__imageWrap {
        display: block;
        background: no-repeat center center;
        background-size: cover;
        position: relative;
        padding-bottom: 56.86%;
        height: 0;
        display: block;
        float: left;
        transition: opacity 0.25s;
        width: 100%; }
        .section--relatedNews .box__imageWrap:after {
          content: '';
          background-color: rgba(0, 0, 0, 0.5);
          transition: background-color 0.25s;
          position: absolute;
          z-index: 0;
          width: 100%;
          display: block;
          height: 100%;
          top: 0;
          left: 0; }
        .section--relatedNews .box__imageWrap:hover:after {
          background-color: rgba(0, 0, 0, 0); }
  .box__info {
    display: block; }
    .box__infoWrap {
      position: absolute;
      left: 50%;
      transform: translate(-50%, -50%);
      bottom: 0;
      text-transform: uppercase;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      font-family: 'titillium_webblack', Helvetica, Arial, sans-serif;
      font-size: 1.6rem; }
  .box__content {
    display: block; }
    .section--relatedNews .box__content {
      position: absolute;
      top: 75%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%; }
    .section--mediaGallery .box__content {
      position: absolute;
      top: 10%;
      left: 5%; }
  .box__date {
    font-size: 1rem;
    color: #fff; }
    .box__dateWrap {
      display: block; }
  .box__title {
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase; }
    .section--relatedNews .box__title {
      font-size: 1.3rem; }
    .section--mediaGallery .box__title {
      display: block;
      font-size: 60px;
      text-transform: uppercase;
      font-weight: bold;
      font-family: 'titillium_webblack', 'Titillium', Arial, Helvetica, sans-serif; }
    .box__titleWrap {
      display: block; }
      .section--mediaGallery .box__titleWrap {
        display: block; }
    .box__titleSub {
      display: block; }
      .section--mediaGallery .box__titleSub {
        font-size: 30px;
        text-transform: uppercase;
        font-weight: bold;
        color: #EDE309; }
      .box__titleSubWrap {
        display: block; }

.news {
  display: block;
  margin: 0;
  font-size: 0; }
  .section--newsArchive .news {
    padding-bottom: 40px; }
  .section--dettaglioMissions .news {
    padding-bottom: 40px; }
  .newsWrap {
    display: block;
    padding-bottom: 20px;
    padding-top: 20px; }
    .section--newsArchive .newsWrap {
      padding: 0; }
    .section--dettaglioMissions .newsWrap {
      padding: 0; }
  .news__link {
    display: block;
    overflow: hidden;
    float: left;
    width: 91.6666666667%;
    padding-right: 6px;
    padding-left: 6px; }
    .section--dettaglioMissions .news__link {
      width: 100%; }
  .news__img {
    display: block;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    visibility: hidden;
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-height: 100%; }
    .news__imgWrap {
      display: block;
      width: 25%;
      font-size: 1rem;
      background: no-repeat center center;
      background-size: cover;
      position: relative;
      padding-bottom: 13%;
      height: 0;
      display: block;
      float: left;
      transition: opacity 0.25s; }
  .news__content {
    display: block;
    color: #000; }
    .news__contentWrap {
      display: inline-block;
      width: 75%;
      font-size: 1rem;
      vertical-align: top;
      padding: 0px 20px; }
    .news__contentTitle {
      display: block;
      font-size: 1.1rem;
      font-weight: bold;
      text-transform: uppercase; }
      .section--dettaglioMissions .news__contentTitle {
        font-size: 1.9rem;
        color: #000; }
      .news__contentTitleWrap {
        display: block;
        padding-bottom: 10px; }
    .news__contentDate {
      display: block;
      font-size: 1rem;
      text-transform: capitalize; }
      .news__contentDateWrap {
        display: block;
        padding-bottom: 20px; }
    .news__contentAbstract {
      display: block; }
      .news__contentAbstractWrap {
        display: block; }

.footer {
  display: block;
  position: relative;
  background-color: #0961be; }
  .home .footer, .category-news .footer {
    border-top: 0 none; }
  .footer:before {
    content: '';
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0352a3; }
  .footerWrap {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px;
    position: relative;
    font-size: 0; }
  .footer__logo {
    display: block; }
    .footer__logoWrap {
      display: inline-block;
      width: 20%; }
    .footer__logoLink {
      display: block; }
  .footer__menu {
    display: block; }
    .footer__menuWrap {
      display: inline-block; }
    .footer__menuList {
      margin: 0;
      padding: 0;
      font-size: 0; }
      .footer__menuListItem {
        font-size: 1rem;
        display: inline-block;
        padding: 15px; }
        .footer__menuListItem:first-child {
          padding-left: 0; }
        .current-menu-item .footer__menuListItemLink {
          color: #61adff; }
        .footer__menuListItemLink {
          display: block;
          text-decoration: none;
          color: #ffffff;
          font-weight: bold;
          text-transform: uppercase;
          font-size: 0.9rem; }
          .footer__menuListItemLink:hover, .footer__menuListItemLink:focus, .footer__menuListItemLink:active {
            color: #61adff; }
  .footer__navigation {
    display: block; }
    .footer__navigationWrap {
      display: inline-block; }
    .footer__navigationSocial {
      display: block; }
      .footer__navigationSocialList {
        margin: 0;
        padding: 0;
        font-size: 0; }
        .footer__navigationSocialListItem {
          display: inline-block;
          font-size: 1rem;
          padding: 0px 5px; }
          .footer__navigationSocialListItemLink {
            display: block;
            transition: all 1s; }
            .footer__navigationSocialListItemLink:hover {
              opacity: 0.6;
              transition: all 0.675s; }
            .footer__navigationSocialListItemLink:before {
              display: block;
              border-radius: 50%;
              background: white;
              padding: 8px;
              color: #444444;
              font-size: 0.8rem; }
  .footer__copy {
    display: block; }
    .footer__copyWrap {
      position: absolute;
      right: 40px;
      bottom: 15px;
      color: #b4b3b3;
      font-size: 0.9rem; }
    .footer__copy a {
      color: #ffffff; }
      .footer__copy a:hover, .footer__copy a:focus, .footer__copy a:active {
        color: #cccccc; }

.minisite {
  display: block; }
  .minisite__page {
    padding: 40px;
    font-size: 0; }
    .minisite__pageWrap {
      display: block; }
    .minisite__pageLeft {
      display: block;
      font-size: 1rem; }
      .minisite__pageLeftWrap {
        display: inline-block;
        vertical-align: top;
        width: 24%; }
    .minisite__pageRight {
      display: block; }
      .minisite__pageRightWrap {
        display: inline-block;
        font-size: 1rem;
        width: 76%;
        padding-left: 36px;
        padding-right: 26px; }
  .minisite__menu {
    display: block;
    background-color: #142230;
    padding: 30px 20px; }
    .minisite__menuWrap {
      display: block; }
    .minisite__menuList {
      display: block; }
      .minisite__menuListItem {
        display: block;
        padding-bottom: 20px; }
        .minisite__menuListItem:last-child {
          padding-bottom: 0; }
        .minisite__menuListItemLink {
          display: block;
          color: #fff;
          text-transform: uppercase;
          font-weight: bold;
          font-size: 1.2rem; }
          .current-menu-item .minisite__menuListItemLink {
            display: block;
            color: #F8E504; }
  .minisite__title {
    display: block;
    font-weight: bold;
    font-size: 30px;
    padding-bottom: 12px; }
    .minisite__titleWrap {
      display: block; }
  .minisite__content {
    display: block;
    font-size: 1.25em; }
    .minisite__content .contact_item {
      background-color: #f6f6f6; }
    .minisite__content .contactWrap {
      margin: 0;
      padding: 0; }
    .minisite__contentWrap {
      display: block; }
      .minisite__contentWrap .slider .owl-carousel {
        padding: 0; }
      .minisite__contentWrap .slider .owl-carousel .owl-nav .owl-prev {
        left: calc(0.333333% + 30px); }
      .minisite__contentWrap .slider .owl-carousel .owl-nav .owl-next {
        right: calc(0.333333% + 30px); }
      .minisite__contentWrap .photoGallery {
        padding: 0;
        margin: 0; }

.container {
  display: block;
  font-size: 0;
  position: relative;
  background-color: #142230; }
  .container__link.icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: #F8E71E;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 100%;
    z-index: 1; }

.dettaglioWrap {
  padding: 30px 30px;
  padding-bottom: 40px; }

.wrapLarge {
  max-width: unset; }

.wrapHero {
  font-size: 0;
  display: flex;
  padding: 40px; }

/*Speakers*/
.minisite__contentMenu {
  display: block; }
  .minisite__contentMenuWrap {
    display: block; }
  .minisite__contentMenuList {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0; }
    .minisite__contentMenuListItem {
      display: block;
      font-size: 1rem; }
      .minisite__contentMenuListItemLink {
        display: block;
        font-weight: bold; }

.minisite__contentBox {
  display: block;
  padding: 30px 10px; }
  .minisite__contentBoxWrap {
    display: block;
    background-color: #EDEBEC;
    margin: 40px 0px; }
  .minisite__contentBoxImg {
    max-width: 150px;
    max-height: 150px;
    border-radius: 100%; }
    .minisite__contentBoxImgWrap {
      display: inline-block;
      vertical-align: top; }
  .minisite__contentBoxInfo {
    display: block;
    padding-top: 40px; }
    .minisite__contentBoxInfoWrap {
      display: inline-block;
      vertical-align: middle;
      width: calc(100% - 156px);
      padding-left: 24px; }
  .minisite__contentBox--speakersName {
    display: block; }
    .minisite__contentBox--speakersName h3 {
      font-size: 1.65rem; }
  .minisite__contentBox--speakersSub {
    display: block;
    font-weight: bold;
    font-size: 1rem; }
  .minisite__contentBox--speakersAbstract {
    display: block;
    padding-top: 40px; }
    .minisite__contentBox--speakersAbstract p {
      display: block;
      font-size: 1.25rem; }

/*Page generic shade med*/
.page__contentShadeMed .page__contentLeftWrap {
  display: inline-block;
  vertical-align: top;
  width: 60%; }

.assets-alt .assets_itemWrap {
    width: 33.3333%;
    margin: 0 -4px;
}

.assets-alt .assets_itemWrap .assets_item .command_role {
    font-size: 18px;
    font-size: 1.2rem;
}