
    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_f741204c2a771a17a606f11d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_cb8363292ce5b43cf68a30de.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_240e037c15c5040f053b649d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_f42332c4895ae9152d21d248.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_9bd1a29fd894cd9dd525ae3e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_780533180c9315ce997c4009.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_ce61e4ec1d559be0bf8ecaee.woff')format("woff");}.ff7{font-family:ff7;line-height:0.925781;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:ff8;src:url('chunks/assets/font_dbe71c0f2e632164fa5e2c18.woff')format("woff");}.ff8{font-family:ff8;line-height:0.679199;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:ff9;src:url('chunks/assets/font_5133d9610f53a3413fb635a0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922852;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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:180.000000px;}
.ls14{letter-spacing:-1.728000px;}
.lse{letter-spacing:-1.368000px;}
.lsf{letter-spacing:-1.296000px;}
.ls15{letter-spacing:-1.224000px;}
.ls7{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.152000px;}
.ls5{letter-spacing:1.224000px;}
.ls1{letter-spacing:4.260000px;}
.ls0{letter-spacing:8.436000px;}
.ls2{letter-spacing:10.590888px;}
.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;}
}
.ws1{word-spacing:-16.860000px;}
.ws1e{word-spacing:-8.496000px;}
.ws25{word-spacing:-2.016000px;}
.ws2e{word-spacing:-1.680000px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.180000px;}
.ws19{word-spacing:0.720000px;}
.ws9{word-spacing:1.080000px;}
.ws29{word-spacing:1.296000px;}
.wsf{word-spacing:1.440000px;}
.ws2d{word-spacing:1.728000px;}
.ws1d{word-spacing:1.944000px;}
.ws16{word-spacing:2.376000px;}
.ws13{word-spacing:3.312000px;}
.ws4{word-spacing:3.720000px;}
.ws17{word-spacing:4.104000px;}
.ws2{word-spacing:4.200000px;}
.ws1b{word-spacing:4.320000px;}
.wse{word-spacing:4.896000px;}
.wsb{word-spacing:5.040000px;}
.ws27{word-spacing:5.184000px;}
.ws1f{word-spacing:5.472000px;}
.ws15{word-spacing:5.616000px;}
.ws28{word-spacing:5.976000px;}
.wsc{word-spacing:6.048000px;}
.ws20{word-spacing:6.192000px;}
.ws23{word-spacing:7.056000px;}
.ws10{word-spacing:7.344000px;}
.wsa{word-spacing:7.416000px;}
.ws22{word-spacing:7.704000px;}
.wsd{word-spacing:7.848000px;}
.ws26{word-spacing:7.920000px;}
.ws24{word-spacing:8.136000px;}
.ws8{word-spacing:8.400000px;}
.ws2c{word-spacing:8.424000px;}
.ws14{word-spacing:8.496000px;}
.ws1c{word-spacing:8.712000px;}
.ws2b{word-spacing:9.576000px;}
.ws18{word-spacing:9.720000px;}
.ws2a{word-spacing:9.792000px;}
.ws11{word-spacing:10.080000px;}
.ws21{word-spacing:10.152000px;}
.ws12{word-spacing:10.656000px;}
.ws1a{word-spacing:11.088000px;}
.ws3{word-spacing:21.000000px;}
.ws5{word-spacing:75.180000px;}
.ws0{word-spacing:146.196000px;}
._a{margin-left:-948.820800px;}
._2{margin-left:-16.080000px;}
._9{margin-left:-8.539200px;}
._8{margin-left:-7.423200px;}
._3{margin-left:-5.436000px;}
._6{margin-left:-3.564000px;}
._0{margin-left:-2.076000px;}
._7{margin-left:-1.048800px;}
._1{width:1.512000px;}
._5{width:3.174000px;}
._b{width:4.411200px;}
._4{width:6.000000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y3{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y23{bottom:117.354300px;}
.y47{bottom:121.200000px;}
.y46{bottom:139.650000px;}
.y22{bottom:139.854300px;}
.y45{bottom:158.100000px;}
.y21{bottom:162.354300px;}
.y44{bottom:176.550000px;}
.y20{bottom:184.854300px;}
.y1f{bottom:207.354300px;}
.y43{bottom:213.450000px;}
.y1e{bottom:229.854300px;}
.y42{bottom:231.900000px;}
.y41{bottom:250.350000px;}
.y1d{bottom:252.354300px;}
.y1c{bottom:274.854300px;}
.y40{bottom:287.250000px;}
.y1b{bottom:297.354300px;}
.y1a{bottom:319.854300px;}
.y3f{bottom:328.062000px;}
.y19{bottom:342.354300px;}
.y3e{bottom:350.256000px;}
.y18{bottom:364.854300px;}
.y3d{bottom:372.450000px;}
.y17{bottom:387.354300px;}
.y3c{bottom:394.644000px;}
.y16{bottom:409.854300px;}
.y3b{bottom:416.838000px;}
.y15{bottom:432.354300px;}
.y3a{bottom:439.032000px;}
.y14{bottom:454.854300px;}
.y39{bottom:461.226000px;}
.y13{bottom:477.354300px;}
.y38{bottom:483.420000px;}
.y12{bottom:499.854300px;}
.y37{bottom:505.614000px;}
.y11{bottom:522.354300px;}
.y36{bottom:527.808000px;}
.y10{bottom:544.854300px;}
.y35{bottom:550.002000px;}
.yf{bottom:567.354300px;}
.y34{bottom:572.196000px;}
.ye{bottom:589.854300px;}
.y33{bottom:594.390000px;}
.yd{bottom:612.354300px;}
.y32{bottom:616.584000px;}
.yc{bottom:634.854300px;}
.y31{bottom:638.778000px;}
.yb{bottom:657.354300px;}
.y30{bottom:660.972000px;}
.ya{bottom:679.854300px;}
.y2f{bottom:683.166000px;}
.y9{bottom:702.354300px;}
.y2e{bottom:705.360000px;}
.y8{bottom:724.854300px;}
.y2d{bottom:727.554000px;}
.y6{bottom:747.354300px;}
.y2c{bottom:749.748000px;}
.y7{bottom:769.854300px;}
.y2b{bottom:771.942000px;}
.y2a{bottom:794.136000px;}
.y29{bottom:816.330000px;}
.y28{bottom:838.524000px;}
.y5{bottom:859.500000px;}
.y27{bottom:860.718000px;}
.y26{bottom:882.912000px;}
.y4{bottom:889.500000px;}
.y25{bottom:905.106000px;}
.y24{bottom:927.300000px;}
.h1{height:41.396484px;}
.h5{height:49.675781px;}
.h3{height:62.094727px;}
.h2{height:82.792969px;}
.h4{height:296.679600px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x5{left:82.384500px;}
.x4{left:107.656500px;}
.x7{left:112.500000px;}
.x8{left:127.386000px;}
.x2{left:135.000000px;}
.x9{left:180.531450px;}
.x3{left:351.000000px;}
.x6{left:625.781250px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:160.000000pt;}
.ls14{letter-spacing:-1.536000pt;}
.lse{letter-spacing:-1.216000pt;}
.lsf{letter-spacing:-1.152000pt;}
.ls15{letter-spacing:-1.088000pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.896000pt;}
.ls4{letter-spacing:1.024000pt;}
.ls5{letter-spacing:1.088000pt;}
.ls1{letter-spacing:3.786667pt;}
.ls0{letter-spacing:7.498667pt;}
.ls2{letter-spacing:9.414123pt;}
.ws1{word-spacing:-14.986667pt;}
.ws1e{word-spacing:-7.552000pt;}
.ws25{word-spacing:-1.792000pt;}
.ws2e{word-spacing:-1.493333pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.160000pt;}
.ws19{word-spacing:0.640000pt;}
.ws9{word-spacing:0.960000pt;}
.ws29{word-spacing:1.152000pt;}
.wsf{word-spacing:1.280000pt;}
.ws2d{word-spacing:1.536000pt;}
.ws1d{word-spacing:1.728000pt;}
.ws16{word-spacing:2.112000pt;}
.ws13{word-spacing:2.944000pt;}
.ws4{word-spacing:3.306667pt;}
.ws17{word-spacing:3.648000pt;}
.ws2{word-spacing:3.733333pt;}
.ws1b{word-spacing:3.840000pt;}
.wse{word-spacing:4.352000pt;}
.wsb{word-spacing:4.480000pt;}
.ws27{word-spacing:4.608000pt;}
.ws1f{word-spacing:4.864000pt;}
.ws15{word-spacing:4.992000pt;}
.ws28{word-spacing:5.312000pt;}
.wsc{word-spacing:5.376000pt;}
.ws20{word-spacing:5.504000pt;}
.ws23{word-spacing:6.272000pt;}
.ws10{word-spacing:6.528000pt;}
.wsa{word-spacing:6.592000pt;}
.ws22{word-spacing:6.848000pt;}
.wsd{word-spacing:6.976000pt;}
.ws26{word-spacing:7.040000pt;}
.ws24{word-spacing:7.232000pt;}
.ws8{word-spacing:7.466667pt;}
.ws2c{word-spacing:7.488000pt;}
.ws14{word-spacing:7.552000pt;}
.ws1c{word-spacing:7.744000pt;}
.ws2b{word-spacing:8.512000pt;}
.ws18{word-spacing:8.640000pt;}
.ws2a{word-spacing:8.704000pt;}
.ws11{word-spacing:8.960000pt;}
.ws21{word-spacing:9.024000pt;}
.ws12{word-spacing:9.472000pt;}
.ws1a{word-spacing:9.856000pt;}
.ws3{word-spacing:18.666667pt;}
.ws5{word-spacing:66.826667pt;}
.ws0{word-spacing:129.952000pt;}
._a{margin-left:-843.396267pt;}
._2{margin-left:-14.293333pt;}
._9{margin-left:-7.590400pt;}
._8{margin-left:-6.598400pt;}
._3{margin-left:-4.832000pt;}
._6{margin-left:-3.168000pt;}
._0{margin-left:-1.845333pt;}
._7{margin-left:-0.932267pt;}
._1{width:1.344000pt;}
._5{width:2.821333pt;}
._b{width:3.921067pt;}
._4{width:5.333333pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y3{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y23{bottom:104.314933pt;}
.y47{bottom:107.733333pt;}
.y46{bottom:124.133333pt;}
.y22{bottom:124.314933pt;}
.y45{bottom:140.533333pt;}
.y21{bottom:144.314933pt;}
.y44{bottom:156.933333pt;}
.y20{bottom:164.314933pt;}
.y1f{bottom:184.314933pt;}
.y43{bottom:189.733333pt;}
.y1e{bottom:204.314933pt;}
.y42{bottom:206.133333pt;}
.y41{bottom:222.533333pt;}
.y1d{bottom:224.314933pt;}
.y1c{bottom:244.314933pt;}
.y40{bottom:255.333333pt;}
.y1b{bottom:264.314933pt;}
.y1a{bottom:284.314933pt;}
.y3f{bottom:291.610667pt;}
.y19{bottom:304.314933pt;}
.y3e{bottom:311.338667pt;}
.y18{bottom:324.314933pt;}
.y3d{bottom:331.066667pt;}
.y17{bottom:344.314933pt;}
.y3c{bottom:350.794667pt;}
.y16{bottom:364.314933pt;}
.y3b{bottom:370.522667pt;}
.y15{bottom:384.314933pt;}
.y3a{bottom:390.250667pt;}
.y14{bottom:404.314933pt;}
.y39{bottom:409.978667pt;}
.y13{bottom:424.314933pt;}
.y38{bottom:429.706667pt;}
.y12{bottom:444.314933pt;}
.y37{bottom:449.434667pt;}
.y11{bottom:464.314933pt;}
.y36{bottom:469.162667pt;}
.y10{bottom:484.314933pt;}
.y35{bottom:488.890667pt;}
.yf{bottom:504.314933pt;}
.y34{bottom:508.618667pt;}
.ye{bottom:524.314933pt;}
.y33{bottom:528.346667pt;}
.yd{bottom:544.314933pt;}
.y32{bottom:548.074667pt;}
.yc{bottom:564.314933pt;}
.y31{bottom:567.802667pt;}
.yb{bottom:584.314933pt;}
.y30{bottom:587.530667pt;}
.ya{bottom:604.314933pt;}
.y2f{bottom:607.258667pt;}
.y9{bottom:624.314933pt;}
.y2e{bottom:626.986667pt;}
.y8{bottom:644.314933pt;}
.y2d{bottom:646.714667pt;}
.y6{bottom:664.314933pt;}
.y2c{bottom:666.442667pt;}
.y7{bottom:684.314933pt;}
.y2b{bottom:686.170667pt;}
.y2a{bottom:705.898667pt;}
.y29{bottom:725.626667pt;}
.y28{bottom:745.354667pt;}
.y5{bottom:764.000000pt;}
.y27{bottom:765.082667pt;}
.y26{bottom:784.810667pt;}
.y4{bottom:790.666667pt;}
.y25{bottom:804.538667pt;}
.y24{bottom:824.266667pt;}
.h1{height:36.796875pt;}
.h5{height:44.156250pt;}
.h3{height:55.195312pt;}
.h2{height:73.593750pt;}
.h4{height:263.715200pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x5{left:73.230667pt;}
.x4{left:95.694667pt;}
.x7{left:100.000000pt;}
.x8{left:113.232000pt;}
.x2{left:120.000000pt;}
.x9{left:160.472400pt;}
.x3{left:312.000000pt;}
.x6{left:556.250000pt;}
}




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