
    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_04eac9bd4c38ae10d85984a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_2f391e294356ba53b8387cfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_c0dca748318e7b7201cf6353.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693848;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;}
.ls7{letter-spacing:-0.303000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.265800px;}
.lse{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.164400px;}
.ls2{letter-spacing:-0.094200px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.027648px;}
.lsd{letter-spacing:0.455400px;}
.lsf{letter-spacing:0.552600px;}
.ls11{letter-spacing:1.278000px;}
.ls6{letter-spacing:1.398000px;}
.lsb{letter-spacing:26.133696px;}
.ls10{letter-spacing:26.160000px;}
.lsa{letter-spacing:33.347808px;}
.ls9{letter-spacing:33.419520px;}
.ls4{letter-spacing:36.288000px;}
.ls8{letter-spacing:51.995520px;}
.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;}
}
.ws4{word-spacing:-59.750784px;}
.ws1{word-spacing:-43.180440px;}
.wsa{word-spacing:-39.224304px;}
.ws9{word-spacing:-38.498904px;}
.ws7{word-spacing:-38.401704px;}
.ws2{word-spacing:-37.819560px;}
.ws6{word-spacing:-37.781904px;}
.ws8{word-spacing:-37.730304px;}
.ws3{word-spacing:-32.256000px;}
.ws5{word-spacing:-21.338760px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-20.677680px;}
._6{margin-left:-10.231920px;}
._7{margin-left:-8.897760px;}
._5{margin-left:-6.681552px;}
._3{margin-left:-5.521536px;}
._2{margin-left:-4.315680px;}
._0{margin-left:-3.116880px;}
._1{margin-left:-1.918080px;}
._4{width:1.019280px;}
._8{width:2.101200px;}
._b{width:26.301984px;}
._9{width:36.216288px;}
.fc7{color:transparent;}
.fc6{color:rgb(204,51,0);}
.fc5{color:rgb(155,187,89);}
.fc4{color:rgb(192,80,77);}
.fc8{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:90.000000px;}
.fse{font-size:95.760000px;}
.fs12{font-size:95.904000px;}
.fs15{font-size:102.240000px;}
.fs14{font-size:102.384000px;}
.fs10{font-size:108.000000px;}
.fs1d{font-size:108.144000px;}
.fsb{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs4{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs18{font-size:149.760000px;}
.fs19{font-size:149.904000px;}
.fs8{font-size:156.240000px;}
.fs9{font-size:156.384000px;}
.fs5{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fsd{font-size:180.000000px;}
.fs2{font-size:192.240000px;}
.fs7{font-size:192.384000px;}
.fs1b{font-size:210.240000px;}
.fs6{font-size:210.384000px;}
.fsc{font-size:228.240000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs17{font-size:246.240000px;}
.fs1a{font-size:257.760000px;}
.fs3{font-size:264.384000px;}
.fs13{font-size:270.000000px;}
.fs1c{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:80.028000px;}
.y2e{bottom:110.808000px;}
.y9{bottom:143.928000px;}
.y2d{bottom:147.024000px;}
.y8{bottom:183.345000px;}
.y2c{bottom:193.110000px;}
.y65{bottom:194.430000px;}
.y47{bottom:216.645000px;}
.y50{bottom:216.900000px;}
.y7{bottom:222.945000px;}
.y36{bottom:228.090000px;}
.y64{bottom:233.310000px;}
.y2b{bottom:239.190000px;}
.y43{bottom:240.225000px;}
.y46{bottom:252.105000px;}
.y5{bottom:259.845000px;}
.yc{bottom:260.565000px;}
.y42{bottom:264.885000px;}
.y4f{bottom:267.300000px;}
.y61{bottom:267.375000px;}
.y5a{bottom:271.230000px;}
.y63{bottom:272.235000px;}
.y45{bottom:276.945000px;}
.y2a{bottom:285.480000px;}
.y1e{bottom:285.990000px;}
.y41{bottom:289.545000px;}
.yb{bottom:290.160000px;}
.y35{bottom:294.195000px;}
.y11{bottom:295.665000px;}
.y54{bottom:308.445000px;}
.y4d{bottom:308.850000px;}
.y44{bottom:312.225000px;}
.y60{bottom:315.465000px;}
.y4e{bottom:317.730000px;}
.y34{bottom:318.210000px;}
.y59{bottom:319.290000px;}
.y48{bottom:326.160000px;}
.y5b{bottom:328.785000px;}
.y4{bottom:328.965000px;}
.y29{bottom:331.560000px;}
.y1f{bottom:356.550000px;}
.y4c{bottom:356.940000px;}
.y33{bottom:357.270000px;}
.y5f{bottom:363.525000px;}
.y38{bottom:363.810000px;}
.y66{bottom:367.305000px;}
.y58{bottom:367.380000px;}
.y3c{bottom:369.720000px;}
.y13{bottom:373.500000px;}
.y28{bottom:377.640000px;}
.y10{bottom:378.180000px;}
.y32{bottom:393.840000px;}
.y40{bottom:404.745000px;}
.y4b{bottom:405.000000px;}
.y31{bottom:414.360000px;}
.y57{bottom:415.440000px;}
.y3b{bottom:423.570000px;}
.y27{bottom:423.900000px;}
.yd{bottom:423.975000px;}
.y3f{bottom:432.645000px;}
.y62{bottom:442.770000px;}
.y5e{bottom:452.805000px;}
.y4a{bottom:453.060000px;}
.y3{bottom:455.580000px;}
.yf{bottom:460.695000px;}
.y12{bottom:460.950000px;}
.y26{bottom:463.350000px;}
.y56{bottom:463.500000px;}
.y3a{bottom:477.390000px;}
.y30{bottom:483.375000px;}
.y18{bottom:484.485000px;}
.ya{bottom:490.890000px;}
.y1d{bottom:496.800000px;}
.y5d{bottom:500.910000px;}
.y49{bottom:501.150000px;}
.y55{bottom:504.750000px;}
.y25{bottom:509.610000px;}
.y39{bottom:523.470000px;}
.y2{bottom:527.580000px;}
.y5c{bottom:542.130000px;}
.ye{bottom:543.240000px;}
.y53{bottom:549.390000px;}
.y3e{bottom:553.860000px;}
.y24{bottom:555.690000px;}
.y1c{bottom:570.525000px;}
.y52{bottom:578.550000px;}
.y15{bottom:578.700000px;}
.y17{bottom:579.135000px;}
.y1a{bottom:588.885000px;}
.y3d{bottom:592.740000px;}
.y23{bottom:595.290000px;}
.y1{bottom:599.610000px;}
.y37{bottom:611.250000px;}
.y51{bottom:619.050000px;}
.y16{bottom:633.165000px;}
.y14{bottom:633.600000px;}
.y19{bottom:633.885000px;}
.y22{bottom:641.415000px;}
.y1b{bottom:672.510000px;}
.y21{bottom:687.495000px;}
.y6{bottom:687.885000px;}
.y20{bottom:731.055000px;}
.h1f{height:64.599609px;}
.h16{height:68.733984px;}
.h19{height:69.528867px;}
.h18{height:69.633422px;}
.h1e{height:73.385156px;}
.h1d{height:73.488516px;}
.h24{height:77.519531px;}
.h28{height:77.622891px;}
.h1a{height:78.416016px;}
.hf{height:86.305078px;}
.h13{height:87.303164px;}
.h17{height:87.407719px;}
.h14{height:98.676703px;}
.h5{height:103.359375px;}
.h15{height:103.462734px;}
.hd{height:104.554688px;}
.he{height:104.659242px;}
.h21{height:107.493750px;}
.h22{height:107.597109px;}
.h9{height:112.144922px;}
.ha{height:112.248281px;}
.h7{height:120.413672px;}
.h1c{height:120.517031px;}
.hc{height:121.806211px;}
.h23{height:121.910766px;}
.h12{height:129.199219px;}
.h3{height:137.984766px;}
.h10{height:138.088125px;}
.hb{height:139.580508px;}
.h26{height:150.904687px;}
.h8{height:151.008047px;}
.h11{height:165.719180px;}
.h1{height:172.093359px;}
.h2{height:172.196719px;}
.h6{height:174.083555px;}
.h20{height:176.744531px;}
.h25{height:185.013281px;}
.h4{height:189.767813px;}
.h1b{height:193.798828px;}
.h27{height:209.109375px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x20{left:64.800000px;}
.x29{left:79.668000px;}
.x28{left:93.240000px;}
.x41{left:99.108000px;}
.x45{left:105.300000px;}
.x3b{left:108.576000px;}
.x1d{left:116.856000px;}
.x39{left:122.508000px;}
.x3d{left:127.548000px;}
.x24{left:134.388000px;}
.x5{left:142.704000px;}
.x1b{left:149.328000px;}
.x2{left:156.930000px;}
.x8{left:163.905000px;}
.x48{left:185.115000px;}
.x7{left:186.405000px;}
.x6{left:193.965000px;}
.x44{left:198.105000px;}
.x3e{left:199.335000px;}
.x2a{left:207.690000px;}
.x1e{left:209.235000px;}
.xa{left:215.430000px;}
.x9{left:216.870000px;}
.x1c{left:218.955000px;}
.x23{left:222.585000px;}
.xb{left:241.350000px;}
.x1{left:243.360000px;}
.xf{left:273.600000px;}
.x4a{left:278.670000px;}
.xe{left:286.305000px;}
.x49{left:295.710000px;}
.x12{left:300.885000px;}
.x2d{left:302.145000px;}
.x46{left:318.165000px;}
.x4{left:323.280000px;}
.xc{left:327.210000px;}
.x47{left:335.985000px;}
.x22{left:351.030000px;}
.x31{left:358.740000px;}
.x30{left:364.500000px;}
.x1f{left:367.125000px;}
.x21{left:368.430000px;}
.x2f{left:370.410000px;}
.x3c{left:374.190000px;}
.xd{left:377.130000px;}
.x26{left:379.440000px;}
.x16{left:382.470000px;}
.x32{left:388.080000px;}
.x3a{left:391.575000px;}
.x27{left:399.780000px;}
.x14{left:403.710000px;}
.x25{left:406.440000px;}
.x3{left:416.700000px;}
.x10{left:419.610000px;}
.x13{left:428.505000px;}
.x42{left:436.860000px;}
.x11{left:451.005000px;}
.x43{left:463.860000px;}
.x19{left:478.800000px;}
.x17{left:490.935000px;}
.x15{left:494.310000px;}
.x3f{left:500.370000px;}
.x2e{left:502.380000px;}
.x2b{left:509.145000px;}
.x38{left:518.865000px;}
.x40{left:527.370000px;}
.x2c{left:543.030000px;}
.x36{left:557.565000px;}
.x37{left:559.905000px;}
.x34{left:571.530000px;}
.x33{left:574.590000px;}
.x35{left:625.830000px;}
.x1a{left:644.940000px;}
.x18{left:657.075000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.269333pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.236267pt;}
.lse{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.146133pt;}
.ls2{letter-spacing:-0.083733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024576pt;}
.lsd{letter-spacing:0.404800pt;}
.lsf{letter-spacing:0.491200pt;}
.ls11{letter-spacing:1.136000pt;}
.ls6{letter-spacing:1.242667pt;}
.lsb{letter-spacing:23.229952pt;}
.ls10{letter-spacing:23.253333pt;}
.lsa{letter-spacing:29.642496pt;}
.ls9{letter-spacing:29.706240pt;}
.ls4{letter-spacing:32.256000pt;}
.ls8{letter-spacing:46.218240pt;}
.ws4{word-spacing:-53.111808pt;}
.ws1{word-spacing:-38.382613pt;}
.wsa{word-spacing:-34.866048pt;}
.ws9{word-spacing:-34.221248pt;}
.ws7{word-spacing:-34.134848pt;}
.ws2{word-spacing:-33.617387pt;}
.ws6{word-spacing:-33.583915pt;}
.ws8{word-spacing:-33.538048pt;}
.ws3{word-spacing:-28.672000pt;}
.ws5{word-spacing:-18.967787pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-18.380160pt;}
._6{margin-left:-9.095040pt;}
._7{margin-left:-7.909120pt;}
._5{margin-left:-5.939157pt;}
._3{margin-left:-4.908032pt;}
._2{margin-left:-3.836160pt;}
._0{margin-left:-2.770560pt;}
._1{margin-left:-1.704960pt;}
._4{width:0.906027pt;}
._8{width:1.867733pt;}
._b{width:23.379541pt;}
._9{width:32.192256pt;}
.fs16{font-size:80.000000pt;}
.fse{font-size:85.120000pt;}
.fs12{font-size:85.248000pt;}
.fs15{font-size:90.880000pt;}
.fs14{font-size:91.008000pt;}
.fs10{font-size:96.000000pt;}
.fs1d{font-size:96.128000pt;}
.fsb{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs4{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs18{font-size:133.120000pt;}
.fs19{font-size:133.248000pt;}
.fs8{font-size:138.880000pt;}
.fs9{font-size:139.008000pt;}
.fs5{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fsd{font-size:160.000000pt;}
.fs2{font-size:170.880000pt;}
.fs7{font-size:171.008000pt;}
.fs1b{font-size:186.880000pt;}
.fs6{font-size:187.008000pt;}
.fsc{font-size:202.880000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs17{font-size:218.880000pt;}
.fs1a{font-size:229.120000pt;}
.fs3{font-size:235.008000pt;}
.fs13{font-size:240.000000pt;}
.fs1c{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:71.136000pt;}
.y2e{bottom:98.496000pt;}
.y9{bottom:127.936000pt;}
.y2d{bottom:130.688000pt;}
.y8{bottom:162.973333pt;}
.y2c{bottom:171.653333pt;}
.y65{bottom:172.826667pt;}
.y47{bottom:192.573333pt;}
.y50{bottom:192.800000pt;}
.y7{bottom:198.173333pt;}
.y36{bottom:202.746667pt;}
.y64{bottom:207.386667pt;}
.y2b{bottom:212.613333pt;}
.y43{bottom:213.533333pt;}
.y46{bottom:224.093333pt;}
.y5{bottom:230.973333pt;}
.yc{bottom:231.613333pt;}
.y42{bottom:235.453333pt;}
.y4f{bottom:237.600000pt;}
.y61{bottom:237.666667pt;}
.y5a{bottom:241.093333pt;}
.y63{bottom:241.986667pt;}
.y45{bottom:246.173333pt;}
.y2a{bottom:253.760000pt;}
.y1e{bottom:254.213333pt;}
.y41{bottom:257.373333pt;}
.yb{bottom:257.920000pt;}
.y35{bottom:261.506667pt;}
.y11{bottom:262.813333pt;}
.y54{bottom:274.173333pt;}
.y4d{bottom:274.533333pt;}
.y44{bottom:277.533333pt;}
.y60{bottom:280.413333pt;}
.y4e{bottom:282.426667pt;}
.y34{bottom:282.853333pt;}
.y59{bottom:283.813333pt;}
.y48{bottom:289.920000pt;}
.y5b{bottom:292.253333pt;}
.y4{bottom:292.413333pt;}
.y29{bottom:294.720000pt;}
.y1f{bottom:316.933333pt;}
.y4c{bottom:317.280000pt;}
.y33{bottom:317.573333pt;}
.y5f{bottom:323.133333pt;}
.y38{bottom:323.386667pt;}
.y66{bottom:326.493333pt;}
.y58{bottom:326.560000pt;}
.y3c{bottom:328.640000pt;}
.y13{bottom:332.000000pt;}
.y28{bottom:335.680000pt;}
.y10{bottom:336.160000pt;}
.y32{bottom:350.080000pt;}
.y40{bottom:359.773333pt;}
.y4b{bottom:360.000000pt;}
.y31{bottom:368.320000pt;}
.y57{bottom:369.280000pt;}
.y3b{bottom:376.506667pt;}
.y27{bottom:376.800000pt;}
.yd{bottom:376.866667pt;}
.y3f{bottom:384.573333pt;}
.y62{bottom:393.573333pt;}
.y5e{bottom:402.493333pt;}
.y4a{bottom:402.720000pt;}
.y3{bottom:404.960000pt;}
.yf{bottom:409.506667pt;}
.y12{bottom:409.733333pt;}
.y26{bottom:411.866667pt;}
.y56{bottom:412.000000pt;}
.y3a{bottom:424.346667pt;}
.y30{bottom:429.666667pt;}
.y18{bottom:430.653333pt;}
.ya{bottom:436.346667pt;}
.y1d{bottom:441.600000pt;}
.y5d{bottom:445.253333pt;}
.y49{bottom:445.466667pt;}
.y55{bottom:448.666667pt;}
.y25{bottom:452.986667pt;}
.y39{bottom:465.306667pt;}
.y2{bottom:468.960000pt;}
.y5c{bottom:481.893333pt;}
.ye{bottom:482.880000pt;}
.y53{bottom:488.346667pt;}
.y3e{bottom:492.320000pt;}
.y24{bottom:493.946667pt;}
.y1c{bottom:507.133333pt;}
.y52{bottom:514.266667pt;}
.y15{bottom:514.400000pt;}
.y17{bottom:514.786667pt;}
.y1a{bottom:523.453333pt;}
.y3d{bottom:526.880000pt;}
.y23{bottom:529.146667pt;}
.y1{bottom:532.986667pt;}
.y37{bottom:543.333333pt;}
.y51{bottom:550.266667pt;}
.y16{bottom:562.813333pt;}
.y14{bottom:563.200000pt;}
.y19{bottom:563.453333pt;}
.y22{bottom:570.146667pt;}
.y1b{bottom:597.786667pt;}
.y21{bottom:611.106667pt;}
.y6{bottom:611.453333pt;}
.y20{bottom:649.826667pt;}
.h1f{height:57.421875pt;}
.h16{height:61.096875pt;}
.h19{height:61.803437pt;}
.h18{height:61.896375pt;}
.h1e{height:65.231250pt;}
.h1d{height:65.323125pt;}
.h24{height:68.906250pt;}
.h28{height:68.998125pt;}
.h1a{height:69.703125pt;}
.hf{height:76.715625pt;}
.h13{height:77.602812pt;}
.h17{height:77.695750pt;}
.h14{height:87.712625pt;}
.h5{height:91.875000pt;}
.h15{height:91.966875pt;}
.hd{height:92.937500pt;}
.he{height:93.030437pt;}
.h21{height:95.550000pt;}
.h22{height:95.641875pt;}
.h9{height:99.684375pt;}
.ha{height:99.776250pt;}
.h7{height:107.034375pt;}
.h1c{height:107.126250pt;}
.hc{height:108.272187pt;}
.h23{height:108.365125pt;}
.h12{height:114.843750pt;}
.h3{height:122.653125pt;}
.h10{height:122.745000pt;}
.hb{height:124.071562pt;}
.h26{height:134.137500pt;}
.h8{height:134.229375pt;}
.h11{height:147.305937pt;}
.h1{height:152.971875pt;}
.h2{height:153.063750pt;}
.h6{height:154.740938pt;}
.h20{height:157.106250pt;}
.h25{height:164.456250pt;}
.h4{height:168.682500pt;}
.h1b{height:172.265625pt;}
.h27{height:185.875000pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x20{left:57.600000pt;}
.x29{left:70.816000pt;}
.x28{left:82.880000pt;}
.x41{left:88.096000pt;}
.x45{left:93.600000pt;}
.x3b{left:96.512000pt;}
.x1d{left:103.872000pt;}
.x39{left:108.896000pt;}
.x3d{left:113.376000pt;}
.x24{left:119.456000pt;}
.x5{left:126.848000pt;}
.x1b{left:132.736000pt;}
.x2{left:139.493333pt;}
.x8{left:145.693333pt;}
.x48{left:164.546667pt;}
.x7{left:165.693333pt;}
.x6{left:172.413333pt;}
.x44{left:176.093333pt;}
.x3e{left:177.186667pt;}
.x2a{left:184.613333pt;}
.x1e{left:185.986667pt;}
.xa{left:191.493333pt;}
.x9{left:192.773333pt;}
.x1c{left:194.626667pt;}
.x23{left:197.853333pt;}
.xb{left:214.533333pt;}
.x1{left:216.320000pt;}
.xf{left:243.200000pt;}
.x4a{left:247.706667pt;}
.xe{left:254.493333pt;}
.x49{left:262.853333pt;}
.x12{left:267.453333pt;}
.x2d{left:268.573333pt;}
.x46{left:282.813333pt;}
.x4{left:287.360000pt;}
.xc{left:290.853333pt;}
.x47{left:298.653333pt;}
.x22{left:312.026667pt;}
.x31{left:318.880000pt;}
.x30{left:324.000000pt;}
.x1f{left:326.333333pt;}
.x21{left:327.493333pt;}
.x2f{left:329.253333pt;}
.x3c{left:332.613333pt;}
.xd{left:335.226667pt;}
.x26{left:337.280000pt;}
.x16{left:339.973333pt;}
.x32{left:344.960000pt;}
.x3a{left:348.066667pt;}
.x27{left:355.360000pt;}
.x14{left:358.853333pt;}
.x25{left:361.280000pt;}
.x3{left:370.400000pt;}
.x10{left:372.986667pt;}
.x13{left:380.893333pt;}
.x42{left:388.320000pt;}
.x11{left:400.893333pt;}
.x43{left:412.320000pt;}
.x19{left:425.600000pt;}
.x17{left:436.386667pt;}
.x15{left:439.386667pt;}
.x3f{left:444.773333pt;}
.x2e{left:446.560000pt;}
.x2b{left:452.573333pt;}
.x38{left:461.213333pt;}
.x40{left:468.773333pt;}
.x2c{left:482.693333pt;}
.x36{left:495.613333pt;}
.x37{left:497.693333pt;}
.x34{left:508.026667pt;}
.x33{left:510.746667pt;}
.x35{left:556.293333pt;}
.x1a{left:573.280000pt;}
.x18{left:584.066667pt;}
}




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