
    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_a053b73e2c8f278f246e84db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_61b51aa9fa4ee01f429fd074.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c08f715d91751cbca34205ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_1b86067f4ab4db39132ed2be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_bfe9b0f960e4b4dfaf9158c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_a0dde2d79b515468ba842c84.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687500;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_47222cceb13e3d636f7cbc26.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859375;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_afc83f6cc0b15d22f40bc4ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_976895837ab8390f5f118f95.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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);}
.v3{vertical-align:-24.120000px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.880000px;}
.v1{vertical-align:85.680000px;}
.ls7{letter-spacing:-0.468000px;}
.ls10{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.090600px;}
.ls5{letter-spacing:-0.027600px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.022200px;}
.lsb{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.130800px;}
.ls6{letter-spacing:0.139200px;}
.lsa{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.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;}
}
.ws12{word-spacing:-54.000000px;}
.ws10{word-spacing:-37.336320px;}
.ws6{word-spacing:-21.100800px;}
.ws3{word-spacing:-20.430000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.650000px;}
.wsd{word-spacing:-16.492200px;}
.wsf{word-spacing:-16.470000px;}
.wse{word-spacing:-16.290000px;}
.ws5{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.192400px;}
.wsb{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.ws11{word-spacing:-13.374000px;}
.ws14{word-spacing:-13.356000px;}
.ws16{word-spacing:-13.140000px;}
.ws9{word-spacing:-13.032000px;}
.ws7{word-spacing:-9.000000px;}
.ws13{word-spacing:-0.360000px;}
.wsc{word-spacing:0.000000px;}
.ws17{word-spacing:58.446000px;}
.ws15{word-spacing:85.464000px;}
._1{margin-left:-3.141018px;}
._0{margin-left:-1.031976px;}
._3{width:1.080606px;}
._5{width:2.700000px;}
._6{width:3.725394px;}
._8{width:5.292000px;}
._9{width:6.380487px;}
._a{width:8.100000px;}
._c{width:9.130908px;}
._b{width:10.211976px;}
._d{width:12.258000px;}
._7{width:20.070000px;}
._4{width:27.000000px;}
._2{width:165.909036px;}
._e{width:1039.809594px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.060000px;}
.y41{bottom:3.240000px;}
.y3f{bottom:3.330000px;}
.y42{bottom:18.810000px;}
.y1{bottom:76.620000px;}
.y63{bottom:95.250000px;}
.y70{bottom:101.010000px;}
.y62{bottom:110.820000px;}
.y2d{bottom:114.780000px;}
.y61{bottom:127.020000px;}
.y2c{bottom:130.260000px;}
.y60{bottom:143.850000px;}
.y2b{bottom:145.830000px;}
.y5f{bottom:159.330000px;}
.y2a{bottom:161.310000px;}
.y29{bottom:176.880000px;}
.y5e{bottom:190.290000px;}
.y28{bottom:192.360000px;}
.y5d{bottom:221.700000px;}
.y27{bottom:223.590000px;}
.y5c{bottom:237.270000px;}
.y26{bottom:239.070000px;}
.y5b{bottom:252.750000px;}
.y25{bottom:254.640000px;}
.y5a{bottom:268.320000px;}
.y24{bottom:270.120000px;}
.y23{bottom:285.690000px;}
.y59{bottom:299.190000px;}
.y22{bottom:301.170000px;}
.y6f{bottom:312.150000px;}
.y21{bottom:316.740000px;}
.y58{bottom:330.690000px;}
.y20{bottom:332.220000px;}
.y57{bottom:346.260000px;}
.y56{bottom:361.740000px;}
.y1f{bottom:363.450000px;}
.y55{bottom:377.310000px;}
.y1e{bottom:378.930000px;}
.y54{bottom:392.790000px;}
.y1d{bottom:394.500000px;}
.y1c{bottom:409.980000px;}
.y53{bottom:423.750000px;}
.y1b{bottom:440.940000px;}
.y52{bottom:455.160000px;}
.y92{bottom:457.950000px;}
.y51{bottom:470.730000px;}
.y91{bottom:473.520000px;}
.y50{bottom:486.240000px;}
.y1a{bottom:487.230000px;}
.y90{bottom:489.210000px;}
.y8f{bottom:504.780000px;}
.y4f{bottom:517.200000px;}
.y8e{bottom:520.350000px;}
.y19{bottom:521.790000px;}
.y8d{bottom:536.010000px;}
.y18{bottom:537.270000px;}
.y6e{bottom:543.930000px;}
.y4e{bottom:548.700000px;}
.y8c{bottom:551.580000px;}
.y17{bottom:552.840000px;}
.y4d{bottom:564.180000px;}
.y8b{bottom:567.150000px;}
.y16{bottom:568.320000px;}
.y4c{bottom:579.750000px;}
.y8a{bottom:582.810000px;}
.y15{bottom:583.890000px;}
.y4b{bottom:595.230000px;}
.y89{bottom:598.380000px;}
.y14{bottom:599.370000px;}
.y4a{bottom:610.800000px;}
.y88{bottom:613.950000px;}
.y13{bottom:614.940000px;}
.y49{bottom:626.280000px;}
.y12{bottom:630.420000px;}
.y48{bottom:641.850000px;}
.y87{bottom:644.910000px;}
.y11{bottom:645.990000px;}
.y47{bottom:657.330000px;}
.y10{bottom:661.560000px;}
.y86{bottom:676.410000px;}
.yf{bottom:683.790000px;}
.y46{bottom:688.290000px;}
.y85{bottom:691.890000px;}
.y84{bottom:707.460000px;}
.ye{bottom:710.520000px;}
.y83{bottom:722.940000px;}
.yd{bottom:726.000000px;}
.y45{bottom:732.840000px;}
.y82{bottom:738.510000px;}
.yc{bottom:741.570000px;}
.y81{bottom:753.990000px;}
.y44{bottom:754.890000px;}
.yb{bottom:776.220000px;}
.y43{bottom:777.030000px;}
.y6d{bottom:784.320000px;}
.y80{bottom:784.950000px;}
.ya{bottom:797.820000px;}
.y40{bottom:799.170000px;}
.y7f{bottom:816.450000px;}
.y9{bottom:828.690000px;}
.y3e{bottom:830.940000px;}
.y7e{bottom:831.930000px;}
.y7d{bottom:847.410000px;}
.y3c{bottom:853.080000px;}
.y7c{bottom:862.980000px;}
.y8{bottom:867.120000px;}
.y3b{bottom:878.460000px;}
.y7{bottom:906.180000px;}
.y3a{bottom:909.690000px;}
.y7b{bottom:925.260000px;}
.y6{bottom:930.300000px;}
.y39{bottom:940.650000px;}
.y7a{bottom:940.740000px;}
.y79{bottom:956.220000px;}
.y38{bottom:971.790000px;}
.y78{bottom:987.180000px;}
.y6c{bottom:1003.200000px;}
.y77{bottom:1018.710000px;}
.y6b{bottom:1018.800000px;}
.y37{bottom:1018.890000px;}
.y4{bottom:1034.100000px;}
.y76{bottom:1034.190000px;}
.y6a{bottom:1034.280000px;}
.y36{bottom:1034.460000px;}
.y5{bottom:1039.140000px;}
.y75{bottom:1049.760000px;}
.y69{bottom:1049.850000px;}
.y35{bottom:1049.940000px;}
.y3{bottom:1057.320000px;}
.y74{bottom:1065.240000px;}
.y68{bottom:1065.330000px;}
.y34{bottom:1065.510000px;}
.y73{bottom:1080.810000px;}
.y67{bottom:1080.900000px;}
.y33{bottom:1080.990000px;}
.y66{bottom:1096.380000px;}
.y32{bottom:1096.560000px;}
.y72{bottom:1111.680000px;}
.y65{bottom:1127.340000px;}
.y31{bottom:1127.700000px;}
.y71{bottom:1142.910000px;}
.y30{bottom:1143.270000px;}
.y2{bottom:1157.940000px;}
.y64{bottom:1158.480000px;}
.y2f{bottom:1158.750000px;}
.y2e{bottom:1193.670000px;}
.h11{height:21.330000px;}
.hf{height:21.420000px;}
.h10{height:31.050000px;}
.ha{height:35.314453px;}
.h9{height:52.971680px;}
.hd{height:52.998047px;}
.hb{height:54.421875px;}
.h6{height:55.796836px;}
.hc{height:61.800293px;}
.h2{height:64.657617px;}
.he{height:66.394687px;}
.h8{height:72.329063px;}
.h3{height:72.562500px;}
.h4{height:81.632812px;}
.h7{height:84.535312px;}
.h5{height:143.004375px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:79.464000px;}
.w4{width:79.950000px;}
.w3{width:123.480000px;}
.w5{width:144.630000px;}
.w6{width:247.260000px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x20{left:13.860000px;}
.x12{left:19.530000px;}
.x16{left:20.610000px;}
.x10{left:24.210000px;}
.x19{left:25.470000px;}
.x1e{left:27.000000px;}
.x21{left:28.080000px;}
.xc{left:29.970000px;}
.x1d{left:32.670000px;}
.x18{left:34.200000px;}
.x17{left:36.360000px;}
.x1b{left:44.370000px;}
.x6{left:47.610000px;}
.x22{left:49.680000px;}
.x9{left:54.720000px;}
.x1f{left:55.980000px;}
.x14{left:57.150000px;}
.x1c{left:63.030000px;}
.x1a{left:79.860000px;}
.x24{left:91.710000px;}
.x25{left:94.320000px;}
.x26{left:95.940000px;}
.xf{left:114.870000px;}
.x8{left:158.250000px;}
.x11{left:194.700000px;}
.x4{left:244.020000px;}
.x2{left:270.210000px;}
.x3{left:290.460000px;}
.xe{left:318.720000px;}
.x7{left:327.810000px;}
.xd{left:355.620000px;}
.xb{left:394.980000px;}
.x13{left:398.850000px;}
.x28{left:403.260000px;}
.x27{left:407.760000px;}
.xa{left:412.170000px;}
.x23{left:418.200000px;}
.x1{left:440.610000px;}
.x5{left:506.490000px;}
.x15{left:543.930000px;}
@media print{
.v3{vertical-align:-21.440000pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.560000pt;}
.v1{vertical-align:76.160000pt;}
.ls7{letter-spacing:-0.416000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.080533pt;}
.ls5{letter-spacing:-0.024533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.019733pt;}
.lsb{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.116267pt;}
.ls6{letter-spacing:0.123733pt;}
.lsa{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws10{word-spacing:-33.187840pt;}
.ws6{word-spacing:-18.756267pt;}
.ws3{word-spacing:-18.160000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.800000pt;}
.wsd{word-spacing:-14.659733pt;}
.wsf{word-spacing:-14.640000pt;}
.wse{word-spacing:-14.480000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.615467pt;}
.wsb{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws11{word-spacing:-11.888000pt;}
.ws14{word-spacing:-11.872000pt;}
.ws16{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.584000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws13{word-spacing:-0.320000pt;}
.wsc{word-spacing:0.000000pt;}
.ws17{word-spacing:51.952000pt;}
.ws15{word-spacing:75.968000pt;}
._1{margin-left:-2.792016pt;}
._0{margin-left:-0.917312pt;}
._3{width:0.960539pt;}
._5{width:2.400000pt;}
._6{width:3.311461pt;}
._8{width:4.704000pt;}
._9{width:5.671544pt;}
._a{width:7.200000pt;}
._c{width:8.116362pt;}
._b{width:9.077312pt;}
._d{width:10.896000pt;}
._7{width:17.840000pt;}
._4{width:24.000000pt;}
._2{width:147.474699pt;}
._e{width:924.275194pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.720000pt;}
.y41{bottom:2.880000pt;}
.y3f{bottom:2.960000pt;}
.y42{bottom:16.720000pt;}
.y1{bottom:68.106667pt;}
.y63{bottom:84.666667pt;}
.y70{bottom:89.786667pt;}
.y62{bottom:98.506667pt;}
.y2d{bottom:102.026667pt;}
.y61{bottom:112.906667pt;}
.y2c{bottom:115.786667pt;}
.y60{bottom:127.866667pt;}
.y2b{bottom:129.626667pt;}
.y5f{bottom:141.626667pt;}
.y2a{bottom:143.386667pt;}
.y29{bottom:157.226667pt;}
.y5e{bottom:169.146667pt;}
.y28{bottom:170.986667pt;}
.y5d{bottom:197.066667pt;}
.y27{bottom:198.746667pt;}
.y5c{bottom:210.906667pt;}
.y26{bottom:212.506667pt;}
.y5b{bottom:224.666667pt;}
.y25{bottom:226.346667pt;}
.y5a{bottom:238.506667pt;}
.y24{bottom:240.106667pt;}
.y23{bottom:253.946667pt;}
.y59{bottom:265.946667pt;}
.y22{bottom:267.706667pt;}
.y6f{bottom:277.466667pt;}
.y21{bottom:281.546667pt;}
.y58{bottom:293.946667pt;}
.y20{bottom:295.306667pt;}
.y57{bottom:307.786667pt;}
.y56{bottom:321.546667pt;}
.y1f{bottom:323.066667pt;}
.y55{bottom:335.386667pt;}
.y1e{bottom:336.826667pt;}
.y54{bottom:349.146667pt;}
.y1d{bottom:350.666667pt;}
.y1c{bottom:364.426667pt;}
.y53{bottom:376.666667pt;}
.y1b{bottom:391.946667pt;}
.y52{bottom:404.586667pt;}
.y92{bottom:407.066667pt;}
.y51{bottom:418.426667pt;}
.y91{bottom:420.906667pt;}
.y50{bottom:432.213333pt;}
.y1a{bottom:433.093333pt;}
.y90{bottom:434.853333pt;}
.y8f{bottom:448.693333pt;}
.y4f{bottom:459.733333pt;}
.y8e{bottom:462.533333pt;}
.y19{bottom:463.813333pt;}
.y8d{bottom:476.453333pt;}
.y18{bottom:477.573333pt;}
.y6e{bottom:483.493333pt;}
.y4e{bottom:487.733333pt;}
.y8c{bottom:490.293333pt;}
.y17{bottom:491.413333pt;}
.y4d{bottom:501.493333pt;}
.y8b{bottom:504.133333pt;}
.y16{bottom:505.173333pt;}
.y4c{bottom:515.333333pt;}
.y8a{bottom:518.053333pt;}
.y15{bottom:519.013333pt;}
.y4b{bottom:529.093333pt;}
.y89{bottom:531.893333pt;}
.y14{bottom:532.773333pt;}
.y4a{bottom:542.933333pt;}
.y88{bottom:545.733333pt;}
.y13{bottom:546.613333pt;}
.y49{bottom:556.693333pt;}
.y12{bottom:560.373333pt;}
.y48{bottom:570.533333pt;}
.y87{bottom:573.253333pt;}
.y11{bottom:574.213333pt;}
.y47{bottom:584.293333pt;}
.y10{bottom:588.053333pt;}
.y86{bottom:601.253333pt;}
.yf{bottom:607.813333pt;}
.y46{bottom:611.813333pt;}
.y85{bottom:615.013333pt;}
.y84{bottom:628.853333pt;}
.ye{bottom:631.573333pt;}
.y83{bottom:642.613333pt;}
.yd{bottom:645.333333pt;}
.y45{bottom:651.413333pt;}
.y82{bottom:656.453333pt;}
.yc{bottom:659.173333pt;}
.y81{bottom:670.213333pt;}
.y44{bottom:671.013333pt;}
.yb{bottom:689.973333pt;}
.y43{bottom:690.693333pt;}
.y6d{bottom:697.173333pt;}
.y80{bottom:697.733333pt;}
.ya{bottom:709.173333pt;}
.y40{bottom:710.373333pt;}
.y7f{bottom:725.733333pt;}
.y9{bottom:736.613333pt;}
.y3e{bottom:738.613333pt;}
.y7e{bottom:739.493333pt;}
.y7d{bottom:753.253333pt;}
.y3c{bottom:758.293333pt;}
.y7c{bottom:767.093333pt;}
.y8{bottom:770.773333pt;}
.y3b{bottom:780.853333pt;}
.y7{bottom:805.493333pt;}
.y3a{bottom:808.613333pt;}
.y7b{bottom:822.453333pt;}
.y6{bottom:826.933333pt;}
.y39{bottom:836.133333pt;}
.y7a{bottom:836.213333pt;}
.y79{bottom:849.973333pt;}
.y38{bottom:863.813333pt;}
.y78{bottom:877.493333pt;}
.y6c{bottom:891.733333pt;}
.y77{bottom:905.520000pt;}
.y6b{bottom:905.600000pt;}
.y37{bottom:905.680000pt;}
.y4{bottom:919.200000pt;}
.y76{bottom:919.280000pt;}
.y6a{bottom:919.360000pt;}
.y36{bottom:919.520000pt;}
.y5{bottom:923.680000pt;}
.y75{bottom:933.120000pt;}
.y69{bottom:933.200000pt;}
.y35{bottom:933.280000pt;}
.y3{bottom:939.840000pt;}
.y74{bottom:946.880000pt;}
.y68{bottom:946.960000pt;}
.y34{bottom:947.120000pt;}
.y73{bottom:960.720000pt;}
.y67{bottom:960.800000pt;}
.y33{bottom:960.880000pt;}
.y66{bottom:974.560000pt;}
.y32{bottom:974.720000pt;}
.y72{bottom:988.160000pt;}
.y65{bottom:1002.080000pt;}
.y31{bottom:1002.400000pt;}
.y71{bottom:1015.920000pt;}
.y30{bottom:1016.240000pt;}
.y2{bottom:1029.280000pt;}
.y64{bottom:1029.760000pt;}
.y2f{bottom:1030.000000pt;}
.y2e{bottom:1061.040000pt;}
.h11{height:18.960000pt;}
.hf{height:19.040000pt;}
.h10{height:27.600000pt;}
.ha{height:31.390625pt;}
.h9{height:47.085938pt;}
.hd{height:47.109375pt;}
.hb{height:48.375000pt;}
.h6{height:49.597187pt;}
.hc{height:54.933594pt;}
.h2{height:57.473437pt;}
.he{height:59.017500pt;}
.h8{height:64.292500pt;}
.h3{height:64.500000pt;}
.h4{height:72.562500pt;}
.h7{height:75.142500pt;}
.h5{height:127.115000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:70.634667pt;}
.w4{width:71.066667pt;}
.w3{width:109.760000pt;}
.w5{width:128.560000pt;}
.w6{width:219.786667pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x20{left:12.320000pt;}
.x12{left:17.360000pt;}
.x16{left:18.320000pt;}
.x10{left:21.520000pt;}
.x19{left:22.640000pt;}
.x1e{left:24.000000pt;}
.x21{left:24.960000pt;}
.xc{left:26.640000pt;}
.x1d{left:29.040000pt;}
.x18{left:30.400000pt;}
.x17{left:32.320000pt;}
.x1b{left:39.440000pt;}
.x6{left:42.320000pt;}
.x22{left:44.160000pt;}
.x9{left:48.640000pt;}
.x1f{left:49.760000pt;}
.x14{left:50.800000pt;}
.x1c{left:56.026667pt;}
.x1a{left:70.986667pt;}
.x24{left:81.520000pt;}
.x25{left:83.840000pt;}
.x26{left:85.280000pt;}
.xf{left:102.106667pt;}
.x8{left:140.666667pt;}
.x11{left:173.066667pt;}
.x4{left:216.906667pt;}
.x2{left:240.186667pt;}
.x3{left:258.186667pt;}
.xe{left:283.306667pt;}
.x7{left:291.386667pt;}
.xd{left:316.106667pt;}
.xb{left:351.093333pt;}
.x13{left:354.533333pt;}
.x28{left:358.453333pt;}
.x27{left:362.453333pt;}
.xa{left:366.373333pt;}
.x23{left:371.733333pt;}
.x1{left:391.653333pt;}
.x5{left:450.213333pt;}
.x15{left:483.493333pt;}
}




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