
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_bfc8e4e9e058ca9d9d776d79.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f81a0f1497ec2b9a0640284b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_d353407237851fa36537a999.woff')format("woff");}.ff5{font-family:ff5;line-height:0.860000;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_36719b170eb0d442e10c5365.woff')format("woff");}.ff6{font-family:ff6;line-height:0.860000;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_c4dcf1a507dbca136f6d28ff.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_189e561f29d4f739b9793336.woff')format("woff");}.ff8{font-family:ff8;line-height:1.019000;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_6276810027e5c22ea32a8815.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_6fccc58e0ca5bd41d46abeda.woff')format("woff");}.ffa{font-family:ffa;line-height:0.950000;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.009000;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_7bcb22167810f3a36fb2fada.woff')format("woff");}.ffc{font-family:ffc;line-height:1.061000;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_1eb6d1b625b7898de1946127.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.013680px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.249120px;}
.ls0{letter-spacing:0.378720px;}
.ls2{letter-spacing:0.457920px;}
.ls10{letter-spacing:0.576000px;}
.lsc{letter-spacing:18.864000px;}
.lsf{letter-spacing:20.304000px;}
.lsd{letter-spacing:22.464000px;}
.lse{letter-spacing:23.904000px;}
.lsb{letter-spacing:25.344000px;}
.lsa{letter-spacing:40.464000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.872000px;}
.ws5{word-spacing:-19.728000px;}
.ws7{word-spacing:-19.051200px;}
.wsb{word-spacing:-18.648000px;}
.wsa{word-spacing:-18.504000px;}
.wse{word-spacing:-18.432000px;}
.wsd{word-spacing:-18.360000px;}
.ws2{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.282240px;}
.wsc{word-spacing:-18.216000px;}
.ws4{word-spacing:-17.023680px;}
.ws3{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.156240px;}
.ws9{word-spacing:-0.142560px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-4.968000px;}
._e{margin-left:-3.709440px;}
._22{margin-left:-2.174400px;}
._1{margin-left:-1.157760px;}
._2{width:1.044000px;}
._3{width:2.121600px;}
._8{width:3.707520px;}
._12{width:4.826400px;}
._1b{width:5.966880px;}
._6{width:7.021440px;}
._7{width:8.046720px;}
._1c{width:9.250560px;}
._16{width:10.601280px;}
._b{width:11.724480px;}
._c{width:13.314240px;}
._18{width:14.339520px;}
._19{width:15.768000px;}
._4{width:17.400000px;}
._5{width:19.512000px;}
._15{width:20.882880px;}
._d{width:21.890880px;}
._1a{width:23.256000px;}
._17{width:24.768000px;}
._11{width:26.424000px;}
._14{width:28.296000px;}
._a{width:30.300480px;}
._9{width:31.530240px;}
._10{width:33.085440px;}
._20{width:35.352000px;}
._1f{width:36.792000px;}
._23{width:38.424000px;}
._13{width:40.176000px;}
._1d{width:47.304000px;}
._1e{width:48.384000px;}
._21{width:49.392000px;}
._27{width:51.520800px;}
._26{width:52.992000px;}
._24{width:64.944000px;}
._25{width:66.528000px;}
._0{width:1481.489760px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs9{font-size:77.760000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.y75{bottom:4.500000px;}
.yc{bottom:5.400000px;}
.y42{bottom:6.660000px;}
.yb{bottom:16.740000px;}
.y6{bottom:19.650000px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.y41{bottom:30.450000px;}
.y43{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.y40{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.156000px;}
.y2{bottom:98.676000px;}
.y84{bottom:120.636000px;}
.y5{bottom:131.220000px;}
.y99{bottom:132.336000px;}
.y3e{bottom:133.236000px;}
.y83{bottom:142.596000px;}
.y72{bottom:150.870000px;}
.y98{bottom:154.290000px;}
.y3d{bottom:155.190000px;}
.y82{bottom:164.550000px;}
.y71{bottom:172.830000px;}
.y97{bottom:176.250000px;}
.y3c{bottom:177.150000px;}
.y81{bottom:182.010000px;}
.y70{bottom:194.790000px;}
.y96{bottom:198.210000px;}
.y3b{bottom:199.110000px;}
.y6f{bottom:216.750000px;}
.y95{bottom:220.170000px;}
.y3a{bottom:221.070000px;}
.y6e{bottom:238.710000px;}
.y94{bottom:242.130000px;}
.y39{bottom:243.030000px;}
.y6d{bottom:260.670000px;}
.y93{bottom:264.090000px;}
.y38{bottom:264.990000px;}
.y6c{bottom:282.630000px;}
.y92{bottom:286.050000px;}
.y37{bottom:286.950000px;}
.y6b{bottom:304.590000px;}
.y91{bottom:308.010000px;}
.y36{bottom:308.910000px;}
.y6a{bottom:326.370000px;}
.y90{bottom:329.790000px;}
.y35{bottom:330.870000px;}
.y80{bottom:335.010000px;}
.y69{bottom:348.375000px;}
.y8f{bottom:351.795000px;}
.y34{bottom:352.695000px;}
.y7f{bottom:357.015000px;}
.y68{bottom:370.335000px;}
.y8e{bottom:373.755000px;}
.y33{bottom:374.655000px;}
.y7e{bottom:378.975000px;}
.y67{bottom:392.295000px;}
.y8d{bottom:395.715000px;}
.y32{bottom:396.615000px;}
.y7d{bottom:400.935000px;}
.y66{bottom:414.255000px;}
.y8c{bottom:417.675000px;}
.y31{bottom:418.575000px;}
.y7c{bottom:422.895000px;}
.y65{bottom:436.215000px;}
.y8b{bottom:439.635000px;}
.y30{bottom:440.535000px;}
.y7b{bottom:444.855000px;}
.y64{bottom:458.175000px;}
.y8a{bottom:461.595000px;}
.y2f{bottom:462.495000px;}
.y7a{bottom:466.815000px;}
.y63{bottom:480.135000px;}
.y89{bottom:483.555000px;}
.y2e{bottom:484.455000px;}
.y79{bottom:488.595000px;}
.y62{bottom:502.095000px;}
.y88{bottom:505.515000px;}
.y2d{bottom:506.415000px;}
.y78{bottom:510.555000px;}
.y61{bottom:524.055000px;}
.y87{bottom:527.475000px;}
.y2c{bottom:528.375000px;}
.y77{bottom:532.515000px;}
.y60{bottom:545.835000px;}
.y86{bottom:549.255000px;}
.y2b{bottom:549.975000px;}
.y76{bottom:554.475000px;}
.y85{bottom:566.715000px;}
.y5f{bottom:567.795000px;}
.y2a{bottom:571.395000px;}
.y74{bottom:571.935000px;}
.y29{bottom:582.915000px;}
.y5e{bottom:589.755000px;}
.y73{bottom:593.895000px;}
.y28{bottom:603.075000px;}
.y5d{bottom:611.745000px;}
.y27{bottom:623.085000px;}
.y5c{bottom:633.705000px;}
.y26{bottom:643.245000px;}
.y5b{bottom:655.665000px;}
.y25{bottom:663.405000px;}
.y5a{bottom:677.625000px;}
.y24{bottom:683.565000px;}
.y59{bottom:699.585000px;}
.y23{bottom:703.545000px;}
.y58{bottom:721.545000px;}
.y22{bottom:723.705000px;}
.y57{bottom:743.505000px;}
.y21{bottom:743.865000px;}
.y20{bottom:764.025000px;}
.y56{bottom:765.285000px;}
.y1f{bottom:784.005000px;}
.y55{bottom:787.245000px;}
.y1e{bottom:804.165000px;}
.y54{bottom:809.205000px;}
.y1d{bottom:824.325000px;}
.y53{bottom:831.165000px;}
.y1c{bottom:844.485000px;}
.y52{bottom:853.125000px;}
.y1b{bottom:861.585000px;}
.y1a{bottom:870.405000px;}
.y51{bottom:875.130000px;}
.y19{bottom:889.710000px;}
.y50{bottom:897.090000px;}
.y18{bottom:902.490000px;}
.y17{bottom:914.370000px;}
.y4f{bottom:919.050000px;}
.y16{bottom:936.330000px;}
.y4e{bottom:941.010000px;}
.y15{bottom:958.290000px;}
.y4d{bottom:962.970000px;}
.y14{bottom:980.250000px;}
.y4c{bottom:984.750000px;}
.y13{bottom:1002.210000px;}
.y4b{bottom:1006.710000px;}
.y4a{bottom:1028.670000px;}
.y12{bottom:1045.230000px;}
.y49{bottom:1050.630000px;}
.y11{bottom:1068.090000px;}
.y48{bottom:1072.590000px;}
.y47{bottom:1094.550000px;}
.y3f{bottom:1114.710000px;}
.y46{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y45{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y44{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h11{height:16.398000px;}
.h6{height:17.280000px;}
.h19{height:21.960000px;}
.h14{height:26.097120px;}
.h10{height:27.548640px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h9{height:36.228240px;}
.h7{height:39.315600px;}
.h15{height:53.928000px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h12{height:57.165120px;}
.h13{height:60.344640px;}
.hf{height:62.136000px;}
.h17{height:63.374400px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h16{height:73.116000px;}
.h1a{height:74.004654px;}
.h5{height:121.070742px;}
.h18{height:166.890000px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w4{width:317.415000px;}
.w8{width:374.115000px;}
.w7{width:392.865000px;}
.w6{width:438.195000px;}
.w5{width:445.965000px;}
.w9{width:766.980000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.xe{left:17.640000px;}
.xf{left:28.080000px;}
.x9{left:46.110000px;}
.x15{left:54.576000px;}
.x1{left:80.999987px;}
.x5{left:105.165000px;}
.x11{left:127.475987px;}
.xc{left:134.135987px;}
.x1c{left:145.835987px;}
.x10{left:146.880000px;}
.xa{left:151.229987px;}
.x1d{left:172.829987px;}
.xb{left:248.789987px;}
.x14{left:256.005000px;}
.x1a{left:260.849987px;}
.x18{left:279.614987px;}
.xd{left:285.735000px;}
.x16{left:300.854987px;}
.x12{left:344.775000px;}
.x7{left:374.475000px;}
.x6{left:422.175000px;}
.x8{left:435.165000px;}
.x13{left:473.865000px;}
.x1b{left:478.364987px;}
.x4{left:554.145000px;}
.x17{left:632.444987px;}
.x19{left:648.644987px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.012160pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.221440pt;}
.ls0{letter-spacing:0.336640pt;}
.ls2{letter-spacing:0.407040pt;}
.ls10{letter-spacing:0.512000pt;}
.lsc{letter-spacing:16.768000pt;}
.lsf{letter-spacing:18.048000pt;}
.lsd{letter-spacing:19.968000pt;}
.lse{letter-spacing:21.248000pt;}
.lsb{letter-spacing:22.528000pt;}
.lsa{letter-spacing:35.968000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws5{word-spacing:-17.536000pt;}
.ws7{word-spacing:-16.934400pt;}
.wsb{word-spacing:-16.576000pt;}
.wsa{word-spacing:-16.448000pt;}
.wse{word-spacing:-16.384000pt;}
.wsd{word-spacing:-16.320000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.250880pt;}
.wsc{word-spacing:-16.192000pt;}
.ws4{word-spacing:-15.132160pt;}
.ws3{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.138880pt;}
.ws9{word-spacing:-0.126720pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-4.416000pt;}
._e{margin-left:-3.297280pt;}
._22{margin-left:-1.932800pt;}
._1{margin-left:-1.029120pt;}
._2{width:0.928000pt;}
._3{width:1.885867pt;}
._8{width:3.295573pt;}
._12{width:4.290133pt;}
._1b{width:5.303893pt;}
._6{width:6.241280pt;}
._7{width:7.152640pt;}
._1c{width:8.222720pt;}
._16{width:9.423360pt;}
._b{width:10.421760pt;}
._c{width:11.834880pt;}
._18{width:12.746240pt;}
._19{width:14.016000pt;}
._4{width:15.466667pt;}
._5{width:17.344000pt;}
._15{width:18.562560pt;}
._d{width:19.458560pt;}
._1a{width:20.672000pt;}
._17{width:22.016000pt;}
._11{width:23.488000pt;}
._14{width:25.152000pt;}
._a{width:26.933760pt;}
._9{width:28.026880pt;}
._10{width:29.409280pt;}
._20{width:31.424000pt;}
._1f{width:32.704000pt;}
._23{width:34.154667pt;}
._13{width:35.712000pt;}
._1d{width:42.048000pt;}
._1e{width:43.008000pt;}
._21{width:43.904000pt;}
._27{width:45.796267pt;}
._26{width:47.104000pt;}
._24{width:57.728000pt;}
._25{width:59.136000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs9{font-size:69.120000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.y75{bottom:4.000000pt;}
.yc{bottom:4.800000pt;}
.y42{bottom:5.920000pt;}
.yb{bottom:14.880000pt;}
.y6{bottom:17.466667pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.y41{bottom:27.066667pt;}
.y43{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.y40{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.472000pt;}
.y2{bottom:87.712000pt;}
.y84{bottom:107.232000pt;}
.y5{bottom:116.640000pt;}
.y99{bottom:117.632000pt;}
.y3e{bottom:118.432000pt;}
.y83{bottom:126.752000pt;}
.y72{bottom:134.106667pt;}
.y98{bottom:137.146667pt;}
.y3d{bottom:137.946667pt;}
.y82{bottom:146.266667pt;}
.y71{bottom:153.626667pt;}
.y97{bottom:156.666667pt;}
.y3c{bottom:157.466667pt;}
.y81{bottom:161.786667pt;}
.y70{bottom:173.146667pt;}
.y96{bottom:176.186667pt;}
.y3b{bottom:176.986667pt;}
.y6f{bottom:192.666667pt;}
.y95{bottom:195.706667pt;}
.y3a{bottom:196.506667pt;}
.y6e{bottom:212.186667pt;}
.y94{bottom:215.226667pt;}
.y39{bottom:216.026667pt;}
.y6d{bottom:231.706667pt;}
.y93{bottom:234.746667pt;}
.y38{bottom:235.546667pt;}
.y6c{bottom:251.226667pt;}
.y92{bottom:254.266667pt;}
.y37{bottom:255.066667pt;}
.y6b{bottom:270.746667pt;}
.y91{bottom:273.786667pt;}
.y36{bottom:274.586667pt;}
.y6a{bottom:290.106667pt;}
.y90{bottom:293.146667pt;}
.y35{bottom:294.106667pt;}
.y80{bottom:297.786667pt;}
.y69{bottom:309.666667pt;}
.y8f{bottom:312.706667pt;}
.y34{bottom:313.506667pt;}
.y7f{bottom:317.346667pt;}
.y68{bottom:329.186667pt;}
.y8e{bottom:332.226667pt;}
.y33{bottom:333.026667pt;}
.y7e{bottom:336.866667pt;}
.y67{bottom:348.706667pt;}
.y8d{bottom:351.746667pt;}
.y32{bottom:352.546667pt;}
.y7d{bottom:356.386667pt;}
.y66{bottom:368.226667pt;}
.y8c{bottom:371.266667pt;}
.y31{bottom:372.066667pt;}
.y7c{bottom:375.906667pt;}
.y65{bottom:387.746667pt;}
.y8b{bottom:390.786667pt;}
.y30{bottom:391.586667pt;}
.y7b{bottom:395.426667pt;}
.y64{bottom:407.266667pt;}
.y8a{bottom:410.306667pt;}
.y2f{bottom:411.106667pt;}
.y7a{bottom:414.946667pt;}
.y63{bottom:426.786667pt;}
.y89{bottom:429.826667pt;}
.y2e{bottom:430.626667pt;}
.y79{bottom:434.306667pt;}
.y62{bottom:446.306667pt;}
.y88{bottom:449.346667pt;}
.y2d{bottom:450.146667pt;}
.y78{bottom:453.826667pt;}
.y61{bottom:465.826667pt;}
.y87{bottom:468.866667pt;}
.y2c{bottom:469.666667pt;}
.y77{bottom:473.346667pt;}
.y60{bottom:485.186667pt;}
.y86{bottom:488.226667pt;}
.y2b{bottom:488.866667pt;}
.y76{bottom:492.866667pt;}
.y85{bottom:503.746667pt;}
.y5f{bottom:504.706667pt;}
.y2a{bottom:507.906667pt;}
.y74{bottom:508.386667pt;}
.y29{bottom:518.146667pt;}
.y5e{bottom:524.226667pt;}
.y73{bottom:527.906667pt;}
.y28{bottom:536.066667pt;}
.y5d{bottom:543.773333pt;}
.y27{bottom:553.853333pt;}
.y5c{bottom:563.293333pt;}
.y26{bottom:571.773333pt;}
.y5b{bottom:582.813333pt;}
.y25{bottom:589.693333pt;}
.y5a{bottom:602.333333pt;}
.y24{bottom:607.613333pt;}
.y59{bottom:621.853333pt;}
.y23{bottom:625.373333pt;}
.y58{bottom:641.373333pt;}
.y22{bottom:643.293333pt;}
.y57{bottom:660.893333pt;}
.y21{bottom:661.213333pt;}
.y20{bottom:679.133333pt;}
.y56{bottom:680.253333pt;}
.y1f{bottom:696.893333pt;}
.y55{bottom:699.773333pt;}
.y1e{bottom:714.813333pt;}
.y54{bottom:719.293333pt;}
.y1d{bottom:732.733333pt;}
.y53{bottom:738.813333pt;}
.y1c{bottom:750.653333pt;}
.y52{bottom:758.333333pt;}
.y1b{bottom:765.853333pt;}
.y1a{bottom:773.693333pt;}
.y51{bottom:777.893333pt;}
.y19{bottom:790.853333pt;}
.y50{bottom:797.413333pt;}
.y18{bottom:802.213333pt;}
.y17{bottom:812.773333pt;}
.y4f{bottom:816.933333pt;}
.y16{bottom:832.293333pt;}
.y4e{bottom:836.453333pt;}
.y15{bottom:851.813333pt;}
.y4d{bottom:855.973333pt;}
.y14{bottom:871.333333pt;}
.y4c{bottom:875.333333pt;}
.y13{bottom:890.853333pt;}
.y4b{bottom:894.853333pt;}
.y4a{bottom:914.373333pt;}
.y12{bottom:929.093333pt;}
.y49{bottom:933.893333pt;}
.y11{bottom:949.413333pt;}
.y48{bottom:953.413333pt;}
.y47{bottom:972.933333pt;}
.y3f{bottom:990.853333pt;}
.y46{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y45{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y44{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h11{height:14.576000pt;}
.h6{height:15.360000pt;}
.h19{height:19.520000pt;}
.h14{height:23.197440pt;}
.h10{height:24.487680pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h9{height:32.202880pt;}
.h7{height:34.947200pt;}
.h15{height:47.936000pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h12{height:50.813440pt;}
.h13{height:53.639680pt;}
.hf{height:55.232000pt;}
.h17{height:56.332800pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h16{height:64.992000pt;}
.h1a{height:65.781915pt;}
.h5{height:107.618438pt;}
.h18{height:148.346667pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w4{width:282.146667pt;}
.w8{width:332.546667pt;}
.w7{width:349.213333pt;}
.w6{width:389.506667pt;}
.w5{width:396.413333pt;}
.w9{width:681.760000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.xe{left:15.680000pt;}
.xf{left:24.960000pt;}
.x9{left:40.986667pt;}
.x15{left:48.512000pt;}
.x1{left:71.999988pt;}
.x5{left:93.480000pt;}
.x11{left:113.311988pt;}
.xc{left:119.231988pt;}
.x1c{left:129.631988pt;}
.x10{left:130.560000pt;}
.xa{left:134.426655pt;}
.x1d{left:153.626655pt;}
.xb{left:221.146655pt;}
.x14{left:227.560000pt;}
.x1a{left:231.866655pt;}
.x18{left:248.546655pt;}
.xd{left:253.986667pt;}
.x16{left:267.426655pt;}
.x12{left:306.466667pt;}
.x7{left:332.866667pt;}
.x6{left:375.266667pt;}
.x8{left:386.813333pt;}
.x13{left:421.213333pt;}
.x1b{left:425.213322pt;}
.x4{left:492.573333pt;}
.x17{left:562.173322pt;}
.x19{left:576.573322pt;}
.x2{left:737.120000pt;}
}




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