
    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_d721f4674351c077ddd0e6dc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4cd1458b2d7114737f666431.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f0b2bc95fba4a88286c6040f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27040cdae42ab26d3a01064a.woff')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_8f57bbebc941591feb9dcb63.woff')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_6340b7f4437c682ed267dae1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_90a184d038e543470157c7c5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_e02d4401d0cefb9b4fc8084b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_4671cc36b10cb14c948e6fb4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933105;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_8934c92857bdf6fed72a01d5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.310800px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.720000px;}
.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;}
}
.ws6{word-spacing:-20.304000px;}
.wsb{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.064000px;}
.ws8{word-spacing:-15.226440px;}
.ws9{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.659440px;}
.ws7{word-spacing:-9.437760px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.080000px;}
._0{width:1.212000px;}
._2{width:846.300000px;}
.fc1{color:rgb(28,29,30);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.960000px;}
.y5c{bottom:4.500000px;}
.y2{bottom:12.060000px;}
.y4c{bottom:24.660000px;}
.y1{bottom:32.760000px;}
.y5e{bottom:44.820000px;}
.y5d{bottom:64.980000px;}
.y5f{bottom:85.140000px;}
.y1d{bottom:122.616000px;}
.ya5{bottom:126.036000px;}
.y1c{bottom:164.370000px;}
.ya4{bottom:167.430000px;}
.y8c{bottom:195.150000px;}
.y1b{bottom:206.130000px;}
.ya3{bottom:208.830000px;}
.y8b{bottom:236.550000px;}
.y1a{bottom:247.710000px;}
.ya2{bottom:250.230000px;}
.y8a{bottom:277.950000px;}
.y19{bottom:289.470000px;}
.ya1{bottom:291.630000px;}
.y3a{bottom:308.370000px;}
.y18{bottom:310.170000px;}
.y89{bottom:319.350000px;}
.y39{bottom:329.070000px;}
.y6b{bottom:330.555000px;}
.y17{bottom:330.870000px;}
.ya0{bottom:333.030000px;}
.y38{bottom:349.815000px;}
.y6a{bottom:351.255000px;}
.y16{bottom:351.615000px;}
.y30{bottom:356.295000px;}
.y88{bottom:360.795000px;}
.y37{bottom:370.515000px;}
.y15{bottom:372.315000px;}
.y9f{bottom:374.475000px;}
.y2f{bottom:376.995000px;}
.y3f{bottom:378.975000px;}
.y69{bottom:384.015000px;}
.y36{bottom:391.215000px;}
.y14{bottom:393.015000px;}
.y2e{bottom:397.695000px;}
.y3e{bottom:399.675000px;}
.y87{bottom:402.195000px;}
.y35{bottom:411.915000px;}
.y9e{bottom:415.875000px;}
.y68{bottom:416.775000px;}
.y2d{bottom:418.395000px;}
.y3d{bottom:420.375000px;}
.y13{bottom:430.815000px;}
.y34{bottom:432.615000px;}
.y67{bottom:434.265000px;}
.y2c{bottom:439.095000px;}
.y23{bottom:439.635000px;}
.y3c{bottom:441.075000px;}
.y86{bottom:443.595000px;}
.y33{bottom:453.315000px;}
.y66{bottom:456.045000px;}
.y9d{bottom:457.275000px;}
.y3b{bottom:457.815000px;}
.y2b{bottom:459.795000px;}
.y74{bottom:468.105000px;}
.y32{bottom:474.015000px;}
.y65{bottom:477.645000px;}
.y2a{bottom:480.495000px;}
.y22{bottom:481.395000px;}
.y85{bottom:484.995000px;}
.y73{bottom:489.885000px;}
.y9c{bottom:498.675000px;}
.y64{bottom:499.425000px;}
.y29{bottom:501.195000px;}
.y31{bottom:511.635000px;}
.y72{bottom:511.665000px;}
.y28{bottom:517.935000px;}
.y63{bottom:521.205000px;}
.y21{bottom:523.155000px;}
.y84{bottom:526.395000px;}
.y71{bottom:533.445000px;}
.y9b{bottom:540.075000px;}
.y62{bottom:546.045000px;}
.y49{bottom:553.755000px;}
.y70{bottom:555.225000px;}
.y20{bottom:564.735000px;}
.y83{bottom:567.795000px;}
.y61{bottom:570.705000px;}
.y6f{bottom:579.885000px;}
.y9a{bottom:581.475000px;}
.y1f{bottom:585.435000px;}
.y48{bottom:588.135000px;}
.y60{bottom:595.545000px;}
.y6e{bottom:604.725000px;}
.y47{bottom:608.865000px;}
.y82{bottom:609.225000px;}
.y99{bottom:622.905000px;}
.y1e{bottom:623.265000px;}
.y5b{bottom:624.390000px;}
.y6d{bottom:629.430000px;}
.y46{bottom:629.565000px;}
.y27{bottom:642.165000px;}
.y45{bottom:650.265000px;}
.y81{bottom:650.625000px;}
.y6c{bottom:658.410000px;}
.y98{bottom:664.305000px;}
.y44{bottom:670.965000px;}
.y26{bottom:683.925000px;}
.y43{bottom:691.665000px;}
.y80{bottom:692.025000px;}
.y25{bottom:704.625000px;}
.y97{bottom:705.705000px;}
.y42{bottom:712.365000px;}
.y5a{bottom:729.150000px;}
.y41{bottom:733.065000px;}
.y7f{bottom:733.425000px;}
.y24{bottom:742.425000px;}
.y96{bottom:747.105000px;}
.y40{bottom:749.805000px;}
.y59{bottom:749.850000px;}
.y58{bottom:770.550000px;}
.y7e{bottom:774.825000px;}
.y95{bottom:788.505000px;}
.y57{bottom:791.250000px;}
.y7d{bottom:816.225000px;}
.yf{bottom:820.185000px;}
.y94{bottom:829.905000px;}
.y56{bottom:846.645000px;}
.y7c{bottom:857.625000px;}
.ye{bottom:861.765000px;}
.y55{bottom:864.285000px;}
.y93{bottom:871.350000px;}
.y54{bottom:885.930000px;}
.y7b{bottom:899.070000px;}
.yd{bottom:903.570000px;}
.y53{bottom:907.710000px;}
.y92{bottom:912.750000px;}
.yc{bottom:924.270000px;}
.y52{bottom:929.490000px;}
.y7a{bottom:940.470000px;}
.y51{bottom:951.270000px;}
.y91{bottom:954.150000px;}
.yb{bottom:960.090000px;}
.y50{bottom:973.050000px;}
.y79{bottom:981.870000px;}
.ya{bottom:983.850000px;}
.y4f{bottom:994.830000px;}
.y90{bottom:995.550000px;}
.y9{bottom:1007.790000px;}
.y4e{bottom:1016.430000px;}
.y78{bottom:1023.270000px;}
.y8{bottom:1031.550000px;}
.y8f{bottom:1036.950000px;}
.y4d{bottom:1038.210000px;}
.y7{bottom:1055.310000px;}
.y4a{bottom:1064.130000px;}
.y77{bottom:1064.670000px;}
.y12{bottom:1077.630000px;}
.y8e{bottom:1078.350000px;}
.y6{bottom:1079.070000px;}
.y5{bottom:1103.010000px;}
.y76{bottom:1106.070000px;}
.y11{bottom:1119.390000px;}
.y8d{bottom:1119.750000px;}
.y4{bottom:1126.770000px;}
.y75{bottom:1140.480000px;}
.y10{bottom:1161.000000px;}
.y3{bottom:1161.180000px;}
.h8{height:21.600000px;}
.h9{height:21.636000px;}
.h7{height:21.780000px;}
.h6{height:22.500000px;}
.h11{height:24.660000px;}
.h14{height:24.696000px;}
.h10{height:24.840000px;}
.he{height:25.416000px;}
.h13{height:25.560000px;}
.h5{height:44.280000px;}
.h12{height:65.880000px;}
.hf{height:65.884219px;}
.hd{height:67.824844px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h2{height:75.093750px;}
.hc{height:100.800000px;}
.ha{height:892.980000px;}
.hb{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:83.160000px;}
.w6{width:92.160000px;}
.w3{width:99.576000px;}
.w4{width:101.016000px;}
.w10{width:102.096000px;}
.w12{width:103.500000px;}
.w11{width:106.560000px;}
.w15{width:123.120000px;}
.w8{width:127.116000px;}
.w16{width:128.916000px;}
.w14{width:135.036000px;}
.w17{width:143.640000px;}
.wf{width:148.500000px;}
.wd{width:150.120000px;}
.we{width:164.910000px;}
.w7{width:174.090000px;}
.w13{width:288.030000px;}
.wc{width:310.575000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wb{width:1262.879981px;}
.w9{width:1262.880000px;}
.wa{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:7.776000px;}
.x16{left:9.900000px;}
.x15{left:11.700000px;}
.x13{left:14.040000px;}
.x19{left:15.660000px;}
.x26{left:17.100000px;}
.x31{left:18.180000px;}
.xd{left:20.340000px;}
.x29{left:21.420000px;}
.x10{left:22.860000px;}
.x24{left:25.200000px;}
.xb{left:27.180000px;}
.x23{left:29.160000px;}
.x2d{left:31.500000px;}
.x1e{left:32.760000px;}
.x28{left:34.560000px;}
.x1f{left:36.180000px;}
.x2e{left:37.260000px;}
.x20{left:38.520000px;}
.x17{left:40.680000px;}
.x1a{left:43.020000px;}
.x21{left:45.576000px;}
.x1c{left:47.520000px;}
.xe{left:59.040000px;}
.x30{left:61.740000px;}
.x11{left:66.600000px;}
.x2f{left:72.750000px;}
.x22{left:83.910000px;}
.x2{left:84.959987px;}
.x2c{left:91.830000px;}
.x1d{left:103.170000px;}
.x33{left:138.995987px;}
.x5{left:185.790000px;}
.x6{left:287.175000px;}
.x7{left:370.875000px;}
.x25{left:372.990000px;}
.xc{left:395.535000px;}
.x8{left:463.575000px;}
.x27{left:508.035000px;}
.xf{left:545.655000px;}
.x2a{left:631.155000px;}
.x9{left:638.025000px;}
.x12{left:710.565000px;}
.x2b{left:760.065000px;}
.x32{left:788.009987px;}
.x1{left:797.909987px;}
.x3{left:807.809987px;}
.x14{left:859.065000px;}
.x18{left:961.170000px;}
.x1b{left:1067.730000px;}
.xa{left:1157.909981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.276267pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.640000pt;}
.ws6{word-spacing:-18.048000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.168000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.030613pt;}
.ws7{word-spacing:-8.389120pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.077333pt;}
._2{width:752.266667pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.520000pt;}
.y5c{bottom:4.000000pt;}
.y2{bottom:10.720000pt;}
.y4c{bottom:21.920000pt;}
.y1{bottom:29.120000pt;}
.y5e{bottom:39.840000pt;}
.y5d{bottom:57.760000pt;}
.y5f{bottom:75.680000pt;}
.y1d{bottom:108.992000pt;}
.ya5{bottom:112.032000pt;}
.y1c{bottom:146.106667pt;}
.ya4{bottom:148.826667pt;}
.y8c{bottom:173.466667pt;}
.y1b{bottom:183.226667pt;}
.ya3{bottom:185.626667pt;}
.y8b{bottom:210.266667pt;}
.y1a{bottom:220.186667pt;}
.ya2{bottom:222.426667pt;}
.y8a{bottom:247.066667pt;}
.y19{bottom:257.306667pt;}
.ya1{bottom:259.226667pt;}
.y3a{bottom:274.106667pt;}
.y18{bottom:275.706667pt;}
.y89{bottom:283.866667pt;}
.y39{bottom:292.506667pt;}
.y6b{bottom:293.826667pt;}
.y17{bottom:294.106667pt;}
.ya0{bottom:296.026667pt;}
.y38{bottom:310.946667pt;}
.y6a{bottom:312.226667pt;}
.y16{bottom:312.546667pt;}
.y30{bottom:316.706667pt;}
.y88{bottom:320.706667pt;}
.y37{bottom:329.346667pt;}
.y15{bottom:330.946667pt;}
.y9f{bottom:332.866667pt;}
.y2f{bottom:335.106667pt;}
.y3f{bottom:336.866667pt;}
.y69{bottom:341.346667pt;}
.y36{bottom:347.746667pt;}
.y14{bottom:349.346667pt;}
.y2e{bottom:353.506667pt;}
.y3e{bottom:355.266667pt;}
.y87{bottom:357.506667pt;}
.y35{bottom:366.146667pt;}
.y9e{bottom:369.666667pt;}
.y68{bottom:370.466667pt;}
.y2d{bottom:371.906667pt;}
.y3d{bottom:373.666667pt;}
.y13{bottom:382.946667pt;}
.y34{bottom:384.546667pt;}
.y67{bottom:386.013333pt;}
.y2c{bottom:390.306667pt;}
.y23{bottom:390.786667pt;}
.y3c{bottom:392.066667pt;}
.y86{bottom:394.306667pt;}
.y33{bottom:402.946667pt;}
.y66{bottom:405.373333pt;}
.y9d{bottom:406.466667pt;}
.y3b{bottom:406.946667pt;}
.y2b{bottom:408.706667pt;}
.y74{bottom:416.093333pt;}
.y32{bottom:421.346667pt;}
.y65{bottom:424.573333pt;}
.y2a{bottom:427.106667pt;}
.y22{bottom:427.906667pt;}
.y85{bottom:431.106667pt;}
.y73{bottom:435.453333pt;}
.y9c{bottom:443.266667pt;}
.y64{bottom:443.933333pt;}
.y29{bottom:445.506667pt;}
.y31{bottom:454.786667pt;}
.y72{bottom:454.813333pt;}
.y28{bottom:460.386667pt;}
.y63{bottom:463.293333pt;}
.y21{bottom:465.026667pt;}
.y84{bottom:467.906667pt;}
.y71{bottom:474.173333pt;}
.y9b{bottom:480.066667pt;}
.y62{bottom:485.373333pt;}
.y49{bottom:492.226667pt;}
.y70{bottom:493.533333pt;}
.y20{bottom:501.986667pt;}
.y83{bottom:504.706667pt;}
.y61{bottom:507.293333pt;}
.y6f{bottom:515.453333pt;}
.y9a{bottom:516.866667pt;}
.y1f{bottom:520.386667pt;}
.y48{bottom:522.786667pt;}
.y60{bottom:529.373333pt;}
.y6e{bottom:537.533333pt;}
.y47{bottom:541.213333pt;}
.y82{bottom:541.533333pt;}
.y99{bottom:553.693333pt;}
.y1e{bottom:554.013333pt;}
.y5b{bottom:555.013333pt;}
.y6d{bottom:559.493333pt;}
.y46{bottom:559.613333pt;}
.y27{bottom:570.813333pt;}
.y45{bottom:578.013333pt;}
.y81{bottom:578.333333pt;}
.y6c{bottom:585.253333pt;}
.y98{bottom:590.493333pt;}
.y44{bottom:596.413333pt;}
.y26{bottom:607.933333pt;}
.y43{bottom:614.813333pt;}
.y80{bottom:615.133333pt;}
.y25{bottom:626.333333pt;}
.y97{bottom:627.293333pt;}
.y42{bottom:633.213333pt;}
.y5a{bottom:648.133333pt;}
.y41{bottom:651.613333pt;}
.y7f{bottom:651.933333pt;}
.y24{bottom:659.933333pt;}
.y96{bottom:664.093333pt;}
.y40{bottom:666.493333pt;}
.y59{bottom:666.533333pt;}
.y58{bottom:684.933333pt;}
.y7e{bottom:688.733333pt;}
.y95{bottom:700.893333pt;}
.y57{bottom:703.333333pt;}
.y7d{bottom:725.533333pt;}
.yf{bottom:729.053333pt;}
.y94{bottom:737.693333pt;}
.y56{bottom:752.573333pt;}
.y7c{bottom:762.333333pt;}
.ye{bottom:766.013333pt;}
.y55{bottom:768.253333pt;}
.y93{bottom:774.533333pt;}
.y54{bottom:787.493333pt;}
.y7b{bottom:799.173333pt;}
.yd{bottom:803.173333pt;}
.y53{bottom:806.853333pt;}
.y92{bottom:811.333333pt;}
.yc{bottom:821.573333pt;}
.y52{bottom:826.213333pt;}
.y7a{bottom:835.973333pt;}
.y51{bottom:845.573333pt;}
.y91{bottom:848.133333pt;}
.yb{bottom:853.413333pt;}
.y50{bottom:864.933333pt;}
.y79{bottom:872.773333pt;}
.ya{bottom:874.533333pt;}
.y4f{bottom:884.293333pt;}
.y90{bottom:884.933333pt;}
.y9{bottom:895.813333pt;}
.y4e{bottom:903.493333pt;}
.y78{bottom:909.573333pt;}
.y8{bottom:916.933333pt;}
.y8f{bottom:921.733333pt;}
.y4d{bottom:922.853333pt;}
.y7{bottom:938.053333pt;}
.y4a{bottom:945.893333pt;}
.y77{bottom:946.373333pt;}
.y12{bottom:957.893333pt;}
.y8e{bottom:958.533333pt;}
.y6{bottom:959.173333pt;}
.y5{bottom:980.453333pt;}
.y76{bottom:983.173333pt;}
.y11{bottom:995.013333pt;}
.y8d{bottom:995.333333pt;}
.y4{bottom:1001.573333pt;}
.y75{bottom:1013.760000pt;}
.y10{bottom:1032.000000pt;}
.y3{bottom:1032.160000pt;}
.h8{height:19.200000pt;}
.h9{height:19.232000pt;}
.h7{height:19.360000pt;}
.h6{height:20.000000pt;}
.h11{height:21.920000pt;}
.h14{height:21.952000pt;}
.h10{height:22.080000pt;}
.he{height:22.592000pt;}
.h13{height:22.720000pt;}
.h5{height:39.360000pt;}
.h12{height:58.560000pt;}
.hf{height:58.563750pt;}
.hd{height:60.288750pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h2{height:66.750000pt;}
.hc{height:89.600000pt;}
.ha{height:793.760000pt;}
.hb{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:73.920000pt;}
.w6{width:81.920000pt;}
.w3{width:88.512000pt;}
.w4{width:89.792000pt;}
.w10{width:90.752000pt;}
.w12{width:92.000000pt;}
.w11{width:94.720000pt;}
.w15{width:109.440000pt;}
.w8{width:112.992000pt;}
.w16{width:114.592000pt;}
.w14{width:120.032000pt;}
.w17{width:127.680000pt;}
.wf{width:132.000000pt;}
.wd{width:133.440000pt;}
.we{width:146.586667pt;}
.w7{width:154.746667pt;}
.w13{width:256.026667pt;}
.wc{width:276.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wb{width:1122.559983pt;}
.w9{width:1122.560000pt;}
.wa{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:6.912000pt;}
.x16{left:8.800000pt;}
.x15{left:10.400000pt;}
.x13{left:12.480000pt;}
.x19{left:13.920000pt;}
.x26{left:15.200000pt;}
.x31{left:16.160000pt;}
.xd{left:18.080000pt;}
.x29{left:19.040000pt;}
.x10{left:20.320000pt;}
.x24{left:22.400000pt;}
.xb{left:24.160000pt;}
.x23{left:25.920000pt;}
.x2d{left:28.000000pt;}
.x1e{left:29.120000pt;}
.x28{left:30.720000pt;}
.x1f{left:32.160000pt;}
.x2e{left:33.120000pt;}
.x20{left:34.240000pt;}
.x17{left:36.160000pt;}
.x1a{left:38.240000pt;}
.x21{left:40.512000pt;}
.x1c{left:42.240000pt;}
.xe{left:52.480000pt;}
.x30{left:54.880000pt;}
.x11{left:59.200000pt;}
.x2f{left:64.666667pt;}
.x22{left:74.586667pt;}
.x2{left:75.519988pt;}
.x2c{left:81.626667pt;}
.x1d{left:91.706667pt;}
.x33{left:123.551988pt;}
.x5{left:165.146667pt;}
.x6{left:255.266667pt;}
.x7{left:329.666667pt;}
.x25{left:331.546667pt;}
.xc{left:351.586667pt;}
.x8{left:412.066667pt;}
.x27{left:451.586667pt;}
.xf{left:485.026667pt;}
.x2a{left:561.026667pt;}
.x9{left:567.133333pt;}
.x12{left:631.613333pt;}
.x2b{left:675.613333pt;}
.x32{left:700.453322pt;}
.x1{left:709.253322pt;}
.x3{left:718.053322pt;}
.x14{left:763.613333pt;}
.x18{left:854.373333pt;}
.x1b{left:949.093333pt;}
.xa{left:1029.253317pt;}
}




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