
    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_956406fba86d41f0be4db460.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.885000;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_ba4a5238e448389c075f2354.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.020996;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_f5f0f3c66c9d502e2a55cadf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_6c30a695f163d8366220ede5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.993000;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_14304d180dbc6205a64203dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.799000;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_81aa44afd3873a2ca561ff4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.990000;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_4cd9da9116a9ee0208ed3e3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.696289;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_e46ffb5b5d8d9df163cd3a06.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3d3486fd4c80d8b116d60da1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.993000;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_0c2800fafd0f47141fed1163.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.696289;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_d621f45d8a75ed311db4b864.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.697266;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_89e44fc6e1cd2f0823ca821e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979000;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_b04b8948401c005d2c899170.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.989000;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_b708859d45c046d21711d9b0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.979000;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_e46ffb5b5d8d9df163cd3a06.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fc38e55c844a76baf302316a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.092000;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_b7193dcae0b5d7bc1bdfcb7c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.724000;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_e7d90a0187a296f684cb7b45.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.983000;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_18c67f3f7f33ae2786ec00de.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.762000;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_c3e164e573967b61037fdb07.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;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_8b97e55ec225e298a313eba6.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;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_f6cade6b2e13210e56e8cc45.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.078000;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_dcd89ea5368388ae73a18af7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.946000;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_fb80f41efbf884841fb47aa3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.944000;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_d68023bdaee264ee3bc7155a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.989000;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_9e9605f05f7d955521f2e110.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.923000;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_ca718f174ed3a563410e0da4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;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_f227d702169a9211958a80af.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.006348;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_260f0f9350644657e98747a8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006836;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_f73e7c995a626d3ed760034c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.062000;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_48b60991da78192e124a7e9f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.005371;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_2415c549a0a4c3b6cd04180f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.006348;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_88422d28f3b9bc13dfd41e56.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;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_4c8437feb9fee96d93e91021.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.005859;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_acfaf0f659b6b6a5be4a104f.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.883301;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_9554d67bd1a5cb9399aea292.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_32bf202534d0d328246e0b40.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.913000;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_2636b51643a2b77faab81e77.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.006348;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_3662622a2336da7a17b2ec1c.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.005371;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_ad056c2f2135d027c34ef698.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.005859;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_d1dfa7ac693bc1c785b3df0e.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_142e3d8a04cf9588d24fc563.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.983000;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_bbbe23b46d153ca402ce0b00.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.092000;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_7f492532cc2287b161ed1e18.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.913000;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_d6c626046c68dd703e0da69c.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.999023;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_79a2b96147b0baad5be85424.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.913000;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_164c1507c651e0919d41c625.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.092000;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_70271ef4e8bbdbbec461eeb1.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.990000;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_36aaf8cb9d4bfcde73278345.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.993000;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_9ca2ed66b5bfc78fd5aa8404.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.913000;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_b75b45a6942237edc375f52a.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.006836;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_c47ebd987888b2adf51c6d00.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.666504;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_7ba969978a0fef0a3558687a.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.990000;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_f93af52731ee710a3559340a.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.724000;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_f5fca1081ef7b40a2762e739.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.983000;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_f51c1f6701e0490d8ddb97dc.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.085000;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_4c00a8f837cedaa8bddd4670.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.932129;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_0b332ccba58aa239b780caef.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.724000;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_8ce81c618fa475b59c9d08f4.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_36e66d771ed9f0960073a376.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.006836;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_d774df9fb39ebd0305ef4cb5.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.734863;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_6ec249db051f12dc5bc9af1b.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.005859;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_2aa9bab3ee3f2b26082ae903.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.062000;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_9b6818131fa17d3aa800abca.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.940000;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_5e35e904d7cb8aefc30916ad.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_fcf6fe36949e4874ea64739a.woff2')format("woff");}.ff42{font-family:ff42;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;}
.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);}
.v1{vertical-align:-64.413933px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006750px;}
.ls10{letter-spacing:0.008098px;}
.ls7{letter-spacing:0.016743px;}
.ls11{letter-spacing:0.036036px;}
.ls12{letter-spacing:0.036058px;}
.lsa{letter-spacing:0.041962px;}
.ls4{letter-spacing:0.054645px;}
.ls14{letter-spacing:0.056250px;}
.ls8{letter-spacing:0.157368px;}
.lsd{letter-spacing:0.182587px;}
.lsc{letter-spacing:0.323212px;}
.lsb{letter-spacing:0.815400px;}
.ls9{letter-spacing:1.588837px;}
.lse{letter-spacing:1.724852px;}
.ls13{letter-spacing:1.928967px;}
.ls6{letter-spacing:2.159981px;}
.ls5{letter-spacing:2.179688px;}
.lsf{letter-spacing:2.459365px;}
.ls2{letter-spacing:13.640849px;}
.ls1{letter-spacing:16.609722px;}
.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;}
}
.ws9{word-spacing:-293.549875px;}
.ws1c{word-spacing:-203.939992px;}
.ws2{word-spacing:-118.627108px;}
.ws18{word-spacing:-110.992500px;}
.ws19{word-spacing:-108.707398px;}
.ws0{word-spacing:-59.198551px;}
.ws3{word-spacing:-45.405901px;}
.wsb{word-spacing:-44.770603px;}
.wsa{word-spacing:-42.562797px;}
.ws1b{word-spacing:-42.070343px;}
.wsf{word-spacing:-40.515644px;}
.ws11{word-spacing:-39.566230px;}
.wse{word-spacing:-37.803691px;}
.wsc{word-spacing:-37.727998px;}
.ws10{word-spacing:-37.406249px;}
.ws8{word-spacing:-37.265398px;}
.ws14{word-spacing:-36.955798px;}
.ws16{word-spacing:-36.615597px;}
.ws13{word-spacing:-33.127909px;}
.ws17{word-spacing:-33.081150px;}
.ws6{word-spacing:-32.898600px;}
.ws12{word-spacing:-30.509472px;}
.ws7{word-spacing:-29.891161px;}
.ws15{word-spacing:-28.615781px;}
.wsd{word-spacing:-27.704004px;}
.ws1a{word-spacing:-2.090922px;}
.ws5{word-spacing:-0.262845px;}
.ws4{word-spacing:-0.256275px;}
.ws1{word-spacing:0.000000px;}
._1b{margin-left:-2992.751818px;}
._1c{margin-left:-1.013321px;}
._18{width:1.872747px;}
._1d{width:2.916542px;}
._15{width:3.956121px;}
._1e{width:5.148929px;}
._0{width:6.900457px;}
._2{width:8.452455px;}
._a{width:9.453569px;}
._8{width:10.909480px;}
._7{width:12.801871px;}
._6{width:13.901813px;}
._14{width:15.085159px;}
._4{width:16.568821px;}
._b{width:18.015961px;}
._5{width:20.978775px;}
._9{width:25.750502px;}
._1f{width:26.947896px;}
._20{width:28.774291px;}
._24{width:29.958194px;}
._17{width:33.666566px;}
._c{width:35.043632px;}
._3{width:38.617202px;}
._11{width:41.740618px;}
._13{width:48.991787px;}
._21{width:53.650785px;}
._e{width:57.515573px;}
._10{width:60.331598px;}
._d{width:61.591299px;}
._26{width:62.922558px;}
._16{width:80.298398px;}
._25{width:82.862332px;}
._12{width:95.900620px;}
._19{width:111.630447px;}
._f{width:141.211600px;}
._1a{width:165.275979px;}
._28{width:183.480695px;}
._27{width:184.713960px;}
._23{width:348.850548px;}
._22{width:350.103122px;}
._1{width:711.093577px;}
.fc9{color:rgb(47,85,151);}
.fc8{color:rgb(65,185,60);}
.fc7{color:rgb(26,64,31);}
.fc6{color:rgb(33,108,83);}
.fc5{color:rgb(57,125,90);}
.fc3{color:rgb(253,251,251);}
.fc1{color:rgb(28,87,57);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:91.799996px;}
.fs11{font-size:95.309996px;}
.fs1b{font-size:106.650000px;}
.fs2a{font-size:110.159995px;}
.fs9{font-size:111.464995px;}
.fs26{font-size:115.514995px;}
.fs22{font-size:117.449995px;}
.fsb{font-size:117.495000px;}
.fsc{font-size:123.479999px;}
.fsd{font-size:124.424995px;}
.fs31{font-size:127.349990px;}
.fs25{font-size:127.529995px;}
.fs2d{font-size:129.239990px;}
.fs2e{font-size:130.769990px;}
.fs2f{font-size:131.039999px;}
.fs28{font-size:131.984995px;}
.fs2{font-size:138.779994px;}
.fs10{font-size:139.049994px;}
.fs24{font-size:139.544994px;}
.fs8{font-size:140.714994px;}
.fs7{font-size:141.974990px;}
.fs19{font-size:143.999994px;}
.fs1c{font-size:145.529994px;}
.fs1e{font-size:145.800003px;}
.fs0{font-size:149.985003px;}
.fs14{font-size:152.009989px;}
.fs3{font-size:153.944989px;}
.fs20{font-size:155.969994px;}
.fs2c{font-size:161.955002px;}
.fs21{font-size:161.999993px;}
.fs38{font-size:167.985002px;}
.fs1f{font-size:168.029993px;}
.fs5{font-size:169.425002px;}
.fs16{font-size:172.349988px;}
.fs35{font-size:173.969993px;}
.fs1a{font-size:191.969992px;}
.fs18{font-size:195.434992px;}
.fs27{font-size:197.955001px;}
.fs3a{font-size:197.999992px;}
.fs34{font-size:203.985001px;}
.fs32{font-size:204.705000px;}
.fs23{font-size:206.774996px;}
.fs37{font-size:221.985000px;}
.fs17{font-size:225.449982px;}
.fs30{font-size:233.954999px;}
.fs36{font-size:239.984999px;}
.fs1{font-size:246.419981px;}
.fs6{font-size:256.274994px;}
.fsa{font-size:262.844989px;}
.fs2b{font-size:269.954998px;}
.fs29{font-size:271.439989px;}
.fs15{font-size:283.409988px;}
.fs1d{font-size:301.410001px;}
.fs33{font-size:331.424995px;}
.fsf{font-size:357.929990px;}
.fse{font-size:360.809985px;}
.fs4{font-size:394.109993px;}
.fs39{font-size:395.999984px;}
.fs13{font-size:500.084966px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y100{bottom:23.609087px;}
.yc9{bottom:29.931839px;}
.y127{bottom:32.501929px;}
.y2{bottom:38.208418px;}
.y96{bottom:50.567794px;}
.y47{bottom:52.219510px;}
.yf1{bottom:57.441166px;}
.y60{bottom:65.183901px;}
.yff{bottom:67.484085px;}
.yc8{bottom:68.181837px;}
.ya0{bottom:71.686149px;}
.y75{bottom:74.866281px;}
.y126{bottom:83.126927px;}
.y46{bottom:84.844508px;}
.y95{bottom:96.692792px;}
.y45{bottom:116.344507px;}
.y5f{bottom:116.933899px;}
.yf0{bottom:119.316163px;}
.yc{bottom:119.917435px;}
.y9f{bottom:121.186147px;}
.yb3{bottom:125.626459px;}
.yce{bottom:129.221815px;}
.y74{bottom:129.991279px;}
.y125{bottom:133.751925px;}
.y44{bottom:144.551082px;}
.y50{bottom:144.965730px;}
.yc7{bottom:148.056834px;}
.y10d{bottom:155.782074px;}
.y18{bottom:160.331411px;}
.y1e{bottom:161.652665px;}
.yef{bottom:162.066161px;}
.yb2{bottom:166.126457px;}
.y9e{bottom:170.686145px;}
.ycd{bottom:171.971813px;}
.y6d{bottom:173.486945px;}
.y73{bottom:185.116276px;}
.yc6{bottom:186.306832px;}
.y35{bottom:186.540292px;}
.yb{bottom:188.895916px;}
.y2d{bottom:189.691336px;}
.y83{bottom:202.467484px;}
.y93{bottom:213.757299px;}
.ycc{bottom:214.721811px;}
.y118{bottom:216.140103px;}
.yab{bottom:220.226571px;}
.y5e{bottom:220.433895px;}
.y102{bottom:225.573579px;}
.y34{bottom:227.040291px;}
.y6c{bottom:233.111942px;}
.yf6{bottom:233.302850px;}
.y124{bottom:235.001921px;}
.ya{bottom:236.145914px;}
.y82{bottom:239.592482px;}
.y72{bottom:240.241274px;}
.y55{bottom:243.437174px;}
.y1d{bottom:247.152662px;}
.y17{bottom:249.206408px;}
.ycb{bottom:257.471809px;}
.y92{bottom:263.257297px;}
.y33{bottom:267.540289px;}
.yc5{bottom:268.431829px;}
.y101{bottom:269.448577px;}
.y5d{bottom:272.183893px;}
.ydf{bottom:274.544917px;}
.y54{bottom:274.937173px;}
.y117{bottom:279.140100px;}
.y123{bottom:285.626918px;}
.y6b{bottom:292.736940px;}
.y22{bottom:304.551023px;}
.yde{bottom:306.044915px;}
.y53{bottom:306.437171px;}
.yc4{bottom:306.681827px;}
.y10b{bottom:307.838291px;}
.y7e{bottom:312.373103px;}
.y91{bottom:312.757295px;}
.y5c{bottom:323.933891px;}
.ye5{bottom:326.945218px;}
.y9d{bottom:331.435102px;}
.y52{bottom:337.937170px;}
.y16{bottom:343.706404px;}
.yc3{bottom:344.931826px;}
.y1c{bottom:345.838162px;}
.y9{bottom:358.121235px;}
.y21{bottom:360.917661px;}
.y90{bottom:362.257293px;}
.yd9{bottom:366.541653px;}
.y51{bottom:369.437169px;}
.y4e{bottom:369.597801px;}
.y5b{bottom:375.683888px;}
.y9c{bottom:379.810100px;}
.y7d{bottom:382.440656px;}
.yc2{bottom:383.181824px;}
.y122{bottom:386.876914px;}
.y26{bottom:396.087247px;}
.y4d{bottom:400.299139px;}
.y116{bottom:400.789675px;}
.yd8{bottom:409.291651px;}
.y2b{bottom:409.626631px;}
.y8f{bottom:411.757291px;}
.y6a{bottom:411.986935px;}
.y10c{bottom:413.577055px;}
.y8{bottom:416.621233px;}
.y5a{bottom:427.433886px;}
.y9b{bottom:428.828526px;}
.yac{bottom:429.476562px;}
.yfa{bottom:431.067150px;}
.y25{bottom:434.337246px;}
.y15{bottom:437.081400px;}
.y121{bottom:437.501912px;}
.y7c{bottom:438.690654px;}
.yd7{bottom:452.041649px;}
.yf5{bottom:454.900121px;}
.y1b{bottom:454.919057px;}
.yc1{bottom:463.056821px;}
.y24{bottom:472.587244px;}
.yf9{bottom:474.942148px;}
.y7{bottom:475.121230px;}
.y4c{bottom:491.666200px;}
.y7b{bottom:493.815651px;}
.yf4{bottom:495.400119px;}
.yc0{bottom:501.306819px;}
.y130{bottom:507.599979px;}
.y23{bottom:510.837243px;}
.y20{bottom:517.872182px;}
.y4b{bottom:524.291198px;}
.y59{bottom:530.933795px;}
.y69{bottom:531.236930px;}
.y14{bottom:531.581396px;}
.y6{bottom:533.621228px;}
.yf3{bottom:535.900118px;}
.y8e{bottom:538.073373px;}
.y120{bottom:538.751908px;}
.ya6{bottom:539.740086px;}
.y7a{bottom:552.459660px;}
.y4a{bottom:556.916197px;}
.y12f{bottom:566.099976px;}
.y1f{bottom:573.267684px;}
.y115{bottom:573.446907px;}
.yf2{bottom:576.400116px;}
.yd6{bottom:578.334176px;}
.y58{bottom:582.683793px;}
.y49{bottom:587.291196px;}
.y8d{bottom:587.573371px;}
.ya5{bottom:589.240084px;}
.y11f{bottom:589.376906px;}
.y68{bottom:590.861884px;}
.ybf{bottom:592.053725px;}
.y5{bottom:592.121225px;}
.y1a{bottom:599.548468px;}
.y79{bottom:607.584657px;}
.y4f{bottom:616.549939px;}
.y48{bottom:616.848065px;}
.y87{bottom:619.143811px;}
.y13{bottom:623.831392px;}
.y12e{bottom:624.599974px;}
.yd5{bottom:627.834174px;}
.y57{bottom:634.433791px;}
.ybe{bottom:635.928724px;}
.y114{bottom:636.446904px;}
.y8c{bottom:637.073369px;}
.ya4{bottom:638.740082px;}
.y10{bottom:645.749973px;}
.y32{bottom:647.670163px;}
.yee{bottom:648.430285px;}
.y67{bottom:650.486882px;}
.y4{bottom:650.621223px;}
.y86{bottom:656.268809px;}
.yaf{bottom:659.314089px;}
.y78{bottom:663.834655px;}
.ye3{bottom:669.298418px;}
.y2e{bottom:676.004077px;}
.ybd{bottom:678.678722px;}
.y12d{bottom:683.099972px;}
.y8b{bottom:686.573367px;}
.y31{bottom:688.170161px;}
.ya3{bottom:688.240080px;}
.y11e{bottom:690.626902px;}
.yae{bottom:699.814087px;}
.ye2{bottom:700.798417px;}
.yd4{bottom:703.209171px;}
.y107{bottom:705.861269px;}
.y3{bottom:709.121220px;}
.y66{bottom:710.111879px;}
.y113{bottom:715.196901px;}
.y12{bottom:716.081388px;}
.y77{bottom:718.959653px;}
.yed{bottom:721.718340px;}
.ybc{bottom:722.235336px;}
.y30{bottom:728.670159px;}
.yf{bottom:730.124970px;}
.y8a{bottom:736.073365px;}
.ya2{bottom:737.740078px;}
.y43{bottom:738.186716px;}
.y11d{bottom:741.251900px;}
.y12c{bottom:741.599969px;}
.yd3{bottom:744.834169px;}
.yec{bottom:762.218338px;}
.y81{bottom:764.697406px;}
.y2f{bottom:769.170158px;}
.y112{bottom:769.196898px;}
.y42{bottom:769.686714px;}
.yb5{bottom:772.881163px;}
.y76{bottom:785.568657px;}
.ya1{bottom:786.781108px;}
.yad{bottom:787.226626px;}
.y89{bottom:787.823384px;}
.y11c{bottom:791.876897px;}
.yd2{bottom:794.334167px;}
.y12b{bottom:800.099967px;}
.y11{bottom:800.456385px;}
.y41{bottom:801.186713px;}
.y80{bottom:801.822405px;}
.yeb{bottom:806.093336px;}
.ydd{bottom:806.190655px;}
.yb4{bottom:806.631162px;}
.yfc{bottom:810.930685px;}
.ybb{bottom:816.393264px;}
.y10a{bottom:817.673301px;}
.y111{bottom:822.071896px;}
.ye{bottom:829.124965px;}
.y65{bottom:829.361896px;}
.y40{bottom:832.686712px;}
.y88{bottom:837.323382px;}
.ydc{bottom:837.690654px;}
.y19{bottom:844.117633px;}
.y106{bottom:846.660486px;}
.yfb{bottom:846.930684px;}
.yea{bottom:849.968335px;}
.y7f{bottom:852.590222px;}
.yd1{bottom:856.209165px;}
.y3c{bottom:857.750843px;}
.y12a{bottom:858.599964px;}
.yba{bottom:859.143262px;}
.y3f{bottom:868.686710px;}
.y110{bottom:872.696894px;}
.y2a{bottom:879.371528px;}
.y64{bottom:888.986893px;}
.y105{bottom:890.535484px;}
.ye8{bottom:892.456091px;}
.ye9{bottom:892.718333px;}
.yaa{bottom:892.936082px;}
.y11b{bottom:893.126893px;}
.y3b{bottom:893.750842px;}
.y2c{bottom:895.939328px;}
.yd0{bottom:898.959163px;}
.yb9{bottom:903.018260px;}
.yb8{bottom:903.305176px;}
.y56{bottom:906.618335px;}
.y29{bottom:917.621526px;}
.y109{bottom:918.323620px;}
.y85{bottom:922.055016px;}
.y10f{bottom:923.321892px;}
.yfe{bottom:924.314354px;}
.y3a{bottom:929.750840px;}
.y104{bottom:930.208234px;}
.y3e{bottom:935.061707px;}
.y129{bottom:939.599961px;}
.ycf{bottom:941.709161px;}
.ya9{bottom:942.436080px;}
.y11a{bottom:943.751891px;}
.yb7{bottom:947.549164px;}
.ye7{bottom:948.975275px;}
.yd{bottom:950.710457px;}
.y84{bottom:952.430015px;}
.y28{bottom:955.871525px;}
.yb1{bottom:962.014464px;}
.y39{bottom:965.750839px;}
.yfd{bottom:968.189352px;}
.y103{bottom:974.083233px;}
.ye1{bottom:984.357204px;}
.y71{bottom:984.687860px;}
.ya8{bottom:991.936078px;}
.y27{bottom:994.121523px;}
.y119{bottom:994.376889px;}
.ye6{bottom:999.600273px;}
.y38{bottom:1001.750837px;}
.yb0{bottom:1002.514462px;}
.yca{bottom:1006.247212px;}
.y62{bottom:1007.581454px;}
.y63{bottom:1008.236888px;}
.y94{bottom:1021.925204px;}
.ydb{bottom:1022.005581px;}
.ye0{bottom:1022.607202px;}
.y37{bottom:1037.750836px;}
.yf8{bottom:1038.850335px;}
.ya7{bottom:1041.436076px;}
.y9a{bottom:1041.724083px;}
.y6f{bottom:1052.015605px;}
.y70{bottom:1052.187847px;}
.y108{bottom:1053.727829px;}
.y10e{bottom:1065.407586px;}
.y36{bottom:1073.750834px;}
.yda{bottom:1079.337335px;}
.y98{bottom:1091.002779px;}
.y99{bottom:1091.392810px;}
.y3d{bottom:1100.165578px;}
.y61{bottom:1110.661030px;}
.ye4{bottom:1111.209703px;}
.yf7{bottom:1114.225332px;}
.y6e{bottom:1122.926633px;}
.yb6{bottom:1126.040581px;}
.y128{bottom:1126.357826px;}
.y97{bottom:1144.711718px;}
.h15{height:80.049597px;}
.h1f{height:81.705981px;}
.h14{height:83.110317px;}
.h30{height:83.695778px;}
.h10{height:84.691622px;}
.hc{height:86.162441px;}
.h2c{height:88.384764px;}
.h27{height:89.234469px;}
.he{height:90.823635px;}
.hf{height:95.450040px;}
.h39{height:97.564519px;}
.h2a{height:97.577882px;}
.h2b{height:97.702423px;}
.h34{height:102.024401px;}
.h29{height:106.907273px;}
.h1c{height:107.567996px;}
.h5{height:107.832056px;}
.h13{height:108.041845px;}
.hb{height:109.335550px;}
.h25{height:110.179683px;}
.ha{height:110.314567px;}
.h3{height:111.288872px;}
.h20{height:111.492461px;}
.h22{height:111.699319px;}
.h35{height:112.697271px;}
.h1d{height:113.327995px;}
.h36{height:114.031431px;}
.h37{height:114.266879px;}
.h2e{height:115.090915px;}
.h17{height:117.503722px;}
.h24{height:119.490683px;}
.h6{height:119.615257px;}
.h42{height:124.075878px;}
.h26{height:124.110346px;}
.h33{height:125.839037px;}
.h40{height:127.620542px;}
.h23{height:128.730009px;}
.h8{height:131.643227px;}
.h19{height:132.039615px;}
.h41{height:132.372182px;}
.h3d{height:134.478804px;}
.h32{height:141.224762px;}
.h2d{height:150.399405px;}
.h44{height:156.419993px;}
.h3c{height:158.496345px;}
.h3a{height:159.055785px;}
.h3f{height:160.852412px;}
.h9{height:174.312044px;}
.h1e{height:174.500723px;}
.h1b{height:177.650408px;}
.hd{height:178.780796px;}
.h28{height:186.304271px;}
.h1a{height:204.934033px;}
.h3e{height:209.266919px;}
.h38{height:210.793454px;}
.h18{height:212.557491px;}
.h4{height:213.451683px;}
.h3b{height:235.974597px;}
.h31{height:243.229453px;}
.h2f{height:244.567430px;}
.h21{height:271.570411px;}
.h11{height:280.349358px;}
.h12{height:281.690902px;}
.h7{height:310.164564px;}
.h43{height:312.839987px;}
.h16{height:356.060496px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x2a{left:25.103560px;}
.x29{left:29.304731px;}
.x26{left:32.908247px;}
.x5a{left:40.407746px;}
.x56{left:41.750998px;}
.x67{left:44.411625px;}
.x59{left:48.166873px;}
.x68{left:61.206744px;}
.x39{left:72.451405px;}
.x58{left:95.944489px;}
.x3a{left:97.500232px;}
.x44{left:99.953992px;}
.x66{left:113.246999px;}
.x28{left:115.789103px;}
.x38{left:121.758745px;}
.x65{left:132.483368px;}
.x25{left:148.150430px;}
.x80{left:152.474628px;}
.x45{left:161.812106px;}
.x3b{left:166.002182px;}
.x33{left:172.177859px;}
.x2d{left:175.060112px;}
.x47{left:180.539992px;}
.x55{left:190.159883px;}
.x2b{left:220.220745px;}
.x57{left:232.072878px;}
.x6{left:239.213575px;}
.x49{left:246.845247px;}
.x4d{left:249.393374px;}
.x27{left:258.541056px;}
.x5{left:264.139355px;}
.x7e{left:275.542855px;}
.x4{left:278.553417px;}
.x2f{left:294.811865px;}
.x69{left:300.845510px;}
.x7{left:302.916697px;}
.x3{left:322.604197px;}
.x7b{left:339.546366px;}
.x2e{left:341.050504px;}
.x4a{left:348.991862px;}
.x4b{left:376.430611px;}
.x6b{left:379.100506px;}
.x2{left:398.365912px;}
.x7c{left:417.886859px;}
.x9{left:434.262772px;}
.x1{left:435.814830px;}
.x4c{left:438.821964px;}
.xa{left:448.835037px;}
.x48{left:452.580756px;}
.x6c{left:456.760659px;}
.x7a{left:474.999723px;}
.x36{left:476.620864px;}
.xe{left:489.845237px;}
.x37{left:514.114870px;}
.x7f{left:537.298836px;}
.x77{left:540.785235px;}
.x8{left:548.184265px;}
.x79{left:552.840709px;}
.x76{left:559.149720px;}
.x78{left:563.745343px;}
.x34{left:566.182110px;}
.xc{left:588.363725px;}
.x6d{left:611.892651px;}
.x10{left:630.123742px;}
.x12{left:636.447969px;}
.xd{left:637.882893px;}
.x6e{left:644.711009px;}
.x46{left:648.185553px;}
.x11{left:693.861703px;}
.x35{left:701.384587px;}
.x5b{left:702.843739px;}
.x7d{left:728.445390px;}
.x1b{left:749.050817px;}
.x24{left:760.882114px;}
.x30{left:768.748432px;}
.xf{left:774.078736px;}
.x1f{left:793.430827px;}
.x6f{left:802.979440px;}
.x22{left:808.237581px;}
.x20{left:813.188639px;}
.x1e{left:821.028483px;}
.x23{left:836.538361px;}
.x70{left:842.073188px;}
.x2c{left:913.541542px;}
.x71{left:915.700462px;}
.x32{left:918.213730px;}
.x21{left:941.983556px;}
.x13{left:974.151075px;}
.x6a{left:988.554471px;}
.x15{left:1003.365918px;}
.x73{left:1014.312255px;}
.x14{left:1044.112010px;}
.x19{left:1056.143639px;}
.x18{left:1059.079186px;}
.x4e{left:1082.432845px;}
.x16{left:1107.112007px;}
.x17{left:1108.157309px;}
.x4f{left:1128.294171px;}
.x74{left:1154.603265px;}
.x3c{left:1184.349044px;}
.x1a{left:1194.659258px;}
.x50{left:1227.206716px;}
.x3d{left:1234.253339px;}
.x3e{left:1239.608366px;}
.x5d{left:1244.631060px;}
.x5e{left:1260.785356px;}
.xb{left:1286.628786px;}
.x75{left:1295.830598px;}
.x3f{left:1329.256800px;}
.x5f{left:1337.818753px;}
.x60{left:1357.084377px;}
.x51{left:1382.562179px;}
.x61{left:1404.580205px;}
.x1c{left:1422.921289px;}
.x40{left:1425.724493px;}
.x1d{left:1441.912368px;}
.x5c{left:1443.707940px;}
.x31{left:1468.125983px;}
.x41{left:1479.091678px;}
.x62{left:1485.773561px;}
.x52{left:1541.094006px;}
.x72{left:1569.120299px;}
.x53{left:1963.477202px;}
.x42{left:1998.791273px;}
.x54{left:2021.151028px;}
.x63{left:2022.725851px;}
.x43{left:2039.414318px;}
.x64{left:2045.401631px;}
@media print{
.v1{vertical-align:-57.256830pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.006000pt;}
.ls10{letter-spacing:0.007198pt;}
.ls7{letter-spacing:0.014883pt;}
.ls11{letter-spacing:0.032032pt;}
.ls12{letter-spacing:0.032052pt;}
.lsa{letter-spacing:0.037300pt;}
.ls4{letter-spacing:0.048573pt;}
.ls14{letter-spacing:0.050000pt;}
.ls8{letter-spacing:0.139883pt;}
.lsd{letter-spacing:0.162300pt;}
.lsc{letter-spacing:0.287300pt;}
.lsb{letter-spacing:0.724800pt;}
.ls9{letter-spacing:1.412300pt;}
.lse{letter-spacing:1.533202pt;}
.ls13{letter-spacing:1.714637pt;}
.ls6{letter-spacing:1.919983pt;}
.ls5{letter-spacing:1.937500pt;}
.lsf{letter-spacing:2.186102pt;}
.ls2{letter-spacing:12.125199pt;}
.ls1{letter-spacing:14.764197pt;}
.ws9{word-spacing:-260.933222pt;}
.ws1c{word-spacing:-181.279992pt;}
.ws2{word-spacing:-105.446318pt;}
.ws18{word-spacing:-98.660000pt;}
.ws19{word-spacing:-96.628799pt;}
.ws0{word-spacing:-52.620934pt;}
.ws3{word-spacing:-40.360800pt;}
.wsb{word-spacing:-39.796092pt;}
.wsa{word-spacing:-37.833597pt;}
.ws1b{word-spacing:-37.395861pt;}
.wsf{word-spacing:-36.013905pt;}
.ws11{word-spacing:-35.169982pt;}
.wse{word-spacing:-33.603280pt;}
.wsc{word-spacing:-33.535999pt;}
.ws10{word-spacing:-33.249999pt;}
.ws8{word-spacing:-33.124799pt;}
.ws14{word-spacing:-32.849599pt;}
.ws16{word-spacing:-32.547198pt;}
.ws13{word-spacing:-29.447031pt;}
.ws17{word-spacing:-29.405467pt;}
.ws6{word-spacing:-29.243200pt;}
.ws12{word-spacing:-27.119531pt;}
.ws7{word-spacing:-26.569921pt;}
.ws15{word-spacing:-25.436249pt;}
.wsd{word-spacing:-24.625782pt;}
.ws1a{word-spacing:-1.858597pt;}
.ws5{word-spacing:-0.233640pt;}
.ws4{word-spacing:-0.227800pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-2660.223838pt;}
._1c{margin-left:-0.900730pt;}
._18{width:1.664664pt;}
._1d{width:2.592482pt;}
._15{width:3.516552pt;}
._1e{width:4.576826pt;}
._0{width:6.133740pt;}
._2{width:7.513293pt;}
._a{width:8.403173pt;}
._8{width:9.697316pt;}
._7{width:11.379441pt;}
._6{width:12.357167pt;}
._14{width:13.409031pt;}
._4{width:14.727841pt;}
._b{width:16.014187pt;}
._5{width:18.647800pt;}
._9{width:22.889336pt;}
._1f{width:23.953685pt;}
._20{width:25.577147pt;}
._24{width:26.629506pt;}
._17{width:29.925836pt;}
._c{width:31.149895pt;}
._3{width:34.326401pt;}
._11{width:37.102772pt;}
._13{width:43.548255pt;}
._21{width:47.689587pt;}
._e{width:51.124954pt;}
._10{width:53.628087pt;}
._d{width:54.747821pt;}
._26{width:55.931163pt;}
._16{width:71.376354pt;}
._25{width:73.655406pt;}
._12{width:85.244996pt;}
._19{width:99.227064pt;}
._f{width:125.521422pt;}
._1a{width:146.911981pt;}
._28{width:163.093951pt;}
._27{width:164.190187pt;}
._23{width:310.089376pt;}
._22{width:311.202775pt;}
._1{width:632.083179pt;}
.fs12{font-size:81.599997pt;}
.fs11{font-size:84.719996pt;}
.fs1b{font-size:94.800000pt;}
.fs2a{font-size:97.919996pt;}
.fs9{font-size:99.079996pt;}
.fs26{font-size:102.679996pt;}
.fs22{font-size:104.399996pt;}
.fsb{font-size:104.440000pt;}
.fsc{font-size:109.759999pt;}
.fsd{font-size:110.599995pt;}
.fs31{font-size:113.199991pt;}
.fs25{font-size:113.359995pt;}
.fs2d{font-size:114.879991pt;}
.fs2e{font-size:116.239991pt;}
.fs2f{font-size:116.479999pt;}
.fs28{font-size:117.319995pt;}
.fs2{font-size:123.359995pt;}
.fs10{font-size:123.599995pt;}
.fs24{font-size:124.039995pt;}
.fs8{font-size:125.079995pt;}
.fs7{font-size:126.199991pt;}
.fs19{font-size:127.999995pt;}
.fs1c{font-size:129.359995pt;}
.fs1e{font-size:129.600003pt;}
.fs0{font-size:133.320002pt;}
.fs14{font-size:135.119990pt;}
.fs3{font-size:136.839990pt;}
.fs20{font-size:138.639994pt;}
.fs2c{font-size:143.960002pt;}
.fs21{font-size:143.999994pt;}
.fs38{font-size:149.320002pt;}
.fs1f{font-size:149.359994pt;}
.fs5{font-size:150.600002pt;}
.fs16{font-size:153.199990pt;}
.fs35{font-size:154.639994pt;}
.fs1a{font-size:170.639993pt;}
.fs18{font-size:173.719993pt;}
.fs27{font-size:175.960001pt;}
.fs3a{font-size:175.999993pt;}
.fs34{font-size:181.320000pt;}
.fs32{font-size:181.960000pt;}
.fs23{font-size:183.799996pt;}
.fs37{font-size:197.320000pt;}
.fs17{font-size:200.399984pt;}
.fs30{font-size:207.959999pt;}
.fs36{font-size:213.319999pt;}
.fs1{font-size:219.039983pt;}
.fs6{font-size:227.799995pt;}
.fsa{font-size:233.639990pt;}
.fs2b{font-size:239.959998pt;}
.fs29{font-size:241.279990pt;}
.fs15{font-size:251.919990pt;}
.fs1d{font-size:267.920001pt;}
.fs33{font-size:294.599996pt;}
.fsf{font-size:318.159991pt;}
.fse{font-size:320.719987pt;}
.fs4{font-size:350.319993pt;}
.fs39{font-size:351.999985pt;}
.fs13{font-size:444.519969pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y100{bottom:20.985855pt;}
.yc9{bottom:26.606079pt;}
.y127{bottom:28.890604pt;}
.y2{bottom:33.963039pt;}
.y96{bottom:44.949150pt;}
.y47{bottom:46.417342pt;}
.yf1{bottom:51.058814pt;}
.y60{bottom:57.941246pt;}
.yff{bottom:59.985854pt;}
.yc8{bottom:60.606077pt;}
.ya0{bottom:63.721021pt;}
.y75{bottom:66.547805pt;}
.y126{bottom:73.890602pt;}
.y46{bottom:75.417341pt;}
.y95{bottom:85.949148pt;}
.y45{bottom:103.417340pt;}
.y5f{bottom:103.941244pt;}
.yf0{bottom:106.058812pt;}
.yc{bottom:106.593276pt;}
.y9f{bottom:107.721020pt;}
.yb3{bottom:111.667963pt;}
.yce{bottom:114.863835pt;}
.y74{bottom:115.547803pt;}
.y125{bottom:118.890600pt;}
.y44{bottom:128.489851pt;}
.y50{bottom:128.858427pt;}
.yc7{bottom:131.606075pt;}
.y10d{bottom:138.472954pt;}
.y18{bottom:142.516810pt;}
.y1e{bottom:143.691258pt;}
.yef{bottom:144.058810pt;}
.yb2{bottom:147.667962pt;}
.y9e{bottom:151.721018pt;}
.ycd{bottom:152.863834pt;}
.y6d{bottom:154.210618pt;}
.y73{bottom:164.547801pt;}
.yc6{bottom:165.606073pt;}
.y35{bottom:165.813593pt;}
.yb{bottom:167.907481pt;}
.y2d{bottom:168.614521pt;}
.y83{bottom:179.971097pt;}
.y93{bottom:190.006488pt;}
.ycc{bottom:190.863832pt;}
.y118{bottom:192.124536pt;}
.yab{bottom:195.756952pt;}
.y5e{bottom:195.941240pt;}
.y102{bottom:200.509848pt;}
.y34{bottom:201.813592pt;}
.y6c{bottom:207.210615pt;}
.yf6{bottom:207.380311pt;}
.y124{bottom:208.890596pt;}
.ya{bottom:209.907479pt;}
.y82{bottom:212.971095pt;}
.y72{bottom:213.547799pt;}
.y55{bottom:216.388599pt;}
.y1d{bottom:219.691255pt;}
.y17{bottom:221.516807pt;}
.ycb{bottom:228.863830pt;}
.y92{bottom:234.006486pt;}
.y33{bottom:237.813590pt;}
.yc5{bottom:238.606070pt;}
.y101{bottom:239.509846pt;}
.y5d{bottom:241.941238pt;}
.ydf{bottom:244.039926pt;}
.y54{bottom:244.388598pt;}
.y117{bottom:248.124534pt;}
.y123{bottom:253.890594pt;}
.y6b{bottom:260.210613pt;}
.y22{bottom:270.712021pt;}
.yde{bottom:272.039925pt;}
.y53{bottom:272.388597pt;}
.yc4{bottom:272.606069pt;}
.y10b{bottom:273.634037pt;}
.y7e{bottom:277.664980pt;}
.y91{bottom:278.006484pt;}
.y5c{bottom:287.941236pt;}
.ye5{bottom:290.617972pt;}
.y9d{bottom:294.608980pt;}
.y52{bottom:300.388595pt;}
.y16{bottom:305.516803pt;}
.yc3{bottom:306.606067pt;}
.y1c{bottom:307.411699pt;}
.y9{bottom:318.329987pt;}
.y21{bottom:320.815699pt;}
.y90{bottom:322.006483pt;}
.yd9{bottom:325.814802pt;}
.y51{bottom:328.388594pt;}
.y4e{bottom:328.531378pt;}
.y5b{bottom:333.941234pt;}
.y9c{bottom:337.608978pt;}
.y7d{bottom:339.947250pt;}
.yc2{bottom:340.606066pt;}
.y122{bottom:343.890590pt;}
.y26{bottom:352.077553pt;}
.y4d{bottom:355.821457pt;}
.y116{bottom:356.257489pt;}
.yd8{bottom:363.814801pt;}
.y2b{bottom:364.112561pt;}
.y8f{bottom:366.006481pt;}
.y6a{bottom:366.210609pt;}
.y10c{bottom:367.624049pt;}
.y8{bottom:370.329985pt;}
.y5a{bottom:379.941232pt;}
.y9b{bottom:381.180912pt;}
.yac{bottom:381.756944pt;}
.yfa{bottom:383.170800pt;}
.y25{bottom:386.077552pt;}
.y15{bottom:388.516800pt;}
.y121{bottom:388.890589pt;}
.y7c{bottom:389.947248pt;}
.yd7{bottom:401.814799pt;}
.yf5{bottom:404.355663pt;}
.y1b{bottom:404.372495pt;}
.yc1{bottom:411.606063pt;}
.y24{bottom:420.077550pt;}
.yf9{bottom:422.170798pt;}
.y7{bottom:422.329982pt;}
.y4c{bottom:437.036622pt;}
.y7b{bottom:438.947246pt;}
.yf4{bottom:440.355662pt;}
.yc0{bottom:445.606061pt;}
.y130{bottom:451.199981pt;}
.y23{bottom:454.077549pt;}
.y20{bottom:460.330829pt;}
.y4b{bottom:466.036621pt;}
.y59{bottom:471.941152pt;}
.y69{bottom:472.210604pt;}
.y14{bottom:472.516796pt;}
.y6{bottom:474.329980pt;}
.yf3{bottom:476.355660pt;}
.y8e{bottom:478.287442pt;}
.y120{bottom:478.890585pt;}
.ya6{bottom:479.768966pt;}
.y7a{bottom:491.075253pt;}
.y4a{bottom:495.036619pt;}
.y12f{bottom:503.199979pt;}
.y1f{bottom:509.571275pt;}
.y115{bottom:509.730584pt;}
.yf2{bottom:512.355659pt;}
.yd6{bottom:514.074823pt;}
.y58{bottom:517.941150pt;}
.y49{bottom:522.036618pt;}
.y8d{bottom:522.287441pt;}
.ya5{bottom:523.768964pt;}
.y11f{bottom:523.890583pt;}
.y68{bottom:525.210564pt;}
.ybf{bottom:526.269978pt;}
.y5{bottom:526.329978pt;}
.y1a{bottom:532.931971pt;}
.y79{bottom:540.075251pt;}
.y4f{bottom:548.044390pt;}
.y48{bottom:548.309392pt;}
.y87{bottom:550.350054pt;}
.y13{bottom:554.516793pt;}
.y12e{bottom:555.199977pt;}
.yd5{bottom:558.074822pt;}
.y57{bottom:563.941148pt;}
.ybe{bottom:565.269976pt;}
.y114{bottom:565.730581pt;}
.y8c{bottom:566.287439pt;}
.ya4{bottom:567.768962pt;}
.y10{bottom:573.999976pt;}
.y32{bottom:575.706811pt;}
.yee{bottom:576.382475pt;}
.y67{bottom:578.210562pt;}
.y4{bottom:578.329976pt;}
.y86{bottom:583.350052pt;}
.yaf{bottom:586.056968pt;}
.y78{bottom:590.075249pt;}
.ye3{bottom:594.931927pt;}
.y2e{bottom:600.892513pt;}
.ybd{bottom:603.269975pt;}
.y12d{bottom:607.199975pt;}
.y8b{bottom:610.287437pt;}
.y31{bottom:611.706810pt;}
.ya3{bottom:611.768960pt;}
.y11e{bottom:613.890579pt;}
.yae{bottom:622.056966pt;}
.ye2{bottom:622.931926pt;}
.yd4{bottom:625.074819pt;}
.y107{bottom:627.432239pt;}
.y3{bottom:630.329974pt;}
.y66{bottom:631.210559pt;}
.y113{bottom:635.730578pt;}
.y12{bottom:636.516789pt;}
.y77{bottom:639.075247pt;}
.yed{bottom:641.527413pt;}
.ybc{bottom:641.986965pt;}
.y30{bottom:647.706808pt;}
.yf{bottom:648.999973pt;}
.y8a{bottom:654.287435pt;}
.ya2{bottom:655.768958pt;}
.y43{bottom:656.165969pt;}
.y11d{bottom:658.890577pt;}
.y12c{bottom:659.199973pt;}
.yd3{bottom:662.074817pt;}
.yec{bottom:677.527412pt;}
.y81{bottom:679.731028pt;}
.y2f{bottom:683.706807pt;}
.y112{bottom:683.730576pt;}
.y42{bottom:684.165968pt;}
.yb5{bottom:687.005479pt;}
.y76{bottom:698.283251pt;}
.ya1{bottom:699.360985pt;}
.yad{bottom:699.757001pt;}
.y89{bottom:700.287452pt;}
.y11c{bottom:703.890575pt;}
.yd2{bottom:706.074815pt;}
.y12b{bottom:711.199970pt;}
.y11{bottom:711.516786pt;}
.y41{bottom:712.165967pt;}
.y80{bottom:712.731026pt;}
.yeb{bottom:716.527410pt;}
.ydd{bottom:716.613916pt;}
.yb4{bottom:717.005477pt;}
.yfc{bottom:720.827276pt;}
.ybb{bottom:725.682901pt;}
.y10a{bottom:726.820712pt;}
.y111{bottom:730.730574pt;}
.ye{bottom:736.999969pt;}
.y65{bottom:737.210574pt;}
.y40{bottom:740.165966pt;}
.y88{bottom:744.287451pt;}
.ydc{bottom:744.613915pt;}
.y19{bottom:750.326785pt;}
.y106{bottom:752.587098pt;}
.yfb{bottom:752.827274pt;}
.yea{bottom:755.527409pt;}
.y7f{bottom:757.857975pt;}
.yd1{bottom:761.074813pt;}
.y3c{bottom:762.445194pt;}
.y12a{bottom:763.199968pt;}
.yba{bottom:763.682899pt;}
.y3f{bottom:772.165965pt;}
.y110{bottom:775.730572pt;}
.y2a{bottom:781.663580pt;}
.y64{bottom:790.210572pt;}
.y105{bottom:791.587097pt;}
.ye8{bottom:793.294303pt;}
.ye9{bottom:793.527407pt;}
.yaa{bottom:793.720962pt;}
.y11b{bottom:793.890572pt;}
.y3b{bottom:794.445192pt;}
.y2c{bottom:796.390514pt;}
.yd0{bottom:799.074812pt;}
.yb9{bottom:802.682898pt;}
.yb8{bottom:802.937935pt;}
.y56{bottom:805.882965pt;}
.y29{bottom:815.663579pt;}
.y109{bottom:816.287662pt;}
.y85{bottom:819.604459pt;}
.y10f{bottom:820.730571pt;}
.yfe{bottom:821.612759pt;}
.y3a{bottom:826.445191pt;}
.y104{bottom:826.851764pt;}
.y3e{bottom:831.165962pt;}
.y129{bottom:835.199965pt;}
.ycf{bottom:837.074810pt;}
.ya9{bottom:837.720960pt;}
.y11a{bottom:838.890570pt;}
.yb7{bottom:842.265923pt;}
.ye7{bottom:843.533578pt;}
.yd{bottom:845.075962pt;}
.y84{bottom:846.604458pt;}
.y28{bottom:849.663577pt;}
.yb1{bottom:855.123968pt;}
.y39{bottom:858.445190pt;}
.yfd{bottom:860.612758pt;}
.y103{bottom:865.851762pt;}
.ye1{bottom:874.984181pt;}
.y71{bottom:875.278098pt;}
.ya8{bottom:881.720958pt;}
.y27{bottom:883.663576pt;}
.y119{bottom:883.890568pt;}
.ye6{bottom:888.533576pt;}
.y38{bottom:890.445188pt;}
.yb0{bottom:891.123966pt;}
.yca{bottom:894.441966pt;}
.y62{bottom:895.627959pt;}
.y63{bottom:896.210567pt;}
.y94{bottom:908.377959pt;}
.ydb{bottom:908.449405pt;}
.ye0{bottom:908.984180pt;}
.y37{bottom:922.445187pt;}
.yf8{bottom:923.422520pt;}
.ya7{bottom:925.720957pt;}
.y9a{bottom:925.976963pt;}
.y6f{bottom:935.124982pt;}
.y70{bottom:935.278086pt;}
.y108{bottom:936.646959pt;}
.y10e{bottom:947.028965pt;}
.y36{bottom:954.445186pt;}
.yda{bottom:959.410965pt;}
.y98{bottom:969.780248pt;}
.y99{bottom:970.126942pt;}
.y3d{bottom:977.924958pt;}
.y61{bottom:987.254248pt;}
.ye4{bottom:987.741958pt;}
.yf7{bottom:990.422517pt;}
.y6e{bottom:998.157007pt;}
.yb6{bottom:1000.924961pt;}
.y128{bottom:1001.206957pt;}
.y97{bottom:1017.521528pt;}
.h15{height:71.155197pt;}
.h1f{height:72.627539pt;}
.h14{height:73.875837pt;}
.h30{height:74.396247pt;}
.h10{height:75.281442pt;}
.hc{height:76.588837pt;}
.h2c{height:78.564235pt;}
.h27{height:79.319528pt;}
.he{height:80.732120pt;}
.hf{height:84.844480pt;}
.h39{height:86.724017pt;}
.h2a{height:86.735895pt;}
.h2b{height:86.846598pt;}
.h34{height:90.688356pt;}
.h29{height:95.028687pt;}
.h1c{height:95.615996pt;}
.h5{height:95.850716pt;}
.h13{height:96.037196pt;}
.hb{height:97.187156pt;}
.h25{height:97.937496pt;}
.ha{height:98.057393pt;}
.h3{height:98.923442pt;}
.h20{height:99.104410pt;}
.h22{height:99.288283pt;}
.h35{height:100.175352pt;}
.h1d{height:100.735996pt;}
.h36{height:101.361272pt;}
.h37{height:101.570559pt;}
.h2e{height:102.303036pt;}
.h17{height:104.447753pt;}
.h24{height:106.213941pt;}
.h6{height:106.324672pt;}
.h42{height:110.289670pt;}
.h26{height:110.320308pt;}
.h33{height:111.856922pt;}
.h40{height:113.440482pt;}
.h23{height:114.426675pt;}
.h8{height:117.016201pt;}
.h19{height:117.368547pt;}
.h41{height:117.664161pt;}
.h3d{height:119.536715pt;}
.h32{height:125.533122pt;}
.h2d{height:133.688360pt;}
.h44{height:139.039994pt;}
.h3c{height:140.885640pt;}
.h3a{height:141.382920pt;}
.h3f{height:142.979922pt;}
.h9{height:154.944039pt;}
.h1e{height:155.111754pt;}
.h1b{height:157.911473pt;}
.hd{height:158.916263pt;}
.h28{height:165.603797pt;}
.h1a{height:182.163585pt;}
.h3e{height:186.015039pt;}
.h38{height:187.371959pt;}
.h18{height:188.939992pt;}
.h4{height:189.734829pt;}
.h3b{height:209.755197pt;}
.h31{height:216.203958pt;}
.h2f{height:217.393271pt;}
.h21{height:241.395921pt;}
.h11{height:249.199430pt;}
.h12{height:250.391913pt;}
.h7{height:275.701835pt;}
.h43{height:278.079988pt;}
.h16{height:316.498218pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:22.314275pt;}
.x29{left:26.048650pt;}
.x26{left:29.251775pt;}
.x5a{left:35.917997pt;}
.x56{left:37.111998pt;}
.x67{left:39.477000pt;}
.x59{left:42.814998pt;}
.x68{left:54.405995pt;}
.x39{left:64.401249pt;}
.x58{left:85.283990pt;}
.x3a{left:86.666873pt;}
.x44{left:88.847993pt;}
.x66{left:100.663999pt;}
.x28{left:102.923647pt;}
.x38{left:108.229995pt;}
.x65{left:117.762993pt;}
.x25{left:131.689271pt;}
.x80{left:135.533002pt;}
.x45{left:143.832983pt;}
.x3b{left:147.557495pt;}
.x33{left:153.046986pt;}
.x2d{left:155.608989pt;}
.x47{left:160.479993pt;}
.x55{left:169.031007pt;}
.x2b{left:195.751773pt;}
.x57{left:206.287003pt;}
.x6{left:212.634289pt;}
.x49{left:219.417997pt;}
.x4d{left:221.682999pt;}
.x27{left:229.814272pt;}
.x5{left:234.790538pt;}
.x7e{left:244.926982pt;}
.x4{left:247.603037pt;}
.x2f{left:262.054991pt;}
.x69{left:267.418231pt;}
.x7{left:269.259287pt;}
.x3{left:286.759286pt;}
.x7b{left:301.818992pt;}
.x2e{left:303.156003pt;}
.x4a{left:310.214989pt;}
.x4b{left:334.604988pt;}
.x6b{left:336.978228pt;}
.x2{left:354.103033pt;}
.x7c{left:371.454986pt;}
.x9{left:386.011353pt;}
.x1{left:387.390960pt;}
.x4c{left:390.063968pt;}
.xa{left:398.964477pt;}
.x48{left:402.294006pt;}
.x6c{left:406.009475pt;}
.x7a{left:422.221976pt;}
.x36{left:423.662990pt;}
.xe{left:435.417988pt;}
.x37{left:456.990995pt;}
.x7f{left:477.598966pt;}
.x77{left:480.697986pt;}
.x8{left:487.274902pt;}
.x79{left:491.413964pt;}
.x76{left:497.021973pt;}
.x78{left:501.106971pt;}
.x34{left:503.272987pt;}
.xc{left:522.989978pt;}
.x6d{left:543.904578pt;}
.x10{left:560.109993pt;}
.x12{left:565.731528pt;}
.xd{left:567.007016pt;}
.x6e{left:573.076452pt;}
.x46{left:576.164936pt;}
.x11{left:616.765958pt;}
.x35{left:623.452966pt;}
.x5b{left:624.749990pt;}
.x7d{left:647.507013pt;}
.x1b{left:665.822948pt;}
.x24{left:676.339657pt;}
.x30{left:683.331940pt;}
.xf{left:688.069987pt;}
.x1f{left:705.271847pt;}
.x6f{left:713.759502pt;}
.x22{left:718.433405pt;}
.x20{left:722.834346pt;}
.x1e{left:729.803096pt;}
.x23{left:743.589654pt;}
.x70{left:748.509501pt;}
.x2c{left:812.036926pt;}
.x71{left:813.955966pt;}
.x32{left:816.189982pt;}
.x21{left:837.318716pt;}
.x13{left:865.912067pt;}
.x6a{left:878.715085pt;}
.x15{left:891.880816pt;}
.x73{left:901.610893pt;}
.x14{left:928.099564pt;}
.x19{left:938.794346pt;}
.x18{left:941.403721pt;}
.x4e{left:962.162529pt;}
.x16{left:984.099562pt;}
.x17{left:985.028719pt;}
.x4f{left:1002.928152pt;}
.x74{left:1026.314013pt;}
.x3c{left:1052.754706pt;}
.x1a{left:1061.919341pt;}
.x50{left:1090.850415pt;}
.x3d{left:1097.114079pt;}
.x3e{left:1101.874103pt;}
.x5d{left:1106.338720pt;}
.x5e{left:1120.698094pt;}
.xb{left:1143.670032pt;}
.x75{left:1151.849420pt;}
.x3f{left:1181.561600pt;}
.x5f{left:1189.172224pt;}
.x60{left:1206.297224pt;}
.x51{left:1228.944159pt;}
.x61{left:1248.515738pt;}
.x1c{left:1264.818923pt;}
.x40{left:1267.310660pt;}
.x1d{left:1281.699883pt;}
.x5c{left:1283.295947pt;}
.x31{left:1305.000874pt;}
.x41{left:1314.748158pt;}
.x62{left:1320.687610pt;}
.x52{left:1369.861339pt;}
.x72{left:1394.773599pt;}
.x53{left:1745.313068pt;}
.x42{left:1776.703354pt;}
.x54{left:1796.578691pt;}
.x63{left:1797.978534pt;}
.x43{left:1812.812727pt;}
.x64{left:1818.134783pt;}
}




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