
    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_d9dc19cab65d704c9bf470ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_598e5a22e25af07b6044a02a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_414e6aebec162f9192150a1e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6e72f7489f01d6f219d02a78.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_6c24d8ea93bc6b2b546b478c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932617;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_13d9c29985f1a66cf30aaeff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932617;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_d6bccc75860cd8817d726a0d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_8b269896818779d4a3f8af84.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:77.309760px;}
.ls7{letter-spacing:82.944000px;}
.ls1{letter-spacing:111.029760px;}
.ls4{letter-spacing:118.920000px;}
.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:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._23{margin-left:-2.034000px;}
._0{margin-left:-1.026000px;}
._1{width:1.698000px;}
._2{width:2.795040px;}
._24{width:3.816000px;}
._4{width:4.824000px;}
._d{width:5.880000px;}
._c{width:6.912000px;}
._5{width:8.064000px;}
._6{width:9.144000px;}
._16{width:10.278000px;}
._f{width:11.358000px;}
._e{width:12.456000px;}
._10{width:13.500000px;}
._a{width:14.904000px;}
._17{width:15.912000px;}
._7{width:19.944000px;}
._3{width:21.144000px;}
._13{width:22.608000px;}
._1d{width:23.616000px;}
._b{width:24.696000px;}
._1e{width:26.208000px;}
._9{width:28.026000px;}
._8{width:29.232000px;}
._19{width:30.744000px;}
._11{width:32.016000px;}
._25{width:33.228000px;}
._14{width:34.632000px;}
._15{width:35.856000px;}
._1f{width:37.368000px;}
._18{width:38.592000px;}
._22{width:39.762000px;}
._26{width:41.400000px;}
._12{width:42.984000px;}
._1a{width:44.640000px;}
._2a{width:46.656000px;}
._2b{width:48.288000px;}
._20{width:51.120000px;}
._21{width:52.128000px;}
._29{width:53.214000px;}
._27{width:56.160000px;}
._28{width:57.168000px;}
._1b{width:59.040000px;}
._1c{width:60.120000px;}
._2c{width:78.696000px;}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(192,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y3b{bottom:19.620000px;}
.y53{bottom:19.800000px;}
.y5a{bottom:19.980000px;}
.y38{bottom:31.680000px;}
.y51{bottom:31.860000px;}
.y39{bottom:43.560000px;}
.y4f{bottom:43.740000px;}
.y6{bottom:55.440000px;}
.y4b{bottom:55.620000px;}
.y47{bottom:56.160000px;}
.y3{bottom:57.600000px;}
.y3a{bottom:67.320000px;}
.y55{bottom:67.500000px;}
.y4e{bottom:67.530000px;}
.y5e{bottom:79.200000px;}
.y58{bottom:79.380000px;}
.y49{bottom:79.410000px;}
.y46{bottom:79.920000px;}
.y56{bottom:91.260000px;}
.y4d{bottom:91.290000px;}
.y40{bottom:91.800000px;}
.y57{bottom:103.140000px;}
.y4a{bottom:103.170000px;}
.y5c{bottom:103.185000px;}
.y45{bottom:103.680000px;}
.y84{bottom:105.876000px;}
.y32{bottom:113.616000px;}
.y59{bottom:115.020000px;}
.y4c{bottom:115.050000px;}
.y3e{bottom:115.560000px;}
.y50{bottom:126.930000px;}
.y44{bottom:127.440000px;}
.y83{bottom:129.636000px;}
.y31{bottom:137.376000px;}
.y52{bottom:138.990000px;}
.y3d{bottom:139.320000px;}
.y43{bottom:151.380000px;}
.y82{bottom:153.390000px;}
.y30{bottom:161.130000px;}
.y3f{bottom:163.305000px;}
.y42{bottom:175.185000px;}
.y81{bottom:177.150000px;}
.y2f{bottom:185.070000px;}
.y41{bottom:198.945000px;}
.y80{bottom:201.090000px;}
.y2e{bottom:208.830000px;}
.y7f{bottom:224.850000px;}
.y2d{bottom:232.590000px;}
.y5b{bottom:242.490000px;}
.y7e{bottom:248.610000px;}
.y2c{bottom:256.350000px;}
.y7d{bottom:272.370000px;}
.y2b{bottom:280.290000px;}
.y7c{bottom:296.310000px;}
.y2a{bottom:304.050000px;}
.y7b{bottom:320.070000px;}
.y29{bottom:327.810000px;}
.y7a{bottom:343.875000px;}
.y28{bottom:351.615000px;}
.y79{bottom:367.635000px;}
.y27{bottom:375.555000px;}
.y54{bottom:391.575000px;}
.y26{bottom:399.315000px;}
.y78{bottom:415.335000px;}
.y25{bottom:423.075000px;}
.y77{bottom:439.095000px;}
.y24{bottom:446.835000px;}
.y76{bottom:462.855000px;}
.y23{bottom:470.775000px;}
.y75{bottom:486.795000px;}
.y22{bottom:494.535000px;}
.y74{bottom:510.555000px;}
.y21{bottom:518.295000px;}
.y73{bottom:534.315000px;}
.y48{bottom:540.795000px;}
.y20{bottom:542.055000px;}
.y72{bottom:558.075000px;}
.y1f{bottom:565.995000px;}
.y71{bottom:582.015000px;}
.y1e{bottom:589.755000px;}
.y70{bottom:605.805000px;}
.y1d{bottom:613.545000px;}
.y6f{bottom:629.565000px;}
.y1c{bottom:637.305000px;}
.y6e{bottom:653.325000px;}
.y1b{bottom:661.065000px;}
.y6d{bottom:677.085000px;}
.y1a{bottom:685.005000px;}
.y6c{bottom:701.025000px;}
.y19{bottom:708.765000px;}
.y3c{bottom:713.805000px;}
.y6b{bottom:724.785000px;}
.y18{bottom:732.525000px;}
.y6a{bottom:748.545000px;}
.y17{bottom:756.285000px;}
.y69{bottom:772.305000px;}
.y16{bottom:780.225000px;}
.y68{bottom:796.245000px;}
.y15{bottom:803.985000px;}
.y67{bottom:820.005000px;}
.y14{bottom:827.745000px;}
.y66{bottom:843.765000px;}
.y13{bottom:851.505000px;}
.y65{bottom:867.525000px;}
.y12{bottom:875.490000px;}
.y64{bottom:891.510000px;}
.y11{bottom:899.250000px;}
.y63{bottom:915.270000px;}
.y10{bottom:923.010000px;}
.y62{bottom:939.030000px;}
.yf{bottom:946.770000px;}
.y61{bottom:962.790000px;}
.ye{bottom:970.710000px;}
.y37{bottom:982.950000px;}
.y60{bottom:986.730000px;}
.yd{bottom:994.470000px;}
.y5f{bottom:1010.490000px;}
.yc{bottom:1018.230000px;}
.y5d{bottom:1030.290000px;}
.yb{bottom:1041.990000px;}
.ya{bottom:1065.930000px;}
.y36{bottom:1089.690000px;}
.y9{bottom:1092.030000px;}
.y35{bottom:1113.450000px;}
.y8{bottom:1123.710000px;}
.y34{bottom:1137.210000px;}
.y7{bottom:1155.600000px;}
.y33{bottom:1161.180000px;}
.y2{bottom:1202.760000px;}
.y1{bottom:1220.580000px;}
.h6{height:4.021875px;}
.h3{height:27.036000px;}
.h2{height:38.100586px;}
.h4{height:50.273438px;}
.h9{height:50.800781px;}
.ha{height:51.609375px;}
.h8{height:51.996094px;}
.h10{height:52.417969px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.hb{height:96.660000px;}
.hf{height:144.576000px;}
.he{height:144.720000px;}
.hd{height:168.510000px;}
.hc{height:264.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w9{width:129.276000px;}
.w8{width:130.356000px;}
.wa{width:138.420000px;}
.w6{width:143.640000px;}
.w7{width:151.770000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:1.440000px;}
.x16{left:3.240000px;}
.x2e{left:4.320000px;}
.x23{left:5.580000px;}
.x6{left:7.560000px;}
.x1f{left:9.000000px;}
.x1d{left:10.620000px;}
.x29{left:12.960000px;}
.x28{left:14.220000px;}
.x14{left:15.660000px;}
.x1b{left:18.000000px;}
.x17{left:19.260000px;}
.x2c{left:20.520000px;}
.x2f{left:21.600000px;}
.x19{left:23.040000px;}
.x20{left:24.480000px;}
.x25{left:25.560000px;}
.x1c{left:27.180000px;}
.x27{left:28.440000px;}
.x2b{left:31.140000px;}
.x1e{left:32.400000px;}
.x12{left:34.200000px;}
.x2a{left:35.640000px;}
.x26{left:37.080000px;}
.x24{left:39.465000px;}
.x2d{left:40.500000px;}
.x30{left:42.120000px;}
.x21{left:43.560000px;}
.x3{left:87.660000px;}
.x8{left:95.795987px;}
.x2{left:99.035987px;}
.x9{left:101.735987px;}
.x1{left:103.715987px;}
.xa{left:127.475987px;}
.x31{left:138.275987px;}
.x10{left:148.895987px;}
.x11{left:157.889987px;}
.xe{left:205.589987px;}
.xb{left:216.029987px;}
.x13{left:248.070000px;}
.xf{left:295.814987px;}
.x4{left:297.795000px;}
.xd{left:374.834987px;}
.x5{left:393.915000px;}
.x15{left:401.295000px;}
.xc{left:446.474987px;}
.x7{left:500.145000px;}
.x18{left:533.085000px;}
.x1a{left:663.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:68.719787pt;}
.ls7{letter-spacing:73.728000pt;}
.ls1{letter-spacing:98.693120pt;}
.ls4{letter-spacing:105.706667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._23{margin-left:-1.808000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.509333pt;}
._2{width:2.484480pt;}
._24{width:3.392000pt;}
._4{width:4.288000pt;}
._d{width:5.226667pt;}
._c{width:6.144000pt;}
._5{width:7.168000pt;}
._6{width:8.128000pt;}
._16{width:9.136000pt;}
._f{width:10.096000pt;}
._e{width:11.072000pt;}
._10{width:12.000000pt;}
._a{width:13.248000pt;}
._17{width:14.144000pt;}
._7{width:17.728000pt;}
._3{width:18.794667pt;}
._13{width:20.096000pt;}
._1d{width:20.992000pt;}
._b{width:21.952000pt;}
._1e{width:23.296000pt;}
._9{width:24.912000pt;}
._8{width:25.984000pt;}
._19{width:27.328000pt;}
._11{width:28.458667pt;}
._25{width:29.536000pt;}
._14{width:30.784000pt;}
._15{width:31.872000pt;}
._1f{width:33.216000pt;}
._18{width:34.304000pt;}
._22{width:35.344000pt;}
._26{width:36.800000pt;}
._12{width:38.208000pt;}
._1a{width:39.680000pt;}
._2a{width:41.472000pt;}
._2b{width:42.922667pt;}
._20{width:45.440000pt;}
._21{width:46.336000pt;}
._29{width:47.301333pt;}
._27{width:49.920000pt;}
._28{width:50.816000pt;}
._1b{width:52.480000pt;}
._1c{width:53.440000pt;}
._2c{width:69.952000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y3b{bottom:17.440000pt;}
.y53{bottom:17.600000pt;}
.y5a{bottom:17.760000pt;}
.y38{bottom:28.160000pt;}
.y51{bottom:28.320000pt;}
.y39{bottom:38.720000pt;}
.y4f{bottom:38.880000pt;}
.y6{bottom:49.280000pt;}
.y4b{bottom:49.440000pt;}
.y47{bottom:49.920000pt;}
.y3{bottom:51.200000pt;}
.y3a{bottom:59.840000pt;}
.y55{bottom:60.000000pt;}
.y4e{bottom:60.026667pt;}
.y5e{bottom:70.400000pt;}
.y58{bottom:70.560000pt;}
.y49{bottom:70.586667pt;}
.y46{bottom:71.040000pt;}
.y56{bottom:81.120000pt;}
.y4d{bottom:81.146667pt;}
.y40{bottom:81.600000pt;}
.y57{bottom:91.680000pt;}
.y4a{bottom:91.706667pt;}
.y5c{bottom:91.720000pt;}
.y45{bottom:92.160000pt;}
.y84{bottom:94.112000pt;}
.y32{bottom:100.992000pt;}
.y59{bottom:102.240000pt;}
.y4c{bottom:102.266667pt;}
.y3e{bottom:102.720000pt;}
.y50{bottom:112.826667pt;}
.y44{bottom:113.280000pt;}
.y83{bottom:115.232000pt;}
.y31{bottom:122.112000pt;}
.y52{bottom:123.546667pt;}
.y3d{bottom:123.840000pt;}
.y43{bottom:134.560000pt;}
.y82{bottom:136.346667pt;}
.y30{bottom:143.226667pt;}
.y3f{bottom:145.160000pt;}
.y42{bottom:155.720000pt;}
.y81{bottom:157.466667pt;}
.y2f{bottom:164.506667pt;}
.y41{bottom:176.840000pt;}
.y80{bottom:178.746667pt;}
.y2e{bottom:185.626667pt;}
.y7f{bottom:199.866667pt;}
.y2d{bottom:206.746667pt;}
.y5b{bottom:215.546667pt;}
.y7e{bottom:220.986667pt;}
.y2c{bottom:227.866667pt;}
.y7d{bottom:242.106667pt;}
.y2b{bottom:249.146667pt;}
.y7c{bottom:263.386667pt;}
.y2a{bottom:270.266667pt;}
.y7b{bottom:284.506667pt;}
.y29{bottom:291.386667pt;}
.y7a{bottom:305.666667pt;}
.y28{bottom:312.546667pt;}
.y79{bottom:326.786667pt;}
.y27{bottom:333.826667pt;}
.y54{bottom:348.066667pt;}
.y26{bottom:354.946667pt;}
.y78{bottom:369.186667pt;}
.y25{bottom:376.066667pt;}
.y77{bottom:390.306667pt;}
.y24{bottom:397.186667pt;}
.y76{bottom:411.426667pt;}
.y23{bottom:418.466667pt;}
.y75{bottom:432.706667pt;}
.y22{bottom:439.586667pt;}
.y74{bottom:453.826667pt;}
.y21{bottom:460.706667pt;}
.y73{bottom:474.946667pt;}
.y48{bottom:480.706667pt;}
.y20{bottom:481.826667pt;}
.y72{bottom:496.066667pt;}
.y1f{bottom:503.106667pt;}
.y71{bottom:517.346667pt;}
.y1e{bottom:524.226667pt;}
.y70{bottom:538.493333pt;}
.y1d{bottom:545.373333pt;}
.y6f{bottom:559.613333pt;}
.y1c{bottom:566.493333pt;}
.y6e{bottom:580.733333pt;}
.y1b{bottom:587.613333pt;}
.y6d{bottom:601.853333pt;}
.y1a{bottom:608.893333pt;}
.y6c{bottom:623.133333pt;}
.y19{bottom:630.013333pt;}
.y3c{bottom:634.493333pt;}
.y6b{bottom:644.253333pt;}
.y18{bottom:651.133333pt;}
.y6a{bottom:665.373333pt;}
.y17{bottom:672.253333pt;}
.y69{bottom:686.493333pt;}
.y16{bottom:693.533333pt;}
.y68{bottom:707.773333pt;}
.y15{bottom:714.653333pt;}
.y67{bottom:728.893333pt;}
.y14{bottom:735.773333pt;}
.y66{bottom:750.013333pt;}
.y13{bottom:756.893333pt;}
.y65{bottom:771.133333pt;}
.y12{bottom:778.213333pt;}
.y64{bottom:792.453333pt;}
.y11{bottom:799.333333pt;}
.y63{bottom:813.573333pt;}
.y10{bottom:820.453333pt;}
.y62{bottom:834.693333pt;}
.yf{bottom:841.573333pt;}
.y61{bottom:855.813333pt;}
.ye{bottom:862.853333pt;}
.y37{bottom:873.733333pt;}
.y60{bottom:877.093333pt;}
.yd{bottom:883.973333pt;}
.y5f{bottom:898.213333pt;}
.yc{bottom:905.093333pt;}
.y5d{bottom:915.813333pt;}
.yb{bottom:926.213333pt;}
.ya{bottom:947.493333pt;}
.y36{bottom:968.613333pt;}
.y9{bottom:970.693333pt;}
.y35{bottom:989.733333pt;}
.y8{bottom:998.853333pt;}
.y34{bottom:1010.853333pt;}
.y7{bottom:1027.200000pt;}
.y33{bottom:1032.160000pt;}
.y2{bottom:1069.120000pt;}
.y1{bottom:1084.960000pt;}
.h6{height:3.575000pt;}
.h3{height:24.032000pt;}
.h2{height:33.867188pt;}
.h4{height:44.687500pt;}
.h9{height:45.156250pt;}
.ha{height:45.875000pt;}
.h8{height:46.218750pt;}
.h10{height:46.593750pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.hb{height:85.920000pt;}
.hf{height:128.512000pt;}
.he{height:128.640000pt;}
.hd{height:149.786667pt;}
.hc{height:235.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w9{width:114.912000pt;}
.w8{width:115.872000pt;}
.wa{width:123.040000pt;}
.w6{width:127.680000pt;}
.w7{width:134.906667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:1.280000pt;}
.x16{left:2.880000pt;}
.x2e{left:3.840000pt;}
.x23{left:4.960000pt;}
.x6{left:6.720000pt;}
.x1f{left:8.000000pt;}
.x1d{left:9.440000pt;}
.x29{left:11.520000pt;}
.x28{left:12.640000pt;}
.x14{left:13.920000pt;}
.x1b{left:16.000000pt;}
.x17{left:17.120000pt;}
.x2c{left:18.240000pt;}
.x2f{left:19.200000pt;}
.x19{left:20.480000pt;}
.x20{left:21.760000pt;}
.x25{left:22.720000pt;}
.x1c{left:24.160000pt;}
.x27{left:25.280000pt;}
.x2b{left:27.680000pt;}
.x1e{left:28.800000pt;}
.x12{left:30.400000pt;}
.x2a{left:31.680000pt;}
.x26{left:32.960000pt;}
.x24{left:35.080000pt;}
.x2d{left:36.000000pt;}
.x30{left:37.440000pt;}
.x21{left:38.720000pt;}
.x3{left:77.920000pt;}
.x8{left:85.151988pt;}
.x2{left:88.031988pt;}
.x9{left:90.431988pt;}
.x1{left:92.191988pt;}
.xa{left:113.311988pt;}
.x31{left:122.911988pt;}
.x10{left:132.351988pt;}
.x11{left:140.346655pt;}
.xe{left:182.746655pt;}
.xb{left:192.026655pt;}
.x13{left:220.506667pt;}
.xf{left:262.946655pt;}
.x4{left:264.706667pt;}
.xd{left:333.186655pt;}
.x5{left:350.146667pt;}
.x15{left:356.706667pt;}
.xc{left:396.866655pt;}
.x7{left:444.573333pt;}
.x18{left:473.853333pt;}
.x1a{left:590.053333pt;}
}




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