
    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_015afb89ddb7fea0649f7557.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_23f73d31d19756af48089af0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_070de799b9b665c96c8b6b73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_8be11e852b3735b07e130f7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088000;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_92838de84e4c33c2f36a3ba5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_b222a82d1cac78a52d7912b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.763000;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_7a1bd18ae1953c6523d583ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.083496;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_9ff31815136da5edfa7cec9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.786000;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_4730ffcea17059f30c6ee526.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.653000;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_fde760e938c0164fa6d8ac0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.439000;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_0db01e08f5008d1a5363824a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;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);}
.v8{vertical-align:-60.481140px;}
.v5{vertical-align:-54.985020px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.928000px;}
.v4{vertical-align:24.336000px;}
.v6{vertical-align:25.935600px;}
.v1{vertical-align:27.300000px;}
.v7{vertical-align:29.302200px;}
.v2{vertical-align:34.890000px;}
.ls1f{letter-spacing:-28.478400px;}
.ls21{letter-spacing:-12.337200px;}
.ls11{letter-spacing:-9.480000px;}
.ls20{letter-spacing:-5.520000px;}
.ls12{letter-spacing:-5.385600px;}
.ls13{letter-spacing:-5.359200px;}
.ls16{letter-spacing:-5.227200px;}
.ls15{letter-spacing:-5.200800px;}
.ls14{letter-spacing:-5.174400px;}
.ls1c{letter-spacing:-3.672000px;}
.ls19{letter-spacing:-3.654000px;}
.ls18{letter-spacing:-3.636000px;}
.ls1b{letter-spacing:-3.618000px;}
.ls1d{letter-spacing:-3.600000px;}
.ls22{letter-spacing:-3.582000px;}
.ls1e{letter-spacing:-3.564000px;}
.ls1a{letter-spacing:-3.546000px;}
.ls17{letter-spacing:-3.528000px;}
.ls10{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000003px;}
.lsf{letter-spacing:0.000026px;}
.ls9{letter-spacing:55.706400px;}
.ls5{letter-spacing:68.462400px;}
.ls6{letter-spacing:94.318200px;}
.ls8{letter-spacing:96.832800px;}
.ls3{letter-spacing:96.833400px;}
.ls1{letter-spacing:142.022400px;}
.lsd{letter-spacing:206.733600px;}
.ls4{letter-spacing:224.538000px;}
.ls0{letter-spacing:251.476080px;}
.lsb{letter-spacing:260.686800px;}
.ls2{letter-spacing:289.318080px;}
.ls7{letter-spacing:289.318200px;}
.lsc{letter-spacing:292.137600px;}
.lsa{letter-spacing:572.330400px;}
.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;}
}
.ws4{word-spacing:-56.662800px;}
.ws5{word-spacing:-53.820000px;}
.ws3{word-spacing:-0.241925px;}
.ws0{word-spacing:-0.219932px;}
.ws1{word-spacing:-0.156152px;}
.ws6{word-spacing:0.000000px;}
.ws2{word-spacing:36.508708px;}
._6{margin-left:-35.550000px;}
._7{margin-left:-25.596000px;}
._b{margin-left:-7.727328px;}
._0{margin-left:-5.712000px;}
._10{margin-left:-4.284000px;}
._a{margin-left:-3.240000px;}
._9{margin-left:-1.200000px;}
._8{width:1.056000px;}
._2{width:3.318000px;}
._3{width:4.740000px;}
._5{width:6.636000px;}
._1{width:8.532000px;}
._4{width:9.954000px;}
._f{width:15.498000px;}
._e{width:20.400000px;}
._c{width:183.057600px;}
._d{width:292.695000px;}
.fc2{color:transparent;}
.fc1{color:rgb(24,25,148);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:156.151680px;}
.fsb{font-size:171.766800px;}
.fs6{font-size:180.000000px;}
.fs1{font-size:204.000000px;}
.fs8{font-size:219.931920px;}
.fs7{font-size:221.400000px;}
.fsa{font-size:241.925100px;}
.fs4{font-size:264.000000px;}
.fsd{font-size:276.000000px;}
.fs0{font-size:294.000000px;}
.fs5{font-size:322.566780px;}
.fs3{font-size:324.720000px;}
.fsc{font-size:408.000000px;}
.fs2{font-size:474.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:0.000030px;}
.y3a{bottom:0.604830px;}
.y38{bottom:4.783485px;}
.y3c{bottom:4.783635px;}
.y23{bottom:5.664030px;}
.ye{bottom:7.014585px;}
.y21{bottom:7.918500px;}
.y36{bottom:10.447350px;}
.y25{bottom:14.136030px;}
.y41{bottom:14.292330px;}
.y46{bottom:15.721545px;}
.y3f{bottom:16.829730px;}
.y44{bottom:18.512595px;}
.y48{bottom:18.512745px;}
.yf{bottom:22.840980px;}
.y56{bottom:30.833100px;}
.yc{bottom:37.446000px;}
.y4c{bottom:50.716500px;}
.y4e{bottom:50.716800px;}
.y4a{bottom:74.425500px;}
.y1f{bottom:78.789000px;}
.y55{bottom:83.271000px;}
.y34{bottom:98.384250px;}
.yb{bottom:119.509500px;}
.y54{bottom:135.708900px;}
.y1e{bottom:135.709500px;}
.y33{bottom:169.262100px;}
.y1d{bottom:183.664500px;}
.ya{bottom:185.884500px;}
.y53{bottom:188.146800px;}
.y51{bottom:205.708650px;}
.y52{bottom:223.698900px;}
.y1c{bottom:236.101500px;}
.y32{bottom:238.895700px;}
.y9{bottom:259.317000px;}
.y50{bottom:268.708650px;}
.y31{bottom:286.850700px;}
.y1b{bottom:288.540000px;}
.y1a{bottom:340.978500px;}
.y30{bottom:343.771500px;}
.y8{bottom:353.062500px;}
.y2f{bottom:396.209400px;}
.y19{bottom:397.899000px;}
.y2e{bottom:440.952750px;}
.y18{bottom:444.439500px;}
.y28{bottom:485.883750px;}
.y47{bottom:502.909950px;}
.y35{bottom:503.649900px;}
.y2d{bottom:504.688950px;}
.y45{bottom:505.701150px;}
.y17{bottom:507.774000px;}
.y43{bottom:573.080850px;}
.y2c{bottom:574.107300px;}
.y16{bottom:577.006500px;}
.y15{bottom:624.961500px;}
.y2b{bottom:629.321850px;}
.y42{bottom:644.800050px;}
.y14{bottom:677.400000px;}
.y2a{bottom:694.071450px;}
.y13{bottom:734.320500px;}
.y29{bottom:750.992250px;}
.y12{bottom:780.238500px;}
.y11{bottom:837.159000px;}
.y3e{bottom:916.490700px;}
.y40{bottom:919.028100px;}
.y3d{bottom:997.370550px;}
.y3b{bottom:1060.705800px;}
.y39{bottom:1120.683750px;}
.y37{bottom:1122.003300px;}
.y4d{bottom:1293.196200px;}
.y4f{bottom:1410.212550px;}
.y57{bottom:1800.672000px;}
.y59{bottom:2721.822000px;}
.y58{bottom:2784.822000px;}
.y10{bottom:2967.840000px;}
.y20{bottom:2986.272000px;}
.y24{bottom:3404.226000px;}
.y26{bottom:3418.362000px;}
.y22{bottom:3476.034000px;}
.y4b{bottom:3888.292500px;}
.y7{bottom:4052.703000px;}
.yd{bottom:4321.791000px;}
.y49{bottom:4510.320000px;}
.y4{bottom:4561.606500px;}
.y3{bottom:4623.106500px;}
.y2{bottom:4684.350000px;}
.y1{bottom:4750.141500px;}
.y6{bottom:4755.843000px;}
.y5{bottom:4882.554000px;}
.h18{height:24.137535px;}
.h16{height:32.384970px;}
.h13{height:35.903880px;}
.hf{height:39.147885px;}
.h7{height:47.497965px;}
.h11{height:50.040015px;}
.h1b{height:50.691000px;}
.h1c{height:53.228475px;}
.h1a{height:53.998230px;}
.h1f{height:55.760115px;}
.h9{height:58.500000px;}
.h1d{height:58.551315px;}
.h19{height:94.130862px;}
.ha{height:131.580000px;}
.h23{height:137.124315px;}
.h12{height:143.615544px;}
.hc{height:143.964844px;}
.h17{height:148.673978px;}
.h2{height:149.124000px;}
.h10{height:150.213501px;}
.h1e{height:163.541368px;}
.h20{height:165.234843px;}
.hd{height:177.076758px;}
.h21{height:199.418550px;}
.h24{height:200.935547px;}
.h6{height:211.148438px;}
.h1{height:214.914000px;}
.h8{height:218.055143px;}
.h25{height:253.706550px;}
.h5{height:259.712578px;}
.h22{height:297.035156px;}
.h3{height:393.420000px;}
.h4{height:455.141850px;}
.h15{height:784.608450px;}
.h14{height:816.552150px;}
.he{height:874.608450px;}
.hb{height:902.718300px;}
.h0{height:5055.000000px;}
.wa{width:27.711420px;}
.w5{width:31.065390px;}
.w7{width:31.175355px;}
.w9{width:32.384970px;}
.w2{width:47.497965px;}
.wc{width:57.290070px;}
.wf{width:63.019065px;}
.w6{width:68.297370px;}
.wd{width:76.015065px;}
.we{width:83.616570px;}
.wb{width:148.482630px;}
.w12{width:332.773650px;}
.w3{width:943.500000px;}
.w10{width:1129.709400px;}
.w11{width:1573.516500px;}
.w13{width:1716.856500px;}
.w8{width:1717.428000px;}
.w4{width:1796.064000px;}
.w1{width:3483.220500px;}
.w0{width:3574.500000px;}
.x1a{left:-6.102000px;}
.xa{left:-3.870900px;}
.x14{left:-2.638500px;}
.x16{left:-1.485000px;}
.x0{left:0.000000px;}
.xd{left:16.405005px;}
.x7{left:24.060675px;}
.x6{left:45.639645px;}
.xb{left:48.000000px;}
.xc{left:72.383925px;}
.x21{left:75.184050px;}
.x5{left:79.265895px;}
.x23{left:88.021125px;}
.x28{left:97.864665px;}
.x22{left:100.051725px;}
.xe{left:110.154975px;}
.x8{left:118.346355px;}
.x25{left:151.156200px;}
.x20{left:344.094300px;}
.x26{left:579.370350px;}
.x27{left:751.725000px;}
.x10{left:884.157450px;}
.x11{left:1045.472700px;}
.x9{left:1206.931500px;}
.xf{left:1332.144600px;}
.x12{left:1776.300000px;}
.x2{left:1869.271500px;}
.x29{left:2025.471000px;}
.x3{left:2156.962500px;}
.x1e{left:2272.296000px;}
.x24{left:2305.074000px;}
.x17{left:2318.517000px;}
.x4{left:2389.216500px;}
.x1c{left:2457.631500px;}
.x2a{left:2609.515500px;}
.x1{left:2615.740500px;}
.x1d{left:2649.615000px;}
.x1f{left:2661.709500px;}
.x18{left:2677.501500px;}
.x13{left:2685.744000px;}
.x19{left:3118.395000px;}
.x15{left:3178.953000px;}
.x1b{left:3407.815500px;}
@media print{
.v8{vertical-align:-53.761013pt;}
.v5{vertical-align:-48.875573pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.936000pt;}
.v4{vertical-align:21.632000pt;}
.v6{vertical-align:23.053867pt;}
.v1{vertical-align:24.266667pt;}
.v7{vertical-align:26.046400pt;}
.v2{vertical-align:31.013333pt;}
.ls1f{letter-spacing:-25.314133pt;}
.ls21{letter-spacing:-10.966400pt;}
.ls11{letter-spacing:-8.426667pt;}
.ls20{letter-spacing:-4.906667pt;}
.ls12{letter-spacing:-4.787200pt;}
.ls13{letter-spacing:-4.763733pt;}
.ls16{letter-spacing:-4.646400pt;}
.ls15{letter-spacing:-4.622933pt;}
.ls14{letter-spacing:-4.599467pt;}
.ls1c{letter-spacing:-3.264000pt;}
.ls19{letter-spacing:-3.248000pt;}
.ls18{letter-spacing:-3.232000pt;}
.ls1b{letter-spacing:-3.216000pt;}
.ls1d{letter-spacing:-3.200000pt;}
.ls22{letter-spacing:-3.184000pt;}
.ls1e{letter-spacing:-3.168000pt;}
.ls1a{letter-spacing:-3.152000pt;}
.ls17{letter-spacing:-3.136000pt;}
.ls10{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000003pt;}
.lsf{letter-spacing:0.000023pt;}
.ls9{letter-spacing:49.516800pt;}
.ls5{letter-spacing:60.855467pt;}
.ls6{letter-spacing:83.838400pt;}
.ls8{letter-spacing:86.073600pt;}
.ls3{letter-spacing:86.074133pt;}
.ls1{letter-spacing:126.242133pt;}
.lsd{letter-spacing:183.763200pt;}
.ls4{letter-spacing:199.589333pt;}
.ls0{letter-spacing:223.534293pt;}
.lsb{letter-spacing:231.721600pt;}
.ls2{letter-spacing:257.171627pt;}
.ls7{letter-spacing:257.171733pt;}
.lsc{letter-spacing:259.677867pt;}
.lsa{letter-spacing:508.738133pt;}
.ws4{word-spacing:-50.366933pt;}
.ws5{word-spacing:-47.840000pt;}
.ws3{word-spacing:-0.215045pt;}
.ws0{word-spacing:-0.195495pt;}
.ws1{word-spacing:-0.138801pt;}
.ws6{word-spacing:0.000000pt;}
.ws2{word-spacing:32.452185pt;}
._6{margin-left:-31.600000pt;}
._7{margin-left:-22.752000pt;}
._b{margin-left:-6.868736pt;}
._0{margin-left:-5.077333pt;}
._10{margin-left:-3.808000pt;}
._a{margin-left:-2.880000pt;}
._9{margin-left:-1.066667pt;}
._8{width:0.938667pt;}
._2{width:2.949333pt;}
._3{width:4.213333pt;}
._5{width:5.898667pt;}
._1{width:7.584000pt;}
._4{width:8.848000pt;}
._f{width:13.776000pt;}
._e{width:18.133333pt;}
._c{width:162.717867pt;}
._d{width:260.173333pt;}
.fs9{font-size:138.801493pt;}
.fsb{font-size:152.681600pt;}
.fs6{font-size:160.000000pt;}
.fs1{font-size:181.333333pt;}
.fs8{font-size:195.495040pt;}
.fs7{font-size:196.800000pt;}
.fsa{font-size:215.044533pt;}
.fs4{font-size:234.666667pt;}
.fsd{font-size:245.333333pt;}
.fs0{font-size:261.333333pt;}
.fs5{font-size:286.726027pt;}
.fs3{font-size:288.640000pt;}
.fsc{font-size:362.666667pt;}
.fs2{font-size:421.333333pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:0.000027pt;}
.y3a{bottom:0.537627pt;}
.y38{bottom:4.251987pt;}
.y3c{bottom:4.252120pt;}
.y23{bottom:5.034693pt;}
.ye{bottom:6.235187pt;}
.y21{bottom:7.038667pt;}
.y36{bottom:9.286533pt;}
.y25{bottom:12.565360pt;}
.y41{bottom:12.704293pt;}
.y46{bottom:13.974707pt;}
.y3f{bottom:14.959760pt;}
.y44{bottom:16.455640pt;}
.y48{bottom:16.455773pt;}
.yf{bottom:20.303093pt;}
.y56{bottom:27.407200pt;}
.yc{bottom:33.285333pt;}
.y4c{bottom:45.081333pt;}
.y4e{bottom:45.081600pt;}
.y4a{bottom:66.156000pt;}
.y1f{bottom:70.034667pt;}
.y55{bottom:74.018667pt;}
.y34{bottom:87.452667pt;}
.yb{bottom:106.230667pt;}
.y54{bottom:120.630133pt;}
.y1e{bottom:120.630667pt;}
.y33{bottom:150.455200pt;}
.y1d{bottom:163.257333pt;}
.ya{bottom:165.230667pt;}
.y53{bottom:167.241600pt;}
.y51{bottom:182.852133pt;}
.y52{bottom:198.843467pt;}
.y1c{bottom:209.868000pt;}
.y32{bottom:212.351733pt;}
.y9{bottom:230.504000pt;}
.y50{bottom:238.852133pt;}
.y31{bottom:254.978400pt;}
.y1b{bottom:256.480000pt;}
.y1a{bottom:303.092000pt;}
.y30{bottom:305.574667pt;}
.y8{bottom:313.833333pt;}
.y2f{bottom:352.186133pt;}
.y19{bottom:353.688000pt;}
.y2e{bottom:391.958000pt;}
.y18{bottom:395.057333pt;}
.y28{bottom:431.896667pt;}
.y47{bottom:447.031067pt;}
.y35{bottom:447.688800pt;}
.y2d{bottom:448.612400pt;}
.y45{bottom:449.512133pt;}
.y17{bottom:451.354667pt;}
.y43{bottom:509.405200pt;}
.y2c{bottom:510.317600pt;}
.y16{bottom:512.894667pt;}
.y15{bottom:555.521333pt;}
.y2b{bottom:559.397200pt;}
.y42{bottom:573.155600pt;}
.y14{bottom:602.133333pt;}
.y2a{bottom:616.952400pt;}
.y13{bottom:652.729333pt;}
.y29{bottom:667.548667pt;}
.y12{bottom:693.545333pt;}
.y11{bottom:744.141333pt;}
.y3e{bottom:814.658400pt;}
.y40{bottom:816.913867pt;}
.y3d{bottom:886.551600pt;}
.y3b{bottom:942.849600pt;}
.y39{bottom:996.163333pt;}
.y37{bottom:997.336267pt;}
.y4d{bottom:1149.507733pt;}
.y4f{bottom:1253.522267pt;}
.y57{bottom:1600.597333pt;}
.y59{bottom:2419.397333pt;}
.y58{bottom:2475.397333pt;}
.y10{bottom:2638.080000pt;}
.y20{bottom:2654.464000pt;}
.y24{bottom:3025.978667pt;}
.y26{bottom:3038.544000pt;}
.y22{bottom:3089.808000pt;}
.y4b{bottom:3456.260000pt;}
.y7{bottom:3602.402667pt;}
.yd{bottom:3841.592000pt;}
.y49{bottom:4009.173333pt;}
.y4{bottom:4054.761333pt;}
.y3{bottom:4109.428000pt;}
.y2{bottom:4163.866667pt;}
.y1{bottom:4222.348000pt;}
.y6{bottom:4227.416000pt;}
.y5{bottom:4340.048000pt;}
.h18{height:21.455587pt;}
.h16{height:28.786640pt;}
.h13{height:31.914560pt;}
.hf{height:34.798120pt;}
.h7{height:42.220413pt;}
.h11{height:44.480013pt;}
.h1b{height:45.058667pt;}
.h1c{height:47.314200pt;}
.h1a{height:47.998427pt;}
.h1f{height:49.564547pt;}
.h9{height:52.000000pt;}
.h1d{height:52.045613pt;}
.h19{height:83.671877pt;}
.ha{height:116.960000pt;}
.h23{height:121.888280pt;}
.h12{height:127.658261pt;}
.hc{height:127.968750pt;}
.h17{height:132.154647pt;}
.h2{height:132.554667pt;}
.h10{height:133.523112pt;}
.h1e{height:145.370105pt;}
.h20{height:146.875416pt;}
.hd{height:157.401562pt;}
.h21{height:177.260933pt;}
.h24{height:178.609375pt;}
.h6{height:187.687500pt;}
.h1{height:191.034667pt;}
.h8{height:193.826794pt;}
.h25{height:225.516933pt;}
.h5{height:230.855625pt;}
.h22{height:264.031250pt;}
.h3{height:349.706667pt;}
.h4{height:404.570533pt;}
.h15{height:697.429733pt;}
.h14{height:725.824133pt;}
.he{height:777.429733pt;}
.hb{height:802.416267pt;}
.h0{height:4493.333333pt;}
.wa{width:24.632373pt;}
.w5{width:27.613680pt;}
.w7{width:27.711427pt;}
.w9{width:28.786640pt;}
.w2{width:42.220413pt;}
.wc{width:50.924507pt;}
.wf{width:56.016947pt;}
.w6{width:60.708773pt;}
.wd{width:67.568947pt;}
.we{width:74.325840pt;}
.wb{width:131.984560pt;}
.w12{width:295.798800pt;}
.w3{width:838.666667pt;}
.w10{width:1004.186133pt;}
.w11{width:1398.681333pt;}
.w13{width:1526.094667pt;}
.w8{width:1526.602667pt;}
.w4{width:1596.501333pt;}
.w1{width:3096.196000pt;}
.w0{width:3177.333333pt;}
.x1a{left:-5.424000pt;}
.xa{left:-3.440800pt;}
.x14{left:-2.345333pt;}
.x16{left:-1.320000pt;}
.x0{left:0.000000pt;}
.xd{left:14.582227pt;}
.x7{left:21.387267pt;}
.x6{left:40.568573pt;}
.xb{left:42.666667pt;}
.xc{left:64.341267pt;}
.x21{left:66.830267pt;}
.x5{left:70.458573pt;}
.x23{left:78.241000pt;}
.x28{left:86.990813pt;}
.x22{left:88.934867pt;}
.xe{left:97.915533pt;}
.x8{left:105.196760pt;}
.x25{left:134.361067pt;}
.x20{left:305.861600pt;}
.x26{left:514.995867pt;}
.x27{left:668.200000pt;}
.x10{left:785.917733pt;}
.x11{left:929.309067pt;}
.x9{left:1072.828000pt;}
.xf{left:1184.128533pt;}
.x12{left:1578.933333pt;}
.x2{left:1661.574667pt;}
.x29{left:1800.418667pt;}
.x3{left:1917.300000pt;}
.x1e{left:2019.818667pt;}
.x24{left:2048.954667pt;}
.x17{left:2060.904000pt;}
.x4{left:2123.748000pt;}
.x1c{left:2184.561333pt;}
.x2a{left:2319.569333pt;}
.x1{left:2325.102667pt;}
.x1d{left:2355.213333pt;}
.x1f{left:2365.964000pt;}
.x18{left:2380.001333pt;}
.x13{left:2387.328000pt;}
.x19{left:2771.906667pt;}
.x15{left:2825.736000pt;}
.x1b{left:3029.169333pt;}
}




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