
    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_be16da2f5adb5df2129f4b7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.016113;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_f085c5c4b0b3524f2331ae6a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_acdfbbe57b90a697f13135aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f4554aebc0fdc15877a09a08.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_cd63da92c6fec782bb367b65.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.769531;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_c9363dffccd7d9809169d1d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.765625;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_203bc1f2d76fe1a691ec864c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v1{vertical-align:-4.253400px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.335520px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.239760px;}
.ls6{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.167760px;}
.ls12{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.090000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.lse{letter-spacing:0.167760px;}
.ls14{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.239760px;}
.ls7{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.287280px;}
.ls1b{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.324000px;}
.ls1{letter-spacing:5.457600px;}
.ls3{letter-spacing:5.472000px;}
.ls2{letter-spacing:5.514480px;}
.ls19{letter-spacing:5.536080px;}
.ls16{letter-spacing:5.703840px;}
.ls8{letter-spacing:5.754240px;}
.ls0{letter-spacing:5.813280px;}
.ls17{letter-spacing:5.871600px;}
.ls9{letter-spacing:5.994000px;}
.ls18{letter-spacing:6.039360px;}
.ls15{letter-spacing:84.140640px;}
.ls1a{letter-spacing:111.600000px;}
.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;}
}
.ws30{word-spacing:-62.097840px;}
.ws24{word-spacing:-49.656960px;}
.ws22{word-spacing:-49.489200px;}
.ws21{word-spacing:-49.321440px;}
.ws15{word-spacing:-43.785360px;}
.ws0{word-spacing:-42.912000px;}
.ws31{word-spacing:-37.584000px;}
.ws11{word-spacing:-37.440000px;}
.ws32{word-spacing:-37.296000px;}
.ws13{word-spacing:-37.152000px;}
.ws1c{word-spacing:-28.296000px;}
.wsa{word-spacing:-28.080000px;}
.ws35{word-spacing:-25.184880px;}
.ws3{word-spacing:-23.670000px;}
.ws1{word-spacing:-23.310000px;}
.ws2{word-spacing:-23.220000px;}
.ws27{word-spacing:-5.703840px;}
.wsb{word-spacing:-5.514480px;}
.ws1e{word-spacing:-1.584000px;}
.ws38{word-spacing:-1.008000px;}
.ws20{word-spacing:-0.972000px;}
.ws2a{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.503280px;}
.ws39{word-spacing:-0.288000px;}
.ws4{word-spacing:-0.264240px;}
.ws1b{word-spacing:-0.239760px;}
.ws18{word-spacing:-0.167760px;}
.ws1d{word-spacing:-0.144000px;}
.ws7{word-spacing:0.000000px;}
.wsf{word-spacing:0.108000px;}
.ws1f{word-spacing:0.144000px;}
.ws19{word-spacing:0.167760px;}
.ws2f{word-spacing:0.167832px;}
.wsd{word-spacing:0.239760px;}
.ws37{word-spacing:0.288000px;}
.ws2b{word-spacing:0.335520px;}
.ws33{word-spacing:0.432000px;}
.ws25{word-spacing:0.479520px;}
.ws16{word-spacing:0.671040px;}
.ws14{word-spacing:0.719280px;}
.ws2c{word-spacing:0.838800px;}
.ws36{word-spacing:0.864000px;}
.ws9{word-spacing:0.959040px;}
.ws34{word-spacing:1.008000px;}
.ws26{word-spacing:1.174320px;}
.ws8{word-spacing:1.198800px;}
.wse{word-spacing:1.438560px;}
.ws2e{word-spacing:1.509840px;}
.ws6{word-spacing:1.728000px;}
.ws28{word-spacing:1.845360px;}
.ws5{word-spacing:2.157840px;}
.ws23{word-spacing:3.204216px;}
.ws29{word-spacing:3.522960px;}
.ws2d{word-spacing:3.858480px;}
.wsc{word-spacing:4.075920px;}
.ws17{word-spacing:44.255088px;}
.ws12{word-spacing:462.110400px;}
.ws10{word-spacing:614.063400px;}
._5{margin-left:-2.418984px;}
._1{margin-left:-1.037016px;}
._0{width:1.056960px;}
._2{width:2.059632px;}
._4{width:9.059040px;}
._3{width:26.382096px;}
.fc5{color:rgb(203,51,59);}
.fc4{color:rgb(0,115,150);}
.fc3{color:rgb(0,51,73);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.fs1{font-size:239.760000px;}
.fs0{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y39{bottom:13.137900px;}
.y5{bottom:22.897200px;}
.y1c{bottom:23.075250px;}
.y26{bottom:78.353550px;}
.y1b{bottom:114.782850px;}
.y38{bottom:127.930050px;}
.y25{bottom:146.741670px;}
.ye{bottom:151.506450px;}
.y37{bottom:171.130050px;}
.y30{bottom:171.929790px;}
.y24{bottom:197.153550px;}
.y1a{bottom:207.281850px;}
.y27{bottom:211.718850px;}
.y2f{bottom:222.341670px;}
.yc{bottom:235.752150px;}
.y36{bottom:244.210050px;}
.y11{bottom:250.005900px;}
.y15{bottom:250.006050px;}
.y10{bottom:250.144050px;}
.y4{bottom:255.414750px;}
.y23{bottom:265.529790px;}
.y2e{bottom:272.753550px;}
.y35{bottom:287.410050px;}
.y14{bottom:296.298690px;}
.y19{bottom:299.781150px;}
.y22{bottom:315.941670px;}
.y3{bottom:327.234750px;}
.yb{bottom:337.263090px;}
.y7{bottom:338.950470px;}
.y2d{bottom:341.153550px;}
.y13{bottom:346.710570px;}
.y34{bottom:360.670050px;}
.y21{bottom:366.353550px;}
.y18{bottom:392.280750px;}
.y12{bottom:397.122450px;}
.ya{bottom:409.251030px;}
.y2c{bottom:409.529790px;}
.y2{bottom:423.348660px;}
.y6{bottom:433.475850px;}
.y33{bottom:433.930050px;}
.y20{bottom:434.741670px;}
.y2b{bottom:459.941670px;}
.yd{bottom:460.873800px;}
.y32{bottom:477.130050px;}
.y17{bottom:484.781700px;}
.y1f{bottom:485.153550px;}
.y9{bottom:485.794410px;}
.y1{bottom:502.554600px;}
.y2a{bottom:510.353550px;}
.y31{bottom:520.330050px;}
.y1e{bottom:553.541670px;}
.y8{bottom:557.782350px;}
.y16{bottom:577.280700px;}
.y1d{bottom:603.953550px;}
.y29{bottom:639.278610px;}
.yf{bottom:671.673750px;}
.y28{bottom:704.073750px;}
.h4{height:68.950195px;}
.hc{height:72.755156px;}
.h6{height:82.740234px;}
.h3{height:109.406250px;}
.h7{height:110.179688px;}
.hb{height:110.320312px;}
.h8{height:128.359336px;}
.ha{height:128.441250px;}
.h9{height:128.523164px;}
.h2{height:183.683320px;}
.h5{height:186.024727px;}
.h1{height:205.018242px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xf{left:109.800000px;}
.x5{left:124.720800px;}
.x1d{left:127.855800px;}
.x1c{left:142.266750px;}
.xa{left:166.952640px;}
.x1e{left:168.355800px;}
.x1{left:176.385750px;}
.xb{left:189.250320px;}
.x9{left:218.800740px;}
.x11{left:234.669900px;}
.x3{left:236.685750px;}
.x8{left:276.582900px;}
.x7{left:340.908810px;}
.x6{left:380.529150px;}
.x18{left:387.873300px;}
.x17{left:402.089550px;}
.xc{left:420.462150px;}
.x19{left:472.923300px;}
.x2{left:475.901790px;}
.x16{left:503.069700px;}
.x4{left:526.305750px;}
.x15{left:591.633600px;}
.xe{left:699.309000px;}
.xd{left:744.909150px;}
.x1a{left:810.677250px;}
.x1b{left:865.325850px;}
.x14{left:942.151920px;}
.x13{left:947.226660px;}
.x12{left:966.141600px;}
.x10{left:987.991350px;}
.x1f{left:1210.680000px;}
@media print{
.v1{vertical-align:-3.780800pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.298240pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.213120pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.149120pt;}
.ls12{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.149120pt;}
.ls14{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.213120pt;}
.ls7{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.255360pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls1{letter-spacing:4.851200pt;}
.ls3{letter-spacing:4.864000pt;}
.ls2{letter-spacing:4.901760pt;}
.ls19{letter-spacing:4.920960pt;}
.ls16{letter-spacing:5.070080pt;}
.ls8{letter-spacing:5.114880pt;}
.ls0{letter-spacing:5.167360pt;}
.ls17{letter-spacing:5.219200pt;}
.ls9{letter-spacing:5.328000pt;}
.ls18{letter-spacing:5.368320pt;}
.ls15{letter-spacing:74.791680pt;}
.ls1a{letter-spacing:99.200000pt;}
.ws30{word-spacing:-55.198080pt;}
.ws24{word-spacing:-44.139520pt;}
.ws22{word-spacing:-43.990400pt;}
.ws21{word-spacing:-43.841280pt;}
.ws15{word-spacing:-38.920320pt;}
.ws0{word-spacing:-38.144000pt;}
.ws31{word-spacing:-33.408000pt;}
.ws11{word-spacing:-33.280000pt;}
.ws32{word-spacing:-33.152000pt;}
.ws13{word-spacing:-33.024000pt;}
.ws1c{word-spacing:-25.152000pt;}
.wsa{word-spacing:-24.960000pt;}
.ws35{word-spacing:-22.386560pt;}
.ws3{word-spacing:-21.040000pt;}
.ws1{word-spacing:-20.720000pt;}
.ws2{word-spacing:-20.640000pt;}
.ws27{word-spacing:-5.070080pt;}
.wsb{word-spacing:-4.901760pt;}
.ws1e{word-spacing:-1.408000pt;}
.ws38{word-spacing:-0.896000pt;}
.ws20{word-spacing:-0.864000pt;}
.ws2a{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.447360pt;}
.ws39{word-spacing:-0.256000pt;}
.ws4{word-spacing:-0.234880pt;}
.ws1b{word-spacing:-0.213120pt;}
.ws18{word-spacing:-0.149120pt;}
.ws1d{word-spacing:-0.128000pt;}
.ws7{word-spacing:0.000000pt;}
.wsf{word-spacing:0.096000pt;}
.ws1f{word-spacing:0.128000pt;}
.ws19{word-spacing:0.149120pt;}
.ws2f{word-spacing:0.149184pt;}
.wsd{word-spacing:0.213120pt;}
.ws37{word-spacing:0.256000pt;}
.ws2b{word-spacing:0.298240pt;}
.ws33{word-spacing:0.384000pt;}
.ws25{word-spacing:0.426240pt;}
.ws16{word-spacing:0.596480pt;}
.ws14{word-spacing:0.639360pt;}
.ws2c{word-spacing:0.745600pt;}
.ws36{word-spacing:0.768000pt;}
.ws9{word-spacing:0.852480pt;}
.ws34{word-spacing:0.896000pt;}
.ws26{word-spacing:1.043840pt;}
.ws8{word-spacing:1.065600pt;}
.wse{word-spacing:1.278720pt;}
.ws2e{word-spacing:1.342080pt;}
.ws6{word-spacing:1.536000pt;}
.ws28{word-spacing:1.640320pt;}
.ws5{word-spacing:1.918080pt;}
.ws23{word-spacing:2.848192pt;}
.ws29{word-spacing:3.131520pt;}
.ws2d{word-spacing:3.429760pt;}
.wsc{word-spacing:3.623040pt;}
.ws17{word-spacing:39.337856pt;}
.ws12{word-spacing:410.764800pt;}
.ws10{word-spacing:545.834133pt;}
._5{margin-left:-2.150208pt;}
._1{margin-left:-0.921792pt;}
._0{width:0.939520pt;}
._2{width:1.830784pt;}
._4{width:8.052480pt;}
._3{width:23.450752pt;}
.fs3{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.fs1{font-size:213.120000pt;}
.fs0{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:11.678133pt;}
.y5{bottom:20.353067pt;}
.y1c{bottom:20.511333pt;}
.y26{bottom:69.647600pt;}
.y1b{bottom:102.029200pt;}
.y38{bottom:113.715600pt;}
.y25{bottom:130.437040pt;}
.ye{bottom:134.672400pt;}
.y37{bottom:152.115600pt;}
.y30{bottom:152.826480pt;}
.y24{bottom:175.247600pt;}
.y1a{bottom:184.250533pt;}
.y27{bottom:188.194533pt;}
.y2f{bottom:197.637040pt;}
.yc{bottom:209.557467pt;}
.y36{bottom:217.075600pt;}
.y11{bottom:222.227467pt;}
.y15{bottom:222.227600pt;}
.y10{bottom:222.350267pt;}
.y4{bottom:227.035333pt;}
.y23{bottom:236.026480pt;}
.y2e{bottom:242.447600pt;}
.y35{bottom:255.475600pt;}
.y14{bottom:263.376613pt;}
.y19{bottom:266.472133pt;}
.y22{bottom:280.837040pt;}
.y3{bottom:290.875333pt;}
.yb{bottom:299.789413pt;}
.y7{bottom:301.289307pt;}
.y2d{bottom:303.247600pt;}
.y13{bottom:308.187173pt;}
.y34{bottom:320.595600pt;}
.y21{bottom:325.647600pt;}
.y18{bottom:348.694000pt;}
.y12{bottom:352.997733pt;}
.ya{bottom:363.778693pt;}
.y2c{bottom:364.026480pt;}
.y2{bottom:376.309920pt;}
.y6{bottom:385.311867pt;}
.y33{bottom:385.715600pt;}
.y20{bottom:386.437040pt;}
.y2b{bottom:408.837040pt;}
.yd{bottom:409.665600pt;}
.y32{bottom:424.115600pt;}
.y17{bottom:430.917067pt;}
.y1f{bottom:431.247600pt;}
.y9{bottom:431.817253pt;}
.y1{bottom:446.715200pt;}
.y2a{bottom:453.647600pt;}
.y31{bottom:462.515600pt;}
.y1e{bottom:492.037040pt;}
.y8{bottom:495.806533pt;}
.y16{bottom:513.138400pt;}
.y1d{bottom:536.847600pt;}
.y29{bottom:568.247653pt;}
.yf{bottom:597.043333pt;}
.y28{bottom:625.843333pt;}
.h4{height:61.289062pt;}
.hc{height:64.671250pt;}
.h6{height:73.546875pt;}
.h3{height:97.250000pt;}
.h7{height:97.937500pt;}
.hb{height:98.062500pt;}
.h8{height:114.097187pt;}
.ha{height:114.170000pt;}
.h9{height:114.242812pt;}
.h2{height:163.274062pt;}
.h5{height:165.355312pt;}
.h1{height:182.238437pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xf{left:97.600000pt;}
.x5{left:110.862933pt;}
.x1d{left:113.649600pt;}
.x1c{left:126.459333pt;}
.xa{left:148.402347pt;}
.x1e{left:149.649600pt;}
.x1{left:156.787333pt;}
.xb{left:168.222507pt;}
.x9{left:194.489547pt;}
.x11{left:208.595467pt;}
.x3{left:210.387333pt;}
.x8{left:245.851467pt;}
.x7{left:303.030053pt;}
.x6{left:338.248133pt;}
.x18{left:344.776267pt;}
.x17{left:357.412933pt;}
.xc{left:373.744133pt;}
.x19{left:420.376267pt;}
.x2{left:423.023813pt;}
.x16{left:447.173067pt;}
.x4{left:467.827333pt;}
.x15{left:525.896533pt;}
.xe{left:621.608000pt;}
.xd{left:662.141467pt;}
.x1a{left:720.602000pt;}
.x1b{left:769.178533pt;}
.x14{left:837.468373pt;}
.x13{left:841.979253pt;}
.x12{left:858.792533pt;}
.x10{left:878.214533pt;}
.x1f{left:1076.160000pt;}
}




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