
    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_59c0a3483eed5e13a21c2dcb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8319498c6632b0ea676a11e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988000;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_6442f69b5b22324a81163052.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713867;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_f908a0d8e520ad12e8fb05a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.729004;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_df4f3c083586d36ca14e1b9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.713867;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_7cc116b30947eaeb1174fef2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005000;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_f908a0d8e520ad12e8fb05a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.729004;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_df6e183e5ac3f775a18d5dc2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971000;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_4159819ac418862db1043373.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.713867;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_22bee7a81d09df26f157f0c1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.729004;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;}
.ffe{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:fff;src:url('chunks/assets/font_b357183262f4c6d418b63e1d.woff2')format("woff");}.fff{font-family:fff;line-height:0.971000;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_e10ed29fae98cdc4fbfeb8eb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.713867;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_f908a0d8e520ad12e8fb05a4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.729004;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_95492c6ec908977ae2b6b323.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.971000;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_f28543893b5219ef096f0c9a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.713867;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_f908a0d8e520ad12e8fb05a4.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.729004;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_696fb284d60c9319cc323c44.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.994000;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_622c02ca2d8b46b1247abaea.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.971000;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_2328098fabab129f9d36350f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.713867;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_ba5698febb0ddb1b24ffa075.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.713867;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_6e58d472a9234f329cbfd52b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.971000;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_62d96dce31a5e48150895f34.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.713867;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_f908a0d8e520ad12e8fb05a4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.729004;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_827aa8e49f991a94492f84e0.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.994000;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_a64f181e13417f0e28735b87.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.713867;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_f908a0d8e520ad12e8fb05a4.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.729004;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_bcadb7dc78fb1d12c317acf0.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.994000;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_bec877a9615e4057a6b7dfd7.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.713867;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_b0de79172ae36b9943280242.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.729004;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_994129906d7756d90fdedc7c.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.994000;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_3150b18b8bdbe4d35c77c8a2.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.005000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.713867;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_55ed50370f1bbbbfba4c1f11.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.729004;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_5e2ec3ee39198492f60e32e9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.971000;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_dd88f47484ae231082a7b088.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.713867;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_535d9cff90dfe2ee125f5d6c.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.729004;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_bab245bf1d233171a3629f0e.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.005000;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_30aecb15af17e1892e09acc1.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.994000;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_8547e11f6e5aaab01b3b2618.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.994000;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;}
.ff33{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003749px;}
.ls4{letter-spacing:0.005406px;}
.ls3{letter-spacing:0.019379px;}
.ls5{letter-spacing:0.049151px;}
.ls1{letter-spacing:0.061678px;}
.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;}
}
.wsc{word-spacing:-113.420082px;}
.wsd{word-spacing:-110.456533px;}
.ws8{word-spacing:-103.320922px;}
.wsa{word-spacing:-89.690785px;}
.wse{word-spacing:-82.122252px;}
.ws14{word-spacing:-81.863321px;}
.ws0{word-spacing:-68.962179px;}
.ws12{word-spacing:-68.153785px;}
.ws7{word-spacing:-63.159767px;}
.ws4{word-spacing:-43.159009px;}
.ws11{word-spacing:-43.141346px;}
.ws6{word-spacing:-39.980133px;}
.ws10{word-spacing:-31.874399px;}
.ws15{word-spacing:-26.285894px;}
.ws2{word-spacing:-24.718851px;}
.ws16{word-spacing:-14.582423px;}
.ws9{word-spacing:-0.163224px;}
.wsb{word-spacing:-0.141692px;}
.wsf{word-spacing:-0.129735px;}
.ws13{word-spacing:-0.129326px;}
.ws1{word-spacing:-0.108945px;}
.ws5{word-spacing:-0.075453px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-8.826133px;}
._3{margin-left:-6.704930px;}
._6{margin-left:-5.636192px;}
._2{margin-left:-4.550346px;}
._4{margin-left:-3.463610px;}
._1{margin-left:-2.256109px;}
._0{margin-left:-1.021948px;}
._5{width:1.158686px;}
._7{width:3.032008px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:45.217613px;}
.fs9{font-size:55.613263px;}
.fs15{font-size:62.585507px;}
.fsa{font-size:63.159767px;}
.fs11{font-size:68.153785px;}
.fs5{font-size:69.254431px;}
.fs7{font-size:75.452813px;}
.fs4{font-size:96.936672px;}
.fs3{font-size:99.054491px;}
.fs14{font-size:105.102022px;}
.fs2{font-size:108.944991px;}
.fs1{font-size:109.034995px;}
.fs13{font-size:112.814995px;}
.fs12{font-size:129.325941px;}
.fs10{font-size:129.734995px;}
.fsb{font-size:133.882525px;}
.fs8{font-size:136.799994px;}
.fsd{font-size:141.691604px;}
.fs0{font-size:161.999993px;}
.fsc{font-size:163.224205px;}
.fsf{font-size:174.496893px;}
.fse{font-size:179.178645px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y15{bottom:3.679169px;}
.yf5{bottom:4.085824px;}
.y35{bottom:4.585297px;}
.y59{bottom:5.109470px;}
.y12{bottom:5.556675px;}
.yca{bottom:5.646795px;}
.y2f{bottom:6.129644px;}
.y10{bottom:6.706356px;}
.yd8{bottom:8.289994px;}
.y5c{bottom:8.904611px;}
.yd2{bottom:10.374879px;}
.y6f{bottom:11.109966px;}
.y64{bottom:12.971973px;}
.y7a{bottom:13.645407px;}
.y76{bottom:14.227452px;}
.y14{bottom:19.222724px;}
.y34{bottom:23.702356px;}
.yf4{bottom:25.941080px;}
.y58{bottom:27.182011px;}
.yc9{bottom:29.286679px;}
.y2e{bottom:31.441291px;}
.y13{bottom:33.120009px;}
.y33{bottom:39.960008px;}
.yf{bottom:40.145606px;}
.yd7{bottom:44.418814px;}
.yf3{bottom:47.796337px;}
.y57{bottom:49.254551px;}
.yc8{bottom:52.926562px;}
.y11{bottom:55.080008px;}
.y5b{bottom:55.146930px;}
.yd1{bottom:55.232992px;}
.y6e{bottom:60.257245px;}
.y63{bottom:69.588069px;}
.y56{bottom:71.327092px;}
.y79{bottom:74.171557px;}
.y75{bottom:76.377520px;}
.yc7{bottom:76.566446px;}
.yd6{bottom:80.547635px;}
.y2d{bottom:82.064585px;}
.yf2{bottom:91.506850px;}
.y55{bottom:93.399632px;}
.yc6{bottom:100.206330px;}
.y2c{bottom:107.376232px;}
.ye{bottom:109.800005px;}
.yd5{bottom:111.240005px;}
.y8b{bottom:111.454689px;}
.yf1{bottom:113.362106px;}
.y54{bottom:115.472173px;}
.yac{bottom:116.280005px;}
.yc5{bottom:123.846213px;}
.y62{bottom:126.204165px;}
.y9d{bottom:129.181415px;}
.y2b{bottom:132.687879px;}
.y36{bottom:134.640004px;}
.y78{bottom:134.697708px;}
.yf0{bottom:135.217363px;}
.y74{bottom:138.527587px;}
.yc4{bottom:147.486097px;}
.y16{bottom:150.120004px;}
.y8a{bottom:156.454687px;}
.yef{bottom:157.072619px;}
.y2a{bottom:157.999526px;}
.y6d{bottom:158.551802px;}
.y53{bottom:159.617254px;}
.yc3{bottom:171.125981px;}
.y9c{bottom:174.181414px;}
.yee{bottom:178.927876px;}
.y52{bottom:181.689795px;}
.yd0{bottom:189.807333px;}
.yc2{bottom:194.765865px;}
.yd9{bottom:200.520002px;}
.y73{bottom:200.677655px;}
.yed{bottom:200.783132px;}
.y89{bottom:201.454685px;}
.y51{bottom:203.762335px;}
.y6c{bottom:207.699081px;}
.y29{bottom:208.622821px;}
.y9b{bottom:219.181412px;}
.yec{bottom:222.638389px;}
.yab{bottom:222.749991px;}
.y50{bottom:225.834876px;}
.y28{bottom:233.934468px;}
.ycf{bottom:234.665446px;}
.y61{bottom:239.436357px;}
.yeb{bottom:244.493645px;}
.y88{bottom:246.454683px;}
.y4f{bottom:247.907416px;}
.y6b{bottom:256.846359px;}
.y27{bottom:259.246115px;}
.y72{bottom:262.827723px;}
.y9a{bottom:264.181410px;}
.yc1{bottom:265.685516px;}
.yaa{bottom:267.749989px;}
.y4e{bottom:269.979957px;}
.y65{bottom:274.319999px;}
.yc0{bottom:289.325399px;}
.y87{bottom:291.454681px;}
.y4d{bottom:292.052497px;}
.y60{bottom:296.052453px;}
.yd{bottom:303.378406px;}
.y99{bottom:309.181408px;}
.y26{bottom:309.869409px;}
.ya9{bottom:312.749987px;}
.ybf{bottom:312.965283px;}
.y4c{bottom:314.125038px;}
.y71{bottom:324.977790px;}
.yea{bottom:331.914672px;}
.y25{bottom:335.181056px;}
.y4b{bottom:336.197579px;}
.ybe{bottom:336.605167px;}
.yc{bottom:340.503405px;}
.ycb{bottom:348.119996px;}
.y5f{bottom:352.668549px;}
.ye9{bottom:353.769928px;}
.y6a{bottom:355.140917px;}
.ya8{bottom:357.749985px;}
.y24{bottom:360.492703px;}
.yce{bottom:369.239787px;}
.yb{bottom:377.628403px;}
.y4a{bottom:380.342660px;}
.y5d{bottom:380.519994px;}
.y86{bottom:381.454677px;}
.ye8{bottom:397.480441px;}
.y98{bottom:399.181404px;}
.y49{bottom:402.415200px;}
.y69{bottom:404.288195px;}
.ybd{bottom:407.524818px;}
.y23{bottom:411.115997px;}
.ycd{bottom:414.097900px;}
.ya{bottom:414.753402px;}
.y48{bottom:424.487741px;}
.y85{bottom:426.454675px;}
.ybc{bottom:431.164702px;}
.y22{bottom:436.427644px;}
.ye7{bottom:441.190954px;}
.y97{bottom:444.181402px;}
.y47{bottom:446.560281px;}
.ya7{bottom:447.749981px;}
.y9{bottom:451.878400px;}
.ybb{bottom:454.804585px;}
.ycc{bottom:458.956013px;}
.y21{bottom:461.739291px;}
.y5e{bottom:465.900741px;}
.y46{bottom:468.632822px;}
.y84{bottom:471.454674px;}
.yba{bottom:478.444469px;}
.ye6{bottom:484.901467px;}
.y96{bottom:489.181400px;}
.y45{bottom:490.705363px;}
.ya6{bottom:492.749979px;}
.yb9{bottom:502.084353px;}
.y68{bottom:502.582752px;}
.y20{bottom:512.362585px;}
.y44{bottom:512.777903px;}
.y83{bottom:516.454672px;}
.yb8{bottom:525.724237px;}
.y8{bottom:526.128397px;}
.ye5{bottom:528.611980px;}
.y70{bottom:533.159988px;}
.y95{bottom:534.181399px;}
.y43{bottom:534.850444px;}
.y77{bottom:534.959988px;}
.y1f{bottom:537.674232px;}
.ya5{bottom:537.749978px;}
.yb7{bottom:549.364120px;}
.y67{bottom:551.730031px;}
.y82{bottom:561.454670px;}
.y1e{bottom:562.985879px;}
.y7{bottom:563.253395px;}
.ye4{bottom:572.322493px;}
.yb6{bottom:573.004004px;}
.y42{bottom:578.995525px;}
.ya4{bottom:582.749976px;}
.y41{bottom:601.068065px;}
.y81{bottom:606.454668px;}
.y1d{bottom:613.609173px;}
.ye3{bottom:616.033006px;}
.y40{bottom:623.140606px;}
.y94{bottom:624.181395px;}
.y6{bottom:637.503392px;}
.y1c{bottom:638.920820px;}
.yb5{bottom:643.923655px;}
.y3f{bottom:645.213146px;}
.y66{bottom:650.024588px;}
.ye2{bottom:659.743519px;}
.y1b{bottom:664.232467px;}
.y3e{bottom:667.285687px;}
.yb4{bottom:667.563539px;}
.y93{bottom:669.181393px;}
.ya3{bottom:672.749972px;}
.yb3{bottom:691.203423px;}
.y80{bottom:696.454664px;}
.y3d{bottom:711.430768px;}
.y5{bottom:711.753389px;}
.y92{bottom:714.181391px;}
.yb2{bottom:714.843306px;}
.y1a{bottom:714.855761px;}
.y3c{bottom:733.503309px;}
.yb1{bottom:738.483190px;}
.y19{bottom:740.167408px;}
.y7f{bottom:741.454662px;}
.ye1{bottom:747.164545px;}
.y3b{bottom:755.575849px;}
.y91{bottom:759.181389px;}
.ya2{bottom:762.749968px;}
.y18{bottom:765.479055px;}
.ye0{bottom:769.019802px;}
.y3a{bottom:777.648390px;}
.y4{bottom:786.003386px;}
.y7e{bottom:786.454660px;}
.ydf{bottom:790.875058px;}
.ya1{bottom:807.749966px;}
.yb0{bottom:809.402841px;}
.yde{bottom:812.730315px;}
.y17{bottom:816.102350px;}
.y39{bottom:821.793471px;}
.y7d{bottom:831.454659px;}
.yaf{bottom:833.042725px;}
.y38{bottom:843.866012px;}
.y90{bottom:849.181385px;}
.ya0{bottom:852.749964px;}
.ydd{bottom:856.440828px;}
.yae{bottom:856.682609px;}
.y37{bottom:865.938552px;}
.y7c{bottom:876.454657px;}
.ydc{bottom:878.296084px;}
.yad{bottom:880.322492px;}
.y8f{bottom:894.181384px;}
.y3{bottom:895.103718px;}
.y9f{bottom:897.749963px;}
.ydb{bottom:900.151341px;}
.y8e{bottom:939.181382px;}
.yda{bottom:943.861854px;}
.y7b{bottom:966.454653px;}
.y8d{bottom:984.181380px;}
.y9e{bottom:987.749959px;}
.y2{bottom:991.853714px;}
.y32{bottom:1019.332487px;}
.y8c{bottom:1029.181378px;}
.yd4{bottom:1033.957486px;}
.y5a{bottom:1062.719966px;}
.y31{bottom:1066.582485px;}
.yd3{bottom:1073.332485px;}
.y30{bottom:1113.832483px;}
.h9{height:23.039999px;}
.hb{height:30.599999px;}
.hc{height:35.405391px;}
.h10{height:37.799998px;}
.h11{height:43.545185px;}
.h1c{height:44.824290px;}
.h13{height:48.317222px;}
.h2a{height:50.443919px;}
.h23{height:52.137645px;}
.ha{height:54.226219px;}
.he{height:57.721402px;}
.h2b{height:59.456232px;}
.h14{height:60.001779px;}
.h6{height:67.319997px;}
.h8{height:83.171665px;}
.h5{height:83.342918px;}
.h28{height:84.712230px;}
.h7{height:84.988754px;}
.h4{height:87.882206px;}
.h26{height:90.928886px;}
.h15{height:91.799996px;}
.h25{height:98.934345px;}
.h21{height:99.247271px;}
.h16{height:104.830017px;}
.h27{height:106.919996px;}
.hf{height:107.114396px;}
.h1a{height:108.394077px;}
.h1b{height:110.260795px;}
.h18{height:124.866517px;}
.h20{height:133.490123px;}
.h1e{height:137.071663px;}
.h3{height:138.995994px;}
.h1f{height:180.359992px;}
.h1d{height:371.879985px;}
.h24{height:492.839979px;}
.h17{height:508.679979px;}
.h19{height:687.239971px;}
.hd{height:836.639965px;}
.h12{height:882.719963px;}
.h22{height:898.199963px;}
.h29{height:960.839960px;}
.h2{height:1187.999951px;}
.h0{height:1187.999991px;}
.h1{height:1188.000000px;}
.w4{width:176.399993px;}
.w3{width:336.959986px;}
.we{width:683.639972px;}
.wc{width:728.639970px;}
.wa{width:769.319968px;}
.wb{width:781.199967px;}
.w2{width:789.119967px;}
.w9{width:816.119966px;}
.w6{width:823.319966px;}
.w5{width:828.359965px;}
.w7{width:838.439965px;}
.wd{width:844.919965px;}
.w8{width:875.879964px;}
.wf{width:888.479963px;}
.w1{width:917.999962px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:1.032187px;}
.xf{left:2.749465px;}
.x37{left:7.670461px;}
.x38{left:11.520000px;}
.x39{left:16.882282px;}
.x15{left:18.820358px;}
.x21{left:22.319999px;}
.x24{left:24.119999px;}
.x18{left:25.559999px;}
.x19{left:26.965683px;}
.x13{left:29.159999px;}
.x36{left:30.379272px;}
.x17{left:34.199999px;}
.x29{left:35.985318px;}
.x27{left:47.519998px;}
.x2c{left:52.640669px;}
.xd{left:63.719997px;}
.x8{left:68.295210px;}
.x26{left:71.999997px;}
.x2f{left:81.719997px;}
.x2b{left:91.127894px;}
.x33{left:96.410198px;}
.x32{left:102.562542px;}
.x6{left:105.051068px;}
.x4{left:109.586224px;}
.x35{left:117.359995px;}
.x2{left:130.622735px;}
.x20{left:133.500068px;}
.x9{left:138.291301px;}
.xa{left:144.689738px;}
.x1{left:147.480156px;}
.xb{left:153.654581px;}
.x3{left:158.435831px;}
.x30{left:166.511758px;}
.x28{left:175.107461px;}
.x25{left:183.755898px;}
.x14{left:195.515663px;}
.x22{left:205.587928px;}
.x1e{left:219.756978px;}
.x16{left:222.568396px;}
.x31{left:223.658240px;}
.x5{left:229.662391px;}
.x1f{left:235.545907px;}
.x23{left:247.722698px;}
.xe{left:271.961562px;}
.x10{left:282.239988px;}
.x7{left:331.703402px;}
.x1c{left:338.797424px;}
.x1d{left:354.586359px;}
.xc{left:371.676057px;}
.x34{left:376.007849px;}
.x2a{left:377.871130px;}
.x2e{left:386.291046px;}
.x2d{left:453.228543px;}
.x1a{left:458.103113px;}
.x1b{left:473.892043px;}
.x11{left:700.199971px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003333pt;}
.ls4{letter-spacing:0.004805pt;}
.ls3{letter-spacing:0.017226pt;}
.ls5{letter-spacing:0.043689pt;}
.ls1{letter-spacing:0.054825pt;}
.wsc{word-spacing:-100.817851pt;}
.wsd{word-spacing:-98.183585pt;}
.ws8{word-spacing:-91.840819pt;}
.wsa{word-spacing:-79.725143pt;}
.wse{word-spacing:-72.997557pt;}
.ws14{word-spacing:-72.767396pt;}
.ws0{word-spacing:-61.299715pt;}
.ws12{word-spacing:-60.581142pt;}
.ws7{word-spacing:-56.142015pt;}
.ws4{word-spacing:-38.363563pt;}
.ws11{word-spacing:-38.347863pt;}
.ws6{word-spacing:-35.537896pt;}
.ws10{word-spacing:-28.332799pt;}
.ws15{word-spacing:-23.365239pt;}
.ws2{word-spacing:-21.972312pt;}
.ws16{word-spacing:-12.962154pt;}
.ws9{word-spacing:-0.145088pt;}
.wsb{word-spacing:-0.125948pt;}
.wsf{word-spacing:-0.115320pt;}
.ws13{word-spacing:-0.114956pt;}
.ws1{word-spacing:-0.096840pt;}
.ws5{word-spacing:-0.067069pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-7.845452pt;}
._3{margin-left:-5.959938pt;}
._6{margin-left:-5.009948pt;}
._2{margin-left:-4.044752pt;}
._4{margin-left:-3.078764pt;}
._1{margin-left:-2.005430pt;}
._0{margin-left:-0.908398pt;}
._5{width:1.029943pt;}
._7{width:2.695119pt;}
.fs6{font-size:40.193434pt;}
.fs9{font-size:49.434012pt;}
.fs15{font-size:55.631562pt;}
.fsa{font-size:56.142015pt;}
.fs11{font-size:60.581142pt;}
.fs5{font-size:61.559494pt;}
.fs7{font-size:67.069167pt;}
.fs4{font-size:86.165931pt;}
.fs3{font-size:88.048437pt;}
.fs14{font-size:93.424020pt;}
.fs2{font-size:96.839992pt;}
.fs1{font-size:96.919996pt;}
.fs13{font-size:100.279996pt;}
.fs12{font-size:114.956392pt;}
.fs10{font-size:115.319995pt;}
.fsb{font-size:119.006689pt;}
.fs8{font-size:121.599995pt;}
.fsd{font-size:125.948093pt;}
.fs0{font-size:143.999994pt;}
.fsc{font-size:145.088182pt;}
.fsf{font-size:155.108349pt;}
.fse{font-size:159.269907pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y15{bottom:3.270373pt;}
.yf5{bottom:3.631843pt;}
.y35{bottom:4.075820pt;}
.y59{bottom:4.541751pt;}
.y12{bottom:4.939266pt;}
.yca{bottom:5.019373pt;}
.y2f{bottom:5.448573pt;}
.y10{bottom:5.961205pt;}
.yd8{bottom:7.368884pt;}
.y5c{bottom:7.915209pt;}
.yd2{bottom:9.222114pt;}
.y6f{bottom:9.875526pt;}
.y64{bottom:11.530643pt;}
.y7a{bottom:12.129250pt;}
.y76{bottom:12.646624pt;}
.y14{bottom:17.086866pt;}
.y34{bottom:21.068761pt;}
.yf4{bottom:23.058738pt;}
.y58{bottom:24.161787pt;}
.yc9{bottom:26.032603pt;}
.y2e{bottom:27.947814pt;}
.y13{bottom:29.440008pt;}
.y33{bottom:35.520007pt;}
.yf{bottom:35.684983pt;}
.yd7{bottom:39.483391pt;}
.yf3{bottom:42.485633pt;}
.y57{bottom:43.781823pt;}
.yc8{bottom:47.045833pt;}
.y11{bottom:48.960007pt;}
.y5b{bottom:49.019494pt;}
.yd1{bottom:49.095993pt;}
.y6e{bottom:53.561996pt;}
.y63{bottom:61.856061pt;}
.y56{bottom:63.401859pt;}
.y79{bottom:65.930273pt;}
.y75{bottom:67.891129pt;}
.yc7{bottom:68.059063pt;}
.yd6{bottom:71.597897pt;}
.y2d{bottom:72.946298pt;}
.yf2{bottom:81.339422pt;}
.y55{bottom:83.021895pt;}
.yc6{bottom:89.072293pt;}
.y2c{bottom:95.445540pt;}
.ye{bottom:97.600005pt;}
.yd5{bottom:98.880005pt;}
.y8b{bottom:99.070834pt;}
.yf1{bottom:100.766317pt;}
.y54{bottom:102.641931pt;}
.yac{bottom:103.360005pt;}
.yc5{bottom:110.085523pt;}
.y62{bottom:112.181480pt;}
.y9d{bottom:114.827925pt;}
.y2b{bottom:117.944782pt;}
.y36{bottom:119.680004pt;}
.y78{bottom:119.731296pt;}
.yf0{bottom:120.193211pt;}
.y74{bottom:123.135633pt;}
.yc4{bottom:131.098753pt;}
.y16{bottom:133.440003pt;}
.y8a{bottom:139.070833pt;}
.yef{bottom:139.620106pt;}
.y2a{bottom:140.444023pt;}
.y6d{bottom:140.934935pt;}
.y53{bottom:141.882004pt;}
.yc3{bottom:152.111983pt;}
.y9c{bottom:154.827923pt;}
.yee{bottom:159.047001pt;}
.y52{bottom:161.502040pt;}
.yd0{bottom:168.717629pt;}
.yc2{bottom:173.125213pt;}
.yd9{bottom:178.240002pt;}
.y73{bottom:178.380138pt;}
.yed{bottom:178.473896pt;}
.y89{bottom:179.070831pt;}
.y51{bottom:181.122076pt;}
.y6c{bottom:184.621405pt;}
.y29{bottom:185.442507pt;}
.y9b{bottom:194.827921pt;}
.yec{bottom:197.900790pt;}
.yab{bottom:197.999992pt;}
.y50{bottom:200.742112pt;}
.y28{bottom:207.941749pt;}
.ycf{bottom:208.591508pt;}
.y61{bottom:212.832318pt;}
.yeb{bottom:217.327685pt;}
.y88{bottom:219.070829pt;}
.y4f{bottom:220.362148pt;}
.y6b{bottom:228.307875pt;}
.y27{bottom:230.440991pt;}
.y72{bottom:233.624642pt;}
.y9a{bottom:234.827920pt;}
.yc1{bottom:236.164903pt;}
.yaa{bottom:237.999990pt;}
.y4e{bottom:239.982184pt;}
.y65{bottom:243.839999pt;}
.yc0{bottom:257.178133pt;}
.y87{bottom:259.070828pt;}
.y4d{bottom:259.602220pt;}
.y60{bottom:263.157736pt;}
.yd{bottom:269.669694pt;}
.y99{bottom:274.827918pt;}
.y26{bottom:275.439474pt;}
.ya9{bottom:277.999988pt;}
.ybf{bottom:278.191363pt;}
.y4c{bottom:279.222256pt;}
.y71{bottom:288.869147pt;}
.yea{bottom:295.035264pt;}
.y25{bottom:297.938716pt;}
.y4b{bottom:298.842292pt;}
.ybe{bottom:299.204593pt;}
.yc{bottom:302.669693pt;}
.ycb{bottom:309.439996pt;}
.y5f{bottom:313.483155pt;}
.ye9{bottom:314.462158pt;}
.y6a{bottom:315.680815pt;}
.ya8{bottom:317.999987pt;}
.y24{bottom:320.437958pt;}
.yce{bottom:328.213144pt;}
.yb{bottom:335.669692pt;}
.y4a{bottom:338.082364pt;}
.y5d{bottom:338.239995pt;}
.y86{bottom:339.070824pt;}
.ye8{bottom:353.315948pt;}
.y98{bottom:354.827915pt;}
.y49{bottom:357.702400pt;}
.y69{bottom:359.367285pt;}
.ybd{bottom:362.244283pt;}
.y23{bottom:365.436442pt;}
.ycd{bottom:368.087022pt;}
.ya{bottom:368.669690pt;}
.y48{bottom:377.322436pt;}
.y85{bottom:379.070823pt;}
.ybc{bottom:383.257513pt;}
.y22{bottom:387.935683pt;}
.ye7{bottom:392.169737pt;}
.y97{bottom:394.827913pt;}
.y47{bottom:396.942472pt;}
.ya7{bottom:397.999983pt;}
.y9{bottom:401.669689pt;}
.ybb{bottom:404.270743pt;}
.ycc{bottom:407.960901pt;}
.y21{bottom:410.434925pt;}
.y5e{bottom:414.133992pt;}
.y46{bottom:416.562508pt;}
.y84{bottom:419.070821pt;}
.yba{bottom:425.283973pt;}
.ye6{bottom:431.023526pt;}
.y96{bottom:434.827911pt;}
.y45{bottom:436.182544pt;}
.ya6{bottom:437.999982pt;}
.yb9{bottom:446.297203pt;}
.y68{bottom:446.740224pt;}
.y20{bottom:455.433409pt;}
.y44{bottom:455.802581pt;}
.y83{bottom:459.070819pt;}
.yb8{bottom:467.310433pt;}
.y8{bottom:467.669686pt;}
.ye5{bottom:469.877316pt;}
.y70{bottom:473.919989pt;}
.y95{bottom:474.827910pt;}
.y43{bottom:475.422617pt;}
.y77{bottom:475.519989pt;}
.y1f{bottom:477.932651pt;}
.ya5{bottom:477.999980pt;}
.yb7{bottom:488.323663pt;}
.y67{bottom:490.426694pt;}
.y82{bottom:499.070818pt;}
.y1e{bottom:500.431893pt;}
.y7{bottom:500.669685pt;}
.ye4{bottom:508.731105pt;}
.yb6{bottom:509.336893pt;}
.y42{bottom:514.662689pt;}
.ya4{bottom:517.999978pt;}
.y41{bottom:534.282725pt;}
.y81{bottom:539.070816pt;}
.y1d{bottom:545.430376pt;}
.ye3{bottom:547.584894pt;}
.y40{bottom:553.902761pt;}
.y94{bottom:554.827906pt;}
.y6{bottom:566.669682pt;}
.y1c{bottom:567.929618pt;}
.yb5{bottom:572.376582pt;}
.y3f{bottom:573.522797pt;}
.y66{bottom:577.799634pt;}
.ye2{bottom:586.438684pt;}
.y1b{bottom:590.428860pt;}
.y3e{bottom:593.142833pt;}
.yb4{bottom:593.389812pt;}
.y93{bottom:594.827905pt;}
.ya3{bottom:597.999975pt;}
.yb3{bottom:614.403042pt;}
.y80{bottom:619.070813pt;}
.y3d{bottom:632.382905pt;}
.y5{bottom:632.669679pt;}
.y92{bottom:634.827903pt;}
.yb2{bottom:635.416272pt;}
.y1a{bottom:635.427343pt;}
.y3c{bottom:652.002941pt;}
.yb1{bottom:656.429502pt;}
.y19{bottom:657.926585pt;}
.y7f{bottom:659.070811pt;}
.ye1{bottom:664.146262pt;}
.y3b{bottom:671.622977pt;}
.y91{bottom:674.827901pt;}
.ya2{bottom:677.999972pt;}
.y18{bottom:680.425827pt;}
.ye0{bottom:683.573157pt;}
.y3a{bottom:691.243013pt;}
.y4{bottom:698.669676pt;}
.y7e{bottom:699.070809pt;}
.ydf{bottom:703.000052pt;}
.ya1{bottom:717.999970pt;}
.yb0{bottom:719.469192pt;}
.yde{bottom:722.426947pt;}
.y17{bottom:725.424311pt;}
.y39{bottom:730.483085pt;}
.y7d{bottom:739.070808pt;}
.yaf{bottom:740.482422pt;}
.y38{bottom:750.103121pt;}
.y90{bottom:754.827898pt;}
.ya0{bottom:757.999968pt;}
.ydd{bottom:761.280736pt;}
.yae{bottom:761.495652pt;}
.y37{bottom:769.723157pt;}
.y7c{bottom:779.070806pt;}
.ydc{bottom:780.707631pt;}
.yad{bottom:782.508882pt;}
.y8f{bottom:794.827896pt;}
.y3{bottom:795.647749pt;}
.y9f{bottom:797.999967pt;}
.ydb{bottom:800.134525pt;}
.y8e{bottom:834.827895pt;}
.yda{bottom:838.988315pt;}
.y7b{bottom:859.070803pt;}
.y8d{bottom:874.827893pt;}
.y9e{bottom:877.999963pt;}
.y2{bottom:881.647746pt;}
.y32{bottom:906.073322pt;}
.y8c{bottom:914.827891pt;}
.yd4{bottom:919.073321pt;}
.y5a{bottom:944.639970pt;}
.y31{bottom:948.073320pt;}
.yd3{bottom:954.073320pt;}
.y30{bottom:990.073318pt;}
.h9{height:20.479999pt;}
.hb{height:27.199999pt;}
.hc{height:31.471459pt;}
.h10{height:33.599999pt;}
.h11{height:38.706831pt;}
.h1c{height:39.843813pt;}
.h13{height:42.948642pt;}
.h2a{height:44.839039pt;}
.h23{height:46.344574pt;}
.ha{height:48.201084pt;}
.he{height:51.307913pt;}
.h2b{height:52.849984pt;}
.h14{height:53.334915pt;}
.h6{height:59.839998pt;}
.h8{height:73.930369pt;}
.h5{height:74.082594pt;}
.h28{height:75.299760pt;}
.h7{height:75.545559pt;}
.h4{height:78.117517pt;}
.h26{height:80.825677pt;}
.h15{height:81.599997pt;}
.h25{height:87.941640pt;}
.h21{height:88.219796pt;}
.h16{height:93.182238pt;}
.h27{height:95.039996pt;}
.hf{height:95.212796pt;}
.h1a{height:96.350291pt;}
.h1b{height:98.009596pt;}
.h18{height:110.992459pt;}
.h20{height:118.657887pt;}
.h1e{height:121.841479pt;}
.h3{height:123.551995pt;}
.h1f{height:160.319993pt;}
.h1d{height:330.559986pt;}
.h24{height:438.079982pt;}
.h17{height:452.159981pt;}
.h19{height:610.879975pt;}
.hd{height:743.679969pt;}
.h12{height:784.639967pt;}
.h22{height:798.399967pt;}
.h29{height:854.079964pt;}
.h2{height:1055.999956pt;}
.h0{height:1055.999992pt;}
.h1{height:1056.000000pt;}
.w4{width:156.799993pt;}
.w3{width:299.519988pt;}
.we{width:607.679975pt;}
.wc{width:647.679973pt;}
.wa{width:683.839972pt;}
.wb{width:694.399971pt;}
.w2{width:701.439971pt;}
.w9{width:725.439970pt;}
.w6{width:731.839970pt;}
.w5{width:736.319969pt;}
.w7{width:745.279969pt;}
.wd{width:751.039969pt;}
.w8{width:778.559968pt;}
.wf{width:789.759967pt;}
.w1{width:815.999966pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:0.917500pt;}
.xf{left:2.443969pt;}
.x37{left:6.818187pt;}
.x38{left:10.240000pt;}
.x39{left:15.006473pt;}
.x15{left:16.729207pt;}
.x21{left:19.839999pt;}
.x24{left:21.439999pt;}
.x18{left:22.719999pt;}
.x19{left:23.969496pt;}
.x13{left:25.919999pt;}
.x36{left:27.003797pt;}
.x17{left:30.399999pt;}
.x29{left:31.986949pt;}
.x27{left:42.239998pt;}
.x2c{left:46.791706pt;}
.xd{left:56.639998pt;}
.x8{left:60.706853pt;}
.x26{left:63.999997pt;}
.x2f{left:72.639997pt;}
.x2b{left:81.002572pt;}
.x33{left:85.697954pt;}
.x32{left:91.166704pt;}
.x6{left:93.378727pt;}
.x4{left:97.409977pt;}
.x35{left:104.319996pt;}
.x2{left:116.109097pt;}
.x20{left:118.666727pt;}
.x9{left:122.925601pt;}
.xa{left:128.613100pt;}
.x1{left:131.093472pt;}
.xb{left:136.581850pt;}
.x3{left:140.831850pt;}
.x30{left:148.010452pt;}
.x28{left:155.651076pt;}
.x25{left:163.338576pt;}
.x14{left:173.791700pt;}
.x22{left:182.744825pt;}
.x1e{left:195.339536pt;}
.x16{left:197.838574pt;}
.x31{left:198.807324pt;}
.x5{left:204.144347pt;}
.x1f{left:209.374140pt;}
.x23{left:220.197954pt;}
.xe{left:241.743610pt;}
.x10{left:250.879990pt;}
.x7{left:294.847469pt;}
.x1c{left:301.153266pt;}
.x1d{left:315.187875pt;}
.xc{left:330.378717pt;}
.x34{left:334.229199pt;}
.x2a{left:335.885449pt;}
.x2e{left:343.369818pt;}
.x2d{left:402.869816pt;}
.x1a{left:407.202767pt;}
.x1b{left:421.237371pt;}
.x11{left:622.399974pt;}
}




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