
    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_df851e4de05db0c1f2b4b12f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;font-style:normal;font-weight: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_6f26514fdc2817d0564909cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;font-style:normal;font-weight: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_0f8739d337cf83bce5df5ce8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;font-style:normal;font-weight: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_780d239ae5c12d4db40a1857.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;font-style:normal;font-weight: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_4be17550384c2768d68a8a0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.135000;font-style:normal;font-weight: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_166f569822fe5b2e1ffdab07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;font-style:normal;font-weight: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_f26c4c7044be1b96c49e8ac4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.141000;font-style:normal;font-weight: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_3f73e6dbdd99aa89f524eefa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.158000;font-style:normal;font-weight: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_dc822702390ad6e135f7db16.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.166000;font-style:normal;font-weight: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_7af2f582cca3f3dde1959557.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.158000;font-style:normal;font-weight: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_1d3c18b423751c99651603e2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.719000;font-style:normal;font-weight: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_f3efd0855daa6bbbe5df9ade.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;font-style:normal;font-weight: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_63c59040b164f7b9c5047689.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888672;font-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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-19.926000px;}
.lsa{letter-spacing:-18.306000px;}
.lsb{letter-spacing:-14.310000px;}
.ls12{letter-spacing:-12.276000px;}
.lsc{letter-spacing:-10.494000px;}
.ls11{letter-spacing:-9.486000px;}
.ls7{letter-spacing:-0.480000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.132000px;}
.lsf{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.396000px;}
.ls10{letter-spacing:0.462000px;}
.ls0{letter-spacing:0.528000px;}
.lse{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.726000px;}
.ls8{letter-spacing:10.656000px;}
.ls13{letter-spacing:2071.568400px;}
.lsd{letter-spacing:2192.518800px;}
.ls5{letter-spacing:2848.575000px;}
.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;}
}
.ws0{word-spacing:-22.680000px;}
.ws7{word-spacing:-16.500000px;}
.ws9{word-spacing:-12.750000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:17.280000px;}
.ws6{word-spacing:18.933750px;}
.ws2{word-spacing:19.602000px;}
.ws4{word-spacing:20.938500px;}
.ws1{word-spacing:22.842000px;}
.ws8{word-spacing:24.502500px;}
._2{margin-left:-24.000000px;}
._8{margin-left:-12.900000px;}
._7{margin-left:-1.056000px;}
._1{width:1.536000px;}
._3{width:3.366000px;}
._4{width:4.422000px;}
._6{width:5.742000px;}
._5{width:6.930000px;}
._9{width:7.986000px;}
._a{width:9.240000px;}
._0{width:13.344000px;}
.fc2{color:rgb(91,136,153);}
.fc1{color:rgb(147,189,232);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:38.250000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:49.500000px;}
.fsa{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:85.039200px;}
.y1{bottom:85.039350px;}
.y28{bottom:85.039500px;}
.y7{bottom:140.316450px;}
.y80{bottom:140.746950px;}
.y56{bottom:141.153300px;}
.yb0{bottom:149.222850px;}
.y6{bottom:153.108450px;}
.y7f{bottom:161.536950px;}
.y55{bottom:161.943300px;}
.yaf{bottom:170.012850px;}
.y5{bottom:172.276800px;}
.y7e{bottom:182.326950px;}
.y54{bottom:182.733300px;}
.yae{bottom:190.802850px;}
.y4{bottom:191.452800px;}
.y7d{bottom:203.116950px;}
.y53{bottom:203.523300px;}
.y3{bottom:204.244800px;}
.yad{bottom:211.592850px;}
.y7c{bottom:223.906950px;}
.y52{bottom:224.313300px;}
.yac{bottom:232.382850px;}
.y51{bottom:245.103300px;}
.yab{bottom:253.172850px;}
.y7b{bottom:254.481450px;}
.y26{bottom:264.229350px;}
.y50{bottom:265.893300px;}
.yaa{bottom:273.962850px;}
.y7a{bottom:275.271450px;}
.y25{bottom:285.019350px;}
.y4f{bottom:286.683300px;}
.ya9{bottom:294.752850px;}
.y79{bottom:296.061450px;}
.y24{bottom:305.809350px;}
.y4e{bottom:307.473300px;}
.ya8{bottom:315.542850px;}
.y78{bottom:316.851450px;}
.y23{bottom:326.599350px;}
.y4d{bottom:328.263300px;}
.ya7{bottom:336.332850px;}
.y77{bottom:337.641450px;}
.y22{bottom:347.389350px;}
.y4c{bottom:349.053300px;}
.ya6{bottom:357.122850px;}
.y76{bottom:358.431450px;}
.y21{bottom:368.179350px;}
.y4b{bottom:369.843300px;}
.ya5{bottom:377.912850px;}
.y75{bottom:379.221450px;}
.y20{bottom:388.969350px;}
.y4a{bottom:390.633300px;}
.ya4{bottom:398.702850px;}
.y74{bottom:400.011450px;}
.y1f{bottom:409.759350px;}
.y49{bottom:411.423300px;}
.ya3{bottom:419.492850px;}
.y73{bottom:420.801450px;}
.y1e{bottom:430.549350px;}
.y48{bottom:432.213300px;}
.ya2{bottom:440.282850px;}
.y72{bottom:441.591450px;}
.y47{bottom:453.003300px;}
.ya1{bottom:461.072850px;}
.y1d{bottom:461.734350px;}
.y71{bottom:462.381450px;}
.y46{bottom:473.793300px;}
.ya0{bottom:481.862850px;}
.y1c{bottom:482.524350px;}
.y70{bottom:483.171450px;}
.y45{bottom:494.583300px;}
.y9f{bottom:502.652850px;}
.y1b{bottom:503.314350px;}
.y6f{bottom:503.961450px;}
.y44{bottom:515.373300px;}
.y9e{bottom:523.442850px;}
.y1a{bottom:524.104350px;}
.y6e{bottom:524.751450px;}
.y43{bottom:536.163300px;}
.y9d{bottom:544.232850px;}
.y19{bottom:544.894350px;}
.y6d{bottom:545.454000px;}
.y42{bottom:556.953300px;}
.y9c{bottom:565.022850px;}
.y6c{bottom:566.244000px;}
.y18{bottom:576.079350px;}
.y41{bottom:577.743300px;}
.y9b{bottom:585.812850px;}
.y6b{bottom:587.034000px;}
.y17{bottom:596.869350px;}
.y40{bottom:598.533300px;}
.yb5{bottom:606.588900px;}
.y6a{bottom:607.824000px;}
.y9a{bottom:616.997850px;}
.y16{bottom:617.659350px;}
.y3f{bottom:619.323300px;}
.y69{bottom:628.614000px;}
.yb4{bottom:637.773900px;}
.y99{bottom:637.787850px;}
.y15{bottom:638.449350px;}
.y3e{bottom:640.113300px;}
.y68{bottom:649.404000px;}
.yb3{bottom:658.563900px;}
.y98{bottom:658.577850px;}
.y14{bottom:659.239350px;}
.y3d{bottom:660.903300px;}
.y67{bottom:670.194000px;}
.y97{bottom:679.367850px;}
.y13{bottom:680.029350px;}
.y3c{bottom:681.693300px;}
.y66{bottom:690.984000px;}
.yb2{bottom:698.248800px;}
.y96{bottom:700.157850px;}
.y12{bottom:700.811550px;}
.y3b{bottom:702.477150px;}
.y95{bottom:720.947850px;}
.y65{bottom:721.558500px;}
.y3a{bottom:723.267150px;}
.y94{bottom:741.737850px;}
.y64{bottom:742.348500px;}
.y39{bottom:744.015000px;}
.y93{bottom:762.527850px;}
.y63{bottom:763.138500px;}
.y38{bottom:764.805000px;}
.y11{bottom:768.511050px;}
.y92{bottom:783.317850px;}
.y62{bottom:783.928500px;}
.y37{bottom:785.595000px;}
.y10{bottom:789.301050px;}
.y91{bottom:804.107850px;}
.y61{bottom:804.718500px;}
.yf{bottom:810.091050px;}
.y36{bottom:820.839000px;}
.y90{bottom:824.897850px;}
.y60{bottom:825.508500px;}
.ye{bottom:830.881050px;}
.y35{bottom:841.629000px;}
.y8f{bottom:845.687850px;}
.y5f{bottom:846.298500px;}
.y34{bottom:862.419000px;}
.y8e{bottom:866.477850px;}
.y5e{bottom:867.088500px;}
.yd{bottom:870.062100px;}
.y33{bottom:883.209000px;}
.y8d{bottom:887.267850px;}
.y5d{bottom:887.878500px;}
.yb1{bottom:897.662850px;}
.y32{bottom:903.999000px;}
.y5c{bottom:908.668500px;}
.y8c{bottom:918.452850px;}
.y31{bottom:924.789000px;}
.y5b{bottom:929.458500px;}
.y8b{bottom:939.242850px;}
.y30{bottom:945.579000px;}
.y5a{bottom:950.248500px;}
.y8a{bottom:960.032850px;}
.y2f{bottom:966.369000px;}
.y89{bottom:980.822850px;}
.y59{bottom:980.823000px;}
.y2e{bottom:987.159000px;}
.yc{bottom:987.921150px;}
.y88{bottom:1001.612850px;}
.y58{bottom:1001.613000px;}
.y2d{bottom:1007.949000px;}
.yb{bottom:1008.708150px;}
.y87{bottom:1022.402850px;}
.y57{bottom:1022.403000px;}
.y86{bottom:1043.192850px;}
.y2c{bottom:1043.193000px;}
.y85{bottom:1063.982850px;}
.y2b{bottom:1063.983000px;}
.y84{bottom:1084.772850px;}
.y2a{bottom:1084.773000px;}
.ya{bottom:1097.478000px;}
.y83{bottom:1105.562850px;}
.y29{bottom:1105.563000px;}
.y2{bottom:1162.729350px;}
.y81{bottom:1172.229900px;}
.y27{bottom:1172.230050px;}
.y9{bottom:1193.880450px;}
.y8{bottom:1207.380450px;}
.h3{height:35.328000px;}
.h2{height:39.159668px;}
.h4{height:43.872000px;}
.hc{height:45.342773px;}
.hb{height:48.042000px;}
.h7{height:56.520000px;}
.h9{height:62.172000px;}
.he{height:62.196600px;}
.ha{height:62.203200px;}
.hd{height:62.340600px;}
.hf{height:62.521800px;}
.h8{height:67.968000px;}
.h10{height:73.632000px;}
.h6{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.834931px;}
.h1{height:1263.000000px;}
.w3{width:892.912500px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299150px;}
.x3{left:110.551350px;}
.xb{left:136.057350px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.xa{left:360.684600px;}
.x8{left:442.974000px;}
.x7{left:530.551650px;}
.x6{left:612.241950px;}
.x2{left:733.917900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-17.712000pt;}
.lsa{letter-spacing:-16.272000pt;}
.lsb{letter-spacing:-12.720000pt;}
.ls12{letter-spacing:-10.912000pt;}
.lsc{letter-spacing:-9.328000pt;}
.ls11{letter-spacing:-8.432000pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.117333pt;}
.lsf{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.352000pt;}
.ls10{letter-spacing:0.410667pt;}
.ls0{letter-spacing:0.469333pt;}
.lse{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.645333pt;}
.ls8{letter-spacing:9.472000pt;}
.ls13{letter-spacing:1841.394133pt;}
.lsd{letter-spacing:1948.905600pt;}
.ls5{letter-spacing:2532.066667pt;}
.ws0{word-spacing:-20.160000pt;}
.ws7{word-spacing:-14.666667pt;}
.ws9{word-spacing:-11.333333pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:15.360000pt;}
.ws6{word-spacing:16.830000pt;}
.ws2{word-spacing:17.424000pt;}
.ws4{word-spacing:18.612000pt;}
.ws1{word-spacing:20.304000pt;}
.ws8{word-spacing:21.780000pt;}
._2{margin-left:-21.333333pt;}
._8{margin-left:-11.466667pt;}
._7{margin-left:-0.938667pt;}
._1{width:1.365333pt;}
._3{width:2.992000pt;}
._4{width:3.930667pt;}
._6{width:5.104000pt;}
._5{width:6.160000pt;}
._9{width:7.098667pt;}
._a{width:8.213333pt;}
._0{width:11.861333pt;}
.fsb{font-size:34.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:44.000000pt;}
.fsa{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:75.590400pt;}
.y1{bottom:75.590533pt;}
.y28{bottom:75.590667pt;}
.y7{bottom:124.725733pt;}
.y80{bottom:125.108400pt;}
.y56{bottom:125.469600pt;}
.yb0{bottom:132.642533pt;}
.y6{bottom:136.096400pt;}
.y7f{bottom:143.588400pt;}
.y55{bottom:143.949600pt;}
.yaf{bottom:151.122533pt;}
.y5{bottom:153.134933pt;}
.y7e{bottom:162.068400pt;}
.y54{bottom:162.429600pt;}
.yae{bottom:169.602533pt;}
.y4{bottom:170.180267pt;}
.y7d{bottom:180.548400pt;}
.y53{bottom:180.909600pt;}
.y3{bottom:181.550933pt;}
.yad{bottom:188.082533pt;}
.y7c{bottom:199.028400pt;}
.y52{bottom:199.389600pt;}
.yac{bottom:206.562533pt;}
.y51{bottom:217.869600pt;}
.yab{bottom:225.042533pt;}
.y7b{bottom:226.205733pt;}
.y26{bottom:234.870533pt;}
.y50{bottom:236.349600pt;}
.yaa{bottom:243.522533pt;}
.y7a{bottom:244.685733pt;}
.y25{bottom:253.350533pt;}
.y4f{bottom:254.829600pt;}
.ya9{bottom:262.002533pt;}
.y79{bottom:263.165733pt;}
.y24{bottom:271.830533pt;}
.y4e{bottom:273.309600pt;}
.ya8{bottom:280.482533pt;}
.y78{bottom:281.645733pt;}
.y23{bottom:290.310533pt;}
.y4d{bottom:291.789600pt;}
.ya7{bottom:298.962533pt;}
.y77{bottom:300.125733pt;}
.y22{bottom:308.790533pt;}
.y4c{bottom:310.269600pt;}
.ya6{bottom:317.442533pt;}
.y76{bottom:318.605733pt;}
.y21{bottom:327.270533pt;}
.y4b{bottom:328.749600pt;}
.ya5{bottom:335.922533pt;}
.y75{bottom:337.085733pt;}
.y20{bottom:345.750533pt;}
.y4a{bottom:347.229600pt;}
.ya4{bottom:354.402533pt;}
.y74{bottom:355.565733pt;}
.y1f{bottom:364.230533pt;}
.y49{bottom:365.709600pt;}
.ya3{bottom:372.882533pt;}
.y73{bottom:374.045733pt;}
.y1e{bottom:382.710533pt;}
.y48{bottom:384.189600pt;}
.ya2{bottom:391.362533pt;}
.y72{bottom:392.525733pt;}
.y47{bottom:402.669600pt;}
.ya1{bottom:409.842533pt;}
.y1d{bottom:410.430533pt;}
.y71{bottom:411.005733pt;}
.y46{bottom:421.149600pt;}
.ya0{bottom:428.322533pt;}
.y1c{bottom:428.910533pt;}
.y70{bottom:429.485733pt;}
.y45{bottom:439.629600pt;}
.y9f{bottom:446.802533pt;}
.y1b{bottom:447.390533pt;}
.y6f{bottom:447.965733pt;}
.y44{bottom:458.109600pt;}
.y9e{bottom:465.282533pt;}
.y1a{bottom:465.870533pt;}
.y6e{bottom:466.445733pt;}
.y43{bottom:476.589600pt;}
.y9d{bottom:483.762533pt;}
.y19{bottom:484.350533pt;}
.y6d{bottom:484.848000pt;}
.y42{bottom:495.069600pt;}
.y9c{bottom:502.242533pt;}
.y6c{bottom:503.328000pt;}
.y18{bottom:512.070533pt;}
.y41{bottom:513.549600pt;}
.y9b{bottom:520.722533pt;}
.y6b{bottom:521.808000pt;}
.y17{bottom:530.550533pt;}
.y40{bottom:532.029600pt;}
.yb5{bottom:539.190133pt;}
.y6a{bottom:540.288000pt;}
.y9a{bottom:548.442533pt;}
.y16{bottom:549.030533pt;}
.y3f{bottom:550.509600pt;}
.y69{bottom:558.768000pt;}
.yb4{bottom:566.910133pt;}
.y99{bottom:566.922533pt;}
.y15{bottom:567.510533pt;}
.y3e{bottom:568.989600pt;}
.y68{bottom:577.248000pt;}
.yb3{bottom:585.390133pt;}
.y98{bottom:585.402533pt;}
.y14{bottom:585.990533pt;}
.y3d{bottom:587.469600pt;}
.y67{bottom:595.728000pt;}
.y97{bottom:603.882533pt;}
.y13{bottom:604.470533pt;}
.y3c{bottom:605.949600pt;}
.y66{bottom:614.208000pt;}
.yb2{bottom:620.665600pt;}
.y96{bottom:622.362533pt;}
.y12{bottom:622.943600pt;}
.y3b{bottom:624.424133pt;}
.y95{bottom:640.842533pt;}
.y65{bottom:641.385333pt;}
.y3a{bottom:642.904133pt;}
.y94{bottom:659.322533pt;}
.y64{bottom:659.865333pt;}
.y39{bottom:661.346667pt;}
.y93{bottom:677.802533pt;}
.y63{bottom:678.345333pt;}
.y38{bottom:679.826667pt;}
.y11{bottom:683.120933pt;}
.y92{bottom:696.282533pt;}
.y62{bottom:696.825333pt;}
.y37{bottom:698.306667pt;}
.y10{bottom:701.600933pt;}
.y91{bottom:714.762533pt;}
.y61{bottom:715.305333pt;}
.yf{bottom:720.080933pt;}
.y36{bottom:729.634667pt;}
.y90{bottom:733.242533pt;}
.y60{bottom:733.785333pt;}
.ye{bottom:738.560933pt;}
.y35{bottom:748.114667pt;}
.y8f{bottom:751.722533pt;}
.y5f{bottom:752.265333pt;}
.y34{bottom:766.594667pt;}
.y8e{bottom:770.202533pt;}
.y5e{bottom:770.745333pt;}
.yd{bottom:773.388533pt;}
.y33{bottom:785.074667pt;}
.y8d{bottom:788.682533pt;}
.y5d{bottom:789.225333pt;}
.yb1{bottom:797.922533pt;}
.y32{bottom:803.554667pt;}
.y5c{bottom:807.705333pt;}
.y8c{bottom:816.402533pt;}
.y31{bottom:822.034667pt;}
.y5b{bottom:826.185333pt;}
.y8b{bottom:834.882533pt;}
.y30{bottom:840.514667pt;}
.y5a{bottom:844.665333pt;}
.y8a{bottom:853.362533pt;}
.y2f{bottom:858.994667pt;}
.y89{bottom:871.842533pt;}
.y59{bottom:871.842667pt;}
.y2e{bottom:877.474667pt;}
.yc{bottom:878.152133pt;}
.y88{bottom:890.322533pt;}
.y58{bottom:890.322667pt;}
.y2d{bottom:895.954667pt;}
.yb{bottom:896.629467pt;}
.y87{bottom:908.802533pt;}
.y57{bottom:908.802667pt;}
.y86{bottom:927.282533pt;}
.y2c{bottom:927.282667pt;}
.y85{bottom:945.762533pt;}
.y2b{bottom:945.762667pt;}
.y84{bottom:964.242533pt;}
.y2a{bottom:964.242667pt;}
.ya{bottom:975.536000pt;}
.y83{bottom:982.722533pt;}
.y29{bottom:982.722667pt;}
.y2{bottom:1033.537200pt;}
.y81{bottom:1041.982133pt;}
.y27{bottom:1041.982267pt;}
.y9{bottom:1061.227067pt;}
.y8{bottom:1073.227067pt;}
.h3{height:31.402667pt;}
.h2{height:34.808594pt;}
.h4{height:38.997333pt;}
.hc{height:40.304688pt;}
.hb{height:42.704000pt;}
.h7{height:50.240000pt;}
.h9{height:55.264000pt;}
.he{height:55.285867pt;}
.ha{height:55.291733pt;}
.hd{height:55.413867pt;}
.hf{height:55.574933pt;}
.h8{height:60.416000pt;}
.h10{height:65.450667pt;}
.h6{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.519939pt;}
.h1{height:1122.666667pt;}
.w3{width:793.700000pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488133pt;}
.x3{left:98.267867pt;}
.xb{left:120.939867pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.xa{left:320.608533pt;}
.x8{left:393.754667pt;}
.x7{left:471.601467pt;}
.x6{left:544.215067pt;}
.x2{left:652.371467pt;}
}




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