
    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_85fb089500642d57a2a10312.woff')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_607f0f960b3c24068accf204.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_6c3afba5a693a8299bc291b6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a1af3d37cf3d68c7599f6fe.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_82d927c1dc0188bbc3e50ce1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_9716f3f28cd865f50069fdd9.woff')format("woff");}.ff6{font-family:ff6;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);}
.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);}
.v2{vertical-align:-110.880000px;}
.v1{vertical-align:-77.040000px;}
.v6{vertical-align:-75.600000px;}
.v5{vertical-align:-69.120000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.550200px;}
.ls17{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.450600px;}
.ls10{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.152400px;}
.lsa{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.119520px;}
.ls1d{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.169920px;}
.ls2{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.181200px;}
.lsb{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.262080px;}
.lse{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.382080px;}
.ls1a{letter-spacing:0.540000px;}
.ls9{letter-spacing:1.440000px;}
.ls8{letter-spacing:6.480000px;}
.ls1c{letter-spacing:12.240000px;}
.ls7{letter-spacing:18.720000px;}
.ls1{letter-spacing:51.660000px;}
.ls3{letter-spacing:130.500000px;}
.ls1b{letter-spacing:195.816000px;}
.ls16{letter-spacing:195.840000px;}
.ls0{letter-spacing:230.916000px;}
.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;}
}
.ws3{word-spacing:-21.060000px;}
.wsd{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.407600px;}
.wsc{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws9{word-spacing:-12.780000px;}
.ws7{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.241200px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws1{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._13{margin-left:-4.692480px;}
._f{margin-left:-2.992320px;}
._0{margin-left:-1.929600px;}
._1{width:1.114560px;}
._5{width:2.873760px;}
._7{width:3.944160px;}
._e{width:5.753760px;}
._8{width:7.022880px;}
._17{width:8.089680px;}
._10{width:9.360000px;}
._16{width:10.545360px;}
._b{width:11.824320px;}
._a{width:12.850560px;}
._c{width:14.053440px;}
._d{width:18.414720px;}
._1c{width:19.434240px;}
._11{width:20.468160px;}
._12{width:21.738480px;}
._15{width:24.309120px;}
._14{width:25.502400px;}
._18{width:26.820000px;}
._1b{width:28.800960px;}
._1a{width:29.808000px;}
._19{width:31.927680px;}
._6{width:53.668800px;}
._2{width:187.380000px;}
._3{width:194.400000px;}
._4{width:1605.876000px;}
._9{width:1859.758800px;}
.fc3{color:rgb(7,75,185);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(0,51,204);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.700000px;}
.y33{bottom:17.100000px;}
.y32{bottom:30.960000px;}
.y2{bottom:55.620000px;}
.y37{bottom:56.340000px;}
.y1{bottom:69.300000px;}
.y36{bottom:73.620000px;}
.y7a{bottom:111.636000px;}
.y6c{bottom:118.296000px;}
.y2f{bottom:123.156000px;}
.y77{bottom:124.596000px;}
.y79{bottom:125.676000px;}
.y6b{bottom:137.376000px;}
.y2e{bottom:142.056000px;}
.y76{bottom:143.496000px;}
.ya5{bottom:144.036000px;}
.y6a{bottom:156.270000px;}
.y2d{bottom:161.130000px;}
.y75{bottom:162.570000px;}
.ya4{bottom:163.110000px;}
.y69{bottom:175.170000px;}
.y2c{bottom:180.030000px;}
.y74{bottom:181.470000px;}
.ya3{bottom:182.010000px;}
.y68{bottom:194.250000px;}
.y2b{bottom:198.930000px;}
.y73{bottom:200.370000px;}
.ya2{bottom:201.090000px;}
.y67{bottom:213.150000px;}
.y2a{bottom:218.010000px;}
.y72{bottom:219.450000px;}
.ya1{bottom:219.990000px;}
.y66{bottom:232.230000px;}
.y29{bottom:236.910000px;}
.y71{bottom:238.350000px;}
.ya0{bottom:239.070000px;}
.y65{bottom:251.130000px;}
.y28{bottom:255.990000px;}
.y9f{bottom:257.970000px;}
.y64{bottom:270.030000px;}
.y27{bottom:274.890000px;}
.y70{bottom:276.330000px;}
.y9e{bottom:276.870000px;}
.y63{bottom:289.110000px;}
.y26{bottom:293.790000px;}
.y6f{bottom:294.870000px;}
.y9d{bottom:295.950000px;}
.y62{bottom:308.010000px;}
.y6e{bottom:312.150000px;}
.y25{bottom:312.870000px;}
.y9c{bottom:314.850000px;}
.y6d{bottom:326.190000px;}
.y61{bottom:327.090000px;}
.y24{bottom:331.770000px;}
.y9b{bottom:333.930000px;}
.y60{bottom:345.990000px;}
.y23{bottom:350.850000px;}
.y9a{bottom:352.830000px;}
.y5f{bottom:365.115000px;}
.y22{bottom:369.795000px;}
.y99{bottom:371.775000px;}
.y5e{bottom:384.015000px;}
.y21{bottom:388.695000px;}
.y98{bottom:390.855000px;}
.y5d{bottom:402.915000px;}
.y20{bottom:407.775000px;}
.y97{bottom:409.755000px;}
.y5c{bottom:421.995000px;}
.y1f{bottom:427.575000px;}
.y96{bottom:428.835000px;}
.y5b{bottom:440.895000px;}
.y95{bottom:447.735000px;}
.y1e{bottom:450.795000px;}
.y5a{bottom:459.435000px;}
.y94{bottom:466.635000px;}
.y1d{bottom:473.475000px;}
.y93{bottom:485.715000px;}
.y1c{bottom:492.195000px;}
.y59{bottom:496.155000px;}
.y92{bottom:504.615000px;}
.y1b{bottom:509.475000px;}
.y58{bottom:517.755000px;}
.y91{bottom:523.695000px;}
.y1a{bottom:526.575000px;}
.y57{bottom:539.535000px;}
.y90{bottom:542.595000px;}
.y19{bottom:543.855000px;}
.y18{bottom:561.135000px;}
.y56{bottom:561.315000px;}
.y8f{bottom:561.495000px;}
.y17{bottom:578.415000px;}
.y55{bottom:580.575000px;}
.y16{bottom:595.695000px;}
.y8e{bottom:599.475000px;}
.y54{bottom:600.375000px;}
.y15{bottom:613.335000px;}
.y8d{bottom:618.585000px;}
.y53{bottom:623.625000px;}
.y14{bottom:635.865000px;}
.y8c{bottom:637.485000px;}
.y52{bottom:642.705000px;}
.y8b{bottom:656.385000px;}
.y51{bottom:661.605000px;}
.y13{bottom:671.865000px;}
.y8a{bottom:675.465000px;}
.y50{bottom:680.685000px;}
.y12{bottom:689.145000px;}
.y89{bottom:694.365000px;}
.y4f{bottom:699.585000px;}
.yaa{bottom:704.805000px;}
.y11{bottom:706.425000px;}
.y88{bottom:713.445000px;}
.y4e{bottom:718.485000px;}
.ya9{bottom:723.705000px;}
.y10{bottom:728.745000px;}
.y87{bottom:732.345000px;}
.y4d{bottom:737.565000px;}
.yf{bottom:740.805000px;}
.ya8{bottom:742.785000px;}
.y86{bottom:751.425000px;}
.y4c{bottom:756.465000px;}
.ya7{bottom:761.685000px;}
.ye{bottom:763.305000px;}
.y85{bottom:770.325000px;}
.y4b{bottom:775.545000px;}
.yd{bottom:780.585000px;}
.y84{bottom:789.225000px;}
.y4a{bottom:795.345000px;}
.yc{bottom:797.865000px;}
.ya6{bottom:799.665000px;}
.y83{bottom:808.305000px;}
.yb{bottom:809.925000px;}
.y49{bottom:818.565000px;}
.y82{bottom:827.205000px;}
.ya{bottom:827.745000px;}
.y48{bottom:837.645000px;}
.y81{bottom:847.005000px;}
.y9{bottom:848.445000px;}
.y47{bottom:856.545000px;}
.y8{bottom:868.965000px;}
.y80{bottom:870.405000px;}
.y46{bottom:875.445000px;}
.y78{bottom:885.210000px;}
.y7f{bottom:889.350000px;}
.y7{bottom:889.530000px;}
.y45{bottom:894.570000px;}
.y7e{bottom:908.430000px;}
.y44{bottom:913.470000px;}
.y7d{bottom:927.330000px;}
.y43{bottom:932.550000px;}
.y6{bottom:944.790000px;}
.y7c{bottom:946.230000px;}
.y42{bottom:951.450000px;}
.y7b{bottom:966.030000px;}
.y41{bottom:970.350000px;}
.y5{bottom:972.330000px;}
.y40{bottom:989.430000px;}
.y3f{bottom:1008.330000px;}
.y4{bottom:1017.150000px;}
.y3e{bottom:1027.410000px;}
.y3{bottom:1039.470000px;}
.y3d{bottom:1046.310000px;}
.y3c{bottom:1065.390000px;}
.y3b{bottom:1084.290000px;}
.y30{bottom:1100.850000px;}
.y3a{bottom:1103.190000px;}
.y31{bottom:1108.950000px;}
.y39{bottom:1122.270000px;}
.y38{bottom:1141.200000px;}
.y35{bottom:1195.740000px;}
.h13{height:23.319141px;}
.hf{height:24.840000px;}
.ha{height:38.139609px;}
.hc{height:38.158594px;}
.h10{height:42.156000px;}
.h2{height:47.344922px;}
.h11{height:50.171484px;}
.hd{height:58.621992px;}
.hb{height:58.651172px;}
.h9{height:60.226875px;}
.h14{height:60.288750px;}
.h6{height:65.010937px;}
.h12{height:66.757500px;}
.h7{height:70.664062px;}
.h3{height:72.562500px;}
.h8{height:74.704922px;}
.he{height:84.898125px;}
.h5{height:93.983203px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:111.996000px;}
.w4{width:300.675000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.800000px;}
.xe{left:87.870000px;}
.x1{left:106.415987px;}
.x7{left:128.375987px;}
.x11{left:159.509987px;}
.xb{left:181.289987px;}
.x4{left:206.849987px;}
.x12{left:212.609987px;}
.x2{left:214.409987px;}
.x9{left:236.009987px;}
.x8{left:243.434987px;}
.x5{left:246.314987px;}
.xc{left:268.814987px;}
.xf{left:296.355000px;}
.xa{left:332.534987px;}
.x6{left:419.504987px;}
.x13{left:424.544987px;}
.x3{left:446.504987px;}
.xd{left:700.350000px;}
.x14{left:771.839987px;}
.x15{left:773.999987px;}
@media print{
.v2{vertical-align:-98.560000pt;}
.v1{vertical-align:-68.480000pt;}
.v6{vertical-align:-67.200000pt;}
.v5{vertical-align:-61.440000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.489067pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.400533pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.106240pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.151040pt;}
.ls2{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.161067pt;}
.lsb{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.339627pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls8{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:10.880000pt;}
.ls7{letter-spacing:16.640000pt;}
.ls1{letter-spacing:45.920000pt;}
.ls3{letter-spacing:116.000000pt;}
.ls1b{letter-spacing:174.058667pt;}
.ls16{letter-spacing:174.080000pt;}
.ls0{letter-spacing:205.258667pt;}
.ws3{word-spacing:-18.720000pt;}
.wsd{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws9{word-spacing:-11.360000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.881067pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws1{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._13{margin-left:-4.171093pt;}
._f{margin-left:-2.659840pt;}
._0{margin-left:-1.715200pt;}
._1{width:0.990720pt;}
._5{width:2.554453pt;}
._7{width:3.505920pt;}
._e{width:5.114453pt;}
._8{width:6.242560pt;}
._17{width:7.190827pt;}
._10{width:8.320000pt;}
._16{width:9.373653pt;}
._b{width:10.510507pt;}
._a{width:11.422720pt;}
._c{width:12.491947pt;}
._d{width:16.368640pt;}
._1c{width:17.274880pt;}
._11{width:18.193920pt;}
._12{width:19.323093pt;}
._15{width:21.608107pt;}
._14{width:22.668800pt;}
._18{width:23.840000pt;}
._1b{width:25.600853pt;}
._1a{width:26.496000pt;}
._19{width:28.380160pt;}
._6{width:47.705600pt;}
._2{width:166.560000pt;}
._3{width:172.800000pt;}
._4{width:1427.445333pt;}
._9{width:1653.118933pt;}
.fs8{font-size:21.120000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.400000pt;}
.y33{bottom:15.200000pt;}
.y32{bottom:27.520000pt;}
.y2{bottom:49.440000pt;}
.y37{bottom:50.080000pt;}
.y1{bottom:61.600000pt;}
.y36{bottom:65.440000pt;}
.y7a{bottom:99.232000pt;}
.y6c{bottom:105.152000pt;}
.y2f{bottom:109.472000pt;}
.y77{bottom:110.752000pt;}
.y79{bottom:111.712000pt;}
.y6b{bottom:122.112000pt;}
.y2e{bottom:126.272000pt;}
.y76{bottom:127.552000pt;}
.ya5{bottom:128.032000pt;}
.y6a{bottom:138.906667pt;}
.y2d{bottom:143.226667pt;}
.y75{bottom:144.506667pt;}
.ya4{bottom:144.986667pt;}
.y69{bottom:155.706667pt;}
.y2c{bottom:160.026667pt;}
.y74{bottom:161.306667pt;}
.ya3{bottom:161.786667pt;}
.y68{bottom:172.666667pt;}
.y2b{bottom:176.826667pt;}
.y73{bottom:178.106667pt;}
.ya2{bottom:178.746667pt;}
.y67{bottom:189.466667pt;}
.y2a{bottom:193.786667pt;}
.y72{bottom:195.066667pt;}
.ya1{bottom:195.546667pt;}
.y66{bottom:206.426667pt;}
.y29{bottom:210.586667pt;}
.y71{bottom:211.866667pt;}
.ya0{bottom:212.506667pt;}
.y65{bottom:223.226667pt;}
.y28{bottom:227.546667pt;}
.y9f{bottom:229.306667pt;}
.y64{bottom:240.026667pt;}
.y27{bottom:244.346667pt;}
.y70{bottom:245.626667pt;}
.y9e{bottom:246.106667pt;}
.y63{bottom:256.986667pt;}
.y26{bottom:261.146667pt;}
.y6f{bottom:262.106667pt;}
.y9d{bottom:263.066667pt;}
.y62{bottom:273.786667pt;}
.y6e{bottom:277.466667pt;}
.y25{bottom:278.106667pt;}
.y9c{bottom:279.866667pt;}
.y6d{bottom:289.946667pt;}
.y61{bottom:290.746667pt;}
.y24{bottom:294.906667pt;}
.y9b{bottom:296.826667pt;}
.y60{bottom:307.546667pt;}
.y23{bottom:311.866667pt;}
.y9a{bottom:313.626667pt;}
.y5f{bottom:324.546667pt;}
.y22{bottom:328.706667pt;}
.y99{bottom:330.466667pt;}
.y5e{bottom:341.346667pt;}
.y21{bottom:345.506667pt;}
.y98{bottom:347.426667pt;}
.y5d{bottom:358.146667pt;}
.y20{bottom:362.466667pt;}
.y97{bottom:364.226667pt;}
.y5c{bottom:375.106667pt;}
.y1f{bottom:380.066667pt;}
.y96{bottom:381.186667pt;}
.y5b{bottom:391.906667pt;}
.y95{bottom:397.986667pt;}
.y1e{bottom:400.706667pt;}
.y5a{bottom:408.386667pt;}
.y94{bottom:414.786667pt;}
.y1d{bottom:420.866667pt;}
.y93{bottom:431.746667pt;}
.y1c{bottom:437.506667pt;}
.y59{bottom:441.026667pt;}
.y92{bottom:448.546667pt;}
.y1b{bottom:452.866667pt;}
.y58{bottom:460.226667pt;}
.y91{bottom:465.506667pt;}
.y1a{bottom:468.066667pt;}
.y57{bottom:479.586667pt;}
.y90{bottom:482.306667pt;}
.y19{bottom:483.426667pt;}
.y18{bottom:498.786667pt;}
.y56{bottom:498.946667pt;}
.y8f{bottom:499.106667pt;}
.y17{bottom:514.146667pt;}
.y55{bottom:516.066667pt;}
.y16{bottom:529.506667pt;}
.y8e{bottom:532.866667pt;}
.y54{bottom:533.666667pt;}
.y15{bottom:545.186667pt;}
.y8d{bottom:549.853333pt;}
.y53{bottom:554.333333pt;}
.y14{bottom:565.213333pt;}
.y8c{bottom:566.653333pt;}
.y52{bottom:571.293333pt;}
.y8b{bottom:583.453333pt;}
.y51{bottom:588.093333pt;}
.y13{bottom:597.213333pt;}
.y8a{bottom:600.413333pt;}
.y50{bottom:605.053333pt;}
.y12{bottom:612.573333pt;}
.y89{bottom:617.213333pt;}
.y4f{bottom:621.853333pt;}
.yaa{bottom:626.493333pt;}
.y11{bottom:627.933333pt;}
.y88{bottom:634.173333pt;}
.y4e{bottom:638.653333pt;}
.ya9{bottom:643.293333pt;}
.y10{bottom:647.773333pt;}
.y87{bottom:650.973333pt;}
.y4d{bottom:655.613333pt;}
.yf{bottom:658.493333pt;}
.ya8{bottom:660.253333pt;}
.y86{bottom:667.933333pt;}
.y4c{bottom:672.413333pt;}
.ya7{bottom:677.053333pt;}
.ye{bottom:678.493333pt;}
.y85{bottom:684.733333pt;}
.y4b{bottom:689.373333pt;}
.yd{bottom:693.853333pt;}
.y84{bottom:701.533333pt;}
.y4a{bottom:706.973333pt;}
.yc{bottom:709.213333pt;}
.ya6{bottom:710.813333pt;}
.y83{bottom:718.493333pt;}
.yb{bottom:719.933333pt;}
.y49{bottom:727.613333pt;}
.y82{bottom:735.293333pt;}
.ya{bottom:735.773333pt;}
.y48{bottom:744.573333pt;}
.y81{bottom:752.893333pt;}
.y9{bottom:754.173333pt;}
.y47{bottom:761.373333pt;}
.y8{bottom:772.413333pt;}
.y80{bottom:773.693333pt;}
.y46{bottom:778.173333pt;}
.y78{bottom:786.853333pt;}
.y7f{bottom:790.533333pt;}
.y7{bottom:790.693333pt;}
.y45{bottom:795.173333pt;}
.y7e{bottom:807.493333pt;}
.y44{bottom:811.973333pt;}
.y7d{bottom:824.293333pt;}
.y43{bottom:828.933333pt;}
.y6{bottom:839.813333pt;}
.y7c{bottom:841.093333pt;}
.y42{bottom:845.733333pt;}
.y7b{bottom:858.693333pt;}
.y41{bottom:862.533333pt;}
.y5{bottom:864.293333pt;}
.y40{bottom:879.493333pt;}
.y3f{bottom:896.293333pt;}
.y4{bottom:904.133333pt;}
.y3e{bottom:913.253333pt;}
.y3{bottom:923.973333pt;}
.y3d{bottom:930.053333pt;}
.y3c{bottom:947.013333pt;}
.y3b{bottom:963.813333pt;}
.y30{bottom:978.533333pt;}
.y3a{bottom:980.613333pt;}
.y31{bottom:985.733333pt;}
.y39{bottom:997.573333pt;}
.y38{bottom:1014.400000pt;}
.y35{bottom:1062.880000pt;}
.h13{height:20.728125pt;}
.hf{height:22.080000pt;}
.ha{height:33.901875pt;}
.hc{height:33.918750pt;}
.h10{height:37.472000pt;}
.h2{height:42.084375pt;}
.h11{height:44.596875pt;}
.hd{height:52.108438pt;}
.hb{height:52.134375pt;}
.h9{height:53.535000pt;}
.h14{height:53.590000pt;}
.h6{height:57.787500pt;}
.h12{height:59.340000pt;}
.h7{height:62.812500pt;}
.h3{height:64.500000pt;}
.h8{height:66.404375pt;}
.he{height:75.465000pt;}
.h5{height:83.540625pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:99.552000pt;}
.w4{width:267.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.600000pt;}
.xe{left:78.106667pt;}
.x1{left:94.591988pt;}
.x7{left:114.111988pt;}
.x11{left:141.786655pt;}
.xb{left:161.146655pt;}
.x4{left:183.866655pt;}
.x12{left:188.986655pt;}
.x2{left:190.586655pt;}
.x9{left:209.786655pt;}
.x8{left:216.386655pt;}
.x5{left:218.946655pt;}
.xc{left:238.946655pt;}
.xf{left:263.426667pt;}
.xa{left:295.586655pt;}
.x6{left:372.893322pt;}
.x13{left:377.373322pt;}
.x3{left:396.893322pt;}
.xd{left:622.533333pt;}
.x14{left:686.079988pt;}
.x15{left:687.999988pt;}
}




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