
    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_91e667a214db9a14654accda.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980957;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_819a48e07f7b4b080d2939da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_04d0dd6cf32aaa68c77c99ba.woff2')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_13f6ee4312714e12d56a4cf6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_733cf32d679947c7979a5750.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_df7c58fd5008d84766e91fcd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea9205fe62e98b0c80535e5b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.357000px;}
.ls9{letter-spacing:-0.057600px;}
.ls6{letter-spacing:-0.025920px;}
.lsa{letter-spacing:-0.004320px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012960px;}
.ls8{letter-spacing:0.025920px;}
.lsf{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106560px;}
.lse{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:12.420000px;}
.ls10{letter-spacing:154.002720px;}
.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;}
}
.wsc{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.wsb{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.944320px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.613240px;}
.wsa{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.732960px;}
.ws9{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.715680px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-5.146800px;}
._14{margin-left:-4.063680px;}
._2{margin-left:-2.980560px;}
._0{margin-left:-1.110000px;}
._3{width:1.244160px;}
._4{width:2.977440px;}
._6{width:4.546080px;}
._11{width:5.722320px;}
._8{width:7.092480px;}
._7{width:8.904240px;}
._e{width:10.577520px;}
._b{width:11.593440px;}
._9{width:12.702720px;}
._a{width:13.794720px;}
._10{width:16.120320px;}
._f{width:17.748720px;}
._d{width:19.983600px;}
._c{width:21.182880px;}
._12{width:22.361040px;}
._15{width:23.631840px;}
._5{width:24.731760px;}
._1{width:432.590400px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,174,238);}
.fc3{color:rgb(0,176,240);}
.fc7{color:rgb(85,85,85);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(126,126,126);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y58{bottom:6.120000px;}
.y8a{bottom:7.200000px;}
.y52{bottom:7.380000px;}
.y4c{bottom:7.920000px;}
.y54{bottom:8.280000px;}
.y5c{bottom:8.325000px;}
.y5a{bottom:9.360000px;}
.y4a{bottom:9.540000px;}
.y63{bottom:14.040000px;}
.y5e{bottom:18.720000px;}
.y80{bottom:21.960000px;}
.y57{bottom:25.920000px;}
.y49{bottom:29.340000px;}
.y85{bottom:45.900000px;}
.y50{bottom:51.480000px;}
.y4{bottom:57.420000px;}
.y67{bottom:113.256000px;}
.y9a{bottom:120.816000px;}
.y66{bottom:135.936000px;}
.y28{bottom:146.556000px;}
.y99{bottom:146.736000px;}
.y65{bottom:157.710000px;}
.y27{bottom:172.470000px;}
.y64{bottom:179.490000px;}
.y26{bottom:198.390000px;}
.y62{bottom:202.170000px;}
.y25{bottom:224.130000px;}
.y98{bottom:224.310000px;}
.y61{bottom:230.610000px;}
.y24{bottom:250.050000px;}
.y97{bottom:250.230000px;}
.y60{bottom:252.390000px;}
.y7d{bottom:259.050000px;}
.y5f{bottom:275.070000px;}
.y23{bottom:275.970000px;}
.y7c{bottom:284.970000px;}
.y5d{bottom:296.850000px;}
.y96{bottom:301.890000px;}
.y22{bottom:302.790000px;}
.y7b{bottom:310.710000px;}
.y95{bottom:327.810000px;}
.y5b{bottom:329.970000px;}
.y21{bottom:330.330000px;}
.y7a{bottom:336.675000px;}
.y59{bottom:352.695000px;}
.y94{bottom:353.775000px;}
.y20{bottom:356.295000px;}
.y79{bottom:363.495000px;}
.y93{bottom:379.515000px;}
.y1f{bottom:382.035000px;}
.y78{bottom:391.035000px;}
.y56{bottom:396.435000px;}
.y92{bottom:405.435000px;}
.y1e{bottom:407.955000px;}
.y44{bottom:416.415000px;}
.y77{bottom:416.955000px;}
.y91{bottom:431.355000px;}
.y1d{bottom:433.875000px;}
.y55{bottom:436.755000px;}
.y43{bottom:442.335000px;}
.y76{bottom:442.875000px;}
.y90{bottom:457.275000px;}
.y53{bottom:458.535000px;}
.y1c{bottom:459.795000px;}
.y42{bottom:468.075000px;}
.y75{bottom:468.615000px;}
.y51{bottom:481.215000px;}
.y8f{bottom:483.015000px;}
.y1b{bottom:485.535000px;}
.y41{bottom:493.995000px;}
.y74{bottom:494.535000px;}
.y4f{bottom:502.995000px;}
.y8e{bottom:508.935000px;}
.y1a{bottom:511.455000px;}
.y40{bottom:519.915000px;}
.y73{bottom:520.455000px;}
.ya6{bottom:529.815000px;}
.y8d{bottom:534.855000px;}
.y19{bottom:537.375000px;}
.y3f{bottom:545.655000px;}
.y72{bottom:546.195000px;}
.y8c{bottom:560.775000px;}
.y18{bottom:563.115000px;}
.ya5{bottom:564.735000px;}
.y4e{bottom:568.875000px;}
.y3e{bottom:571.575000px;}
.y71{bottom:572.115000px;}
.y17{bottom:589.035000px;}
.y8b{bottom:595.335000px;}
.y3d{bottom:597.495000px;}
.y70{bottom:598.035000px;}
.ya4{bottom:605.805000px;}
.y4d{bottom:612.645000px;}
.y16{bottom:614.985000px;}
.y3c{bottom:623.445000px;}
.y6f{bottom:623.985000px;}
.ya3{bottom:631.725000px;}
.y15{bottom:640.905000px;}
.y3b{bottom:649.185000px;}
.y6e{bottom:649.725000px;}
.y4b{bottom:656.385000px;}
.ya2{bottom:657.465000px;}
.y14{bottom:666.645000px;}
.y3a{bottom:674.745000px;}
.y6d{bottom:675.285000px;}
.y48{bottom:679.245000px;}
.ya1{bottom:683.385000px;}
.y13{bottom:693.645000px;}
.y39{bottom:701.025000px;}
.y6c{bottom:701.565000px;}
.ya0{bottom:709.305000px;}
.y38{bottom:726.945000px;}
.y6b{bottom:727.485000px;}
.y12{bottom:729.825000px;}
.y9f{bottom:735.225000px;}
.y37{bottom:752.685000px;}
.y6a{bottom:753.225000px;}
.y47{bottom:757.545000px;}
.y11{bottom:759.525000px;}
.y9e{bottom:760.965000px;}
.y36{bottom:778.605000px;}
.y69{bottom:779.145000px;}
.y10{bottom:785.445000px;}
.y9d{bottom:786.885000px;}
.y46{bottom:792.285000px;}
.y35{bottom:804.525000px;}
.yf{bottom:811.365000px;}
.y68{bottom:813.885000px;}
.y45{bottom:823.605000px;}
.y89{bottom:828.465000px;}
.y9c{bottom:828.825000px;}
.y34{bottom:830.445000px;}
.ye{bottom:837.285000px;}
.y88{bottom:850.245000px;}
.y33{bottom:855.825000px;}
.y9b{bottom:856.185000px;}
.yd{bottom:863.205000px;}
.y87{bottom:872.970000px;}
.y32{bottom:882.150000px;}
.yc{bottom:888.990000px;}
.y86{bottom:894.750000px;}
.y31{bottom:908.070000px;}
.yb{bottom:914.910000px;}
.y84{bottom:917.430000px;}
.y30{bottom:933.990000px;}
.ya{bottom:940.830000px;}
.y2f{bottom:960.810000px;}
.y83{bottom:977.730000px;}
.y9{bottom:979.170000px;}
.y2e{bottom:988.170000px;}
.y82{bottom:1000.410000px;}
.y2d{bottom:1014.090000px;}
.y8{bottom:1014.450000px;}
.y81{bottom:1036.770000px;}
.y2c{bottom:1040.010000px;}
.y7{bottom:1052.250000px;}
.y2b{bottom:1065.930000px;}
.y7f{bottom:1073.130000px;}
.y6{bottom:1078.350000px;}
.y2a{bottom:1091.670000px;}
.y7e{bottom:1109.490000px;}
.y5{bottom:1117.410000px;}
.y29{bottom:1117.590000px;}
.y3{bottom:1135.770000px;}
.y2{bottom:1155.960000px;}
.y1{bottom:1176.120000px;}
.h15{height:20.880000px;}
.hd{height:21.060000px;}
.ha{height:21.960000px;}
.hf{height:21.996000px;}
.h11{height:27.720000px;}
.h10{height:32.400000px;}
.h12{height:35.640000px;}
.he{height:39.600000px;}
.h14{height:41.726953px;}
.h9{height:43.020000px;}
.hb{height:43.056000px;}
.h2{height:53.237812px;}
.h3{height:53.302500px;}
.h4{height:58.651172px;}
.h8{height:59.038594px;}
.h13{height:59.580000px;}
.h7{height:60.226875px;}
.h16{height:61.423863px;}
.hc{height:65.160000px;}
.h6{height:66.757500px;}
.h5{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:169.050000px;}
.w5{width:239.610000px;}
.w3{width:299.370000px;}
.w6{width:709.665000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x5{left:100.296000px;}
.x1{left:108.035987px;}
.x9{left:135.035987px;}
.x2{left:139.175987px;}
.xa{left:189.029987px;}
.x3{left:263.369987px;}
.x7{left:400.575000px;}
.x8{left:570.345000px;}
.x4{left:685.589987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.317333pt;}
.ls9{letter-spacing:-0.051200pt;}
.ls6{letter-spacing:-0.023040pt;}
.lsa{letter-spacing:-0.003840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011520pt;}
.ls8{letter-spacing:0.023040pt;}
.lsf{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:11.040000pt;}
.ls10{letter-spacing:136.891307pt;}
.wsc{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.283840pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.989547pt;}
.wsa{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.651520pt;}
.ws9{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.636160pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-4.574933pt;}
._14{margin-left:-3.612160pt;}
._2{margin-left:-2.649387pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.105920pt;}
._4{width:2.646613pt;}
._6{width:4.040960pt;}
._11{width:5.086507pt;}
._8{width:6.304427pt;}
._7{width:7.914880pt;}
._e{width:9.402240pt;}
._b{width:10.305280pt;}
._9{width:11.291307pt;}
._a{width:12.261973pt;}
._10{width:14.329173pt;}
._f{width:15.776640pt;}
._d{width:17.763200pt;}
._c{width:18.829227pt;}
._12{width:19.876480pt;}
._15{width:21.006080pt;}
._5{width:21.983787pt;}
._1{width:384.524800pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:5.440000pt;}
.y8a{bottom:6.400000pt;}
.y52{bottom:6.560000pt;}
.y4c{bottom:7.040000pt;}
.y54{bottom:7.360000pt;}
.y5c{bottom:7.400000pt;}
.y5a{bottom:8.320000pt;}
.y4a{bottom:8.480000pt;}
.y63{bottom:12.480000pt;}
.y5e{bottom:16.640000pt;}
.y80{bottom:19.520000pt;}
.y57{bottom:23.040000pt;}
.y49{bottom:26.080000pt;}
.y85{bottom:40.800000pt;}
.y50{bottom:45.760000pt;}
.y4{bottom:51.040000pt;}
.y67{bottom:100.672000pt;}
.y9a{bottom:107.392000pt;}
.y66{bottom:120.832000pt;}
.y28{bottom:130.272000pt;}
.y99{bottom:130.432000pt;}
.y65{bottom:140.186667pt;}
.y27{bottom:153.306667pt;}
.y64{bottom:159.546667pt;}
.y26{bottom:176.346667pt;}
.y62{bottom:179.706667pt;}
.y25{bottom:199.226667pt;}
.y98{bottom:199.386667pt;}
.y61{bottom:204.986667pt;}
.y24{bottom:222.266667pt;}
.y97{bottom:222.426667pt;}
.y60{bottom:224.346667pt;}
.y7d{bottom:230.266667pt;}
.y5f{bottom:244.506667pt;}
.y23{bottom:245.306667pt;}
.y7c{bottom:253.306667pt;}
.y5d{bottom:263.866667pt;}
.y96{bottom:268.346667pt;}
.y22{bottom:269.146667pt;}
.y7b{bottom:276.186667pt;}
.y95{bottom:291.386667pt;}
.y5b{bottom:293.306667pt;}
.y21{bottom:293.626667pt;}
.y7a{bottom:299.266667pt;}
.y59{bottom:313.506667pt;}
.y94{bottom:314.466667pt;}
.y20{bottom:316.706667pt;}
.y79{bottom:323.106667pt;}
.y93{bottom:337.346667pt;}
.y1f{bottom:339.586667pt;}
.y78{bottom:347.586667pt;}
.y56{bottom:352.386667pt;}
.y92{bottom:360.386667pt;}
.y1e{bottom:362.626667pt;}
.y44{bottom:370.146667pt;}
.y77{bottom:370.626667pt;}
.y91{bottom:383.426667pt;}
.y1d{bottom:385.666667pt;}
.y55{bottom:388.226667pt;}
.y43{bottom:393.186667pt;}
.y76{bottom:393.666667pt;}
.y90{bottom:406.466667pt;}
.y53{bottom:407.586667pt;}
.y1c{bottom:408.706667pt;}
.y42{bottom:416.066667pt;}
.y75{bottom:416.546667pt;}
.y51{bottom:427.746667pt;}
.y8f{bottom:429.346667pt;}
.y1b{bottom:431.586667pt;}
.y41{bottom:439.106667pt;}
.y74{bottom:439.586667pt;}
.y4f{bottom:447.106667pt;}
.y8e{bottom:452.386667pt;}
.y1a{bottom:454.626667pt;}
.y40{bottom:462.146667pt;}
.y73{bottom:462.626667pt;}
.ya6{bottom:470.946667pt;}
.y8d{bottom:475.426667pt;}
.y19{bottom:477.666667pt;}
.y3f{bottom:485.026667pt;}
.y72{bottom:485.506667pt;}
.y8c{bottom:498.466667pt;}
.y18{bottom:500.546667pt;}
.ya5{bottom:501.986667pt;}
.y4e{bottom:505.666667pt;}
.y3e{bottom:508.066667pt;}
.y71{bottom:508.546667pt;}
.y17{bottom:523.586667pt;}
.y8b{bottom:529.186667pt;}
.y3d{bottom:531.106667pt;}
.y70{bottom:531.586667pt;}
.ya4{bottom:538.493333pt;}
.y4d{bottom:544.573333pt;}
.y16{bottom:546.653333pt;}
.y3c{bottom:554.173333pt;}
.y6f{bottom:554.653333pt;}
.ya3{bottom:561.533333pt;}
.y15{bottom:569.693333pt;}
.y3b{bottom:577.053333pt;}
.y6e{bottom:577.533333pt;}
.y4b{bottom:583.453333pt;}
.ya2{bottom:584.413333pt;}
.y14{bottom:592.573333pt;}
.y3a{bottom:599.773333pt;}
.y6d{bottom:600.253333pt;}
.y48{bottom:603.773333pt;}
.ya1{bottom:607.453333pt;}
.y13{bottom:616.573333pt;}
.y39{bottom:623.133333pt;}
.y6c{bottom:623.613333pt;}
.ya0{bottom:630.493333pt;}
.y38{bottom:646.173333pt;}
.y6b{bottom:646.653333pt;}
.y12{bottom:648.733333pt;}
.y9f{bottom:653.533333pt;}
.y37{bottom:669.053333pt;}
.y6a{bottom:669.533333pt;}
.y47{bottom:673.373333pt;}
.y11{bottom:675.133333pt;}
.y9e{bottom:676.413333pt;}
.y36{bottom:692.093333pt;}
.y69{bottom:692.573333pt;}
.y10{bottom:698.173333pt;}
.y9d{bottom:699.453333pt;}
.y46{bottom:704.253333pt;}
.y35{bottom:715.133333pt;}
.yf{bottom:721.213333pt;}
.y68{bottom:723.453333pt;}
.y45{bottom:732.093333pt;}
.y89{bottom:736.413333pt;}
.y9c{bottom:736.733333pt;}
.y34{bottom:738.173333pt;}
.ye{bottom:744.253333pt;}
.y88{bottom:755.773333pt;}
.y33{bottom:760.733333pt;}
.y9b{bottom:761.053333pt;}
.yd{bottom:767.293333pt;}
.y87{bottom:775.973333pt;}
.y32{bottom:784.133333pt;}
.yc{bottom:790.213333pt;}
.y86{bottom:795.333333pt;}
.y31{bottom:807.173333pt;}
.yb{bottom:813.253333pt;}
.y84{bottom:815.493333pt;}
.y30{bottom:830.213333pt;}
.ya{bottom:836.293333pt;}
.y2f{bottom:854.053333pt;}
.y83{bottom:869.093333pt;}
.y9{bottom:870.373333pt;}
.y2e{bottom:878.373333pt;}
.y82{bottom:889.253333pt;}
.y2d{bottom:901.413333pt;}
.y8{bottom:901.733333pt;}
.y81{bottom:921.573333pt;}
.y2c{bottom:924.453333pt;}
.y7{bottom:935.333333pt;}
.y2b{bottom:947.493333pt;}
.y7f{bottom:953.893333pt;}
.y6{bottom:958.533333pt;}
.y2a{bottom:970.373333pt;}
.y7e{bottom:986.213333pt;}
.y5{bottom:993.253333pt;}
.y29{bottom:993.413333pt;}
.y3{bottom:1009.573333pt;}
.y2{bottom:1027.520000pt;}
.y1{bottom:1045.440000pt;}
.h15{height:18.560000pt;}
.hd{height:18.720000pt;}
.ha{height:19.520000pt;}
.hf{height:19.552000pt;}
.h11{height:24.640000pt;}
.h10{height:28.800000pt;}
.h12{height:31.680000pt;}
.he{height:35.200000pt;}
.h14{height:37.090625pt;}
.h9{height:38.240000pt;}
.hb{height:38.272000pt;}
.h2{height:47.322500pt;}
.h3{height:47.380000pt;}
.h4{height:52.134375pt;}
.h8{height:52.478750pt;}
.h13{height:52.960000pt;}
.h7{height:53.535000pt;}
.h16{height:54.598989pt;}
.hc{height:57.920000pt;}
.h6{height:59.340000pt;}
.h5{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:150.266667pt;}
.w5{width:212.986667pt;}
.w3{width:266.106667pt;}
.w6{width:630.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x5{left:89.152000pt;}
.x1{left:96.031988pt;}
.x9{left:120.031988pt;}
.x2{left:123.711988pt;}
.xa{left:168.026655pt;}
.x3{left:234.106655pt;}
.x7{left:356.066667pt;}
.x8{left:506.973333pt;}
.x4{left:609.413322pt;}
}




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