
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b3d76bad842a91c76b36762e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e09b6571c4b4bccccf5c0848.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e3853c295b1489dfc6593db3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a17e66804ce6a4456fee3b65.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dd636a8b52461420b05412fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4fee79c319f782b8d75e31eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d6e1fe12699ddf0ac364b468.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_17f7c9e27e14dfcfd033aa0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5c3a66f7caf947d994988484.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c948ae89df02ae7eae612674.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9dcd2d771e25632e17dc6415.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_562689086d7bfcdb5002e602.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b5a8cddcdcf26a949df0eeea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4b4ec14614e7dd5a95c6b2d4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9632d38839211095d9733a7c.woff2')format("woff");}.fff{font-family:fff;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8713ae1d9e40cf9bfe75edcf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_bdcbcb3fd407ff936b89e2a1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9c56c5151a315949e37c3ffd.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_993069bf4c639d03ee6c55c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_14f42e6f3b412cf15aea917d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_cfd1b9edd4c3ecfe18903269.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_04d651e30bfe9b2c9ac64f23.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_fc7d7758b0c76c37aed74fe1.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_4fe20c984723443df58e2c67.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5324081793d3195fda4ab530.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_262adb6c77c056c5ed56f23d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_7875238ed5f15edcf4bbb585.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c7fa6b4f1f2eac1f6c5daeaa.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_acd4be50b090d2b2e52cf496.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.798000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_ebc67b6daee0ab13ceadc794.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_e990c8b73d0a115954136836.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_288087022079c42e2c94b210.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_3a8b18d2f2eff9d3bf15dc8b.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_f64945a49d5a05634d976719.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.039000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_3add706a9135b58a360d4171.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.793000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_a2263d80c3cb701df1b4fe25.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_852f4fa8fcfc7074146870f3.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_0c67f0be2a98433ed0f5a2bf.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_bd7f998f351d748d7cc0fd2d.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_661db8b3b26695700e1aa5fc.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_5a732774e411a1d194ca4ebd.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.793000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_3243b4da9232039610b654ea.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_0ceb3f24cef6e77c348c59b2.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_62b8c28098858806f9b93f7e.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_b0330a0fb1f5223dbb9e2e93.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_7ab0d003b8efd196be6767b4.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.739000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_4322bd973b8659d4a0585f0e.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_0b75d26a203d83258b6a8e32.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_4b8a66fb5f41d7db48c16d94.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_3761ba72874f1842b6ab7d62.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.053000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_2fddb6f056fb7eec04e85ab0.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_9bc345ce02753ee0b3e76bac.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_c1140ef1618c633410f4581e.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_a8fdc6b66505f8b7c0b179e1.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_97094898283ba12dca7114fc.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_519f969ac010b84da26b0263.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_002fad45c2e3e0540414d643.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_f45d9b7fe9116042c26a38d9.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_9c5840edb4ce50c74bb6fea3.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_bca66ecdb674a61003f0b487.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_fe2ddee78c65a0e38bf42a40.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_a76ef049a25178e0e28e3dde.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_0676b7183d3813427e9df54c.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_abe7893eb5e0b541d9820522.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_74e9bd2331bba60525e2ee65.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.774000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_af900ffb7da47acf158c1abd.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_9f9aa0289ba0891928d767d4.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_369a83985517067289f91b56.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_dc9c614ad1357e1f64524f61.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_7469605fdfc881a6d2d66774.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.031000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_f616e48c066a13efce55505f.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_885786734203ac9645579fe0.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_b79f090b15748bb5ada83425.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_5e3659640800cc3b225d81ec.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.809000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_2010dfcdb6781fc1ac31172a.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_837b5028a53f81d041f8c23c.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_6a9e3247e08c2bd3c3869f8d.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_707e7cfdcd0c46c820510044.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_7a9aec75b829dc25b5f3db8d.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.809000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_a4c01ac476643509e716ea45.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_158c34b7c6e0149c608e3b14.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_71268040c65121332649519a.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.798000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_2b5d9c7ccfad13af1af6600b.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_808948c39c65b244d17a580e.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_86f79e6f1e06257c26fd7046.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.022000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_016e8d0a1af430dd64de9b1b.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.809000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_85b6b652750c9b3c9f94b3e0.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_f3fd722c1c9471d2bbca9149.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_f8d20b611139bb751ebade15.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_17be2c850e44bf61e542bd91.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.821000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_dc4404365d5df4bc3c46036b.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_f53b17afbd26b7a894d84494.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_95ff0de3453e6ae63ceed90a.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_e26ce6841273a2a811036946.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.730469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_356e5e1c371ebb24c30d235a.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_451a2b55048b8e0352c44184.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_e2fe3ad3f68a82ae603e8a3d.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.739000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_719acde327324f852a1107bd.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_4f2d9a688fd70a8e69ab628a.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_9906b205a17cd0e19f1c3b94.woff2')format("woff");}.ff64{font-family:ff64;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_5ce058666b7a7fa72b260711.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.751000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_fa4e3c5b33d9e3869a6b64c9.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_f8222fd7ddf28b800402e889.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.739000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_eba73e23255d29869c505933.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.793000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_af1f87542c25795a81f0d3e5.woff2')format("woff");}.ff69{font-family:ff69;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_0d157b4d554174971964131b.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_43fb2b9f64552a3bdd9dd177.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_10946b58501062a0f5e12381.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_c4611b13c86487d5c463dc8a.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_b18a1d70caa20d7f8ebc406c.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_7cc27514160363eb6292e54c.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:1.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_79d9db4d8ca579424ddf5d55.woff2')format("woff");}.ff70{font-family:ff70;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_618bc16c7d1c1363c2bf02e5.woff2')format("woff");}.ff71{font-family:ff71;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_c2e459a1e558075253204dbc.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.776000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_1a0f429cc2edcbbb3e130aa3.woff2')format("woff");}.ff73{font-family:ff73;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_c75640d75a9bfeb253e9d51e.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_fea800e71b3b57b01006de3f.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.774000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_70c8bacee670d5804dd6b0ec.woff2')format("woff");}.ff76{font-family:ff76;line-height:1.039000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_d9b4ec015a07bbf6fa5c6b12.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_f6daee140f304d39da7cc3ab.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_81cdd44acc9a0fefea0d688a.woff2')format("woff");}.ff79{font-family:ff79;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_193e67340582a665305ac627.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_b495db0ff44674d3b2304e3c.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_e5a129a7d3aaacf1f1e0dfca.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_a67cb62c4a8cdf2905a79598.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.767000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_ae2979383960f6de4abc022f.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_c002fd4c540dfe6051e62d00.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.793000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_a644fa5e72e9641f404902b3.woff2')format("woff");}.ff80{font-family:ff80;line-height:1.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-56.711374px;}
.v1{vertical-align:-35.120216px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:91.385852px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.031539px;}
.ls1{letter-spacing:2646.275749px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-242.639990px;}
.ws1a{word-spacing:-105.435716px;}
.ws16{word-spacing:-97.313576px;}
.ws19{word-spacing:-96.322590px;}
.ws8{word-spacing:-90.864490px;}
.ws9{word-spacing:-90.850951px;}
.wsc{word-spacing:-75.041641px;}
.ws12{word-spacing:-63.533337px;}
.ws1b{word-spacing:-59.276295px;}
.ws5{word-spacing:-44.459998px;}
.ws22{word-spacing:-44.099998px;}
.ws20{word-spacing:-44.088975px;}
.ws11{word-spacing:-40.002886px;}
.ws7{word-spacing:-38.524588px;}
.ws1e{word-spacing:-37.046296px;}
.ws18{word-spacing:-35.556884px;}
.ws13{word-spacing:-34.089704px;}
.ws1{word-spacing:-32.600294px;}
.ws10{word-spacing:-29.998078px;}
.ws3{word-spacing:-29.632589px;}
.ws15{word-spacing:-28.384936px;}
.ws4{word-spacing:-26.664884px;}
.wse{word-spacing:-26.453694px;}
.ws1f{word-spacing:-24.886483px;}
.ws2{word-spacing:-23.708294px;}
.wsb{word-spacing:-23.399999px;}
.ws1d{word-spacing:-22.229999px;}
.wsa{word-spacing:-20.849399px;}
.ws14{word-spacing:-20.451599px;}
.ws17{word-spacing:-18.714149px;}
.wsd{word-spacing:-16.245447px;}
.ws6{word-spacing:-11.761359px;}
.ws1c{word-spacing:-1.111501px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:2295.132757px;}
._14{margin-left:-97.826028px;}
._6{margin-left:-56.722450px;}
._e{margin-left:-48.273162px;}
._a{margin-left:-46.559681px;}
._b{margin-left:-29.496573px;}
._c{margin-left:-26.257830px;}
._12{margin-left:-13.701268px;}
._13{margin-left:-10.598177px;}
._d{margin-left:-9.083234px;}
._3{margin-left:-7.590275px;}
._7{margin-left:-6.532361px;}
._8{margin-left:-5.415176px;}
._2{margin-left:-4.186449px;}
._4{margin-left:-3.089200px;}
._1{margin-left:-1.341439px;}
._9{width:1.484750px;}
._5{width:2.561987px;}
._0{width:6.595123px;}
._f{width:76.976459px;}
._11{width:132.863947px;}
._10{width:351.336342px;}
.fcd{color:rgb(63,53,109);}
.fc5{color:rgb(83,146,75);}
.fca{color:rgb(0,0,0);}
.fcc{color:rgb(43,43,43);}
.fc2{color:rgb(148,129,205);}
.fc1{color:rgb(192,80,131);}
.fc3{color:rgb(97,171,235);}
.fc4{color:rgb(89,155,160);}
.fc6{color:transparent;}
.fc7{color:rgb(126,218,222);}
.fc0{color:rgb(255,255,255);}
.fc8{color:rgb(181,87,134);}
.fc9{color:rgb(53,150,188);}
.fcb{color:rgb(73,59,116);}
.fs2b{font-size:4.500002px;}
.fs8{font-size:48.000145px;}
.fse{font-size:48.005545px;}
.fsd{font-size:77.984997px;}
.fs1f{font-size:82.799997px;}
.fs21{font-size:89.994561px;}
.fs13{font-size:89.999996px;}
.fs6{font-size:95.984996px;}
.fs30{font-size:100.754991px;}
.fsc{font-size:101.969996px;}
.fs1b{font-size:107.099974px;}
.fsb{font-size:107.954996px;}
.fs20{font-size:113.984995px;}
.fsa{font-size:119.969995px;}
.fs15{font-size:120.959990px;}
.fs11{font-size:121.134601px;}
.fs10{font-size:121.152653px;}
.fs1a{font-size:124.964975px;}
.fs5{font-size:131.984995px;}
.fs1e{font-size:138.014994px;}
.fs28{font-size:143.954994px;}
.fs14{font-size:147.824985px;}
.fs2c{font-size:149.985003px;}
.fs23{font-size:151.199985px;}
.fs1{font-size:153.899998px;}
.fsf{font-size:155.969994px;}
.fs12{font-size:160.379989px;}
.fs19{font-size:161.955002px;}
.fs2e{font-size:163.909226px;}
.fs2d{font-size:164.582968px;}
.fs2f{font-size:167.985002px;}
.fs9{font-size:173.969993px;}
.fs31{font-size:179.955002px;}
.fs7{font-size:179.999993px;}
.fs27{font-size:203.985001px;}
.fs2a{font-size:239.984999px;}
.fs3{font-size:251.999990px;}
.fs1d{font-size:257.219989px;}
.fs2{font-size:257.984998px;}
.fs4{font-size:263.969989px;}
.fs0{font-size:299.970006px;}
.fs25{font-size:303.704978px;}
.fs22{font-size:307.934987px;}
.fs26{font-size:308.204978px;}
.fs18{font-size:309.419996px;}
.fs17{font-size:309.446864px;}
.fs24{font-size:312.029969px;}
.fs16{font-size:353.970003px;}
.fs1c{font-size:359.999985px;}
.fs29{font-size:389.970002px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y195{bottom:0.325941px;}
.y18c{bottom:0.368304px;}
.y1b4{bottom:0.435804px;}
.y192{bottom:0.490868px;}
.y18f{bottom:0.618441px;}
.y194{bottom:1.825942px;}
.y18b{bottom:1.868305px;}
.y1b3{bottom:1.935805px;}
.y191{bottom:1.990868px;}
.y18e{bottom:2.118442px;}
.yc6{bottom:3.025992px;}
.yc8{bottom:3.038999px;}
.y3d{bottom:3.207046px;}
.yba{bottom:3.256089px;}
.y7e{bottom:3.271287px;}
.y6e{bottom:3.298013px;}
.y148{bottom:5.504295px;}
.y127{bottom:6.772772px;}
.y111{bottom:6.776634px;}
.y124{bottom:6.827523px;}
.y11e{bottom:6.843524px;}
.y10f{bottom:6.850731px;}
.y11b{bottom:6.850995px;}
.y8b{bottom:6.854707px;}
.y122{bottom:6.886585px;}
.y8f{bottom:6.904168px;}
.y115{bottom:6.954667px;}
.y118{bottom:7.001200px;}
.y120{bottom:7.043734px;}
.y10c{bottom:7.920895px;}
.ya0{bottom:7.999497px;}
.y9b{bottom:7.999541px;}
.ya6{bottom:8.037597px;}
.yab{bottom:8.172597px;}
.y1bd{bottom:9.934076px;}
.y1c1{bottom:9.938228px;}
.y1c9{bottom:9.952818px;}
.y1c5{bottom:10.100299px;}
.y91{bottom:10.290124px;}
.y93{bottom:10.301967px;}
.y1cd{bottom:10.322087px;}
.y1d1{bottom:10.337907px;}
.y95{bottom:10.402382px;}
.y1cb{bottom:10.494176px;}
.y1cf{bottom:10.509997px;}
.yef{bottom:27.403654px;}
.yf5{bottom:27.472615px;}
.y100{bottom:27.601463px;}
.y106{bottom:27.665975px;}
.ye7{bottom:34.999991px;}
.y126{bottom:38.272765px;}
.y11d{bottom:38.343517px;}
.y10e{bottom:38.350724px;}
.y11a{bottom:38.350988px;}
.y114{bottom:38.454660px;}
.y117{bottom:38.501193px;}
.y186{bottom:41.238466px;}
.y48{bottom:44.999998px;}
.y10b{bottom:45.045887px;}
.y162{bottom:48.044338px;}
.yad{bottom:48.203422px;}
.y147{bottom:50.134038px;}
.y9f{bottom:56.374495px;}
.y9a{bottom:56.374539px;}
.ya5{bottom:56.412595px;}
.yaa{bottom:56.547595px;}
.y1bc{bottom:58.717984px;}
.y1c0{bottom:58.722137px;}
.y1c8{bottom:58.736726px;}
.y1c4{bottom:58.884207px;}
.y8c{bottom:63.000007px;}
.y62{bottom:64.321089px;}
.y135{bottom:65.752197px;}
.y1b1{bottom:65.841837px;}
.y113{bottom:69.954654px;}
.y15a{bottom:80.669337px;}
.y10a{bottom:82.170880px;}
.yc5{bottom:84.960007px;}
.y104{bottom:86.967752px;}
.y146{bottom:94.763781px;}
.yb8{bottom:96.879092px;}
.y1b0{bottom:97.341836px;}
.y185{bottom:97.488464px;}
.y9e{bottom:104.749493px;}
.y99{bottom:104.749537px;}
.ya4{bottom:104.787593px;}
.ya9{bottom:104.922593px;}
.y1bb{bottom:107.501892px;}
.y1bf{bottom:107.506045px;}
.y1c7{bottom:107.520634px;}
.y1c3{bottom:107.668115px;}
.y159{bottom:113.294335px;}
.y6d{bottom:115.200005px;}
.yd0{bottom:118.719931px;}
.y1ac{bottom:120.599455px;}
.yb9{bottom:122.040005px;}
.y49{bottom:126.495358px;}
.y103{bottom:128.592751px;}
.y1af{bottom:128.841835px;}
.y87{bottom:129.973099px;}
.y119{bottom:131.760005px;}
.ye0{bottom:132.535974px;}
.y105{bottom:133.920005px;}
.y7{bottom:134.853726px;}
.y1e1{bottom:136.156206px;}
.yc4{bottom:136.496874px;}
.y59{bottom:136.574994px;}
.y1c6{bottom:139.320004px;}
.y145{bottom:139.393524px;}
.y7d{bottom:144.360004px;}
.y3b{bottom:144.624810px;}
.y158{bottom:145.919334px;}
.y46{bottom:147.769266px;}
.y1ab{bottom:152.099454px;}
.y123{bottom:153.000004px;}
.y9d{bottom:153.124491px;}
.y98{bottom:153.124535px;}
.ya3{bottom:153.162591px;}
.ya8{bottom:153.297591px;}
.y3c{bottom:155.880004px;}
.y1a4{bottom:159.761243px;}
.y1ae{bottom:160.341833px;}
.y8d{bottom:163.156571px;}
.y86{bottom:164.848097px;}
.y66{bottom:167.127005px;}
.y1a{bottom:167.398081px;}
.y102{bottom:170.217749px;}
.ydf{bottom:171.910973px;}
.y58{bottom:173.699993px;}
.y27{bottom:174.229193px;}
.y2e{bottom:174.720233px;}
.y157{bottom:178.544333px;}
.y45{bottom:180.394264px;}
.y7c{bottom:181.261216px;}
.ycf{bottom:181.719928px;}
.ya1{bottom:182.520003px;}
.y1aa{bottom:183.599452px;}
.yc{bottom:184.008700px;}
.y1d0{bottom:187.920002px;}
.y3a{bottom:189.624808px;}
.y144{bottom:190.080002px;}
.y1a3{bottom:191.261242px;}
.y1ad{bottom:191.841832px;}
.y6{bottom:192.228724px;}
.y85{bottom:199.723096px;}
.y9c{bottom:201.499489px;}
.y97{bottom:201.499533px;}
.ya2{bottom:201.537589px;}
.yc7{bottom:206.640002px;}
.y116{bottom:207.720001px;}
.y54{bottom:210.824991px;}
.y156{bottom:211.169331px;}
.yde{bottom:211.285971px;}
.y65{bottom:212.127003px;}
.y44{bottom:213.019263px;}
.y1a9{bottom:215.099451px;}
.y8e{bottom:219.960001px;}
.y101{bottom:221.295915px;}
.y1a2{bottom:222.761241px;}
.y182{bottom:224.913411px;}
.ya7{bottom:230.760001px;}
.y170{bottom:231.101018px;}
.y19{bottom:232.648079px;}
.yb7{bottom:233.059994px;}
.y84{bottom:234.598094px;}
.y39{bottom:234.624806px;}
.y133{bottom:236.934926px;}
.y1db{bottom:237.233661px;}
.y155{bottom:243.794330px;}
.y1a8{bottom:246.599450px;}
.y2d{bottom:246.665834px;}
.y12d{bottom:247.454990px;}
.y53{bottom:247.949990px;}
.y26{bottom:248.281946px;}
.y5{bottom:249.603722px;}
.ydd{bottom:250.660970px;}
.y166{bottom:252.262861px;}
.y1a1{bottom:254.261239px;}
.y181{bottom:257.538409px;}
.y1de{bottom:265.389937px;}
.y83{bottom:269.473093px;}
.yc3{bottom:276.396036px;}
.y154{bottom:276.419328px;}
.y1a7{bottom:278.099448px;}
.y2c{bottom:279.290832px;}
.y16f{bottom:280.601016px;}
.y25{bottom:280.906944px;}
.y121{bottom:282.959998px;}
.y132{bottom:284.184924px;}
.y52{bottom:285.074988px;}
.y1a0{bottom:285.761238px;}
.y165{bottom:287.137860px;}
.ydc{bottom:290.035968px;}
.y180{bottom:290.163408px;}
.y161{bottom:290.597172px;}
.yfe{bottom:294.623340px;}
.y7b{bottom:294.939996px;}
.y1da{bottom:295.733659px;}
.y18{bottom:297.898076px;}
.y70{bottom:306.710303px;}
.y4{bottom:306.978719px;}
.y1a6{bottom:309.599447px;}
.y2b{bottom:311.915831px;}
.y24{bottom:313.531943px;}
.y19f{bottom:317.261237px;}
.yc2{bottom:321.396035px;}
.y164{bottom:322.012859px;}
.y57{bottom:322.199987px;}
.y160{bottom:323.222171px;}
.y14a{bottom:323.703347px;}
.y14d{bottom:325.833394px;}
.y131{bottom:331.434922px;}
.y43{bottom:335.827865px;}
.yfd{bottom:336.248338px;}
.y7a{bottom:339.939994px;}
.y1a5{bottom:341.099446px;}
.yff{bottom:341.639996px;}
.y2a{bottom:344.540830px;}
.y23{bottom:346.156942px;}
.y19e{bottom:348.761235px;}
.y6f{bottom:351.710301px;}
.y1d9{bottom:354.233656px;}
.y15f{bottom:355.847169px;}
.y82{bottom:356.473101px;}
.y163{bottom:356.887857px;}
.y89{bottom:357.318273px;}
.y51{bottom:359.324985px;}
.y17{bottom:363.148073px;}
.yce{bottom:364.629981px;}
.yc1{bottom:366.396033px;}
.y1c2{bottom:368.999995px;}
.yb3{bottom:369.240969px;}
.y38{bottom:373.452140px;}
.y29{bottom:377.165828px;}
.y149{bottom:377.703344px;}
.yfc{bottom:377.873336px;}
.y14c{bottom:378.708392px;}
.y22{bottom:378.781940px;}
.y19d{bottom:380.261234px;}
.yb{bottom:381.338156px;}
.y61{bottom:381.674997px;}
.y11f{bottom:384.839994px;}
.y15e{bottom:388.472168px;}
.y50{bottom:396.449983px;}
.y1e0{bottom:397.442791px;}
.y13a{bottom:405.778195px;}
.y143{bottom:405.967627px;}
.y109{bottom:407.519993px;}
.y28{bottom:409.790827px;}
.y81{bottom:410.473099px;}
.y88{bottom:411.318271px;}
.y21{bottom:411.406939px;}
.y19c{bottom:411.761233px;}
.y1d8{bottom:412.733654px;}
.y60{bottom:416.549996px;}
.y37{bottom:418.452139px;}
.y1ce{bottom:419.759993px;}
.y15d{bottom:421.097166px;}
.y17c{bottom:422.199810px;}
.y42{bottom:422.452862px;}
.y12f{bottom:423.718218px;}
.y16c{bottom:426.624858px;}
.ycd{bottom:427.629978px;}
.y16{bottom:428.398071px;}
.yfb{bottom:428.951574px;}
.y79{bottom:431.120934px;}
.y94{bottom:431.279992px;}
.y4f{bottom:433.574982px;}
.y134{bottom:438.343218px;}
.y139{bottom:439.528194px;}
.y142{bottom:439.717626px;}
.y19b{bottom:443.261232px;}
.y168{bottom:443.887902px;}
.ya{bottom:444.338153px;}
.ye6{bottom:450.043750px;}
.y15c{bottom:453.722165px;}
.y17b{bottom:454.824809px;}
.yb6{bottom:460.417553px;}
.yc0{bottom:461.299625px;}
.y36{bottom:463.452137px;}
.y1b7{bottom:469.859560px;}
.y56{bottom:470.699980px;}
.y12e{bottom:470.968216px;}
.y1d7{bottom:471.233652px;}
.y138{bottom:473.278192px;}
.y141{bottom:473.467624px;}
.y19a{bottom:474.761230px;}
.y78{bottom:476.120932px;}
.y16b{bottom:476.124856px;}
.y5f{bottom:486.299993px;}
.y15b{bottom:486.347164px;}
.y17a{bottom:487.449808px;}
.ydb{bottom:489.418748px;}
.y15{bottom:493.648068px;}
.y11c{bottom:494.999989px;}
.y3{bottom:497.832826px;}
.y167{bottom:497.887899px;}
.yf9{bottom:502.278815px;}
.yb5{bottom:505.417551px;}
.y199{bottom:506.261229px;}
.ybf{bottom:506.299623px;}
.y137{bottom:507.028191px;}
.y140{bottom:507.217623px;}
.y4e{bottom:507.824979px;}
.y41{bottom:509.077858px;}
.y6c{bottom:512.639100px;}
.y129{bottom:521.077125px;}
.y5e{bottom:521.174991px;}
.yed{bottom:523.322733px;}
.yda{bottom:528.793747px;}
.y1df{bottom:529.495718px;}
.y1d6{bottom:529.733649px;}
.y152{bottom:535.172057px;}
.y198{bottom:537.761228px;}
.y136{bottom:540.778189px;}
.y13f{bottom:540.967621px;}
.y190{bottom:543.599987px;}
.yf8{bottom:543.903814px;}
.y4d{bottom:544.949977px;}
.yb4{bottom:550.417549px;}
.ybe{bottom:551.299621px;}
.y6b{bottom:557.639098px;}
.y14{bottom:558.898065px;}
.y77{bottom:563.396812px;}
.yd9{bottom:568.168745px;}
.y197{bottom:569.261226px;}
.y173{bottom:570.107439px;}
.y10d{bottom:570.599986px;}
.y13c{bottom:574.306982px;}
.y13e{bottom:574.496299px;}
.yfa{bottom:577.956598px;}
.y14f{bottom:581.693487px;}
.y55{bottom:582.074976px;}
.y14b{bottom:582.933493px;}
.y14e{bottom:584.537714px;}
.yf7{bottom:585.528812px;}
.y2{bottom:587.832823px;}
.y1d5{bottom:588.233647px;}
.y151{bottom:589.172055px;}
.y5d{bottom:590.924989px;}
.y40{bottom:595.702854px;}
.y96{bottom:598.679985px;}
.y196{bottom:600.761225px;}
.y1be{bottom:600.839985px;}
.y35{bottom:602.279493px;}
.y6a{bottom:602.639096px;}
.yd8{bottom:607.543743px;}
.y76{bottom:608.396810px;}
.ycc{bottom:610.539980px;}
.y13b{bottom:613.681981px;}
.y13d{bottom:613.871298px;}
.y4c{bottom:619.199974px;}
.y1b6{bottom:619.499987px;}
.y13{bottom:624.148062px;}
.y1b8{bottom:624.466162px;}
.y5c{bottom:625.799987px;}
.yec{bottom:629.072729px;}
.y128{bottom:629.077121px;}
.y110{bottom:632.879984px;}
.y172{bottom:634.232436px;}
.yf6{bottom:636.607021px;}
.yb2{bottom:641.602986px;}
.y9{bottom:641.663235px;}
.y1e2{bottom:646.282413px;}
.y1d4{bottom:646.733644px;}
.yd7{bottom:646.918742px;}
.y34{bottom:647.279491px;}
.y1cc{bottom:651.959983px;}
.y4b{bottom:656.324973px;}
.y17f{bottom:656.464631px;}
.y16e{bottom:659.494089px;}
.y5b{bottom:660.674986px;}
.ybd{bottom:668.705376px;}
.y193{bottom:669.959982px;}
.ycb{bottom:673.539978px;}
.y130{bottom:677.868106px;}
.ye5{bottom:686.293740px;}
.y17e{bottom:689.089630px;}
.y12{bottom:689.398060px;}
.y18d{bottom:690.479981px;}
.y33{bottom:692.279489px;}
.y4a{bottom:693.449971px;}
.y5a{bottom:695.549984px;}
.y20{bottom:697.742967px;}
.y1d2{bottom:705.233642px;}
.y75{bottom:707.717739px;}
.y16d{bottom:708.994086px;}
.yf3{bottom:709.934385px;}
.y112{bottom:710.999980px;}
.ybc{bottom:713.705374px;}
.y17d{bottom:721.714628px;}
.y1d3{bottom:723.233641px;}
.y1f{bottom:730.367966px;}
.y69{bottom:741.466398px;}
.y171{bottom:748.982431px;}
.yf2{bottom:751.559383px;}
.y74{bottom:752.717737px;}
.y125{bottom:754.199979px;}
.y11{bottom:754.648057px;}
.yf4{bottom:757.079979px;}
.y1e{bottom:762.992965px;}
.y3f{bottom:768.952847px;}
.y1dd{bottom:769.366991px;}
.y150{bottom:770.830017px;}
.yb1{bottom:781.689121px;}
.y68{bottom:786.466396px;}
.yf1{bottom:793.184381px;}
.y1d{bottom:795.617963px;}
.y10{bottom:819.898054px;}
.y8a{bottom:827.639976px;}
.y1c{bottom:828.242962px;}
.y32{bottom:831.106744px;}
.y67{bottom:831.466395px;}
.y1ba{bottom:835.919975px;}
.yf0{bottom:844.262608px;}
.y92{bottom:846.719975px;}
.y73{bottom:851.301375px;}
.y64{bottom:853.608942px;}
.y90{bottom:854.279975px;}
.y3e{bottom:855.577844px;}
.yca{bottom:857.289406px;}
.yd6{bottom:861.537157px;}
.ye4{bottom:865.989083px;}
.y47{bottom:868.995327px;}
.y12c{bottom:870.038269px;}
.y8{bottom:871.472689px;}
.y31{bottom:876.106742px;}
.y1b5{bottom:876.784510px;}
.y1ca{bottom:883.799973px;}
.yf{bottom:885.148052px;}
.y179{bottom:891.109936px;}
.y16a{bottom:895.047436px;}
.y72{bottom:896.301373px;}
.y1b{bottom:897.204534px;}
.y63{bottom:898.608941px;}
.yd5{bottom:900.912156px;}
.yb0{bottom:903.100196px;}
.y1dc{bottom:903.937966px;}
.ye3{bottom:905.364081px;}
.yeb{bottom:917.589897px;}
.y30{bottom:921.106740px;}
.yc9{bottom:921.414403px;}
.y1b2{bottom:922.679972px;}
.y178{bottom:923.734934px;}
.y12b{bottom:926.288267px;}
.y108{bottom:928.507944px;}
.y189{bottom:932.371639px;}
.y80{bottom:938.548437px;}
.yd4{bottom:940.287154px;}
.y71{bottom:941.301371px;}
.y18a{bottom:943.559971px;}
.y169{bottom:944.547433px;}
.ye2{bottom:944.739079px;}
.yaf{bottom:948.100194px;}
.ye{bottom:950.398049px;}
.y177{bottom:956.359933px;}
.yea{bottom:959.214895px;}
.yee{bottom:964.799970px;}
.y153{bottom:975.177118px;}
.yd3{bottom:979.662152px;}
.y12a{bottom:982.538264px;}
.y7f{bottom:983.548435px;}
.ye1{bottom:984.114078px;}
.y107{bottom:984.757941px;}
.yae{bottom:993.100192px;}
.ye9{bottom:1000.839893px;}
.yac{bottom:1008.150262px;}
.y188{bottom:1015.621635px;}
.ybb{bottom:1023.895592px;}
.ye8{bottom:1051.918120px;}
.yd2{bottom:1061.787502px;}
.y176{bottom:1071.096663px;}
.y184{bottom:1076.159162px;}
.y187{bottom:1098.871632px;}
.y175{bottom:1103.721661px;}
.y1b9{bottom:1108.519429px;}
.y2f{bottom:1116.145588px;}
.yd{bottom:1116.712483px;}
.yd1{bottom:1119.750005px;}
.y183{bottom:1125.659160px;}
.y174{bottom:1136.346660px;}
.h60{height:2.880000px;}
.h62{height:3.240000px;}
.h61{height:3.631502px;}
.h11{height:13.319999px;}
.h44{height:28.439999px;}
.h23{height:34.199999px;}
.h31{height:36.480110px;}
.h12{height:37.632114px;}
.h1c{height:39.600120px;}
.h20{height:39.604575px;}
.h27{height:40.679998px;}
.h2a{height:41.039998px;}
.h66{height:41.399998px;}
.h68{height:42.839998px;}
.h69{height:43.199998px;}
.h47{height:58.679998px;}
.h46{height:59.039998px;}
.h42{height:59.759998px;}
.h4e{height:63.755997px;}
.h1b{height:64.337622px;}
.h4f{height:68.422849px;}
.h63{height:69.299997px;}
.h52{height:72.805600px;}
.he{height:73.908447px;}
.h36{height:74.249997px;}
.h22{height:77.651862px;}
.h6b{height:78.488138px;}
.h15{height:79.187622px;}
.h50{height:82.149342px;}
.h1a{height:82.493727px;}
.h43{height:83.966380px;}
.h26{height:84.581289px;}
.h24{height:84.593894px;}
.h19{height:87.335591px;}
.h38{height:91.082873px;}
.h45{height:91.439996px;}
.h17{height:97.055726px;}
.h41{height:97.972540px;}
.hd{height:101.628446px;}
.h9{height:103.476236px;}
.h16{height:105.749996px;}
.h4d{height:106.271546px;}
.ha{height:106.775861px;}
.h40{height:107.279996px;}
.h3a{height:108.719995px;}
.hb{height:108.887620px;}
.h3e{height:109.079995px;}
.h3c{height:109.390489px;}
.h5d{height:109.405795px;}
.h5c{height:112.140940px;}
.h55{height:114.911988px;}
.h37{height:118.407813px;}
.h28{height:118.520812px;}
.h5b{height:118.762870px;}
.h2b{height:120.445372px;}
.h29{height:120.605752px;}
.h4{height:120.657599px;}
.h64{height:121.037897px;}
.h53{height:121.500625px;}
.h3f{height:126.972722px;}
.h21{height:128.675245px;}
.h4b{height:130.697687px;}
.h6a{height:130.860317px;}
.h6c{height:131.700242px;}
.h67{height:135.225111px;}
.h65{height:135.780948px;}
.h35{height:136.392474px;}
.h2f{height:136.799994px;}
.hf{height:140.219994px;}
.h10{height:141.119994px;}
.h14{height:143.525244px;}
.h1d{height:145.259994px;}
.h1f{height:145.619994px;}
.h6d{height:148.462876px;}
.h1e{height:148.499994px;}
.h51{height:158.039993px;}
.h59{height:159.924240px;}
.h2e{height:179.279993px;}
.h7{height:191.519992px;}
.h5f{height:193.667894px;}
.h32{height:196.307992px;}
.h6{height:197.567992px;}
.h30{height:200.617192px;}
.h5{height:200.970314px;}
.h4c{height:201.660472px;}
.h33{height:203.363992px;}
.h8{height:205.632621px;}
.hc{height:206.952471px;}
.h13{height:217.775241px;}
.h57{height:224.437979px;}
.h2c{height:227.519991px;}
.h54{height:227.563956px;}
.h2d{height:228.599990px;}
.h4a{height:231.136737px;}
.h49{height:231.156807px;}
.h58{height:231.770144px;}
.h5a{height:233.676634px;}
.h56{height:234.646537px;}
.h3{height:235.176484px;}
.h6e{height:239.848728px;}
.h34{height:242.675734px;}
.h3d{height:247.845417px;}
.h3b{height:247.866938px;}
.h48{height:268.919989px;}
.h39{height:283.529973px;}
.h5e{height:305.736481px;}
.h18{height:737.999969px;}
.h25{height:903.599962px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w22{width:6.120000px;}
.w23{width:7.920000px;}
.w21{width:8.640000px;}
.w1f{width:9.360000px;}
.w20{width:12.599999px;}
.w28{width:22.679999px;}
.w29{width:25.919999px;}
.w10{width:29.879999px;}
.w6{width:35.639999px;}
.w11{width:44.999998px;}
.w13{width:51.119998px;}
.w12{width:53.279998px;}
.w18{width:132.119994px;}
.w16{width:134.279994px;}
.w19{width:137.519994px;}
.w17{width:137.879994px;}
.w15{width:139.679994px;}
.wf{width:143.279994px;}
.w1d{width:152.279994px;}
.w1c{width:164.519993px;}
.w1a{width:173.519993px;}
.w1b{width:205.199991px;}
.w14{width:213.119991px;}
.w8{width:258.119989px;}
.wb{width:263.519989px;}
.w9{width:305.279987px;}
.w4{width:355.319985px;}
.wa{width:378.359984px;}
.w5{width:399.239983px;}
.w2{width:463.319981px;}
.w3{width:476.999980px;}
.we{width:507.599979px;}
.wc{width:521.279978px;}
.wd{width:560.519977px;}
.w25{width:712.439970px;}
.w26{width:729.359970px;}
.w24{width:755.639969px;}
.w27{width:782.279967px;}
.w1e{width:1813.679924px;}
.w7{width:2055.599914px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.xb2{left:1.125436px;}
.xbf{left:3.322963px;}
.xb7{left:4.914485px;}
.xb4{left:19.505340px;}
.x52{left:26.314441px;}
.x50{left:27.808582px;}
.xc9{left:28.880858px;}
.x48{left:30.673827px;}
.xb9{left:31.770605px;}
.x47{left:33.046874px;}
.xcb{left:34.616041px;}
.x51{left:36.527331px;}
.x55{left:39.041003px;}
.x90{left:40.940143px;}
.xf0{left:42.757986px;}
.x59{left:45.966795px;}
.x49{left:50.871092px;}
.x5c{left:52.347654px;}
.x56{left:54.351549px;}
.x4d{left:58.570310px;}
.xca{left:61.616040px;}
.x4b{left:65.390622px;}
.x54{left:66.410143px;}
.x4f{left:67.640611px;}
.x149{left:69.990872px;}
.xaa{left:75.791895px;}
.x4c{left:78.697262px;}
.x58{left:82.054684px;}
.x5a{left:85.042965px;}
.x5e{left:98.068355px;}
.x53{left:104.554672px;}
.x5d{left:109.230464px;}
.x92{left:110.461625px;}
.x44{left:111.761714px;}
.xe{left:113.004333px;}
.xd{left:118.383239px;}
.x3f{left:121.499995px;}
.xb0{left:123.357872px;}
.xc{left:126.381286px;}
.x57{left:127.757796px;}
.x70{left:130.974704px;}
.x6d{left:132.762179px;}
.x4a{left:135.210932px;}
.xa5{left:137.637537px;}
.x6f{left:139.043063px;}
.x61{left:140.466188px;}
.x42{left:144.105452px;}
.x9e{left:146.382388px;}
.xf{left:147.668395px;}
.x71{left:149.765719px;}
.xa4{left:155.022302px;}
.x5f{left:156.339837px;}
.x6e{left:158.268037px;}
.x46{left:159.626946px;}
.x140{left:161.093258px;}
.x40{left:162.123040px;}
.xef{left:163.799993px;}
.x5b{left:169.048821px;}
.x144{left:173.878629px;}
.x1{left:175.099716px;}
.xa3{left:177.487145px;}
.x4e{left:178.980461px;}
.x118{left:180.907651px;}
.x123{left:182.165583px;}
.x8f{left:183.239992px;}
.xa0{left:190.134340px;}
.x91{left:196.928418px;}
.x8d{left:198.897003px;}
.xfe{left:205.300188px;}
.x122{left:206.581597px;}
.x8b{left:211.319991px;}
.x6b{left:215.836350px;}
.xfd{left:219.362687px;}
.x14c{left:222.093537px;}
.xb{left:228.073658px;}
.xa1{left:230.265197px;}
.x72{left:233.824309px;}
.x9c{left:240.814622px;}
.xfc{left:245.097061px;}
.xfb{left:248.085342px;}
.xff{left:257.823623px;}
.x13c{left:263.159989px;}
.x7{left:268.574490px;}
.x8c{left:278.350125px;}
.xc1{left:291.265783px;}
.x9f{left:292.491757px;}
.x137{left:306.101260px;}
.x9b{left:316.769697px;}
.x2{left:327.062601px;}
.xa8{left:336.124498px;}
.x66{left:351.359985px;}
.xf1{left:354.066158px;}
.x68{left:358.950308px;}
.x8a{left:364.679985px;}
.xcd{left:375.690308px;}
.x9a{left:377.371566px;}
.x93{left:379.001936px;}
.xfa{left:383.878506px;}
.xce{left:385.041870px;}
.xa2{left:386.851128px;}
.xd0{left:399.737182px;}
.xcf{left:424.838743px;}
.xaf{left:430.716646px;}
.xd2{left:437.176124px;}
.x97{left:447.101787px;}
.xc0{left:450.808224px;}
.xd1{left:451.976905px;}
.xcc{left:456.303586px;}
.x1d{left:465.171220px;}
.x1e{left:467.192704px;}
.x124{left:471.858247px;}
.x88{left:473.399980px;}
.x3c{left:487.472017px;}
.x125{left:491.053559px;}
.x126{left:493.268402px;}
.x20{left:497.286453px;}
.x11a{left:499.459155px;}
.x1f{left:503.245437px;}
.x145{left:509.543987px;}
.x119{left:515.472826px;}
.x6c{left:517.898837px;}
.x73{left:521.330032px;}
.x13{left:529.080533px;}
.x1c{left:536.485670px;}
.x75{left:540.445142px;}
.x77{left:542.396314px;}
.x74{left:548.505812px;}
.x11{left:549.752407px;}
.xa6{left:553.940254px;}
.x10{left:555.728969px;}
.x10d{left:557.061526px;}
.x10f{left:560.928714px;}
.x10e{left:565.077151px;}
.x12{left:566.539516px;}
.x76{left:569.202953px;}
.x112{left:574.855070px;}
.x62{left:578.348854px;}
.x21{left:582.726684px;}
.x99{left:592.013647px;}
.x41{left:600.626578px;}
.x110{left:604.170899px;}
.xee{left:613.588469px;}
.x64{left:615.324425px;}
.x2f{left:622.454440px;}
.xb3{left:628.559974px;}
.x13d{left:636.119973px;}
.x15{left:649.947452px;}
.x14{left:654.799278px;}
.x111{left:660.333006px;}
.x113{left:664.099203px;}
.x9d{left:686.841947px;}
.xf7{left:702.208084px;}
.xb8{left:711.719970px;}
.x3d{left:728.595926px;}
.x8{left:730.555632px;}
.x138{left:739.806320px;}
.x6a{left:756.740437px;}
.x95{left:760.800985px;}
.x14d{left:763.613916px;}
.xd8{left:764.860342px;}
.xbe{left:773.999968px;}
.x3{left:781.749020px;}
.xd6{left:784.020498px;}
.x5{left:786.881832px;}
.xd7{left:789.065419px;}
.x127{left:793.457121px;}
.x94{left:799.307034px;}
.x11c{left:801.843277px;}
.xd4{left:805.101895px;}
.x4{left:815.006831px;}
.xd3{left:817.195645px;}
.xd5{left:821.426746px;}
.x128{left:828.595791px;}
.x60{left:834.220425px;}
.x67{left:837.637175px;}
.x9{left:845.922006px;}
.x139{left:851.221355px;}
.x23{left:857.057041px;}
.x13b{left:858.569011px;}
.x24{left:864.861729px;}
.x22{left:867.392978px;}
.x11b{left:871.013196px;}
.x18{left:880.913456px;}
.x6{left:887.657224px;}
.x17{left:894.325565px;}
.xa{left:904.427288px;}
.xf2{left:906.454487px;}
.x25{left:911.725008px;}
.x7a{left:913.285075px;}
.x19{left:922.099001px;}
.x101{left:928.988919px;}
.x103{left:931.906887px;}
.x102{left:933.770168px;}
.x132{left:934.946061px;}
.x1a{left:938.429079px;}
.x7b{left:945.523354px;}
.x79{left:947.553991px;}
.x13a{left:948.955726px;}
.x26{left:956.637115px;}
.x78{left:958.346959px;}
.xc4{left:960.213024px;}
.xb1{left:966.599960px;}
.x141{left:970.103192px;}
.x100{left:971.475245px;}
.xc3{left:972.728649px;}
.xba{left:978.839959px;}
.x27{left:991.915534px;}
.x16{left:994.573608px;}
.x146{left:996.223068px;}
.x104{left:1001.586572px;}
.xae{left:1028.879957px;}
.xad{left:1031.920453px;}
.xac{left:1033.199957px;}
.xc2{left:1038.891922px;}
.xab{left:1040.039957px;}
.x14b{left:1041.119957px;}
.x14a{left:1042.559957px;}
.xf3{left:1055.051943px;}
.x1b{left:1062.644988px;}
.xb6{left:1064.159956px;}
.x13e{left:1075.679955px;}
.x11e{left:1077.574439px;}
.x43{left:1082.249955px;}
.x130{left:1097.307098px;}
.x12b{left:1102.781637px;}
.x12a{left:1109.953512px;}
.xdc{left:1113.229562px;}
.x129{left:1124.965230px;}
.xdf{left:1129.928780px;}
.xdd{left:1135.377999px;}
.x12c{left:1140.451557px;}
.xda{left:1146.494567px;}
.x11d{left:1150.470921px;}
.xde{left:1170.903388px;}
.x131{left:1181.253299px;}
.xd9{left:1182.266050px;}
.xdb{left:1186.495184px;}
.x65{left:1199.857378px;}
.x148{left:1216.079949px;}
.x3e{left:1244.144756px;}
.xa9{left:1245.505556px;}
.xbd{left:1253.159948px;}
.xf9{left:1258.148617px;}
.xf8{left:1272.668148px;}
.x106{left:1281.591258px;}
.x7d{left:1284.222603px;}
.x3a{left:1288.818748px;}
.x7f{left:1290.692773px;}
.x7e{left:1292.573633px;}
.x38{left:1298.469139px;}
.xb5{left:1301.759946px;}
.x37{left:1316.433982px;}
.x105{left:1324.587350px;}
.x7c{left:1327.746038px;}
.x39{left:1330.021872px;}
.x80{left:1333.987693px;}
.x136{left:1357.903239px;}
.x32{left:1362.175961px;}
.x3b{left:1372.683979px;}
.x33{left:1379.015804px;}
.xa7{left:1385.449911px;}
.x133{left:1394.285558px;}
.x36{left:1402.637103px;}
.x35{left:1408.475509px;}
.x12d{left:1411.318847px;}
.x96{left:1419.479941px;}
.x12f{left:1422.357909px;}
.x31{left:1425.140802px;}
.x34{left:1437.656427px;}
.x89{left:1439.999940px;}
.x12e{left:1450.623533px;}
.xbc{left:1465.199939px;}
.x8e{left:1469.159939px;}
.xbb{left:1473.839939px;}
.x30{left:1479.986473px;}
.x11f{left:1485.203061px;}
.x63{left:1491.119938px;}
.xe6{left:1495.176701px;}
.x69{left:1498.319938px;}
.x134{left:1503.938097px;}
.xe3{left:1512.719669px;}
.x13f{left:1525.679936px;}
.xc6{left:1540.515003px;}
.xe5{left:1541.881777px;}
.xc5{left:1547.968127px;}
.xe2{left:1551.743105px;}
.xe0{left:1555.543224px;}
.xe4{left:1561.551698px;}
.x45{left:1563.873343px;}
.xc7{left:1573.632189px;}
.x135{left:1576.690242px;}
.xe1{left:1582.595958px;}
.x108{left:1622.307761px;}
.x10c{left:1629.110495px;}
.x98{left:1631.159932px;}
.xc8{left:1632.688529px;}
.x109{left:1636.686666px;}
.xf5{left:1646.147046px;}
.x10b{left:1661.085103px;}
.x120{left:1677.366130px;}
.x10a{left:1684.973774px;}
.x107{left:1690.915180px;}
.x82{left:1692.125076px;}
.x85{left:1695.439802px;}
.xf4{left:1699.619700px;}
.x2b{left:1700.691605px;}
.x2a{left:1704.857620px;}
.x2c{left:1713.418167px;}
.x83{left:1714.828474px;}
.x84{left:1722.808942px;}
.x117{left:1735.779286px;}
.x121{left:1742.563393px;}
.x114{left:1746.097645px;}
.x81{left:1749.377026px;}
.x116{left:1757.804676px;}
.x147{left:1758.982437px;}
.x28{left:1762.425977px;}
.xf6{left:1764.498107px;}
.x86{left:1765.523784px;}
.x115{left:1783.873034px;}
.x142{left:1790.464857px;}
.x29{left:1793.662304px;}
.x2d{left:1810.220897px;}
.x2e{left:1829.414992px;}
.xed{left:1860.120278px;}
.xeb{left:1879.280433px;}
.xe9{left:1882.286293px;}
.xec{left:1884.325355px;}
.x143{left:1888.199921px;}
.xea{left:1904.012854px;}
.xe7{left:1923.088472px;}
.xe8{left:1957.400970px;}
.x87{left:2006.639916px;}
@media print{
.v2{vertical-align:-50.410110pt;}
.v1{vertical-align:-31.217970pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:81.231869pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.028034pt;}
.ls1{letter-spacing:2352.245110pt;}
.wsf{word-spacing:-215.679991pt;}
.ws1a{word-spacing:-93.720636pt;}
.ws16{word-spacing:-86.500956pt;}
.ws19{word-spacing:-85.620080pt;}
.ws8{word-spacing:-80.768436pt;}
.ws9{word-spacing:-80.756401pt;}
.wsc{word-spacing:-66.703681pt;}
.ws12{word-spacing:-56.474078pt;}
.ws1b{word-spacing:-52.690040pt;}
.ws5{word-spacing:-39.519998pt;}
.ws22{word-spacing:-39.199998pt;}
.ws20{word-spacing:-39.190200pt;}
.ws11{word-spacing:-35.558120pt;}
.ws7{word-spacing:-34.244079pt;}
.ws1e{word-spacing:-32.930041pt;}
.ws18{word-spacing:-31.606119pt;}
.ws13{word-spacing:-30.301959pt;}
.ws1{word-spacing:-28.978039pt;}
.ws10{word-spacing:-26.664958pt;}
.ws3{word-spacing:-26.340079pt;}
.ws15{word-spacing:-25.231054pt;}
.ws4{word-spacing:-23.702119pt;}
.wse{word-spacing:-23.514394pt;}
.ws1f{word-spacing:-22.121318pt;}
.ws2{word-spacing:-21.074039pt;}
.wsb{word-spacing:-20.799999pt;}
.ws1d{word-spacing:-19.759999pt;}
.wsa{word-spacing:-18.532799pt;}
.ws14{word-spacing:-18.179199pt;}
.ws17{word-spacing:-16.634799pt;}
.wsd{word-spacing:-14.440397pt;}
.ws6{word-spacing:-10.454541pt;}
.ws1c{word-spacing:-0.988001pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:2040.118006pt;}
._14{margin-left:-86.956469pt;}
._6{margin-left:-50.419955pt;}
._e{margin-left:-42.909477pt;}
._a{margin-left:-41.386383pt;}
._b{margin-left:-26.219176pt;}
._c{margin-left:-23.340293pt;}
._12{margin-left:-12.178905pt;}
._13{margin-left:-9.420601pt;}
._d{margin-left:-8.073986pt;}
._3{margin-left:-6.746911pt;}
._7{margin-left:-5.806543pt;}
._8{margin-left:-4.813489pt;}
._2{margin-left:-3.721288pt;}
._4{margin-left:-2.745956pt;}
._1{margin-left:-1.192390pt;}
._9{width:1.319778pt;}
._5{width:2.277321pt;}
._0{width:5.862332pt;}
._f{width:68.423520pt;}
._11{width:118.101286pt;}
._10{width:312.298971pt;}
.fs2b{font-size:4.000002pt;}
.fs8{font-size:42.666796pt;}
.fse{font-size:42.671596pt;}
.fsd{font-size:69.319997pt;}
.fs1f{font-size:73.599997pt;}
.fs21{font-size:79.995165pt;}
.fs13{font-size:79.999997pt;}
.fs6{font-size:85.319996pt;}
.fs30{font-size:89.559992pt;}
.fsc{font-size:90.639996pt;}
.fs1b{font-size:95.199977pt;}
.fsb{font-size:95.959996pt;}
.fs20{font-size:101.319996pt;}
.fsa{font-size:106.639996pt;}
.fs15{font-size:107.519992pt;}
.fs11{font-size:107.675201pt;}
.fs10{font-size:107.691248pt;}
.fs1a{font-size:111.079978pt;}
.fs5{font-size:117.319995pt;}
.fs1e{font-size:122.679995pt;}
.fs28{font-size:127.959995pt;}
.fs14{font-size:131.399987pt;}
.fs2c{font-size:133.320002pt;}
.fs23{font-size:134.399986pt;}
.fs1{font-size:136.799998pt;}
.fsf{font-size:138.639994pt;}
.fs12{font-size:142.559990pt;}
.fs19{font-size:143.960002pt;}
.fs2e{font-size:145.697090pt;}
.fs2d{font-size:146.295971pt;}
.fs2f{font-size:149.320002pt;}
.fs9{font-size:154.639994pt;}
.fs31{font-size:159.960001pt;}
.fs7{font-size:159.999993pt;}
.fs27{font-size:181.320000pt;}
.fs2a{font-size:213.319999pt;}
.fs3{font-size:223.999991pt;}
.fs1d{font-size:228.639990pt;}
.fs2{font-size:229.319998pt;}
.fs4{font-size:234.639990pt;}
.fs0{font-size:266.640005pt;}
.fs25{font-size:269.959981pt;}
.fs22{font-size:273.719989pt;}
.fs26{font-size:273.959981pt;}
.fs18{font-size:275.039997pt;}
.fs17{font-size:275.063879pt;}
.fs24{font-size:277.359972pt;}
.fs16{font-size:314.640003pt;}
.fs1c{font-size:319.999987pt;}
.fs29{font-size:346.640002pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y195{bottom:0.289725pt;}
.y18c{bottom:0.327382pt;}
.y1b4{bottom:0.387382pt;}
.y192{bottom:0.436327pt;}
.y18f{bottom:0.549725pt;}
.y194{bottom:1.623059pt;}
.y18b{bottom:1.660716pt;}
.y1b3{bottom:1.720716pt;}
.y191{bottom:1.769661pt;}
.y18e{bottom:1.883059pt;}
.yc6{bottom:2.689770pt;}
.yc8{bottom:2.701333pt;}
.y3d{bottom:2.850708pt;}
.yba{bottom:2.894301pt;}
.y7e{bottom:2.907811pt;}
.y6e{bottom:2.931567pt;}
.y148{bottom:4.892706pt;}
.y127{bottom:6.020242pt;}
.y111{bottom:6.023675pt;}
.y124{bottom:6.068909pt;}
.y11e{bottom:6.083132pt;}
.y10f{bottom:6.089539pt;}
.y11b{bottom:6.089773pt;}
.y8b{bottom:6.093073pt;}
.y122{bottom:6.121409pt;}
.y8f{bottom:6.137038pt;}
.y115{bottom:6.181926pt;}
.y118{bottom:6.223289pt;}
.y120{bottom:6.261097pt;}
.y10c{bottom:7.040795pt;}
.ya0{bottom:7.110664pt;}
.y9b{bottom:7.110703pt;}
.ya6{bottom:7.144531pt;}
.yab{bottom:7.264531pt;}
.y1bd{bottom:8.830289pt;}
.y1c1{bottom:8.833981pt;}
.y1c9{bottom:8.846950pt;}
.y1c5{bottom:8.978043pt;}
.y91{bottom:9.146777pt;}
.y93{bottom:9.157304pt;}
.y1cd{bottom:9.175188pt;}
.y1d1{bottom:9.189251pt;}
.y95{bottom:9.246562pt;}
.y1cb{bottom:9.328157pt;}
.y1cf{bottom:9.342219pt;}
.yef{bottom:24.358804pt;}
.yf5{bottom:24.420103pt;}
.y100{bottom:24.534634pt;}
.y106{bottom:24.591977pt;}
.ye7{bottom:31.111103pt;}
.y126{bottom:34.020236pt;}
.y11d{bottom:34.083127pt;}
.y10e{bottom:34.089533pt;}
.y11a{bottom:34.089767pt;}
.y114{bottom:34.181920pt;}
.y117{bottom:34.223283pt;}
.y186{bottom:36.656414pt;}
.y48{bottom:39.999998pt;}
.y10b{bottom:40.040789pt;}
.y162{bottom:42.706078pt;}
.yad{bottom:42.847486pt;}
.y147{bottom:44.563589pt;}
.y9f{bottom:50.110662pt;}
.y9a{bottom:50.110701pt;}
.ya5{bottom:50.144529pt;}
.yaa{bottom:50.264529pt;}
.y1bc{bottom:52.193763pt;}
.y1c0{bottom:52.197455pt;}
.y1c8{bottom:52.210423pt;}
.y1c4{bottom:52.341517pt;}
.y8c{bottom:56.000007pt;}
.y62{bottom:57.174302pt;}
.y135{bottom:58.446398pt;}
.y1b1{bottom:58.526078pt;}
.y113{bottom:62.181915pt;}
.y15a{bottom:71.706077pt;}
.y10a{bottom:73.040782pt;}
.yc5{bottom:75.520006pt;}
.y104{bottom:77.304669pt;}
.y146{bottom:84.234472pt;}
.yb8{bottom:86.114748pt;}
.y1b0{bottom:86.526076pt;}
.y185{bottom:86.656412pt;}
.y9e{bottom:93.110660pt;}
.y99{bottom:93.110699pt;}
.ya4{bottom:93.144527pt;}
.ya9{bottom:93.264527pt;}
.y1bb{bottom:95.557237pt;}
.y1bf{bottom:95.560929pt;}
.y1c7{bottom:95.573897pt;}
.y1c3{bottom:95.704991pt;}
.y159{bottom:100.706076pt;}
.y6d{bottom:102.400005pt;}
.yd0{bottom:105.528828pt;}
.y1ac{bottom:107.199516pt;}
.yb9{bottom:108.480004pt;}
.y49{bottom:112.440318pt;}
.y103{bottom:114.304667pt;}
.y1af{bottom:114.526075pt;}
.y87{bottom:115.531643pt;}
.y119{bottom:117.120004pt;}
.ye0{bottom:117.809755pt;}
.y105{bottom:119.040004pt;}
.y7{bottom:119.869979pt;}
.y1e1{bottom:121.027739pt;}
.yc4{bottom:121.330555pt;}
.y59{bottom:121.399995pt;}
.y1c6{bottom:123.840004pt;}
.y145{bottom:123.905355pt;}
.y7d{bottom:128.320004pt;}
.y3b{bottom:128.555387pt;}
.y158{bottom:129.706075pt;}
.y46{bottom:131.350459pt;}
.y1ab{bottom:135.199514pt;}
.y123{bottom:136.000003pt;}
.y9d{bottom:136.110658pt;}
.y98{bottom:136.110697pt;}
.ya3{bottom:136.144526pt;}
.ya8{bottom:136.264526pt;}
.y3c{bottom:138.560003pt;}
.y1a4{bottom:142.009994pt;}
.y1ae{bottom:142.526074pt;}
.y8d{bottom:145.028063pt;}
.y86{bottom:146.531642pt;}
.y66{bottom:148.557338pt;}
.y1a{bottom:148.798295pt;}
.y102{bottom:151.304666pt;}
.ydf{bottom:152.809754pt;}
.y58{bottom:154.399994pt;}
.y27{bottom:154.870394pt;}
.y2e{bottom:155.306874pt;}
.y157{bottom:158.706073pt;}
.y45{bottom:160.350457pt;}
.y7c{bottom:161.121081pt;}
.ycf{bottom:161.528825pt;}
.ya1{bottom:162.240002pt;}
.y1aa{bottom:163.199513pt;}
.yc{bottom:163.563289pt;}
.y1d0{bottom:167.040002pt;}
.y3a{bottom:168.555385pt;}
.y144{bottom:168.960002pt;}
.y1a3{bottom:170.009993pt;}
.y1ad{bottom:170.526073pt;}
.y6{bottom:170.869977pt;}
.y85{bottom:177.531641pt;}
.y9c{bottom:179.110657pt;}
.y97{bottom:179.110696pt;}
.ya2{bottom:179.144524pt;}
.yc7{bottom:183.680001pt;}
.y116{bottom:184.640001pt;}
.y54{bottom:187.399992pt;}
.y156{bottom:187.706072pt;}
.yde{bottom:187.809752pt;}
.y65{bottom:188.557336pt;}
.y44{bottom:189.350456pt;}
.y1a9{bottom:191.199512pt;}
.y8e{bottom:195.520001pt;}
.y101{bottom:196.707480pt;}
.y1a2{bottom:198.009992pt;}
.y182{bottom:199.923032pt;}
.ya7{bottom:205.120000pt;}
.y170{bottom:205.423127pt;}
.y19{bottom:206.798292pt;}
.yb7{bottom:207.164439pt;}
.y84{bottom:208.531639pt;}
.y39{bottom:208.555383pt;}
.y133{bottom:210.608823pt;}
.y1db{bottom:210.874366pt;}
.y155{bottom:216.706071pt;}
.y1a8{bottom:219.199511pt;}
.y2d{bottom:219.258519pt;}
.y12d{bottom:219.959991pt;}
.y53{bottom:220.399991pt;}
.y26{bottom:220.695063pt;}
.y5{bottom:221.869975pt;}
.ydd{bottom:222.809751pt;}
.y166{bottom:224.233655pt;}
.y1a1{bottom:226.009991pt;}
.y181{bottom:228.923030pt;}
.y1de{bottom:235.902166pt;}
.y83{bottom:239.531638pt;}
.yc3{bottom:245.685366pt;}
.y154{bottom:245.706070pt;}
.y1a7{bottom:247.199510pt;}
.y2c{bottom:248.258518pt;}
.y16f{bottom:249.423126pt;}
.y25{bottom:249.695062pt;}
.y121{bottom:251.519999pt;}
.y132{bottom:252.608821pt;}
.y52{bottom:253.399989pt;}
.y1a0{bottom:254.009989pt;}
.y165{bottom:255.233653pt;}
.ydc{bottom:257.809749pt;}
.y180{bottom:257.923029pt;}
.y161{bottom:258.308597pt;}
.yfe{bottom:261.887413pt;}
.y7b{bottom:262.168885pt;}
.y1da{bottom:262.874363pt;}
.y18{bottom:264.798290pt;}
.y70{bottom:272.631381pt;}
.y4{bottom:272.869973pt;}
.y1a6{bottom:275.199509pt;}
.y2b{bottom:277.258516pt;}
.y24{bottom:278.695060pt;}
.y19f{bottom:282.009988pt;}
.yc2{bottom:285.685364pt;}
.y164{bottom:286.233652pt;}
.y57{bottom:286.399988pt;}
.y160{bottom:287.308596pt;}
.y14a{bottom:287.736308pt;}
.y14d{bottom:289.629684pt;}
.y131{bottom:294.608820pt;}
.y43{bottom:298.513658pt;}
.yfd{bottom:298.887412pt;}
.y7a{bottom:302.168883pt;}
.y1a5{bottom:303.199507pt;}
.yff{bottom:303.679996pt;}
.y2a{bottom:306.258515pt;}
.y23{bottom:307.695059pt;}
.y19e{bottom:310.009987pt;}
.y6f{bottom:312.631379pt;}
.y1d9{bottom:314.874361pt;}
.y15f{bottom:316.308595pt;}
.y82{bottom:316.864979pt;}
.y163{bottom:317.233651pt;}
.y89{bottom:317.616243pt;}
.y51{bottom:319.399987pt;}
.y17{bottom:322.798287pt;}
.yce{bottom:324.115538pt;}
.yc1{bottom:325.685362pt;}
.y1c2{bottom:327.999995pt;}
.yb3{bottom:328.214194pt;}
.y38{bottom:331.957458pt;}
.y29{bottom:335.258514pt;}
.y149{bottom:335.736306pt;}
.yfc{bottom:335.887410pt;}
.y14c{bottom:336.629682pt;}
.y22{bottom:336.695058pt;}
.y19d{bottom:338.009986pt;}
.yb{bottom:338.967250pt;}
.y61{bottom:339.266664pt;}
.y11f{bottom:342.079995pt;}
.y15e{bottom:345.308594pt;}
.y50{bottom:352.399985pt;}
.y1e0{bottom:353.282481pt;}
.y13a{bottom:360.691729pt;}
.y143{bottom:360.860113pt;}
.y109{bottom:362.239994pt;}
.y28{bottom:364.258513pt;}
.y81{bottom:364.864977pt;}
.y88{bottom:365.616241pt;}
.y21{bottom:365.695057pt;}
.y19c{bottom:366.009985pt;}
.y1d8{bottom:366.874359pt;}
.y60{bottom:370.266663pt;}
.y37{bottom:371.957457pt;}
.y1ce{bottom:373.119993pt;}
.y15d{bottom:374.308592pt;}
.y17c{bottom:375.288720pt;}
.y42{bottom:375.513655pt;}
.y12f{bottom:376.638416pt;}
.y16c{bottom:379.222096pt;}
.ycd{bottom:380.115536pt;}
.y16{bottom:380.798285pt;}
.yfb{bottom:381.290288pt;}
.y79{bottom:383.218608pt;}
.y94{bottom:383.359993pt;}
.y4f{bottom:385.399984pt;}
.y134{bottom:389.638416pt;}
.y139{bottom:390.691728pt;}
.y142{bottom:390.860112pt;}
.y19b{bottom:394.009984pt;}
.y168{bottom:394.567024pt;}
.ya{bottom:394.967248pt;}
.ye6{bottom:400.038889pt;}
.y15c{bottom:403.308591pt;}
.y17b{bottom:404.288719pt;}
.yb6{bottom:409.260047pt;}
.yc0{bottom:410.044111pt;}
.y36{bottom:411.957455pt;}
.y1b7{bottom:417.652943pt;}
.y56{bottom:418.399983pt;}
.y12e{bottom:418.638415pt;}
.y1d7{bottom:418.874357pt;}
.y138{bottom:420.691726pt;}
.y141{bottom:420.860110pt;}
.y19a{bottom:422.009982pt;}
.y78{bottom:423.218606pt;}
.y16b{bottom:423.222094pt;}
.y5f{bottom:432.266660pt;}
.y15b{bottom:432.308590pt;}
.y17a{bottom:433.288718pt;}
.ydb{bottom:435.038887pt;}
.y15{bottom:438.798283pt;}
.y11c{bottom:439.999991pt;}
.y3{bottom:442.518068pt;}
.y167{bottom:442.567022pt;}
.yf9{bottom:446.470058pt;}
.yb5{bottom:449.260045pt;}
.y199{bottom:450.009981pt;}
.ybf{bottom:450.044109pt;}
.y137{bottom:450.691725pt;}
.y140{bottom:450.860109pt;}
.y4e{bottom:451.399981pt;}
.y41{bottom:452.513652pt;}
.y6c{bottom:455.679200pt;}
.y129{bottom:463.179667pt;}
.y5e{bottom:463.266659pt;}
.yed{bottom:465.175763pt;}
.yda{bottom:470.038886pt;}
.y1df{bottom:470.662860pt;}
.y1d6{bottom:470.874355pt;}
.y152{bottom:475.708495pt;}
.y198{bottom:478.009980pt;}
.y136{bottom:480.691724pt;}
.y13f{bottom:480.860108pt;}
.y190{bottom:483.199989pt;}
.yf8{bottom:483.470057pt;}
.y4d{bottom:484.399980pt;}
.yb4{bottom:489.260044pt;}
.ybe{bottom:490.044108pt;}
.y6b{bottom:495.679199pt;}
.y14{bottom:496.798280pt;}
.y77{bottom:500.797166pt;}
.yd9{bottom:505.038885pt;}
.y197{bottom:506.009979pt;}
.y173{bottom:506.762168pt;}
.y10d{bottom:507.199988pt;}
.y13c{bottom:510.495096pt;}
.y13e{bottom:510.663377pt;}
.yfa{bottom:513.739198pt;}
.y14f{bottom:517.060878pt;}
.y55{bottom:517.399978pt;}
.y14b{bottom:518.163105pt;}
.y14e{bottom:519.589079pt;}
.yf7{bottom:520.470055pt;}
.y2{bottom:522.518065pt;}
.y1d5{bottom:522.874353pt;}
.y151{bottom:523.708493pt;}
.y5d{bottom:525.266657pt;}
.y40{bottom:529.513648pt;}
.y96{bottom:532.159987pt;}
.y196{bottom:534.009978pt;}
.y1be{bottom:534.079987pt;}
.y35{bottom:535.359549pt;}
.y6a{bottom:535.679197pt;}
.yd8{bottom:540.038883pt;}
.y76{bottom:540.797165pt;}
.ycc{bottom:542.702205pt;}
.y13b{bottom:545.495094pt;}
.y13d{bottom:545.663376pt;}
.y4c{bottom:550.399977pt;}
.y1b6{bottom:550.666655pt;}
.y13{bottom:554.798278pt;}
.y1b8{bottom:555.081033pt;}
.y5c{bottom:556.266655pt;}
.yec{bottom:559.175759pt;}
.y128{bottom:559.179663pt;}
.y110{bottom:562.559986pt;}
.y172{bottom:563.762165pt;}
.yf6{bottom:565.872908pt;}
.yb2{bottom:570.313765pt;}
.y9{bottom:570.367320pt;}
.y1e2{bottom:574.473256pt;}
.y1d4{bottom:574.874350pt;}
.yd7{bottom:575.038882pt;}
.y34{bottom:575.359547pt;}
.y1cc{bottom:579.519985pt;}
.y4b{bottom:583.399976pt;}
.y17f{bottom:583.524116pt;}
.y16e{bottom:586.216968pt;}
.y5b{bottom:587.266654pt;}
.ybd{bottom:594.404778pt;}
.y193{bottom:595.519984pt;}
.ycb{bottom:598.702202pt;}
.y130{bottom:602.549428pt;}
.ye5{bottom:610.038880pt;}
.y17e{bottom:612.524115pt;}
.y12{bottom:612.798275pt;}
.y18d{bottom:613.759983pt;}
.y33{bottom:615.359546pt;}
.y4a{bottom:616.399974pt;}
.y5a{bottom:618.266653pt;}
.y20{bottom:620.215971pt;}
.y1d2{bottom:626.874348pt;}
.y75{bottom:629.082435pt;}
.y16d{bottom:630.216966pt;}
.yf3{bottom:631.052787pt;}
.y112{bottom:631.999983pt;}
.ybc{bottom:634.404777pt;}
.y17d{bottom:641.524114pt;}
.y1d3{bottom:642.874348pt;}
.y1f{bottom:649.215970pt;}
.y69{bottom:659.081243pt;}
.y171{bottom:665.762161pt;}
.yf2{bottom:668.052785pt;}
.y74{bottom:669.082433pt;}
.y125{bottom:670.399981pt;}
.y11{bottom:670.798273pt;}
.yf4{bottom:672.959981pt;}
.y1e{bottom:678.215969pt;}
.y3f{bottom:683.513642pt;}
.y1dd{bottom:683.881770pt;}
.y150{bottom:685.182237pt;}
.yb1{bottom:694.834774pt;}
.y68{bottom:699.081241pt;}
.yf1{bottom:705.052783pt;}
.y1d{bottom:707.215967pt;}
.y10{bottom:728.798270pt;}
.y8a{bottom:735.679978pt;}
.y1c{bottom:736.215966pt;}
.y32{bottom:738.761550pt;}
.y67{bottom:739.081240pt;}
.y1ba{bottom:743.039978pt;}
.yf0{bottom:750.455652pt;}
.y92{bottom:752.639978pt;}
.y73{bottom:756.712333pt;}
.y64{bottom:758.763504pt;}
.y90{bottom:759.359977pt;}
.y3e{bottom:760.513639pt;}
.yca{bottom:762.035027pt;}
.yd6{bottom:765.810806pt;}
.ye4{bottom:769.768074pt;}
.y47{bottom:772.440290pt;}
.y12c{bottom:773.367350pt;}
.y8{bottom:774.642390pt;}
.y31{bottom:778.761548pt;}
.y1b5{bottom:779.364009pt;}
.y1ca{bottom:785.599976pt;}
.yf{bottom:786.798268pt;}
.y179{bottom:792.097721pt;}
.y16a{bottom:795.597720pt;}
.y72{bottom:796.712332pt;}
.y1b{bottom:797.515141pt;}
.y63{bottom:798.763503pt;}
.yd5{bottom:800.810805pt;}
.yb0{bottom:802.755730pt;}
.y1dc{bottom:803.500415pt;}
.ye3{bottom:804.768072pt;}
.yeb{bottom:815.635464pt;}
.y30{bottom:818.761547pt;}
.yc9{bottom:819.035025pt;}
.y1b2{bottom:820.159975pt;}
.y178{bottom:821.097719pt;}
.y12b{bottom:823.367348pt;}
.y108{bottom:825.340394pt;}
.y189{bottom:828.774790pt;}
.y80{bottom:834.265277pt;}
.yd4{bottom:835.810804pt;}
.y71{bottom:836.712330pt;}
.y18a{bottom:838.719974pt;}
.y169{bottom:839.597719pt;}
.ye2{bottom:839.768071pt;}
.yaf{bottom:842.755728pt;}
.ye{bottom:844.798266pt;}
.y177{bottom:850.097718pt;}
.yea{bottom:852.635462pt;}
.yee{bottom:857.599973pt;}
.y153{bottom:866.824105pt;}
.yd3{bottom:870.810802pt;}
.y12a{bottom:873.367346pt;}
.y7f{bottom:874.265276pt;}
.ye1{bottom:874.768069pt;}
.y107{bottom:875.340392pt;}
.yae{bottom:882.755726pt;}
.ye9{bottom:889.635461pt;}
.yac{bottom:896.133566pt;}
.y188{bottom:902.774787pt;}
.ybb{bottom:910.129415pt;}
.ye8{bottom:935.038329pt;}
.yd2{bottom:943.811113pt;}
.y176{bottom:952.085922pt;}
.y184{bottom:956.585922pt;}
.y187{bottom:976.774784pt;}
.y175{bottom:981.085921pt;}
.y1b9{bottom:985.350603pt;}
.y2f{bottom:992.129412pt;}
.yd{bottom:992.633318pt;}
.yd1{bottom:995.333337pt;}
.y183{bottom:1000.585920pt;}
.y174{bottom:1010.085920pt;}
.h60{height:2.560000pt;}
.h62{height:2.880000pt;}
.h61{height:3.228002pt;}
.h11{height:11.840000pt;}
.h44{height:25.279999pt;}
.h23{height:30.399999pt;}
.h31{height:32.426765pt;}
.h12{height:33.450768pt;}
.h1c{height:35.200107pt;}
.h20{height:35.204067pt;}
.h27{height:36.159998pt;}
.h2a{height:36.479998pt;}
.h66{height:36.799998pt;}
.h68{height:38.079998pt;}
.h69{height:38.399998pt;}
.h47{height:52.159998pt;}
.h46{height:52.479998pt;}
.h42{height:53.119998pt;}
.h4e{height:56.671998pt;}
.h1b{height:57.188998pt;}
.h4f{height:60.820310pt;}
.h63{height:61.599997pt;}
.h52{height:64.716089pt;}
.he{height:65.696397pt;}
.h36{height:65.999997pt;}
.h22{height:69.023877pt;}
.h6b{height:69.767234pt;}
.h15{height:70.388997pt;}
.h50{height:73.021638pt;}
.h1a{height:73.327757pt;}
.h43{height:74.636782pt;}
.h26{height:75.183368pt;}
.h24{height:75.194572pt;}
.h19{height:77.631637pt;}
.h38{height:80.962554pt;}
.h45{height:81.279997pt;}
.h17{height:86.271756pt;}
.h41{height:87.086702pt;}
.hd{height:90.336396pt;}
.h9{height:91.978876pt;}
.h16{height:93.999996pt;}
.h4d{height:94.463596pt;}
.ha{height:94.911876pt;}
.h40{height:95.359996pt;}
.h3a{height:96.639996pt;}
.hb{height:96.788996pt;}
.h3e{height:96.959996pt;}
.h3c{height:97.235990pt;}
.h5d{height:97.249596pt;}
.h5c{height:99.680836pt;}
.h55{height:102.143990pt;}
.h37{height:105.251389pt;}
.h28{height:105.351833pt;}
.h5b{height:105.566996pt;}
.h2b{height:107.062553pt;}
.h29{height:107.205113pt;}
.h4{height:107.251199pt;}
.h64{height:107.589242pt;}
.h53{height:108.000555pt;}
.h3f{height:112.864642pt;}
.h21{height:114.377995pt;}
.h4b{height:116.175722pt;}
.h6a{height:116.320281pt;}
.h6c{height:117.066881pt;}
.h67{height:120.200099pt;}
.h65{height:120.694176pt;}
.h35{height:121.237755pt;}
.h2f{height:121.599995pt;}
.hf{height:124.639995pt;}
.h10{height:125.439995pt;}
.h14{height:127.577995pt;}
.h1d{height:129.119995pt;}
.h1f{height:129.439995pt;}
.h6d{height:131.967001pt;}
.h1e{height:131.999995pt;}
.h51{height:140.479994pt;}
.h59{height:142.154880pt;}
.h2e{height:159.359993pt;}
.h7{height:170.239993pt;}
.h5f{height:172.149239pt;}
.h32{height:174.495993pt;}
.h6{height:175.615993pt;}
.h30{height:178.326393pt;}
.h5{height:178.640279pt;}
.h4c{height:179.253753pt;}
.h33{height:180.767992pt;}
.h8{height:182.784552pt;}
.hc{height:183.957752pt;}
.h13{height:193.577992pt;}
.h57{height:199.500426pt;}
.h2c{height:202.239992pt;}
.h54{height:202.279072pt;}
.h2d{height:203.199992pt;}
.h4a{height:205.454877pt;}
.h49{height:205.472717pt;}
.h58{height:206.017905pt;}
.h5a{height:207.712564pt;}
.h56{height:208.574699pt;}
.h3{height:209.045764pt;}
.h6e{height:213.198870pt;}
.h34{height:215.711764pt;}
.h3d{height:220.307037pt;}
.h3b{height:220.326167pt;}
.h48{height:239.039990pt;}
.h39{height:252.026642pt;}
.h5e{height:271.765761pt;}
.h18{height:655.999973pt;}
.h25{height:803.199967pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w22{width:5.440000pt;}
.w23{width:7.040000pt;}
.w21{width:7.680000pt;}
.w1f{width:8.320000pt;}
.w20{width:11.200000pt;}
.w28{width:20.159999pt;}
.w29{width:23.039999pt;}
.w10{width:26.559999pt;}
.w6{width:31.679999pt;}
.w11{width:39.999998pt;}
.w13{width:45.439998pt;}
.w12{width:47.359998pt;}
.w18{width:117.439995pt;}
.w16{width:119.359995pt;}
.w19{width:122.239995pt;}
.w17{width:122.559995pt;}
.w15{width:124.159995pt;}
.wf{width:127.359995pt;}
.w1d{width:135.359994pt;}
.w1c{width:146.239994pt;}
.w1a{width:154.239994pt;}
.w1b{width:182.399992pt;}
.w14{width:189.439992pt;}
.w8{width:229.439990pt;}
.wb{width:234.239990pt;}
.w9{width:271.359989pt;}
.w4{width:315.839987pt;}
.wa{width:336.319986pt;}
.w5{width:354.879985pt;}
.w2{width:411.839983pt;}
.w3{width:423.999982pt;}
.we{width:451.199981pt;}
.wc{width:463.359981pt;}
.wd{width:498.239979pt;}
.w25{width:633.279974pt;}
.w26{width:648.319973pt;}
.w24{width:671.679972pt;}
.w27{width:695.359971pt;}
.w1e{width:1612.159933pt;}
.w7{width:1827.199924pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.xb2{left:1.000387pt;}
.xbf{left:2.953745pt;}
.xb7{left:4.368431pt;}
.xb4{left:17.338080pt;}
.x52{left:23.390614pt;}
.x50{left:24.718739pt;}
.xc9{left:25.671874pt;}
.x48{left:27.265624pt;}
.xb9{left:28.240538pt;}
.x47{left:29.374999pt;}
.xcb{left:30.769814pt;}
.x51{left:32.468739pt;}
.x55{left:34.703114pt;}
.x90{left:36.391239pt;}
.xf0{left:38.007099pt;}
.x59{left:40.859373pt;}
.x49{left:45.218748pt;}
.x5c{left:46.531248pt;}
.x56{left:48.312488pt;}
.x4d{left:52.062498pt;}
.xca{left:54.769813pt;}
.x4b{left:58.124998pt;}
.x54{left:59.031238pt;}
.x4f{left:60.124988pt;}
.x149{left:62.214109pt;}
.xaa{left:67.370573pt;}
.x4c{left:69.953122pt;}
.x58{left:72.937497pt;}
.x5a{left:75.593747pt;}
.x5e{left:87.171871pt;}
.x53{left:92.937487pt;}
.x5d{left:97.093746pt;}
.x92{left:98.188111pt;}
.x44{left:99.343746pt;}
.xe{left:100.448296pt;}
.xd{left:105.229546pt;}
.x3f{left:107.999996pt;}
.xb0{left:109.651442pt;}
.xc{left:112.338921pt;}
.x57{left:113.562486pt;}
.x70{left:116.421959pt;}
.x6d{left:118.010826pt;}
.x4a{left:120.187495pt;}
.xa5{left:122.344477pt;}
.x6f{left:123.593834pt;}
.x61{left:124.858833pt;}
.x42{left:128.093735pt;}
.x9e{left:130.117679pt;}
.xf{left:131.260795pt;}
.x71{left:133.125083pt;}
.xa4{left:137.797602pt;}
.x5f{left:138.968744pt;}
.x6e{left:140.682700pt;}
.x46{left:141.890619pt;}
.x140{left:143.194007pt;}
.x40{left:144.109369pt;}
.xef{left:145.599994pt;}
.x5b{left:150.265619pt;}
.x144{left:154.558781pt;}
.x1{left:155.644192pt;}
.xa3{left:157.766351pt;}
.x4e{left:159.093743pt;}
.x118{left:160.806801pt;}
.x123{left:161.924962pt;}
.x8f{left:162.879993pt;}
.xa0{left:169.008302pt;}
.x91{left:175.047483pt;}
.x8d{left:176.797336pt;}
.xfe{left:182.489056pt;}
.x122{left:183.628087pt;}
.x8b{left:187.839992pt;}
.x6b{left:191.854533pt;}
.xfd{left:194.989055pt;}
.x14c{left:197.416478pt;}
.xb{left:202.732141pt;}
.xa1{left:204.680175pt;}
.x72{left:207.843830pt;}
.x9c{left:214.057441pt;}
.xfc{left:217.864055pt;}
.xfb{left:220.520304pt;}
.xff{left:229.176554pt;}
.x13c{left:233.919990pt;}
.x7{left:238.732880pt;}
.x8c{left:247.422333pt;}
.xc1{left:258.902918pt;}
.x9f{left:259.992673pt;}
.x137{left:272.090009pt;}
.x9b{left:281.573064pt;}
.x2{left:290.722312pt;}
.xa8{left:298.777332pt;}
.x66{left:312.319987pt;}
.xf1{left:314.725474pt;}
.x68{left:319.066940pt;}
.x8a{left:324.159986pt;}
.xcd{left:333.946940pt;}
.x9a{left:335.441392pt;}
.x93{left:336.890610pt;}
.xfa{left:341.225339pt;}
.xce{left:342.259440pt;}
.xa2{left:343.867670pt;}
.xd0{left:355.321940pt;}
.xcf{left:377.634439pt;}
.xaf{left:382.859241pt;}
.xd2{left:388.600999pt;}
.x97{left:397.423811pt;}
.xc0{left:400.718421pt;}
.xd1{left:401.757249pt;}
.xcc{left:405.603187pt;}
.x1d{left:413.485529pt;}
.x1e{left:415.282404pt;}
.x124{left:419.429553pt;}
.x88{left:420.799982pt;}
.x3c{left:433.308460pt;}
.x125{left:436.492052pt;}
.x126{left:438.460802pt;}
.x20{left:442.032403pt;}
.x11a{left:443.963693pt;}
.x1f{left:447.329278pt;}
.x145{left:452.927988pt;}
.x119{left:458.198067pt;}
.x6c{left:460.354522pt;}
.x73{left:463.404473pt;}
.x13{left:470.293807pt;}
.x1c{left:476.876151pt;}
.x75{left:480.395682pt;}
.x77{left:482.130057pt;}
.x74{left:487.560722pt;}
.x11{left:488.668806pt;}
.xa6{left:492.391337pt;}
.x10{left:493.981306pt;}
.x10d{left:495.165801pt;}
.x10f{left:498.603301pt;}
.x10e{left:502.290801pt;}
.x12{left:503.590681pt;}
.x76{left:505.958181pt;}
.x112{left:510.982284pt;}
.x62{left:514.087871pt;}
.x21{left:517.979274pt;}
.x99{left:526.234353pt;}
.x41{left:533.890291pt;}
.x110{left:537.040799pt;}
.xee{left:545.411972pt;}
.x64{left:546.955044pt;}
.x2f{left:553.292836pt;}
.xb3{left:558.719977pt;}
.x13d{left:565.439976pt;}
.x15{left:577.731068pt;}
.x14{left:582.043802pt;}
.x111{left:586.962672pt;}
.x113{left:590.310402pt;}
.x9d{left:610.526175pt;}
.xf7{left:624.184964pt;}
.xb8{left:632.639974pt;}
.x3d{left:647.640823pt;}
.x8{left:649.382784pt;}
.x138{left:657.605618pt;}
.x6a{left:672.658166pt;}
.x95{left:676.267542pt;}
.x14d{left:678.767926pt;}
.xd8{left:679.875860pt;}
.xbe{left:687.999971pt;}
.x3{left:694.888017pt;}
.xd6{left:696.907109pt;}
.x5{left:699.450517pt;}
.xd7{left:701.391484pt;}
.x127{left:705.295219pt;}
.x94{left:710.495142pt;}
.x11c{left:712.749579pt;}
.xd4{left:715.646129pt;}
.x4{left:724.450516pt;}
.xd3{left:726.396129pt;}
.xd5{left:730.157108pt;}
.x128{left:736.529592pt;}
.x60{left:741.529267pt;}
.x67{left:744.566378pt;}
.x9{left:751.930672pt;}
.x139{left:756.641204pt;}
.x23{left:761.828481pt;}
.x13b{left:763.172454pt;}
.x24{left:768.765981pt;}
.x22{left:771.015981pt;}
.x11b{left:774.233952pt;}
.x18{left:783.034183pt;}
.x6{left:789.028644pt;}
.x17{left:794.956058pt;}
.xa{left:803.935368pt;}
.xf2{left:805.737321pt;}
.x25{left:810.422229pt;}
.x7a{left:811.808955pt;}
.x19{left:819.643557pt;}
.x101{left:825.767928pt;}
.x103{left:828.361677pt;}
.x102{left:830.017927pt;}
.x132{left:831.063165pt;}
.x1a{left:834.159181pt;}
.x7b{left:840.465204pt;}
.x79{left:842.270214pt;}
.x13a{left:843.516201pt;}
.x26{left:850.344103pt;}
.x78{left:851.863964pt;}
.xc4{left:853.522688pt;}
.xb1{left:859.199964pt;}
.x141{left:862.313948pt;}
.x100{left:863.533551pt;}
.xc3{left:864.647688pt;}
.xba{left:870.079964pt;}
.x27{left:881.702697pt;}
.x16{left:884.065429pt;}
.x146{left:885.531616pt;}
.x104{left:890.299175pt;}
.xae{left:914.559962pt;}
.xad{left:917.262625pt;}
.xac{left:918.399962pt;}
.xc2{left:923.459487pt;}
.xab{left:924.479961pt;}
.x14b{left:925.439961pt;}
.x14a{left:926.719961pt;}
.xf3{left:937.823949pt;}
.x1b{left:944.573323pt;}
.xb6{left:945.919961pt;}
.x13e{left:956.159960pt;}
.x11e{left:957.843946pt;}
.x43{left:961.999960pt;}
.x130{left:975.384087pt;}
.x12b{left:980.250344pt;}
.x12a{left:986.625344pt;}
.xdc{left:989.537389pt;}
.x129{left:999.969093pt;}
.xdf{left:1004.381138pt;}
.xdd{left:1009.224888pt;}
.x12c{left:1013.734718pt;}
.xda{left:1019.106282pt;}
.x11d{left:1022.640818pt;}
.xde{left:1040.803012pt;}
.x131{left:1050.002932pt;}
.xd9{left:1050.903155pt;}
.xdb{left:1054.662386pt;}
.x65{left:1066.539892pt;}
.x148{left:1080.959955pt;}
.x3e{left:1105.906450pt;}
.xa9{left:1107.116050pt;}
.xbd{left:1113.919954pt;}
.xf9{left:1118.354326pt;}
.xf8{left:1131.260576pt;}
.x106{left:1139.192230pt;}
.x7d{left:1141.531202pt;}
.x3a{left:1145.616665pt;}
.x7f{left:1147.282465pt;}
.x7e{left:1148.954340pt;}
.x38{left:1154.194790pt;}
.xb5{left:1157.119952pt;}
.x37{left:1170.163539pt;}
.x105{left:1177.410978pt;}
.x7c{left:1180.218701pt;}
.x39{left:1182.241664pt;}
.x80{left:1185.766839pt;}
.x136{left:1207.025102pt;}
.x32{left:1210.823077pt;}
.x3b{left:1220.163537pt;}
.x33{left:1225.791826pt;}
.xa7{left:1231.511032pt;}
.x133{left:1239.364940pt;}
.x36{left:1246.788536pt;}
.x35{left:1251.978230pt;}
.x12d{left:1254.505642pt;}
.x96{left:1261.759947pt;}
.x12f{left:1264.318141pt;}
.x31{left:1266.791824pt;}
.x34{left:1277.916824pt;}
.x89{left:1279.999947pt;}
.x12e{left:1289.443140pt;}
.xbc{left:1302.399946pt;}
.x8e{left:1305.919946pt;}
.xbb{left:1310.079945pt;}
.x30{left:1315.543531pt;}
.x11f{left:1320.180499pt;}
.x63{left:1325.439945pt;}
.xe6{left:1329.045957pt;}
.x69{left:1331.839945pt;}
.x134{left:1336.833864pt;}
.xe3{left:1344.639706pt;}
.x13f{left:1356.159943pt;}
.xc6{left:1369.346669pt;}
.xe5{left:1370.561580pt;}
.xc5{left:1375.971669pt;}
.xe2{left:1379.327205pt;}
.xe0{left:1382.705088pt;}
.xe4{left:1388.045954pt;}
.x45{left:1390.109638pt;}
.xc7{left:1398.784168pt;}
.x135{left:1401.502438pt;}
.xe1{left:1406.751962pt;}
.x108{left:1442.051343pt;}
.x10c{left:1448.098218pt;}
.x98{left:1449.919940pt;}
.xc8{left:1451.278693pt;}
.x109{left:1454.832592pt;}
.xf5{left:1463.241819pt;}
.x10b{left:1476.520091pt;}
.x120{left:1490.992116pt;}
.x10a{left:1497.754466pt;}
.x107{left:1503.035715pt;}
.x82{left:1504.111178pt;}
.x85{left:1507.057602pt;}
.xf4{left:1510.773067pt;}
.x2b{left:1511.725871pt;}
.x2a{left:1515.428996pt;}
.x2c{left:1523.038371pt;}
.x83{left:1524.291976pt;}
.x84{left:1531.385726pt;}
.x117{left:1542.914921pt;}
.x121{left:1548.945238pt;}
.x114{left:1552.086795pt;}
.x81{left:1555.001801pt;}
.x116{left:1562.493045pt;}
.x147{left:1563.539944pt;}
.x28{left:1566.600869pt;}
.xf6{left:1568.442762pt;}
.x86{left:1569.354475pt;}
.x115{left:1585.664919pt;}
.x142{left:1591.524318pt;}
.x29{left:1594.366493pt;}
.x2d{left:1609.085242pt;}
.x2e{left:1626.146659pt;}
.xed{left:1653.440247pt;}
.xeb{left:1670.471496pt;}
.xe9{left:1673.143371pt;}
.xec{left:1674.955871pt;}
.x143{left:1678.399930pt;}
.xea{left:1692.455870pt;}
.xe7{left:1709.411975pt;}
.xe8{left:1739.911974pt;}
.x87{left:1783.679926pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  