
    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_f0858b6e7d18629425956a0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_c7c5015e21a8299a1c6c5b2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.881836;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_78a187f03558b5107dd48230.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.774414;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_3e76805c7650a2611a2cd26a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.917000;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_29a3c0347e5ea7d729383ddc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_5b11923d4e05df3e5321bc71.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899902;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_fc92b0d1bd26e5c4999ddfe8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_d545e789579800c9fac6f48b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926000;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_a6c273a75644580812f614bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_8d1bba6f77d14703fb7fb738.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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_490eda39a6beeb31623522c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.723000;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_569d19d23449a6588d5686b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.723000;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_6ee48afc2464660f46967802.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_d42e25fa1a251ff9f1dff902.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;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_6a57eb0b14be7e0754d0c233.woff2')format("woff");}.fff{font-family:fff;line-height:0.679000;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_b11995da8d8c5a7af72b55dd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.674000;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_453824b9593468731c63e4ab.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.899000;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_eca2e1ed287a4c618d0d1ba8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.694000;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_1044807ba9b25700c94c860f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.723000;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_9623d4e3b5e4e916604d0c72.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.723000;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_d65a19d927d088e4da5dae14.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.453000;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_152c8f03528cb56ebe752121.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.694000;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_273a638cb09c6cf4c3439e5d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.664000;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_1ca7cafc516f9184b9a15f77.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.846000;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_e56aa87f0095a6357d5b5e94.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958000;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_fc076450d62a90f59af61046.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.892000;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_4046d88b44fc0ace90653650.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.838379;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_efea18d8cbd51e0ddab3173c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.893000;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_d863b8880842f79e418b0ecc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.775000;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_96c78658c821a577c6632ced.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.951172;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_4eea8f01f9bbf347ceaa3e50.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.955000;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_07c3eb9563b601c3439f783a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.964000;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_e237a82091351632c245a194.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.784000;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_1ef261b57ea1be458633c87e.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.952000;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_2edf7b6c11845b73cf9be376.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.720000;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_45b3c404109c88676edce08a.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.969000;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_b588e480408335971910b412.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.549000;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_17e9c5897c49c3b60a046156.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.541000;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_8c6289f3ac1134b8ad6c4837.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.905762;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_8c0e3e70e9497e3fd4dbb694.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.686035;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_5dfb04916a74fd3368f91973.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.954000;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_d7e0627f1f716c0b8b837084.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.675781;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_728eaa1c6b627fcbf75f3842.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.026000;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_848c9c01c264ba10fa6f7283.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.979004;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_b1a33128b5a58e95ea9ddf0b.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v5{vertical-align:-100.709400px;}
.v12{vertical-align:-70.895129px;}
.va{vertical-align:-66.301007px;}
.v22{vertical-align:-64.611000px;}
.v1a{vertical-align:-57.200004px;}
.v1b{vertical-align:-50.400000px;}
.v1d{vertical-align:-48.620004px;}
.v20{vertical-align:-43.037112px;}
.v1f{vertical-align:-38.374026px;}
.v7{vertical-align:-27.000054px;}
.v23{vertical-align:-25.200054px;}
.v6{vertical-align:-24.000048px;}
.v21{vertical-align:-22.800048px;}
.v15{vertical-align:-17.600034px;}
.v1c{vertical-align:-14.960028px;}
.v4{vertical-align:-6.480012px;}
.v3{vertical-align:-4.209120px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:14.755200px;}
.v2{vertical-align:19.701480px;}
.v17{vertical-align:24.000048px;}
.v24{vertical-align:42.000000px;}
.v1{vertical-align:47.190000px;}
.v19{vertical-align:50.400000px;}
.v18{vertical-align:56.000004px;}
.v16{vertical-align:57.200004px;}
.v1e{vertical-align:58.800000px;}
.vb{vertical-align:66.301007px;}
.v13{vertical-align:70.895129px;}
.v10{vertical-align:109.303467px;}
.v8{vertical-align:112.812600px;}
.ve{vertical-align:152.439062px;}
.v14{vertical-align:242.486016px;}
.v11{vertical-align:269.774981px;}
.vc{vertical-align:291.786560px;}
.vf{vertical-align:312.910575px;}
.vd{vertical-align:425.231759px;}
.ls22{letter-spacing:-10.302000px;}
.ls17{letter-spacing:-10.200000px;}
.ls4{letter-spacing:-10.149000px;}
.ls24{letter-spacing:-10.098000px;}
.ls28{letter-spacing:-9.600000px;}
.ls3{letter-spacing:-7.344000px;}
.ls2{letter-spacing:-7.200000px;}
.ls6{letter-spacing:-5.670000px;}
.ls25{letter-spacing:-5.184000px;}
.ls27{letter-spacing:-5.100000px;}
.ls35{letter-spacing:-3.780000px;}
.ls20{letter-spacing:-3.300000px;}
.ls2b{letter-spacing:-2.880000px;}
.ls21{letter-spacing:-2.700000px;}
.ls16{letter-spacing:-2.640000px;}
.ls32{letter-spacing:-1.800000px;}
.ls31{letter-spacing:-1.680000px;}
.ls26{letter-spacing:-1.428000px;}
.ls29{letter-spacing:-0.900000px;}
.ls1{letter-spacing:-0.660000px;}
.ls34{letter-spacing:-0.102144px;}
.ls2c{letter-spacing:-0.066000px;}
.ls23{letter-spacing:-0.044400px;}
.ls0{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000011px;}
.ls2a{letter-spacing:0.000045px;}
.ls33{letter-spacing:0.000189px;}
.ls5{letter-spacing:0.015600px;}
.ls30{letter-spacing:0.024000px;}
.ls2e{letter-spacing:0.036000px;}
.ls2d{letter-spacing:0.066000px;}
.lsa{letter-spacing:0.146084px;}
.lsb{letter-spacing:0.173421px;}
.ls7{letter-spacing:0.193285px;}
.ls1a{letter-spacing:0.206678px;}
.ls15{letter-spacing:0.246121px;}
.lsf{letter-spacing:0.377712px;}
.ls10{letter-spacing:16.050719px;}
.ls8{letter-spacing:20.857143px;}
.ls18{letter-spacing:21.787714px;}
.lse{letter-spacing:22.229379px;}
.ls11{letter-spacing:22.273757px;}
.ls1b{letter-spacing:22.302374px;}
.ls1e{letter-spacing:23.297426px;}
.ls13{letter-spacing:25.588514px;}
.ls19{letter-spacing:33.548128px;}
.ls1f{letter-spacing:35.872741px;}
.ls1d{letter-spacing:51.773004px;}
.lsd{letter-spacing:61.465924px;}
.ls12{letter-spacing:123.172147px;}
.ls1c{letter-spacing:131.685557px;}
.ls14{letter-spacing:169.612816px;}
.lsc{letter-spacing:253.643582px;}
.ls9{letter-spacing:299.022858px;}
.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;}
}
.ws3{word-spacing:-271.296000px;}
.ws5{word-spacing:-108.000000px;}
.ws2{word-spacing:-92.880000px;}
.ws12{word-spacing:-68.553600px;}
.wsb{word-spacing:-65.340000px;}
.ws8{word-spacing:-63.120000px;}
.ws2b{word-spacing:-61.542000px;}
.ws16{word-spacing:-59.280000px;}
.ws2f{word-spacing:-53.352000px;}
.ws1a{word-spacing:-50.880000px;}
.wsa{word-spacing:-47.340000px;}
.ws22{word-spacing:-46.110000px;}
.ws27{word-spacing:-44.184000px;}
.ws2d{word-spacing:-42.930000px;}
.ws9{word-spacing:-42.080005px;}
.ws24{word-spacing:-41.340000px;}
.ws23{word-spacing:-41.280000px;}
.ws2c{word-spacing:-41.028000px;}
.ws1b{word-spacing:-40.188000px;}
.ws15{word-spacing:-39.520005px;}
.ws1d{word-spacing:-38.760000px;}
.wsf{word-spacing:-37.872000px;}
.ws0{word-spacing:-36.960000px;}
.ws1e{word-spacing:-35.088000px;}
.ws29{word-spacing:-33.384000px;}
.ws21{word-spacing:-33.096000px;}
.ws14{word-spacing:-32.688000px;}
.ws31{word-spacing:-31.560000px;}
.ws1{word-spacing:-28.380000px;}
.ws1f{word-spacing:-26.792004px;}
.ws10{word-spacing:-23.628356px;}
.wsd{word-spacing:-22.097199px;}
.ws25{word-spacing:-0.510000px;}
.ws26{word-spacing:-0.330000px;}
.ws2a{word-spacing:-0.264000px;}
.ws13{word-spacing:-0.240000px;}
.ws30{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.204000px;}
.ws19{word-spacing:-0.192000px;}
.ws7{word-spacing:-0.180000px;}
.ws20{word-spacing:-0.168000px;}
.ws2e{word-spacing:-0.162000px;}
.ws28{word-spacing:-0.116000px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:217.377545px;}
.ws11{word-spacing:232.440045px;}
.ws18{word-spacing:1163.218200px;}
.ws6{word-spacing:1284.402600px;}
.ws17{word-spacing:1945.415400px;}
.wsc{word-spacing:3092.640600px;}
._18{margin-left:-4318.296600px;}
._7{margin-left:-39.600000px;}
._6{margin-left:-25.920000px;}
._17{margin-left:-23.370000px;}
._13{margin-left:-22.322050px;}
._1c{margin-left:-19.245000px;}
._f{margin-left:-13.680000px;}
._8{margin-left:-12.240000px;}
._14{margin-left:-11.160000px;}
._10{margin-left:-9.840000px;}
._5{margin-left:-8.664000px;}
._3{margin-left:-6.840000px;}
._1{margin-left:-4.800000px;}
._0{margin-left:-2.880000px;}
._2{margin-left:-1.680000px;}
._c{width:1.199990px;}
._9{width:2.424000px;}
._11{width:3.574200px;}
._d{width:5.226010px;}
._16{width:6.936000px;}
._15{width:10.691981px;}
._12{width:126.090000px;}
._b{width:1020.992390px;}
._1a{width:1135.860000px;}
._1b{width:2585.977200px;}
._4{width:2782.755840px;}
._a{width:3441.115320px;}
._e{width:4384.683600px;}
._19{width:4523.615400px;}
.fca{color:transparent;}
.fc8{color:rgb(0,150,255);}
.fc5{color:rgb(71,159,247);}
.fc2{color:rgb(0,162,255);}
.fc7{color:rgb(213,213,213);}
.fc6{color:rgb(146,146,146);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(186,137,138);}
.fc3{color:rgb(238,34,12);}
.fc0{color:rgb(83,88,95);}
.fs2{font-size:102.000000px;}
.fsd{font-size:108.000000px;}
.fs21{font-size:115.999980px;}
.fs1a{font-size:120.000000px;}
.fs4{font-size:132.000000px;}
.fs1e{font-size:136.000020px;}
.fs15{font-size:144.000000px;}
.fsa{font-size:150.000000px;}
.fs22{font-size:151.999980px;}
.fsc{font-size:156.000000px;}
.fsf{font-size:160.000020px;}
.fsb{font-size:162.000000px;}
.fs1{font-size:168.000000px;}
.fs1f{font-size:174.000000px;}
.fse{font-size:180.000000px;}
.fs1b{font-size:186.000000px;}
.fs0{font-size:192.000000px;}
.fs3{font-size:198.000000px;}
.fs1d{font-size:204.000000px;}
.fs1c{font-size:216.000000px;}
.fs14{font-size:221.061048px;}
.fs18{font-size:222.000000px;}
.fs9{font-size:228.000000px;}
.fs23{font-size:234.000000px;}
.fs5{font-size:240.000000px;}
.fs20{font-size:252.000000px;}
.fs11{font-size:264.000000px;}
.fs10{font-size:270.000000px;}
.fs19{font-size:276.000000px;}
.fs13{font-size:309.484580px;}
.fs8{font-size:330.000000px;}
.fs17{font-size:330.929349px;}
.fs12{font-size:442.122096px;}
.fs16{font-size:472.757569px;}
.fs7{font-size:510.000000px;}
.fs24{font-size:510.720000px;}
.fs6{font-size:720.000000px;}
.ya1{bottom:-40.134465px;}
.y9e{bottom:-40.134450px;}
.y0{bottom:0.000000px;}
.y23{bottom:3.331256px;}
.y25{bottom:10.997587px;}
.y5b{bottom:12.000000px;}
.y24{bottom:14.115155px;}
.yee{bottom:16.567350px;}
.y82{bottom:18.365550px;}
.y87{bottom:19.865400px;}
.y89{bottom:19.865520px;}
.y92{bottom:19.865535px;}
.y85{bottom:19.865550px;}
.yd2{bottom:19.959300px;}
.y3d{bottom:21.265183px;}
.y32{bottom:21.265483px;}
.y2a{bottom:21.600000px;}
.y9c{bottom:21.830550px;}
.ya3{bottom:22.584045px;}
.y77{bottom:22.798275px;}
.y9d{bottom:22.865550px;}
.yd7{bottom:23.132550px;}
.y98{bottom:23.520150px;}
.y41{bottom:23.830395px;}
.ye4{bottom:24.242895px;}
.y6c{bottom:24.655395px;}
.y5f{bottom:25.801155px;}
.y80{bottom:27.000060px;}
.y7f{bottom:27.835530px;}
.yc1{bottom:28.500030px;}
.y8c{bottom:28.560000px;}
.y42{bottom:28.630395px;}
.yc9{bottom:31.750845px;}
.y28{bottom:32.650845px;}
.y7e{bottom:33.600000px;}
.y4d{bottom:33.600150px;}
.y47{bottom:34.084500px;}
.yd4{bottom:35.100000px;}
.y2e{bottom:36.000075px;}
.y39{bottom:36.000150px;}
.yb9{bottom:38.133078px;}
.y58{bottom:39.307620px;}
.ye{bottom:39.928155px;}
.y16{bottom:40.500090px;}
.y44{bottom:40.500150px;}
.y95{bottom:40.715001px;}
.y93{bottom:40.781580px;}
.y54{bottom:41.400150px;}
.y21{bottom:41.441021px;}
.y8a{bottom:43.020330px;}
.y7c{bottom:45.000000px;}
.yae{bottom:46.656975px;}
.ycd{bottom:47.552700px;}
.y70{bottom:47.900001px;}
.y72{bottom:47.900151px;}
.y34{bottom:49.500150px;}
.y10{bottom:50.256075px;}
.yad{bottom:50.400000px;}
.yab{bottom:54.103410px;}
.y5{bottom:54.422775px;}
.ya2{bottom:54.590595px;}
.y59{bottom:58.519245px;}
.yf0{bottom:63.067350px;}
.y7a{bottom:64.650000px;}
.y2f{bottom:66.116775px;}
.yd6{bottom:68.132550px;}
.yd0{bottom:70.736250px;}
.y57{bottom:75.307620px;}
.y22{bottom:75.712074px;}
.y2b{bottom:76.599975px;}
.y97{bottom:79.020150px;}
.y1e{bottom:79.283055px;}
.yd9{bottom:86.400150px;}
.yd{bottom:87.480435px;}
.ybd{bottom:87.622425px;}
.y5e{bottom:92.317155px;}
.yb7{bottom:101.585748px;}
.y2d{bottom:102.116790px;}
.y3e{bottom:107.360730px;}
.y46{bottom:107.584500px;}
.y30{bottom:108.000075px;}
.y3b{bottom:108.000150px;}
.y56{bottom:111.307620px;}
.yaa{bottom:118.603410px;}
.ycc{bottom:121.052700px;}
.y91{bottom:123.107085px;}
.y15{bottom:123.531060px;}
.y88{bottom:125.345835px;}
.ydb{bottom:136.800150px;}
.ya0{bottom:136.916100px;}
.y35{bottom:143.344155px;}
.y75{bottom:145.854060px;}
.y1d{bottom:147.594300px;}
.y1f{bottom:151.283100px;}
.y37{bottom:153.049545px;}
.yc{bottom:169.248150px;}
.y27{bottom:172.249800px;}
.y53{bottom:174.228900px;}
.ybc{bottom:182.872500px;}
.ya9{bottom:183.103350px;}
.ycb{bottom:194.552700px;}
.y90{bottom:205.432650px;}
.y86{bottom:207.671400px;}
.yd5{bottom:218.063100px;}
.y9f{bottom:219.241650px;}
.y5c{bottom:225.941850px;}
.yac{bottom:228.628650px;}
.y26{bottom:244.249800px;}
.y36{bottom:256.549545px;}
.yd1{bottom:269.604600px;}
.y8f{bottom:287.758050px;}
.y20{bottom:289.112700px;}
.y84{bottom:289.996800px;}
.y9b{bottom:301.567050px;}
.y31{bottom:319.887750px;}
.y74{bottom:324.312450px;}
.yc7{bottom:335.165250px;}
.yca{bottom:335.351250px;}
.y14{bottom:339.885450px;}
.y45{bottom:348.806550px;}
.y96{bottom:351.686100px;}
.y55{bottom:351.749700px;}
.y8e{bottom:370.083600px;}
.y83{bottom:372.322350px;}
.y9a{bottom:383.892600px;}
.y2c{bottom:385.541400px;}
.ycf{bottom:397.530750px;}
.y33{bottom:453.704400px;}
.y8d{bottom:453.909150px;}
.y81{bottom:456.147900px;}
.y99{bottom:467.718150px;}
.y4{bottom:493.473600px;}
.yc6{bottom:498.965250px;}
.y29{bottom:523.748100px;}
.yb6{bottom:542.360400px;}
.y4c{bottom:543.379800px;}
.y94{bottom:544.127400px;}
.y3{bottom:544.848600px;}
.y8b{bottom:547.290600px;}
.y4f{bottom:554.585250px;}
.y1b{bottom:560.960700px;}
.y2{bottom:581.973600px;}
.yd3{bottom:600.565350px;}
.yea{bottom:606.408300px;}
.yeb{bottom:608.751450px;}
.ye6{bottom:622.430700px;}
.y4b{bottom:637.085250px;}
.y1{bottom:638.973600px;}
.y12{bottom:646.299150px;}
.yb5{bottom:649.460400px;}
.yc5{bottom:662.765250px;}
.ya5{bottom:676.406850px;}
.y1a{bottom:677.360700px;}
.ya6{bottom:678.750000px;}
.y69{bottom:679.406850px;}
.y6a{bottom:681.750000px;}
.ya7{bottom:682.406850px;}
.ya8{bottom:684.750000px;}
.ye5{bottom:694.430700px;}
.y4a{bottom:719.585250px;}
.yce{bottom:719.729250px;}
.yb8{bottom:735.714300px;}
.y3a{bottom:749.224500px;}
.yb4{bottom:756.560400px;}
.y3f{bottom:764.734050px;}
.yef{bottom:777.556800px;}
.y38{bottom:785.224500px;}
.yaf{bottom:790.125000px;}
.y64{bottom:801.105750px;}
.y49{bottom:802.085250px;}
.yed{bottom:824.370450px;}
.yc4{bottom:826.565250px;}
.yb3{bottom:863.660400px;}
.yda{bottom:871.596000px;}
.y7d{bottom:874.733100px;}
.ye3{bottom:884.673150px;}
.y63{bottom:897.855750px;}
.y48{bottom:898.180350px;}
.y17{bottom:904.525350px;}
.y8{bottom:916.747050px;}
.yd8{bottom:921.996000px;}
.ybe{bottom:923.045400px;}
.y6f{bottom:950.209800px;}
.y73{bottom:958.929300px;}
.y71{bottom:960.429300px;}
.yc3{bottom:990.365250px;}
.ye2{bottom:991.773150px;}
.y62{bottom:994.605750px;}
.y3c{bottom:1002.995550px;}
.ye8{bottom:1039.038000px;}
.y11{bottom:1043.925750px;}
.yec{bottom:1049.331900px;}
.ya4{bottom:1067.004600px;}
.y68{bottom:1069.950000px;}
.y43{bottom:1074.468600px;}
.y7{bottom:1085.497050px;}
.ye7{bottom:1090.737000px;}
.y61{bottom:1091.355750px;}
.y4e{bottom:1097.661600px;}
.ye1{bottom:1098.873150px;}
.yb2{bottom:1108.413750px;}
.yf{bottom:1115.574000px;}
.yc0{bottom:1130.673600px;}
.y52{bottom:1143.744750px;}
.y79{bottom:1166.815950px;}
.ydf{bottom:1169.047050px;}
.y19{bottom:1173.481050px;}
.ybf{bottom:1175.673600px;}
.yf3{bottom:1182.118200px;}
.y60{bottom:1188.105750px;}
.y7b{bottom:1199.065950px;}
.yb{bottom:1207.809600px;}
.ye9{bottom:1213.177650px;}
.y5d{bottom:1217.417250px;}
.y6b{bottom:1222.457550px;}
.yde{bottom:1241.047050px;}
.y51{bottom:1251.744750px;}
.yf2{bottom:1254.118200px;}
.y6{bottom:1254.247050px;}
.y6e{bottom:1266.785550px;}
.y5a{bottom:1273.735500px;}
.y40{bottom:1282.537050px;}
.y13{bottom:1300.489800px;}
.yb1{bottom:1304.002350px;}
.ybb{bottom:1308.745350px;}
.y1c{bottom:1310.729850px;}
.ye0{bottom:1315.450500px;}
.yc8{bottom:1336.497900px;}
.ya{bottom:1344.170400px;}
.y67{bottom:1347.850500px;}
.y76{bottom:1349.359350px;}
.ydd{bottom:1400.909400px;}
.y18{bottom:1404.003600px;}
.y6d{bottom:1404.178200px;}
.yba{bottom:1427.299950px;}
.yb0{bottom:1430.359800px;}
.y9{bottom:1434.049200px;}
.yc2{bottom:1438.242450px;}
.y50{bottom:1441.378950px;}
.y78{bottom:1441.653600px;}
.yf1{bottom:1447.503600px;}
.y66{bottom:1451.253600px;}
.y65{bottom:1468.162800px;}
.ydc{bottom:1498.409400px;}
.h1a{height:65.100045px;}
.h61{height:65.513670px;}
.h2e{height:66.000000px;}
.h56{height:66.843630px;}
.h3{height:79.152000px;}
.h3d{height:79.325505px;}
.h4b{height:80.344727px;}
.h3e{height:80.825505px;}
.h3c{height:81.000060px;}
.h4c{height:87.524775px;}
.h2d{height:88.417969px;}
.h4d{height:89.589841px;}
.h39{height:96.900060px;}
.h3f{height:99.660075px;}
.h37{height:101.664000px;}
.h4f{height:103.051758px;}
.h9{height:104.150391px;}
.h58{height:105.600075px;}
.h41{height:106.011996px;}
.h1c{height:108.000075px;}
.h57{height:109.650000px;}
.hb{height:109.992188px;}
.h63{height:112.013670px;}
.h1b{height:116.640000px;}
.h5a{height:117.595200px;}
.h28{height:119.100075px;}
.h32{height:121.056000px;}
.h1e{height:121.928445px;}
.h46{height:122.400075px;}
.hf{height:123.000090px;}
.h45{height:123.662109px;}
.h2a{height:123.900090px;}
.h3a{height:124.560000px;}
.h5e{height:125.712000px;}
.h43{height:127.344000px;}
.h35{height:129.039996px;}
.h38{height:129.150060px;}
.h2{height:130.368000px;}
.ha{height:131.220000px;}
.hd{height:131.580000px;}
.h44{height:135.024000px;}
.h51{height:136.080000px;}
.h42{height:138.720060px;}
.h47{height:139.680000px;}
.h4e{height:143.964844px;}
.hc{height:145.800000px;}
.h1{height:148.992000px;}
.h20{height:150.000150px;}
.h16{height:150.100452px;}
.h2f{height:150.660000px;}
.h60{height:153.648000px;}
.h40{height:154.632000px;}
.h5b{height:158.400000px;}
.h62{height:159.960938px;}
.h5f{height:167.616000px;}
.h14{height:169.500000px;}
.h30{height:174.960000px;}
.h1d{height:180.000000px;}
.h3b{height:181.920000px;}
.h36{height:182.619600px;}
.h26{height:183.028950px;}
.h27{height:183.084961px;}
.h29{height:183.600000px;}
.h8{height:184.680000px;}
.h55{height:185.216850px;}
.h31{height:186.240000px;}
.h24{height:188.400000px;}
.h4{height:188.920230px;}
.h53{height:189.000000px;}
.h59{height:189.540000px;}
.he{height:194.400000px;}
.h4a{height:204.120000px;}
.h2c{height:207.504000px;}
.h5c{height:208.800000px;}
.h13{height:209.155200px;}
.h25{height:211.950000px;}
.h10{height:212.220000px;}
.h12{height:213.840000px;}
.h54{height:216.660000px;}
.h2b{height:216.936000px;}
.h50{height:217.008000px;}
.h19{height:217.567659px;}
.h23{height:218.700000px;}
.h7{height:219.946289px;}
.h34{height:232.675781px;}
.h11{height:244.032600px;}
.h49{height:259.050000px;}
.h21{height:259.380000px;}
.h52{height:288.033150px;}
.h22{height:339.049500px;}
.h6{height:339.916992px;}
.h5d{height:340.396875px;}
.h33{height:359.589844px;}
.h1f{height:391.327975px;}
.h48{height:400.350000px;}
.h18{height:478.367587px;}
.h15{height:506.157410px;}
.h5{height:507.656250px;}
.h17{height:521.503182px;}
.h0{height:1620.000000px;}
.w17{width:70.440060px;}
.w16{width:74.520075px;}
.w15{width:75.300075px;}
.w1b{width:148.618065px;}
.w1c{width:182.023050px;}
.w19{width:200.400000px;}
.w3{width:215.552100px;}
.w1e{width:297.000000px;}
.w18{width:298.500000px;}
.wa{width:309.247350px;}
.w25{width:311.727300px;}
.w5{width:322.398450px;}
.w28{width:327.729150px;}
.w13{width:343.224450px;}
.w26{width:352.160400px;}
.w12{width:361.301250px;}
.w20{width:362.150700px;}
.w1d{width:362.163000px;}
.wb{width:382.256700px;}
.w29{width:393.360000px;}
.w4{width:411.941400px;}
.w21{width:423.212850px;}
.we{width:436.720050px;}
.w1a{width:471.088350px;}
.w14{width:486.800250px;}
.w27{width:528.433650px;}
.w7{width:577.927650px;}
.w2b{width:590.311650px;}
.wf{width:605.980050px;}
.w2a{width:607.066350px;}
.w11{width:617.960100px;}
.w23{width:688.146900px;}
.w10{width:721.120050px;}
.w6{width:757.933650px;}
.w24{width:834.713550px;}
.w8{width:990.171450px;}
.w1f{width:1077.900000px;}
.wc{width:1111.572150px;}
.wd{width:1113.871650px;}
.w9{width:1304.904300px;}
.w22{width:1338.800700px;}
.w2{width:1491.600000px;}
.w1{width:1949.212500px;}
.w0{width:2880.000000px;}
.x19{left:-3.367675px;}
.x0{left:0.000000px;}
.xab{left:9.506850px;}
.xad{left:11.005500px;}
.x5d{left:14.250000px;}
.x57{left:16.200150px;}
.x37{left:18.014475px;}
.x51{left:19.800000px;}
.x10{left:21.000000px;}
.x2c{left:25.500000px;}
.x8b{left:29.324850px;}
.x42{left:30.838575px;}
.x26{left:37.580700px;}
.x7{left:40.732170px;}
.x2{left:47.754540px;}
.x6c{left:50.436000px;}
.x22{left:53.170200px;}
.x9c{left:54.514500px;}
.x28{left:57.339000px;}
.x99{left:60.990000px;}
.x29{left:63.399000px;}
.x77{left:64.962000px;}
.x4a{left:66.914085px;}
.x96{left:70.050000px;}
.x75{left:73.218000px;}
.x21{left:74.602500px;}
.x70{left:75.708000px;}
.x76{left:77.700000px;}
.x72{left:79.596000px;}
.x73{left:85.890000px;}
.x65{left:87.450000px;}
.x3a{left:88.728300px;}
.x9f{left:91.200000px;}
.x68{left:93.297000px;}
.x66{left:94.746000px;}
.x9e{left:96.900000px;}
.x3{left:98.156685px;}
.x60{left:100.146000px;}
.x5f{left:104.322000px;}
.x8c{left:106.763205px;}
.x61{left:107.778000px;}
.x62{left:109.746000px;}
.xa0{left:111.630000px;}
.x78{left:113.178000px;}
.x87{left:125.078370px;}
.x1{left:131.506995px;}
.x74{left:132.906000px;}
.xe{left:141.840900px;}
.x4b{left:144.743775px;}
.x91{left:147.310545px;}
.x4{left:148.500000px;}
.x2d{left:149.895915px;}
.x2e{left:153.873135px;}
.x45{left:157.055850px;}
.x2f{left:162.850635px;}
.x50{left:167.507100px;}
.x32{left:194.033250px;}
.x3e{left:205.500000px;}
.x30{left:215.944950px;}
.xa1{left:255.632550px;}
.x43{left:279.702750px;}
.x85{left:303.972750px;}
.x2b{left:369.247350px;}
.x6f{left:384.498300px;}
.xa5{left:409.566750px;}
.xa2{left:442.342500px;}
.xf{left:465.393750px;}
.x8d{left:487.771200px;}
.x90{left:532.427250px;}
.x8a{left:584.410200px;}
.x18{left:610.290150px;}
.x1b{left:628.278112px;}
.x12{left:638.732100px;}
.x56{left:643.944600px;}
.x1a{left:680.422478px;}
.x71{left:685.998300px;}
.x40{left:722.897400px;}
.x14{left:738.511350px;}
.xd{left:755.077800px;}
.xaa{left:758.833200px;}
.xa4{left:781.939200px;}
.x5{left:783.735600px;}
.x36{left:788.738100px;}
.x3c{left:796.939200px;}
.xae{left:823.350000px;}
.xa3{left:826.390200px;}
.x52{left:829.942500px;}
.x31{left:879.485400px;}
.xaf{left:881.460000px;}
.x44{left:883.064100px;}
.x13{left:890.933400px;}
.x3f{left:931.721250px;}
.x55{left:960.259800px;}
.x6d{left:984.498300px;}
.x23{left:996.517200px;}
.x5a{left:1001.640150px;}
.x6a{left:1009.412100px;}
.x2a{left:1061.033250px;}
.x25{left:1082.944950px;}
.xb{left:1098.557850px;}
.x58{left:1185.409500px;}
.x1c{left:1224.621054px;}
.x6e{left:1284.498300px;}
.x7e{left:1341.872700px;}
.x9a{left:1355.471700px;}
.x69{left:1359.002850px;}
.x7b{left:1365.025500px;}
.x1d{left:1398.661197px;}
.x5c{left:1400.183100px;}
.x7a{left:1413.945000px;}
.x81{left:1416.015000px;}
.x35{left:1417.792500px;}
.x3d{left:1419.975000px;}
.x3b{left:1423.935000px;}
.x93{left:1426.160850px;}
.xa{left:1427.269500px;}
.x24{left:1428.772500px;}
.x92{left:1435.250700px;}
.x97{left:1463.824950px;}
.x16{left:1472.873250px;}
.xa9{left:1482.584400px;}
.x53{left:1496.494650px;}
.x4c{left:1534.807500px;}
.x17{left:1568.392500px;}
.x49{left:1574.401500px;}
.x88{left:1588.570500px;}
.x6b{left:1622.926500px;}
.x8e{left:1624.452000px;}
.x89{left:1629.441000px;}
.x48{left:1640.094000px;}
.x11{left:1682.503500px;}
.x5b{left:1715.818500px;}
.x9{left:1734.219000px;}
.x9b{left:1743.097500px;}
.x27{left:1746.486000px;}
.x8{left:1773.907500px;}
.x15{left:1888.801500px;}
.x34{left:1904.415000px;}
.x67{left:1905.834000px;}
.x59{left:1971.121500px;}
.x5e{left:1992.127500px;}
.x95{left:1994.238000px;}
.x4f{left:2006.589000px;}
.x38{left:2027.121000px;}
.xac{left:2031.543000px;}
.x47{left:2032.711500px;}
.x39{left:2033.788500px;}
.x41{left:2046.375000px;}
.xc{left:2051.307000px;}
.x84{left:2058.172500px;}
.x94{left:2067.520500px;}
.x6{left:2100.604500px;}
.x82{left:2119.534500px;}
.x8f{left:2122.585500px;}
.xa8{left:2136.649500px;}
.x9d{left:2187.097500px;}
.x1e{left:2209.215000px;}
.x98{left:2217.787500px;}
.x54{left:2239.566000px;}
.x1f{left:2293.725000px;}
.x83{left:2302.486500px;}
.x46{left:2318.130000px;}
.x64{left:2334.672000px;}
.x63{left:2383.722000px;}
.x20{left:2509.776000px;}
.x33{left:2512.059000px;}
.x4e{left:2539.686000px;}
.x7d{left:2542.686000px;}
.x80{left:2547.186000px;}
.x4d{left:2555.872500px;}
.x7c{left:2558.872500px;}
.x7f{left:2563.372500px;}
.xa7{left:2607.513000px;}
.xa6{left:2623.699500px;}
.x86{left:2720.076000px;}
.x79{left:2841.378000px;}
@media print{
.v5{vertical-align:-89.519467pt;}
.v12{vertical-align:-63.017892pt;}
.va{vertical-align:-58.934228pt;}
.v22{vertical-align:-57.432000pt;}
.v1a{vertical-align:-50.844448pt;}
.v1b{vertical-align:-44.800000pt;}
.v1d{vertical-align:-43.217781pt;}
.v20{vertical-align:-38.255211pt;}
.v1f{vertical-align:-34.110245pt;}
.v7{vertical-align:-24.000048pt;}
.v23{vertical-align:-22.400048pt;}
.v6{vertical-align:-21.333376pt;}
.v21{vertical-align:-20.266709pt;}
.v15{vertical-align:-15.644475pt;}
.v1c{vertical-align:-13.297803pt;}
.v4{vertical-align:-5.760011pt;}
.v3{vertical-align:-3.741440pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:13.115733pt;}
.v2{vertical-align:17.512427pt;}
.v17{vertical-align:21.333376pt;}
.v24{vertical-align:37.333333pt;}
.v1{vertical-align:41.946667pt;}
.v19{vertical-align:44.800000pt;}
.v18{vertical-align:49.777781pt;}
.v16{vertical-align:50.844448pt;}
.v1e{vertical-align:52.266667pt;}
.vb{vertical-align:58.934228pt;}
.v13{vertical-align:63.017892pt;}
.v10{vertical-align:97.158638pt;}
.v8{vertical-align:100.277867pt;}
.ve{vertical-align:135.501388pt;}
.v14{vertical-align:215.543125pt;}
.v11{vertical-align:239.799983pt;}
.vc{vertical-align:259.365831pt;}
.vf{vertical-align:278.142734pt;}
.vd{vertical-align:377.983786pt;}
.ls22{letter-spacing:-9.157333pt;}
.ls17{letter-spacing:-9.066667pt;}
.ls4{letter-spacing:-9.021333pt;}
.ls24{letter-spacing:-8.976000pt;}
.ls28{letter-spacing:-8.533333pt;}
.ls3{letter-spacing:-6.528000pt;}
.ls2{letter-spacing:-6.400000pt;}
.ls6{letter-spacing:-5.040000pt;}
.ls25{letter-spacing:-4.608000pt;}
.ls27{letter-spacing:-4.533333pt;}
.ls35{letter-spacing:-3.360000pt;}
.ls20{letter-spacing:-2.933333pt;}
.ls2b{letter-spacing:-2.560000pt;}
.ls21{letter-spacing:-2.400000pt;}
.ls16{letter-spacing:-2.346667pt;}
.ls32{letter-spacing:-1.600000pt;}
.ls31{letter-spacing:-1.493333pt;}
.ls26{letter-spacing:-1.269333pt;}
.ls29{letter-spacing:-0.800000pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls34{letter-spacing:-0.090795pt;}
.ls2c{letter-spacing:-0.058667pt;}
.ls23{letter-spacing:-0.039467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000010pt;}
.ls2a{letter-spacing:0.000040pt;}
.ls33{letter-spacing:0.000168pt;}
.ls5{letter-spacing:0.013867pt;}
.ls30{letter-spacing:0.021333pt;}
.ls2e{letter-spacing:0.032000pt;}
.ls2d{letter-spacing:0.058667pt;}
.lsa{letter-spacing:0.129853pt;}
.lsb{letter-spacing:0.154152pt;}
.ls7{letter-spacing:0.171809pt;}
.ls1a{letter-spacing:0.183714pt;}
.ls15{letter-spacing:0.218775pt;}
.lsf{letter-spacing:0.335744pt;}
.ls10{letter-spacing:14.267306pt;}
.ls8{letter-spacing:18.539683pt;}
.ls18{letter-spacing:19.366857pt;}
.lse{letter-spacing:19.759448pt;}
.ls11{letter-spacing:19.798895pt;}
.ls1b{letter-spacing:19.824332pt;}
.ls1e{letter-spacing:20.708823pt;}
.ls13{letter-spacing:22.745346pt;}
.ls19{letter-spacing:29.820559pt;}
.ls1f{letter-spacing:31.886881pt;}
.ls1d{letter-spacing:46.020448pt;}
.lsd{letter-spacing:54.636377pt;}
.ls12{letter-spacing:109.486353pt;}
.ls1c{letter-spacing:117.053828pt;}
.ls14{letter-spacing:150.766947pt;}
.lsc{letter-spacing:225.460961pt;}
.ls9{letter-spacing:265.798096pt;}
.ws3{word-spacing:-241.152000pt;}
.ws5{word-spacing:-96.000000pt;}
.ws2{word-spacing:-82.560000pt;}
.ws12{word-spacing:-60.936533pt;}
.wsb{word-spacing:-58.080000pt;}
.ws8{word-spacing:-56.106667pt;}
.ws2b{word-spacing:-54.704000pt;}
.ws16{word-spacing:-52.693333pt;}
.ws2f{word-spacing:-47.424000pt;}
.ws1a{word-spacing:-45.226667pt;}
.wsa{word-spacing:-42.080000pt;}
.ws22{word-spacing:-40.986667pt;}
.ws27{word-spacing:-39.274667pt;}
.ws2d{word-spacing:-38.160000pt;}
.ws9{word-spacing:-37.404449pt;}
.ws24{word-spacing:-36.746667pt;}
.ws23{word-spacing:-36.693333pt;}
.ws2c{word-spacing:-36.469333pt;}
.ws1b{word-spacing:-35.722667pt;}
.ws15{word-spacing:-35.128893pt;}
.ws1d{word-spacing:-34.453333pt;}
.wsf{word-spacing:-33.664000pt;}
.ws0{word-spacing:-32.853333pt;}
.ws1e{word-spacing:-31.189333pt;}
.ws29{word-spacing:-29.674667pt;}
.ws21{word-spacing:-29.418667pt;}
.ws14{word-spacing:-29.056000pt;}
.ws31{word-spacing:-28.053333pt;}
.ws1{word-spacing:-25.226667pt;}
.ws1f{word-spacing:-23.815115pt;}
.ws10{word-spacing:-21.002983pt;}
.wsd{word-spacing:-19.641955pt;}
.ws25{word-spacing:-0.453333pt;}
.ws26{word-spacing:-0.293333pt;}
.ws2a{word-spacing:-0.234667pt;}
.ws13{word-spacing:-0.213333pt;}
.ws30{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.181333pt;}
.ws19{word-spacing:-0.170667pt;}
.ws7{word-spacing:-0.160000pt;}
.ws20{word-spacing:-0.149333pt;}
.ws2e{word-spacing:-0.144000pt;}
.ws28{word-spacing:-0.103111pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:193.224485pt;}
.ws11{word-spacing:206.613373pt;}
.ws18{word-spacing:1033.971733pt;}
.ws6{word-spacing:1141.691200pt;}
.ws17{word-spacing:1729.258133pt;}
.wsc{word-spacing:2749.013867pt;}
._18{margin-left:-3838.485867pt;}
._7{margin-left:-35.200000pt;}
._6{margin-left:-23.040000pt;}
._17{margin-left:-20.773333pt;}
._13{margin-left:-19.841823pt;}
._1c{margin-left:-17.106667pt;}
._f{margin-left:-12.160000pt;}
._8{margin-left:-10.880000pt;}
._14{margin-left:-9.920000pt;}
._10{margin-left:-8.746667pt;}
._5{margin-left:-7.701333pt;}
._3{margin-left:-6.080000pt;}
._1{margin-left:-4.266667pt;}
._0{margin-left:-2.560000pt;}
._2{margin-left:-1.493333pt;}
._c{width:1.066658pt;}
._9{width:2.154667pt;}
._11{width:3.177067pt;}
._d{width:4.645342pt;}
._16{width:6.165333pt;}
._15{width:9.503983pt;}
._12{width:112.080000pt;}
._b{width:907.548792pt;}
._1a{width:1009.653333pt;}
._1b{width:2298.646400pt;}
._4{width:2473.560747pt;}
._a{width:3058.769173pt;}
._e{width:3897.496533pt;}
._19{width:4020.991467pt;}
.fs2{font-size:90.666667pt;}
.fsd{font-size:96.000000pt;}
.fs21{font-size:103.111093pt;}
.fs1a{font-size:106.666667pt;}
.fs4{font-size:117.333333pt;}
.fs1e{font-size:120.888907pt;}
.fs15{font-size:128.000000pt;}
.fsa{font-size:133.333333pt;}
.fs22{font-size:135.111093pt;}
.fsc{font-size:138.666667pt;}
.fsf{font-size:142.222240pt;}
.fsb{font-size:144.000000pt;}
.fs1{font-size:149.333333pt;}
.fs1f{font-size:154.666667pt;}
.fse{font-size:160.000000pt;}
.fs1b{font-size:165.333333pt;}
.fs0{font-size:170.666667pt;}
.fs3{font-size:176.000000pt;}
.fs1d{font-size:181.333333pt;}
.fs1c{font-size:192.000000pt;}
.fs14{font-size:196.498709pt;}
.fs18{font-size:197.333333pt;}
.fs9{font-size:202.666667pt;}
.fs23{font-size:208.000000pt;}
.fs5{font-size:213.333333pt;}
.fs20{font-size:224.000000pt;}
.fs11{font-size:234.666667pt;}
.fs10{font-size:240.000000pt;}
.fs19{font-size:245.333333pt;}
.fs13{font-size:275.097404pt;}
.fs8{font-size:293.333333pt;}
.fs17{font-size:294.159422pt;}
.fs12{font-size:392.997419pt;}
.fs16{font-size:420.228950pt;}
.fs7{font-size:453.333333pt;}
.fs24{font-size:453.973333pt;}
.fs6{font-size:640.000000pt;}
.ya1{bottom:-35.675080pt;}
.y9e{bottom:-35.675067pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.961116pt;}
.y25{bottom:9.775633pt;}
.y5b{bottom:10.666667pt;}
.y24{bottom:12.546804pt;}
.yee{bottom:14.726533pt;}
.y82{bottom:16.324933pt;}
.y87{bottom:17.658133pt;}
.y89{bottom:17.658240pt;}
.y92{bottom:17.658253pt;}
.y85{bottom:17.658267pt;}
.yd2{bottom:17.741600pt;}
.y3d{bottom:18.902385pt;}
.y32{bottom:18.902652pt;}
.y2a{bottom:19.200000pt;}
.y9c{bottom:19.404933pt;}
.ya3{bottom:20.074707pt;}
.y77{bottom:20.265133pt;}
.y9d{bottom:20.324933pt;}
.yd7{bottom:20.562267pt;}
.y98{bottom:20.906800pt;}
.y41{bottom:21.182573pt;}
.ye4{bottom:21.549240pt;}
.y6c{bottom:21.915907pt;}
.y5f{bottom:22.934360pt;}
.y80{bottom:24.000053pt;}
.y7f{bottom:24.742693pt;}
.yc1{bottom:25.333360pt;}
.y8c{bottom:25.386667pt;}
.y42{bottom:25.449240pt;}
.yc9{bottom:28.222973pt;}
.y28{bottom:29.022973pt;}
.y7e{bottom:29.866667pt;}
.y4d{bottom:29.866800pt;}
.y47{bottom:30.297333pt;}
.yd4{bottom:31.200000pt;}
.y2e{bottom:32.000067pt;}
.y39{bottom:32.000133pt;}
.yb9{bottom:33.896069pt;}
.y58{bottom:34.940107pt;}
.ye{bottom:35.491693pt;}
.y16{bottom:36.000080pt;}
.y44{bottom:36.000133pt;}
.y95{bottom:36.191112pt;}
.y93{bottom:36.250293pt;}
.y54{bottom:36.800133pt;}
.y21{bottom:36.836463pt;}
.y8a{bottom:38.240293pt;}
.y7c{bottom:40.000000pt;}
.yae{bottom:41.472867pt;}
.ycd{bottom:42.269067pt;}
.y70{bottom:42.577779pt;}
.y72{bottom:42.577912pt;}
.y34{bottom:44.000133pt;}
.y10{bottom:44.672067pt;}
.yad{bottom:44.800000pt;}
.yab{bottom:48.091920pt;}
.y5{bottom:48.375800pt;}
.ya2{bottom:48.524973pt;}
.y59{bottom:52.017107pt;}
.yf0{bottom:56.059867pt;}
.y7a{bottom:57.466667pt;}
.y2f{bottom:58.770467pt;}
.yd6{bottom:60.562267pt;}
.yd0{bottom:62.876667pt;}
.y57{bottom:66.940107pt;}
.y22{bottom:67.299621pt;}
.y2b{bottom:68.088867pt;}
.y97{bottom:70.240133pt;}
.y1e{bottom:70.473827pt;}
.yd9{bottom:76.800133pt;}
.yd{bottom:77.760387pt;}
.ybd{bottom:77.886600pt;}
.y5e{bottom:82.059693pt;}
.yb7{bottom:90.298443pt;}
.y2d{bottom:90.770480pt;}
.y3e{bottom:95.431760pt;}
.y46{bottom:95.630667pt;}
.y30{bottom:96.000067pt;}
.y3b{bottom:96.000133pt;}
.y56{bottom:98.940107pt;}
.yaa{bottom:105.425253pt;}
.ycc{bottom:107.602400pt;}
.y91{bottom:109.428520pt;}
.y15{bottom:109.805387pt;}
.y88{bottom:111.418520pt;}
.ydb{bottom:121.600133pt;}
.ya0{bottom:121.703200pt;}
.y35{bottom:127.417027pt;}
.y75{bottom:129.648053pt;}
.y1d{bottom:131.194933pt;}
.y1f{bottom:134.473867pt;}
.y37{bottom:136.044040pt;}
.yc{bottom:150.442800pt;}
.y27{bottom:153.110933pt;}
.y53{bottom:154.870133pt;}
.ybc{bottom:162.553333pt;}
.ya9{bottom:162.758533pt;}
.ycb{bottom:172.935733pt;}
.y90{bottom:182.606800pt;}
.y86{bottom:184.596800pt;}
.yd5{bottom:193.833867pt;}
.y9f{bottom:194.881467pt;}
.y5c{bottom:200.837200pt;}
.yac{bottom:203.225467pt;}
.y26{bottom:217.110933pt;}
.y36{bottom:228.044040pt;}
.yd1{bottom:239.648533pt;}
.y8f{bottom:255.784933pt;}
.y20{bottom:256.989067pt;}
.y84{bottom:257.774933pt;}
.y9b{bottom:268.059600pt;}
.y31{bottom:284.344667pt;}
.y74{bottom:288.277733pt;}
.yc7{bottom:297.924667pt;}
.yca{bottom:298.090000pt;}
.y14{bottom:302.120400pt;}
.y45{bottom:310.050267pt;}
.y96{bottom:312.609867pt;}
.y55{bottom:312.666400pt;}
.y8e{bottom:328.963200pt;}
.y83{bottom:330.953200pt;}
.y9a{bottom:341.237867pt;}
.y2c{bottom:342.703467pt;}
.ycf{bottom:353.360667pt;}
.y33{bottom:403.292800pt;}
.y8d{bottom:403.474800pt;}
.y81{bottom:405.464800pt;}
.y99{bottom:415.749467pt;}
.y4{bottom:438.643200pt;}
.yc6{bottom:443.524667pt;}
.y29{bottom:465.553867pt;}
.yb6{bottom:482.098133pt;}
.y4c{bottom:483.004267pt;}
.y94{bottom:483.668800pt;}
.y3{bottom:484.309867pt;}
.y8b{bottom:486.480533pt;}
.y4f{bottom:492.964667pt;}
.y1b{bottom:498.631733pt;}
.y2{bottom:517.309867pt;}
.yd3{bottom:533.835867pt;}
.yea{bottom:539.029600pt;}
.yeb{bottom:541.112400pt;}
.ye6{bottom:553.271733pt;}
.y4b{bottom:566.298000pt;}
.y1{bottom:567.976533pt;}
.y12{bottom:574.488133pt;}
.yb5{bottom:577.298133pt;}
.yc5{bottom:589.124667pt;}
.ya5{bottom:601.250533pt;}
.y1a{bottom:602.098400pt;}
.ya6{bottom:603.333333pt;}
.y69{bottom:603.917200pt;}
.y6a{bottom:606.000000pt;}
.ya7{bottom:606.583867pt;}
.ya8{bottom:608.666667pt;}
.ye5{bottom:617.271733pt;}
.y4a{bottom:639.631333pt;}
.yce{bottom:639.759333pt;}
.yb8{bottom:653.968267pt;}
.y3a{bottom:665.977333pt;}
.yb4{bottom:672.498133pt;}
.y3f{bottom:679.763600pt;}
.yef{bottom:691.161600pt;}
.y38{bottom:697.977333pt;}
.yaf{bottom:702.333333pt;}
.y64{bottom:712.094000pt;}
.y49{bottom:712.964667pt;}
.yed{bottom:732.773733pt;}
.yc4{bottom:734.724667pt;}
.yb3{bottom:767.698133pt;}
.yda{bottom:774.752000pt;}
.y7d{bottom:777.540533pt;}
.ye3{bottom:786.376133pt;}
.y63{bottom:798.094000pt;}
.y48{bottom:798.382533pt;}
.y17{bottom:804.022533pt;}
.y8{bottom:814.886267pt;}
.yd8{bottom:819.552000pt;}
.ybe{bottom:820.484800pt;}
.y6f{bottom:844.630933pt;}
.y73{bottom:852.381600pt;}
.y71{bottom:853.714933pt;}
.yc3{bottom:880.324667pt;}
.ye2{bottom:881.576133pt;}
.y62{bottom:884.094000pt;}
.y3c{bottom:891.551600pt;}
.ye8{bottom:923.589333pt;}
.y11{bottom:927.934000pt;}
.yec{bottom:932.739467pt;}
.ya4{bottom:948.448533pt;}
.y68{bottom:951.066667pt;}
.y43{bottom:955.083200pt;}
.y7{bottom:964.886267pt;}
.ye7{bottom:969.544000pt;}
.y61{bottom:970.094000pt;}
.y4e{bottom:975.699200pt;}
.ye1{bottom:976.776133pt;}
.yb2{bottom:985.256667pt;}
.yf{bottom:991.621333pt;}
.yc0{bottom:1005.043200pt;}
.y52{bottom:1016.662000pt;}
.y79{bottom:1037.169733pt;}
.ydf{bottom:1039.152933pt;}
.y19{bottom:1043.094267pt;}
.ybf{bottom:1045.043200pt;}
.yf3{bottom:1050.771733pt;}
.y60{bottom:1056.094000pt;}
.y7b{bottom:1065.836400pt;}
.yb{bottom:1073.608533pt;}
.ye9{bottom:1078.380133pt;}
.y5d{bottom:1082.148667pt;}
.y6b{bottom:1086.628933pt;}
.yde{bottom:1103.152933pt;}
.y51{bottom:1112.662000pt;}
.yf2{bottom:1114.771733pt;}
.y6{bottom:1114.886267pt;}
.y6e{bottom:1126.031600pt;}
.y5a{bottom:1132.209333pt;}
.y40{bottom:1140.032933pt;}
.y13{bottom:1155.990933pt;}
.yb1{bottom:1159.113200pt;}
.ybb{bottom:1163.329200pt;}
.y1c{bottom:1165.093200pt;}
.ye0{bottom:1169.289333pt;}
.yc8{bottom:1187.998133pt;}
.ya{bottom:1194.818133pt;}
.y67{bottom:1198.089333pt;}
.y76{bottom:1199.430533pt;}
.ydd{bottom:1245.252800pt;}
.y18{bottom:1248.003200pt;}
.y6d{bottom:1248.158400pt;}
.yba{bottom:1268.711067pt;}
.yb0{bottom:1271.430933pt;}
.y9{bottom:1274.710400pt;}
.yc2{bottom:1278.437733pt;}
.y50{bottom:1281.225733pt;}
.y78{bottom:1281.469867pt;}
.yf1{bottom:1286.669867pt;}
.y66{bottom:1290.003200pt;}
.y65{bottom:1305.033600pt;}
.ydc{bottom:1331.919467pt;}
.h1a{height:57.866707pt;}
.h61{height:58.234373pt;}
.h2e{height:58.666667pt;}
.h56{height:59.416560pt;}
.h3{height:70.357333pt;}
.h3d{height:70.511560pt;}
.h4b{height:71.417535pt;}
.h3e{height:71.844893pt;}
.h3c{height:72.000053pt;}
.h4c{height:77.799800pt;}
.h2d{height:78.593750pt;}
.h4d{height:79.635414pt;}
.h39{height:86.133387pt;}
.h3f{height:88.586733pt;}
.h37{height:90.368000pt;}
.h4f{height:91.601562pt;}
.h9{height:92.578125pt;}
.h58{height:93.866733pt;}
.h41{height:94.232885pt;}
.h1c{height:96.000067pt;}
.h57{height:97.466667pt;}
.hb{height:97.770833pt;}
.h63{height:99.567707pt;}
.h1b{height:103.680000pt;}
.h5a{height:104.529067pt;}
.h28{height:105.866733pt;}
.h32{height:107.605333pt;}
.h1e{height:108.380840pt;}
.h46{height:108.800067pt;}
.hf{height:109.333413pt;}
.h45{height:109.921875pt;}
.h2a{height:110.133413pt;}
.h3a{height:110.720000pt;}
.h5e{height:111.744000pt;}
.h43{height:113.194667pt;}
.h35{height:114.702219pt;}
.h38{height:114.800053pt;}
.h2{height:115.882667pt;}
.ha{height:116.640000pt;}
.hd{height:116.960000pt;}
.h44{height:120.021333pt;}
.h51{height:120.960000pt;}
.h42{height:123.306720pt;}
.h47{height:124.160000pt;}
.h4e{height:127.968750pt;}
.hc{height:129.600000pt;}
.h1{height:132.437333pt;}
.h20{height:133.333467pt;}
.h16{height:133.422624pt;}
.h2f{height:133.920000pt;}
.h60{height:136.576000pt;}
.h40{height:137.450667pt;}
.h5b{height:140.800000pt;}
.h62{height:142.187500pt;}
.h5f{height:148.992000pt;}
.h14{height:150.666667pt;}
.h30{height:155.520000pt;}
.h1d{height:160.000000pt;}
.h3b{height:161.706667pt;}
.h36{height:162.328533pt;}
.h26{height:162.692400pt;}
.h27{height:162.742188pt;}
.h29{height:163.200000pt;}
.h8{height:164.160000pt;}
.h55{height:164.637200pt;}
.h31{height:165.546667pt;}
.h24{height:167.466667pt;}
.h4{height:167.929093pt;}
.h53{height:168.000000pt;}
.h59{height:168.480000pt;}
.he{height:172.800000pt;}
.h4a{height:181.440000pt;}
.h2c{height:184.448000pt;}
.h5c{height:185.600000pt;}
.h13{height:185.915733pt;}
.h25{height:188.400000pt;}
.h10{height:188.640000pt;}
.h12{height:190.080000pt;}
.h54{height:192.586667pt;}
.h2b{height:192.832000pt;}
.h50{height:192.896000pt;}
.h19{height:193.393475pt;}
.h23{height:194.400000pt;}
.h7{height:195.507812pt;}
.h34{height:206.822917pt;}
.h11{height:216.917867pt;}
.h49{height:230.266667pt;}
.h21{height:230.560000pt;}
.h52{height:256.029467pt;}
.h22{height:301.377333pt;}
.h6{height:302.148438pt;}
.h5d{height:302.575000pt;}
.h33{height:319.635417pt;}
.h1f{height:347.847089pt;}
.h48{height:355.866667pt;}
.h18{height:425.215633pt;}
.h15{height:449.917698pt;}
.h5{height:451.250000pt;}
.h17{height:463.558384pt;}
.h0{height:1440.000000pt;}
.w17{width:62.613387pt;}
.w16{width:66.240067pt;}
.w15{width:66.933400pt;}
.w1b{width:132.104947pt;}
.w1c{width:161.798267pt;}
.w19{width:178.133333pt;}
.w3{width:191.601867pt;}
.w1e{width:264.000000pt;}
.w18{width:265.333333pt;}
.wa{width:274.886533pt;}
.w25{width:277.090933pt;}
.w5{width:286.576400pt;}
.w28{width:291.314800pt;}
.w13{width:305.088400pt;}
.w26{width:313.031467pt;}
.w12{width:321.156667pt;}
.w20{width:321.911733pt;}
.w1d{width:321.922667pt;}
.wb{width:339.783733pt;}
.w29{width:349.653333pt;}
.w4{width:366.170133pt;}
.w21{width:376.189200pt;}
.we{width:388.195600pt;}
.w1a{width:418.745200pt;}
.w14{width:432.711333pt;}
.w27{width:469.718800pt;}
.w7{width:513.713467pt;}
.w2b{width:524.721467pt;}
.wf{width:538.648933pt;}
.w2a{width:539.614533pt;}
.w11{width:549.297867pt;}
.w23{width:611.686133pt;}
.w10{width:640.995600pt;}
.w6{width:673.718800pt;}
.w24{width:741.967600pt;}
.w8{width:880.152400pt;}
.w1f{width:958.133333pt;}
.wc{width:988.064133pt;}
.wd{width:990.108133pt;}
.w9{width:1159.914933pt;}
.w22{width:1190.045067pt;}
.w2{width:1325.866667pt;}
.w1{width:1732.633333pt;}
.w0{width:2560.000000pt;}
.x19{left:-2.993489pt;}
.x0{left:0.000000pt;}
.xab{left:8.450533pt;}
.xad{left:9.782667pt;}
.x5d{left:12.666667pt;}
.x57{left:14.400133pt;}
.x37{left:16.012867pt;}
.x51{left:17.600000pt;}
.x10{left:18.666667pt;}
.x2c{left:22.666667pt;}
.x8b{left:26.066533pt;}
.x42{left:27.412067pt;}
.x26{left:33.405067pt;}
.x7{left:36.206373pt;}
.x2{left:42.448480pt;}
.x6c{left:44.832000pt;}
.x22{left:47.262400pt;}
.x9c{left:48.457333pt;}
.x28{left:50.968000pt;}
.x99{left:54.213333pt;}
.x29{left:56.354667pt;}
.x77{left:57.744000pt;}
.x4a{left:59.479187pt;}
.x96{left:62.266667pt;}
.x75{left:65.082667pt;}
.x21{left:66.313333pt;}
.x70{left:67.296000pt;}
.x76{left:69.066667pt;}
.x72{left:70.752000pt;}
.x73{left:76.346667pt;}
.x65{left:77.733333pt;}
.x3a{left:78.869600pt;}
.x9f{left:81.066667pt;}
.x68{left:82.930667pt;}
.x66{left:84.218667pt;}
.x9e{left:86.133333pt;}
.x3{left:87.250387pt;}
.x60{left:89.018667pt;}
.x5f{left:92.730667pt;}
.x8c{left:94.900627pt;}
.x61{left:95.802667pt;}
.x62{left:97.552000pt;}
.xa0{left:99.226667pt;}
.x78{left:100.602667pt;}
.x87{left:111.180773pt;}
.x1{left:116.895107pt;}
.x74{left:118.138667pt;}
.xe{left:126.080800pt;}
.x4b{left:128.661133pt;}
.x91{left:130.942707pt;}
.x4{left:132.000000pt;}
.x2d{left:133.240813pt;}
.x2e{left:136.776120pt;}
.x45{left:139.605200pt;}
.x2f{left:144.756120pt;}
.x50{left:148.895200pt;}
.x32{left:172.474000pt;}
.x3e{left:182.666667pt;}
.x30{left:191.951067pt;}
.xa1{left:227.228933pt;}
.x43{left:248.624667pt;}
.x85{left:270.198000pt;}
.x2b{left:328.219867pt;}
.x6f{left:341.776267pt;}
.xa5{left:364.059333pt;}
.xa2{left:393.193333pt;}
.xf{left:413.683333pt;}
.x8d{left:433.574400pt;}
.x90{left:473.268667pt;}
.x8a{left:519.475733pt;}
.x18{left:542.480133pt;}
.x1b{left:558.469433pt;}
.x12{left:567.761867pt;}
.x56{left:572.395200pt;}
.x1a{left:604.819981pt;}
.x71{left:609.776267pt;}
.x40{left:642.575467pt;}
.x14{left:656.454533pt;}
.xd{left:671.180267pt;}
.xaa{left:674.518400pt;}
.xa4{left:695.057067pt;}
.x5{left:696.653867pt;}
.x36{left:701.100533pt;}
.x3c{left:708.390400pt;}
.xae{left:731.866667pt;}
.xa3{left:734.569067pt;}
.x52{left:737.726667pt;}
.x31{left:781.764800pt;}
.xaf{left:783.520000pt;}
.x44{left:784.945867pt;}
.x13{left:791.940800pt;}
.x3f{left:828.196667pt;}
.x55{left:853.564267pt;}
.x6d{left:875.109600pt;}
.x23{left:885.793067pt;}
.x5a{left:890.346800pt;}
.x6a{left:897.255200pt;}
.x2a{left:943.140667pt;}
.x25{left:962.617733pt;}
.xb{left:976.495867pt;}
.x58{left:1053.697333pt;}
.x1c{left:1088.552048pt;}
.x6e{left:1141.776267pt;}
.x7e{left:1192.775733pt;}
.x9a{left:1204.863733pt;}
.x69{left:1208.002533pt;}
.x7b{left:1213.356000pt;}
.x1d{left:1243.254398pt;}
.x5c{left:1244.607200pt;}
.x7a{left:1256.840000pt;}
.x81{left:1258.680000pt;}
.x35{left:1260.260000pt;}
.x3d{left:1262.200000pt;}
.x3b{left:1265.720000pt;}
.x93{left:1267.698533pt;}
.xa{left:1268.684000pt;}
.x24{left:1270.020000pt;}
.x92{left:1275.778400pt;}
.x97{left:1301.177733pt;}
.x16{left:1309.220667pt;}
.xa9{left:1317.852800pt;}
.x53{left:1330.217467pt;}
.x4c{left:1364.273333pt;}
.x17{left:1394.126667pt;}
.x49{left:1399.468000pt;}
.x88{left:1412.062667pt;}
.x6b{left:1442.601333pt;}
.x8e{left:1443.957333pt;}
.x89{left:1448.392000pt;}
.x48{left:1457.861333pt;}
.x11{left:1495.558667pt;}
.x5b{left:1525.172000pt;}
.x9{left:1541.528000pt;}
.x9b{left:1549.420000pt;}
.x27{left:1552.432000pt;}
.x8{left:1576.806667pt;}
.x15{left:1678.934667pt;}
.x34{left:1692.813333pt;}
.x67{left:1694.074667pt;}
.x59{left:1752.108000pt;}
.x5e{left:1770.780000pt;}
.x95{left:1772.656000pt;}
.x4f{left:1783.634667pt;}
.x38{left:1801.885333pt;}
.xac{left:1805.816000pt;}
.x47{left:1806.854667pt;}
.x39{left:1807.812000pt;}
.x41{left:1819.000000pt;}
.xc{left:1823.384000pt;}
.x84{left:1829.486667pt;}
.x94{left:1837.796000pt;}
.x6{left:1867.204000pt;}
.x82{left:1884.030667pt;}
.x8f{left:1886.742667pt;}
.xa8{left:1899.244000pt;}
.x9d{left:1944.086667pt;}
.x1e{left:1963.746667pt;}
.x98{left:1971.366667pt;}
.x54{left:1990.725333pt;}
.x1f{left:2038.866667pt;}
.x83{left:2046.654667pt;}
.x46{left:2060.560000pt;}
.x64{left:2075.264000pt;}
.x63{left:2118.864000pt;}
.x20{left:2230.912000pt;}
.x33{left:2232.941333pt;}
.x4e{left:2257.498667pt;}
.x7d{left:2260.165333pt;}
.x80{left:2264.165333pt;}
.x4d{left:2271.886667pt;}
.x7c{left:2274.553333pt;}
.x7f{left:2278.553333pt;}
.xa7{left:2317.789333pt;}
.xa6{left:2332.177333pt;}
.x86{left:2417.845333pt;}
.x79{left:2525.669333pt;}
}




    .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; }
  