
    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_2440fa582100bd04d05898a6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;font-style:normal;font-weight: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_f08f3a46225d1ab50ac99c1a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.193359;font-style:normal;font-weight: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_099067685894ba958d3c1797.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight: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_f604444932b5a06b369a267d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;font-style:normal;font-weight: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_9aa939cc60f5c4e97cb46f06.woff')format("woff");}.ff5{font-family:ff5;line-height:0.947266;font-style:normal;font-weight: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_2a16cc58f0ac6313118def09.woff')format("woff");}.ff6{font-family:ff6;line-height:1.078613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.787000px;}
.ls24{letter-spacing:-1.932000px;}
.ls2a{letter-spacing:-0.828000px;}
.ls2b{letter-spacing:-0.759000px;}
.ls31{letter-spacing:-0.693000px;}
.ls32{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.621000px;}
.ls18{letter-spacing:-0.552000px;}
.ls27{letter-spacing:-0.483000px;}
.ls2d{letter-spacing:-0.441000px;}
.ls12{letter-spacing:-0.414000px;}
.ls2e{letter-spacing:-0.378000px;}
.ls13{letter-spacing:-0.345000px;}
.ls33{letter-spacing:-0.315000px;}
.ls16{letter-spacing:-0.276000px;}
.lse{letter-spacing:-0.207000px;}
.ls4{letter-spacing:-0.138000px;}
.lsc{letter-spacing:-0.069000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.069000px;}
.ls5{letter-spacing:0.138000px;}
.ls29{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.207000px;}
.ls17{letter-spacing:0.276000px;}
.ls2{letter-spacing:0.345000px;}
.lsf{letter-spacing:0.414000px;}
.ls6{letter-spacing:0.483000px;}
.ls11{letter-spacing:0.552000px;}
.ls14{letter-spacing:0.621000px;}
.lsd{letter-spacing:0.690000px;}
.ls15{letter-spacing:0.759000px;}
.ls26{letter-spacing:0.828000px;}
.ls1c{letter-spacing:0.897000px;}
.ls9{letter-spacing:0.966000px;}
.ls28{letter-spacing:1.026000px;}
.ls1b{letter-spacing:1.035000px;}
.ls21{letter-spacing:1.104000px;}
.ls23{letter-spacing:1.173000px;}
.ls25{letter-spacing:1.242000px;}
.ls20{letter-spacing:1.311000px;}
.ls1f{letter-spacing:1.449000px;}
.ls1d{letter-spacing:2.001000px;}
.lsb{letter-spacing:2.730000px;}
.ls0{letter-spacing:3.900000px;}
.ls1a{letter-spacing:5.175000px;}
.ls22{letter-spacing:5.313000px;}
.ls30{letter-spacing:5.400000px;}
.ls1{letter-spacing:6.000000px;}
.ls7{letter-spacing:6.240000px;}
.ls2c{letter-spacing:6.300000px;}
.ls8{letter-spacing:7.731000px;}
.ls2f{letter-spacing:9.450000px;}
.ls1e{letter-spacing:10.212000px;}
.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:-21.918000px;}
.ws8{word-spacing:-19.941000px;}
.ws6{word-spacing:-19.734000px;}
.ws7{word-spacing:-19.458000px;}
.ws3{word-spacing:-19.389000px;}
.ws13{word-spacing:-18.147000px;}
.ws12{word-spacing:-17.940000px;}
.wsb{word-spacing:-17.733000px;}
.ws14{word-spacing:-17.664000px;}
.wsf{word-spacing:-17.526000px;}
.ws10{word-spacing:-17.457000px;}
.wse{word-spacing:-17.388000px;}
.ws11{word-spacing:-17.319000px;}
.ws4{word-spacing:-17.181000px;}
.wsd{word-spacing:-17.112000px;}
.ws1{word-spacing:-17.043000px;}
.ws9{word-spacing:-16.905000px;}
.ws5{word-spacing:-16.836000px;}
.wsa{word-spacing:-16.698000px;}
.ws16{word-spacing:-16.629000px;}
.wsc{word-spacing:-16.491000px;}
.ws15{word-spacing:-16.284000px;}
.ws18{word-spacing:-15.246000px;}
.ws17{word-spacing:-8.958600px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1615.752000px;}
._14{margin-left:-15.687000px;}
._12{margin-left:-12.822000px;}
._b{margin-left:-11.016000px;}
._a{margin-left:-9.504000px;}
._10{margin-left:-8.010000px;}
._3{margin-left:-6.363000px;}
._c{margin-left:-4.992000px;}
._11{margin-left:-3.891000px;}
._9{margin-left:-2.880000px;}
._2{margin-left:-1.800000px;}
._8{width:1.020000px;}
._7{width:3.000000px;}
._1{width:4.080000px;}
._4{width:6.000000px;}
._6{width:7.500000px;}
._5{width:8.520000px;}
._e{width:9.555000px;}
._d{width:10.593000px;}
._13{width:11.895000px;}
._f{width:1945.020000px;}
.fc0{color:rgb(36,31,31);}
.fs5{font-size:36.000000px;}
.fs9{font-size:37.800000px;}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs4{font-size:69.000000px;}
.fs0{font-size:78.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:9.000000px;}
.y1{bottom:31.500000px;}
.y26{bottom:56.679300px;}
.y2{bottom:56.691000px;}
.y24{bottom:107.817000px;}
.y9b{bottom:108.147750px;}
.y4c{bottom:109.050000px;}
.y99{bottom:109.062000px;}
.y74{bottom:109.355250px;}
.ybd{bottom:113.086500px;}
.y23{bottom:128.517000px;}
.y9a{bottom:130.193250px;}
.y73{bottom:130.797000px;}
.y4b{bottom:131.095500px;}
.y98{bottom:131.107500px;}
.ybc{bottom:132.443250px;}
.y22{bottom:149.217000px;}
.ybb{bottom:151.800000px;}
.y72{bottom:152.238750px;}
.y4a{bottom:153.141000px;}
.y97{bottom:153.153000px;}
.y21{bottom:169.917000px;}
.y71{bottom:173.680500px;}
.y49{bottom:175.186500px;}
.y96{bottom:175.198500px;}
.yba{bottom:187.350000px;}
.y20{bottom:190.617000px;}
.y70{bottom:195.122250px;}
.y48{bottom:197.232000px;}
.y95{bottom:197.244000px;}
.y1f{bottom:211.317000px;}
.y6f{bottom:216.564000px;}
.y47{bottom:219.277500px;}
.y94{bottom:219.289500px;}
.y1e{bottom:232.017000px;}
.yb9{bottom:236.677500px;}
.y6e{bottom:238.005750px;}
.y46{bottom:241.323000px;}
.y93{bottom:241.335000px;}
.y1d{bottom:252.717000px;}
.yb8{bottom:258.878250px;}
.y6d{bottom:259.447500px;}
.y45{bottom:263.368500px;}
.y92{bottom:263.380500px;}
.y1c{bottom:273.417000px;}
.y6c{bottom:280.889250px;}
.yb7{bottom:281.079000px;}
.y44{bottom:285.414000px;}
.y91{bottom:285.426000px;}
.y1b{bottom:294.117000px;}
.y6b{bottom:302.331000px;}
.yb6{bottom:303.279750px;}
.y43{bottom:307.459500px;}
.y90{bottom:307.471500px;}
.y1a{bottom:314.817000px;}
.y6a{bottom:323.772750px;}
.yb5{bottom:325.480500px;}
.y42{bottom:329.505000px;}
.y8f{bottom:329.517000px;}
.y19{bottom:335.517000px;}
.y69{bottom:345.214500px;}
.yb4{bottom:347.681250px;}
.y41{bottom:351.550500px;}
.y8e{bottom:351.562500px;}
.y18{bottom:356.217000px;}
.y68{bottom:366.656250px;}
.yb3{bottom:369.882000px;}
.y40{bottom:373.596000px;}
.y8d{bottom:373.608000px;}
.y17{bottom:376.917000px;}
.y67{bottom:388.098000px;}
.yb2{bottom:392.082750px;}
.y3f{bottom:395.641500px;}
.y8c{bottom:395.653500px;}
.y16{bottom:397.617000px;}
.y66{bottom:409.539750px;}
.yb1{bottom:414.283500px;}
.y3e{bottom:417.687000px;}
.y8b{bottom:417.699000px;}
.y15{bottom:418.317000px;}
.y65{bottom:430.981500px;}
.yb0{bottom:436.484250px;}
.y14{bottom:439.017000px;}
.y3d{bottom:439.732500px;}
.y8a{bottom:439.744500px;}
.y64{bottom:452.423250px;}
.yaf{bottom:458.685000px;}
.y13{bottom:459.717000px;}
.y3c{bottom:461.778000px;}
.y89{bottom:461.790000px;}
.y63{bottom:473.865000px;}
.y12{bottom:480.417000px;}
.yae{bottom:480.885750px;}
.y3b{bottom:483.823500px;}
.y88{bottom:483.835500px;}
.y62{bottom:495.306750px;}
.yad{bottom:503.086500px;}
.y3a{bottom:505.869000px;}
.y87{bottom:505.881000px;}
.ycd{bottom:513.307500px;}
.y61{bottom:516.748500px;}
.y11{bottom:521.812500px;}
.yac{bottom:525.287250px;}
.y39{bottom:527.914500px;}
.y86{bottom:527.926500px;}
.ycc{bottom:533.557500px;}
.y60{bottom:538.190250px;}
.y10{bottom:541.162500px;}
.yab{bottom:547.488000px;}
.y38{bottom:549.960000px;}
.y85{bottom:549.972000px;}
.ycb{bottom:553.807500px;}
.y5f{bottom:559.632000px;}
.yf{bottom:560.512500px;}
.yaa{bottom:569.688750px;}
.y37{bottom:572.005500px;}
.y84{bottom:572.017500px;}
.yca{bottom:574.057500px;}
.y5e{bottom:581.073750px;}
.ye{bottom:590.497500px;}
.ya9{bottom:591.889500px;}
.y36{bottom:594.051000px;}
.y83{bottom:594.063000px;}
.yc9{bottom:594.307500px;}
.y5d{bottom:602.515500px;}
.yd{bottom:609.847500px;}
.ya8{bottom:614.090250px;}
.y35{bottom:616.096500px;}
.y82{bottom:616.108500px;}
.y5c{bottom:623.957250px;}
.yc{bottom:629.233500px;}
.yc8{bottom:629.557500px;}
.ya7{bottom:636.291000px;}
.y34{bottom:638.142000px;}
.y81{bottom:638.154000px;}
.y5b{bottom:645.399000px;}
.ya6{bottom:658.491750px;}
.y33{bottom:660.187500px;}
.y80{bottom:660.199500px;}
.yb{bottom:661.471500px;}
.y5a{bottom:666.840750px;}
.yc7{bottom:679.810500px;}
.ya5{bottom:680.692500px;}
.y32{bottom:682.233000px;}
.y7f{bottom:682.245000px;}
.y59{bottom:688.282500px;}
.ya{bottom:693.709500px;}
.yc6{bottom:699.009750px;}
.ya4{bottom:702.893250px;}
.y31{bottom:704.278500px;}
.y7e{bottom:704.290500px;}
.y58{bottom:709.724250px;}
.yc5{bottom:718.209000px;}
.ya3{bottom:725.094000px;}
.y9{bottom:725.947500px;}
.y30{bottom:726.324000px;}
.y7d{bottom:726.336000px;}
.y57{bottom:731.166000px;}
.yc4{bottom:737.408250px;}
.ya2{bottom:747.294750px;}
.y2f{bottom:748.369500px;}
.y7c{bottom:748.381500px;}
.y56{bottom:752.607750px;}
.yc3{bottom:767.238750px;}
.ya1{bottom:769.495500px;}
.y2e{bottom:770.415000px;}
.y7b{bottom:770.427000px;}
.y55{bottom:774.049500px;}
.yc2{bottom:786.438000px;}
.ya0{bottom:791.696250px;}
.y2d{bottom:792.460500px;}
.y7a{bottom:792.472500px;}
.y54{bottom:795.491250px;}
.y8{bottom:799.597500px;}
.y9f{bottom:813.897000px;}
.y2c{bottom:814.506000px;}
.y79{bottom:814.518000px;}
.yc1{bottom:816.268500px;}
.y53{bottom:816.933000px;}
.y7{bottom:817.447500px;}
.y6{bottom:835.297500px;}
.yc0{bottom:835.467750px;}
.y9e{bottom:836.097750px;}
.y2b{bottom:836.551500px;}
.y78{bottom:836.563500px;}
.y52{bottom:838.374750px;}
.y5{bottom:853.147500px;}
.y9d{bottom:858.298500px;}
.y2a{bottom:858.597000px;}
.y77{bottom:858.609000px;}
.y51{bottom:859.816500px;}
.ybf{bottom:865.298250px;}
.y9c{bottom:880.499250px;}
.y29{bottom:880.642500px;}
.y76{bottom:880.654500px;}
.y50{bottom:881.258250px;}
.ybe{bottom:884.498250px;}
.y4{bottom:885.847500px;}
.y28{bottom:902.688000px;}
.y4f{bottom:902.700000px;}
.y3{bottom:903.697500px;}
.y27{bottom:946.269000px;}
.y4e{bottom:946.281000px;}
.y4d{bottom:964.269000px;}
.y75{bottom:964.281000px;}
.h9{height:37.546875px;}
.ha{height:40.757812px;}
.hd{height:45.852539px;}
.h5{height:50.947266px;}
.h4{height:53.494629px;}
.hb{height:57.128906px;}
.h7{height:58.589355px;}
.hc{height:59.985352px;}
.h8{height:65.698242px;}
.h3{height:66.231445px;}
.h6{height:91.705078px;}
.h2{height:1020.472500px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w2{width:722.835000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x1{left:31.500000px;}
.x6{left:46.500000px;}
.x5{left:85.044562px;}
.x4{left:106.299150px;}
.x3{left:233.857500px;}
.x2{left:608.545500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.477333pt;}
.ls24{letter-spacing:-1.717333pt;}
.ls2a{letter-spacing:-0.736000pt;}
.ls2b{letter-spacing:-0.674667pt;}
.ls31{letter-spacing:-0.616000pt;}
.ls32{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.552000pt;}
.ls18{letter-spacing:-0.490667pt;}
.ls27{letter-spacing:-0.429333pt;}
.ls2d{letter-spacing:-0.392000pt;}
.ls12{letter-spacing:-0.368000pt;}
.ls2e{letter-spacing:-0.336000pt;}
.ls13{letter-spacing:-0.306667pt;}
.ls33{letter-spacing:-0.280000pt;}
.ls16{letter-spacing:-0.245333pt;}
.lse{letter-spacing:-0.184000pt;}
.ls4{letter-spacing:-0.122667pt;}
.lsc{letter-spacing:-0.061333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.061333pt;}
.ls5{letter-spacing:0.122667pt;}
.ls29{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.184000pt;}
.ls17{letter-spacing:0.245333pt;}
.ls2{letter-spacing:0.306667pt;}
.lsf{letter-spacing:0.368000pt;}
.ls6{letter-spacing:0.429333pt;}
.ls11{letter-spacing:0.490667pt;}
.ls14{letter-spacing:0.552000pt;}
.lsd{letter-spacing:0.613333pt;}
.ls15{letter-spacing:0.674667pt;}
.ls26{letter-spacing:0.736000pt;}
.ls1c{letter-spacing:0.797333pt;}
.ls9{letter-spacing:0.858667pt;}
.ls28{letter-spacing:0.912000pt;}
.ls1b{letter-spacing:0.920000pt;}
.ls21{letter-spacing:0.981333pt;}
.ls23{letter-spacing:1.042667pt;}
.ls25{letter-spacing:1.104000pt;}
.ls20{letter-spacing:1.165333pt;}
.ls1f{letter-spacing:1.288000pt;}
.ls1d{letter-spacing:1.778667pt;}
.lsb{letter-spacing:2.426667pt;}
.ls0{letter-spacing:3.466667pt;}
.ls1a{letter-spacing:4.600000pt;}
.ls22{letter-spacing:4.722667pt;}
.ls30{letter-spacing:4.800000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls7{letter-spacing:5.546667pt;}
.ls2c{letter-spacing:5.600000pt;}
.ls8{letter-spacing:6.872000pt;}
.ls2f{letter-spacing:8.400000pt;}
.ls1e{letter-spacing:9.077333pt;}
.ws0{word-spacing:-19.482667pt;}
.ws8{word-spacing:-17.725333pt;}
.ws6{word-spacing:-17.541333pt;}
.ws7{word-spacing:-17.296000pt;}
.ws3{word-spacing:-17.234667pt;}
.ws13{word-spacing:-16.130667pt;}
.ws12{word-spacing:-15.946667pt;}
.wsb{word-spacing:-15.762667pt;}
.ws14{word-spacing:-15.701333pt;}
.wsf{word-spacing:-15.578667pt;}
.ws10{word-spacing:-15.517333pt;}
.wse{word-spacing:-15.456000pt;}
.ws11{word-spacing:-15.394667pt;}
.ws4{word-spacing:-15.272000pt;}
.wsd{word-spacing:-15.210667pt;}
.ws1{word-spacing:-15.149333pt;}
.ws9{word-spacing:-15.026667pt;}
.ws5{word-spacing:-14.965333pt;}
.wsa{word-spacing:-14.842667pt;}
.ws16{word-spacing:-14.781333pt;}
.wsc{word-spacing:-14.658667pt;}
.ws15{word-spacing:-14.474667pt;}
.ws18{word-spacing:-13.552000pt;}
.ws17{word-spacing:-7.963200pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1436.224000pt;}
._14{margin-left:-13.944000pt;}
._12{margin-left:-11.397333pt;}
._b{margin-left:-9.792000pt;}
._a{margin-left:-8.448000pt;}
._10{margin-left:-7.120000pt;}
._3{margin-left:-5.656000pt;}
._c{margin-left:-4.437333pt;}
._11{margin-left:-3.458667pt;}
._9{margin-left:-2.560000pt;}
._2{margin-left:-1.600000pt;}
._8{width:0.906667pt;}
._7{width:2.666667pt;}
._1{width:3.626667pt;}
._4{width:5.333333pt;}
._6{width:6.666667pt;}
._5{width:7.573333pt;}
._e{width:8.493333pt;}
._d{width:9.416000pt;}
._13{width:10.573333pt;}
._f{width:1728.906667pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:33.600000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs4{font-size:61.333333pt;}
.fs0{font-size:69.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:8.000000pt;}
.y1{bottom:28.000000pt;}
.y26{bottom:50.381600pt;}
.y2{bottom:50.392000pt;}
.y24{bottom:95.837333pt;}
.y9b{bottom:96.131333pt;}
.y4c{bottom:96.933333pt;}
.y99{bottom:96.944000pt;}
.y74{bottom:97.204667pt;}
.ybd{bottom:100.521333pt;}
.y23{bottom:114.237333pt;}
.y9a{bottom:115.727333pt;}
.y73{bottom:116.264000pt;}
.y4b{bottom:116.529333pt;}
.y98{bottom:116.540000pt;}
.ybc{bottom:117.727333pt;}
.y22{bottom:132.637333pt;}
.ybb{bottom:134.933333pt;}
.y72{bottom:135.323333pt;}
.y4a{bottom:136.125333pt;}
.y97{bottom:136.136000pt;}
.y21{bottom:151.037333pt;}
.y71{bottom:154.382667pt;}
.y49{bottom:155.721333pt;}
.y96{bottom:155.732000pt;}
.yba{bottom:166.533333pt;}
.y20{bottom:169.437333pt;}
.y70{bottom:173.442000pt;}
.y48{bottom:175.317333pt;}
.y95{bottom:175.328000pt;}
.y1f{bottom:187.837333pt;}
.y6f{bottom:192.501333pt;}
.y47{bottom:194.913333pt;}
.y94{bottom:194.924000pt;}
.y1e{bottom:206.237333pt;}
.yb9{bottom:210.380000pt;}
.y6e{bottom:211.560667pt;}
.y46{bottom:214.509333pt;}
.y93{bottom:214.520000pt;}
.y1d{bottom:224.637333pt;}
.yb8{bottom:230.114000pt;}
.y6d{bottom:230.620000pt;}
.y45{bottom:234.105333pt;}
.y92{bottom:234.116000pt;}
.y1c{bottom:243.037333pt;}
.y6c{bottom:249.679333pt;}
.yb7{bottom:249.848000pt;}
.y44{bottom:253.701333pt;}
.y91{bottom:253.712000pt;}
.y1b{bottom:261.437333pt;}
.y6b{bottom:268.738667pt;}
.yb6{bottom:269.582000pt;}
.y43{bottom:273.297333pt;}
.y90{bottom:273.308000pt;}
.y1a{bottom:279.837333pt;}
.y6a{bottom:287.798000pt;}
.yb5{bottom:289.316000pt;}
.y42{bottom:292.893333pt;}
.y8f{bottom:292.904000pt;}
.y19{bottom:298.237333pt;}
.y69{bottom:306.857333pt;}
.yb4{bottom:309.050000pt;}
.y41{bottom:312.489333pt;}
.y8e{bottom:312.500000pt;}
.y18{bottom:316.637333pt;}
.y68{bottom:325.916667pt;}
.yb3{bottom:328.784000pt;}
.y40{bottom:332.085333pt;}
.y8d{bottom:332.096000pt;}
.y17{bottom:335.037333pt;}
.y67{bottom:344.976000pt;}
.yb2{bottom:348.518000pt;}
.y3f{bottom:351.681333pt;}
.y8c{bottom:351.692000pt;}
.y16{bottom:353.437333pt;}
.y66{bottom:364.035333pt;}
.yb1{bottom:368.252000pt;}
.y3e{bottom:371.277333pt;}
.y8b{bottom:371.288000pt;}
.y15{bottom:371.837333pt;}
.y65{bottom:383.094667pt;}
.yb0{bottom:387.986000pt;}
.y14{bottom:390.237333pt;}
.y3d{bottom:390.873333pt;}
.y8a{bottom:390.884000pt;}
.y64{bottom:402.154000pt;}
.yaf{bottom:407.720000pt;}
.y13{bottom:408.637333pt;}
.y3c{bottom:410.469333pt;}
.y89{bottom:410.480000pt;}
.y63{bottom:421.213333pt;}
.y12{bottom:427.037333pt;}
.yae{bottom:427.454000pt;}
.y3b{bottom:430.065333pt;}
.y88{bottom:430.076000pt;}
.y62{bottom:440.272667pt;}
.yad{bottom:447.188000pt;}
.y3a{bottom:449.661333pt;}
.y87{bottom:449.672000pt;}
.ycd{bottom:456.273333pt;}
.y61{bottom:459.332000pt;}
.y11{bottom:463.833333pt;}
.yac{bottom:466.922000pt;}
.y39{bottom:469.257333pt;}
.y86{bottom:469.268000pt;}
.ycc{bottom:474.273333pt;}
.y60{bottom:478.391333pt;}
.y10{bottom:481.033333pt;}
.yab{bottom:486.656000pt;}
.y38{bottom:488.853333pt;}
.y85{bottom:488.864000pt;}
.ycb{bottom:492.273333pt;}
.y5f{bottom:497.450667pt;}
.yf{bottom:498.233333pt;}
.yaa{bottom:506.390000pt;}
.y37{bottom:508.449333pt;}
.y84{bottom:508.460000pt;}
.yca{bottom:510.273333pt;}
.y5e{bottom:516.510000pt;}
.ye{bottom:524.886667pt;}
.ya9{bottom:526.124000pt;}
.y36{bottom:528.045333pt;}
.y83{bottom:528.056000pt;}
.yc9{bottom:528.273333pt;}
.y5d{bottom:535.569333pt;}
.yd{bottom:542.086667pt;}
.ya8{bottom:545.858000pt;}
.y35{bottom:547.641333pt;}
.y82{bottom:547.652000pt;}
.y5c{bottom:554.628667pt;}
.yc{bottom:559.318667pt;}
.yc8{bottom:559.606667pt;}
.ya7{bottom:565.592000pt;}
.y34{bottom:567.237333pt;}
.y81{bottom:567.248000pt;}
.y5b{bottom:573.688000pt;}
.ya6{bottom:585.326000pt;}
.y33{bottom:586.833333pt;}
.y80{bottom:586.844000pt;}
.yb{bottom:587.974667pt;}
.y5a{bottom:592.747333pt;}
.yc7{bottom:604.276000pt;}
.ya5{bottom:605.060000pt;}
.y32{bottom:606.429333pt;}
.y7f{bottom:606.440000pt;}
.y59{bottom:611.806667pt;}
.ya{bottom:616.630667pt;}
.yc6{bottom:621.342000pt;}
.ya4{bottom:624.794000pt;}
.y31{bottom:626.025333pt;}
.y7e{bottom:626.036000pt;}
.y58{bottom:630.866000pt;}
.yc5{bottom:638.408000pt;}
.ya3{bottom:644.528000pt;}
.y9{bottom:645.286667pt;}
.y30{bottom:645.621333pt;}
.y7d{bottom:645.632000pt;}
.y57{bottom:649.925333pt;}
.yc4{bottom:655.474000pt;}
.ya2{bottom:664.262000pt;}
.y2f{bottom:665.217333pt;}
.y7c{bottom:665.228000pt;}
.y56{bottom:668.984667pt;}
.yc3{bottom:681.990000pt;}
.ya1{bottom:683.996000pt;}
.y2e{bottom:684.813333pt;}
.y7b{bottom:684.824000pt;}
.y55{bottom:688.044000pt;}
.yc2{bottom:699.056000pt;}
.ya0{bottom:703.730000pt;}
.y2d{bottom:704.409333pt;}
.y7a{bottom:704.420000pt;}
.y54{bottom:707.103333pt;}
.y8{bottom:710.753333pt;}
.y9f{bottom:723.464000pt;}
.y2c{bottom:724.005333pt;}
.y79{bottom:724.016000pt;}
.yc1{bottom:725.572000pt;}
.y53{bottom:726.162667pt;}
.y7{bottom:726.620000pt;}
.y6{bottom:742.486667pt;}
.yc0{bottom:742.638000pt;}
.y9e{bottom:743.198000pt;}
.y2b{bottom:743.601333pt;}
.y78{bottom:743.612000pt;}
.y52{bottom:745.222000pt;}
.y5{bottom:758.353333pt;}
.y9d{bottom:762.932000pt;}
.y2a{bottom:763.197333pt;}
.y77{bottom:763.208000pt;}
.y51{bottom:764.281333pt;}
.ybf{bottom:769.154000pt;}
.y9c{bottom:782.666000pt;}
.y29{bottom:782.793333pt;}
.y76{bottom:782.804000pt;}
.y50{bottom:783.340667pt;}
.ybe{bottom:786.220667pt;}
.y4{bottom:787.420000pt;}
.y28{bottom:802.389333pt;}
.y4f{bottom:802.400000pt;}
.y3{bottom:803.286667pt;}
.y27{bottom:841.128000pt;}
.y4e{bottom:841.138667pt;}
.y4d{bottom:857.128000pt;}
.y75{bottom:857.138667pt;}
.h9{height:33.375000pt;}
.ha{height:36.229167pt;}
.hd{height:40.757812pt;}
.h5{height:45.286458pt;}
.h4{height:47.550781pt;}
.hb{height:50.781250pt;}
.h7{height:52.079427pt;}
.hc{height:53.320312pt;}
.h8{height:58.398438pt;}
.h3{height:58.872396pt;}
.h6{height:81.515625pt;}
.h2{height:907.086667pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w2{width:642.520000pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x1{left:28.000000pt;}
.x6{left:41.333333pt;}
.x5{left:75.595167pt;}
.x4{left:94.488133pt;}
.x3{left:207.873333pt;}
.x2{left:540.929333pt;}
}




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