
    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_17febdd680453ee770598ea0.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_4e87841898fb13119422a4a9.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_35e00cfe7f6cdeb135a95989.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_06828eb6b45e289397b19532.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7ce38132959dbd5e53c5bed3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:11.466720px;}
.lsd{letter-spacing:41.850720px;}
.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:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-2846.549520px;}
._3{margin-left:-1378.964160px;}
._5{margin-left:-989.170560px;}
._7{margin-left:-512.988480px;}
._4{margin-left:-8.213760px;}
._14{margin-left:-7.041600px;}
._8{margin-left:-5.950080px;}
._9{margin-left:-4.692240px;}
._6{margin-left:-3.214080px;}
._1{margin-left:-1.532160px;}
._0{width:1.244880px;}
._a{width:2.867280px;}
._11{width:3.893760px;}
._b{width:5.318640px;}
._12{width:6.404400px;}
._13{width:7.639920px;}
._10{width:8.655120px;}
._c{width:9.930240px;}
._d{width:10.985040px;}
._17{width:12.021840px;}
._16{width:13.804560px;}
._15{width:16.206480px;}
._f{width:17.270640px;}
._e{width:18.465840px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(21,56,61);}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:5.760000px;}
.y7d{bottom:5.940000px;}
.y1e{bottom:14.760000px;}
.y1c{bottom:25.560000px;}
.y1d{bottom:34.560000px;}
.y1b{bottom:54.540000px;}
.y7{bottom:60.156000px;}
.y82{bottom:68.040000px;}
.y1a{bottom:74.340000px;}
.y6{bottom:81.936000px;}
.y6e{bottom:90.576000px;}
.y19{bottom:94.140000px;}
.y78{bottom:101.376000px;}
.y6d{bottom:110.376000px;}
.y9b{bottom:111.636000px;}
.y18{bottom:113.940000px;}
.y77{bottom:121.176000px;}
.y36{bottom:124.956000px;}
.y6c{bottom:130.176000px;}
.y9a{bottom:131.436000px;}
.y17{bottom:133.740000px;}
.y76{bottom:140.976000px;}
.y35{bottom:144.756000px;}
.y6b{bottom:149.976000px;}
.y16{bottom:153.720000px;}
.y99{bottom:160.230000px;}
.y75{bottom:160.770000px;}
.y34{bottom:164.550000px;}
.y6a{bottom:169.770000px;}
.y15{bottom:173.520000px;}
.y98{bottom:180.210000px;}
.y74{bottom:180.750000px;}
.y33{bottom:184.530000px;}
.y69{bottom:189.750000px;}
.y14{bottom:193.320000px;}
.y97{bottom:200.010000px;}
.y73{bottom:200.550000px;}
.y32{bottom:204.330000px;}
.y68{bottom:209.550000px;}
.y13{bottom:213.120000px;}
.y96{bottom:219.810000px;}
.y72{bottom:220.350000px;}
.y31{bottom:224.130000px;}
.y67{bottom:229.350000px;}
.y12{bottom:232.920000px;}
.y95{bottom:239.610000px;}
.y71{bottom:240.150000px;}
.y30{bottom:243.930000px;}
.y66{bottom:249.150000px;}
.y11{bottom:252.945000px;}
.y94{bottom:259.410000px;}
.y70{bottom:259.950000px;}
.y2f{bottom:263.730000px;}
.y65{bottom:268.950000px;}
.y93{bottom:279.435000px;}
.y6f{bottom:279.975000px;}
.y2e{bottom:283.755000px;}
.y64{bottom:288.975000px;}
.y92{bottom:299.235000px;}
.y2d{bottom:303.555000px;}
.y63{bottom:308.775000px;}
.y91{bottom:319.035000px;}
.y2c{bottom:323.355000px;}
.y62{bottom:328.575000px;}
.y90{bottom:338.835000px;}
.y2b{bottom:343.155000px;}
.y61{bottom:348.375000px;}
.y8f{bottom:358.635000px;}
.y2a{bottom:362.955000px;}
.y60{bottom:368.175000px;}
.y8e{bottom:378.615000px;}
.y29{bottom:382.935000px;}
.y5f{bottom:388.155000px;}
.y8d{bottom:398.415000px;}
.y28{bottom:402.735000px;}
.y5e{bottom:407.955000px;}
.y8c{bottom:418.215000px;}
.y27{bottom:422.535000px;}
.y5d{bottom:427.755000px;}
.y8b{bottom:438.015000px;}
.y26{bottom:442.335000px;}
.y5c{bottom:447.555000px;}
.y8a{bottom:457.815000px;}
.y25{bottom:462.135000px;}
.y5b{bottom:467.355000px;}
.y89{bottom:477.795000px;}
.y24{bottom:482.115000px;}
.y5a{bottom:487.335000px;}
.y88{bottom:497.595000px;}
.y23{bottom:501.915000px;}
.y59{bottom:507.135000px;}
.y87{bottom:517.395000px;}
.y22{bottom:521.715000px;}
.y58{bottom:526.935000px;}
.y86{bottom:537.195000px;}
.y21{bottom:541.515000px;}
.y57{bottom:546.735000px;}
.y85{bottom:557.025000px;}
.y20{bottom:561.345000px;}
.y56{bottom:566.565000px;}
.y81{bottom:571.605000px;}
.y1f{bottom:581.325000px;}
.y55{bottom:586.545000px;}
.y84{bottom:592.305000px;}
.y10{bottom:597.525000px;}
.y54{bottom:606.345000px;}
.y83{bottom:613.185000px;}
.y53{bottom:626.145000px;}
.y80{bottom:633.885000px;}
.y52{bottom:645.945000px;}
.y7f{bottom:654.585000px;}
.y51{bottom:665.745000px;}
.y7e{bottom:675.285000px;}
.y50{bottom:685.725000px;}
.y7c{bottom:695.985000px;}
.y4f{bottom:705.525000px;}
.y7b{bottom:716.865000px;}
.y4e{bottom:725.325000px;}
.y7a{bottom:737.565000px;}
.y4d{bottom:745.125000px;}
.y79{bottom:758.265000px;}
.y4c{bottom:764.925000px;}
.y4b{bottom:784.725000px;}
.y4a{bottom:804.705000px;}
.y49{bottom:824.505000px;}
.y9c{bottom:842.730000px;}
.y48{bottom:844.350000px;}
.y47{bottom:864.150000px;}
.ye{bottom:866.670000px;}
.y46{bottom:883.950000px;}
.yd{bottom:894.570000px;}
.y45{bottom:903.930000px;}
.yc{bottom:919.590000px;}
.y44{bottom:923.730000px;}
.yb{bottom:934.710000px;}
.y43{bottom:943.530000px;}
.ya{bottom:956.130000px;}
.y42{bottom:963.330000px;}
.y9{bottom:979.530000px;}
.y41{bottom:983.130000px;}
.y40{bottom:1003.110000px;}
.y8{bottom:1011.210000px;}
.y3f{bottom:1022.910000px;}
.y3e{bottom:1042.710000px;}
.y5{bottom:1051.170000px;}
.y3d{bottom:1062.510000px;}
.y4{bottom:1081.950000px;}
.y3c{bottom:1082.310000px;}
.y3b{bottom:1102.290000px;}
.y3{bottom:1112.730000px;}
.y3a{bottom:1122.120000px;}
.y39{bottom:1141.920000px;}
.y2{bottom:1143.720000px;}
.y38{bottom:1161.720000px;}
.y1{bottom:1177.560000px;}
.y37{bottom:1193.400000px;}
.h9{height:19.800000px;}
.hd{height:19.980000px;}
.h8{height:27.147656px;}
.hc{height:39.600000px;}
.hb{height:41.726953px;}
.h6{height:42.164648px;}
.h10{height:43.506914px;}
.hf{height:43.681992px;}
.h4{height:46.251562px;}
.h5{height:46.736719px;}
.h7{height:53.224453px;}
.h3{height:58.819922px;}
.h11{height:65.884219px;}
.h2{height:67.565039px;}
.he{height:82.080000px;}
.ha{height:266.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:84.420000px;}
.wa{width:84.780000px;}
.w6{width:95.076000px;}
.w8{width:100.260000px;}
.wb{width:100.800000px;}
.w9{width:126.936000px;}
.wc{width:127.116000px;}
.w4{width:175.530000px;}
.w5{width:319.035000px;}
.w3{width:614.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:68.939987px;}
.xa{left:80.999987px;}
.x5{left:82.620000px;}
.xb{left:108.035987px;}
.x6{left:402.195000px;}
.x7{left:497.805000px;}
.x8{left:582.765000px;}
.x4{left:668.445000px;}
.x9{left:683.565000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:10.192640pt;}
.lsd{letter-spacing:37.200640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-2530.266240pt;}
._3{margin-left:-1225.745920pt;}
._5{margin-left:-879.262720pt;}
._7{margin-left:-455.989760pt;}
._4{margin-left:-7.301120pt;}
._14{margin-left:-6.259200pt;}
._8{margin-left:-5.288960pt;}
._9{margin-left:-4.170880pt;}
._6{margin-left:-2.856960pt;}
._1{margin-left:-1.361920pt;}
._0{width:1.106560pt;}
._a{width:2.548693pt;}
._11{width:3.461120pt;}
._b{width:4.727680pt;}
._12{width:5.692800pt;}
._13{width:6.791040pt;}
._10{width:7.693440pt;}
._c{width:8.826880pt;}
._d{width:9.764480pt;}
._17{width:10.686080pt;}
._16{width:12.270720pt;}
._15{width:14.405760pt;}
._f{width:15.351680pt;}
._e{width:16.414080pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:5.120000pt;}
.y7d{bottom:5.280000pt;}
.y1e{bottom:13.120000pt;}
.y1c{bottom:22.720000pt;}
.y1d{bottom:30.720000pt;}
.y1b{bottom:48.480000pt;}
.y7{bottom:53.472000pt;}
.y82{bottom:60.480000pt;}
.y1a{bottom:66.080000pt;}
.y6{bottom:72.832000pt;}
.y6e{bottom:80.512000pt;}
.y19{bottom:83.680000pt;}
.y78{bottom:90.112000pt;}
.y6d{bottom:98.112000pt;}
.y9b{bottom:99.232000pt;}
.y18{bottom:101.280000pt;}
.y77{bottom:107.712000pt;}
.y36{bottom:111.072000pt;}
.y6c{bottom:115.712000pt;}
.y9a{bottom:116.832000pt;}
.y17{bottom:118.880000pt;}
.y76{bottom:125.312000pt;}
.y35{bottom:128.672000pt;}
.y6b{bottom:133.312000pt;}
.y16{bottom:136.640000pt;}
.y99{bottom:142.426667pt;}
.y75{bottom:142.906667pt;}
.y34{bottom:146.266667pt;}
.y6a{bottom:150.906667pt;}
.y15{bottom:154.240000pt;}
.y98{bottom:160.186667pt;}
.y74{bottom:160.666667pt;}
.y33{bottom:164.026667pt;}
.y69{bottom:168.666667pt;}
.y14{bottom:171.840000pt;}
.y97{bottom:177.786667pt;}
.y73{bottom:178.266667pt;}
.y32{bottom:181.626667pt;}
.y68{bottom:186.266667pt;}
.y13{bottom:189.440000pt;}
.y96{bottom:195.386667pt;}
.y72{bottom:195.866667pt;}
.y31{bottom:199.226667pt;}
.y67{bottom:203.866667pt;}
.y12{bottom:207.040000pt;}
.y95{bottom:212.986667pt;}
.y71{bottom:213.466667pt;}
.y30{bottom:216.826667pt;}
.y66{bottom:221.466667pt;}
.y11{bottom:224.840000pt;}
.y94{bottom:230.586667pt;}
.y70{bottom:231.066667pt;}
.y2f{bottom:234.426667pt;}
.y65{bottom:239.066667pt;}
.y93{bottom:248.386667pt;}
.y6f{bottom:248.866667pt;}
.y2e{bottom:252.226667pt;}
.y64{bottom:256.866667pt;}
.y92{bottom:265.986667pt;}
.y2d{bottom:269.826667pt;}
.y63{bottom:274.466667pt;}
.y91{bottom:283.586667pt;}
.y2c{bottom:287.426667pt;}
.y62{bottom:292.066667pt;}
.y90{bottom:301.186667pt;}
.y2b{bottom:305.026667pt;}
.y61{bottom:309.666667pt;}
.y8f{bottom:318.786667pt;}
.y2a{bottom:322.626667pt;}
.y60{bottom:327.266667pt;}
.y8e{bottom:336.546667pt;}
.y29{bottom:340.386667pt;}
.y5f{bottom:345.026667pt;}
.y8d{bottom:354.146667pt;}
.y28{bottom:357.986667pt;}
.y5e{bottom:362.626667pt;}
.y8c{bottom:371.746667pt;}
.y27{bottom:375.586667pt;}
.y5d{bottom:380.226667pt;}
.y8b{bottom:389.346667pt;}
.y26{bottom:393.186667pt;}
.y5c{bottom:397.826667pt;}
.y8a{bottom:406.946667pt;}
.y25{bottom:410.786667pt;}
.y5b{bottom:415.426667pt;}
.y89{bottom:424.706667pt;}
.y24{bottom:428.546667pt;}
.y5a{bottom:433.186667pt;}
.y88{bottom:442.306667pt;}
.y23{bottom:446.146667pt;}
.y59{bottom:450.786667pt;}
.y87{bottom:459.906667pt;}
.y22{bottom:463.746667pt;}
.y58{bottom:468.386667pt;}
.y86{bottom:477.506667pt;}
.y21{bottom:481.346667pt;}
.y57{bottom:485.986667pt;}
.y85{bottom:495.133333pt;}
.y20{bottom:498.973333pt;}
.y56{bottom:503.613333pt;}
.y81{bottom:508.093333pt;}
.y1f{bottom:516.733333pt;}
.y55{bottom:521.373333pt;}
.y84{bottom:526.493333pt;}
.y10{bottom:531.133333pt;}
.y54{bottom:538.973333pt;}
.y83{bottom:545.053333pt;}
.y53{bottom:556.573333pt;}
.y80{bottom:563.453333pt;}
.y52{bottom:574.173333pt;}
.y7f{bottom:581.853333pt;}
.y51{bottom:591.773333pt;}
.y7e{bottom:600.253333pt;}
.y50{bottom:609.533333pt;}
.y7c{bottom:618.653333pt;}
.y4f{bottom:627.133333pt;}
.y7b{bottom:637.213333pt;}
.y4e{bottom:644.733333pt;}
.y7a{bottom:655.613333pt;}
.y4d{bottom:662.333333pt;}
.y79{bottom:674.013333pt;}
.y4c{bottom:679.933333pt;}
.y4b{bottom:697.533333pt;}
.y4a{bottom:715.293333pt;}
.y49{bottom:732.893333pt;}
.y9c{bottom:749.093333pt;}
.y48{bottom:750.533333pt;}
.y47{bottom:768.133333pt;}
.ye{bottom:770.373333pt;}
.y46{bottom:785.733333pt;}
.yd{bottom:795.173333pt;}
.y45{bottom:803.493333pt;}
.yc{bottom:817.413333pt;}
.y44{bottom:821.093333pt;}
.yb{bottom:830.853333pt;}
.y43{bottom:838.693333pt;}
.ya{bottom:849.893333pt;}
.y42{bottom:856.293333pt;}
.y9{bottom:870.693333pt;}
.y41{bottom:873.893333pt;}
.y40{bottom:891.653333pt;}
.y8{bottom:898.853333pt;}
.y3f{bottom:909.253333pt;}
.y3e{bottom:926.853333pt;}
.y5{bottom:934.373333pt;}
.y3d{bottom:944.453333pt;}
.y4{bottom:961.733333pt;}
.y3c{bottom:962.053333pt;}
.y3b{bottom:979.813333pt;}
.y3{bottom:989.093333pt;}
.y3a{bottom:997.440000pt;}
.y39{bottom:1015.040000pt;}
.y2{bottom:1016.640000pt;}
.y38{bottom:1032.640000pt;}
.y1{bottom:1046.720000pt;}
.y37{bottom:1060.800000pt;}
.h9{height:17.600000pt;}
.hd{height:17.760000pt;}
.h8{height:24.131250pt;}
.hc{height:35.200000pt;}
.hb{height:37.090625pt;}
.h6{height:37.479688pt;}
.h10{height:38.672812pt;}
.hf{height:38.828437pt;}
.h4{height:41.112500pt;}
.h5{height:41.543750pt;}
.h7{height:47.310625pt;}
.h3{height:52.284375pt;}
.h11{height:58.563750pt;}
.h2{height:60.057813pt;}
.he{height:72.960000pt;}
.ha{height:237.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:75.040000pt;}
.wa{width:75.360000pt;}
.w6{width:84.512000pt;}
.w8{width:89.120000pt;}
.wb{width:89.600000pt;}
.w9{width:112.832000pt;}
.wc{width:112.992000pt;}
.w4{width:156.026667pt;}
.w5{width:283.586667pt;}
.w3{width:546.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:61.279988pt;}
.xa{left:71.999988pt;}
.x5{left:73.440000pt;}
.xb{left:96.031988pt;}
.x6{left:357.506667pt;}
.x7{left:442.493333pt;}
.x8{left:518.013333pt;}
.x4{left:594.173333pt;}
.x9{left:607.613333pt;}
}




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