
    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_3a12b3f6691111e90c7dd1e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977539;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b9dd9afb907fe192fb0e569c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_53031940343c0274259e0e59.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_eedebdf153ef954791559fd5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cb18e6c1614390f4c93450ba.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_57e403f5085f32172b77d740.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b28e72e8fc1ca8f8311f3e80.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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:ffb;src:url('chunks/assets/font_3a5cd7d71c14aa3b7cc9a0b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:ffc;src:url('chunks/assets/font_354ee5f900e502c645883a74.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.m3{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.504000px;}
.ls6{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.252000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.552000px;}
.ls11{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.648000px;}
.ls1{letter-spacing:4.200000px;}
.ls8{letter-spacing:7.860000px;}
.lsa{letter-spacing:8.940000px;}
.ls2{letter-spacing:10.200000px;}
.ls0{letter-spacing:13.800000px;}
.lsb{letter-spacing:37.800000px;}
.ls9{letter-spacing:61.800000px;}
.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:-21.552000px;}
.ws2{word-spacing:-21.000000px;}
.ws1{word-spacing:-19.776000px;}
.ws6{word-spacing:-19.308000px;}
.ws7{word-spacing:-19.284000px;}
.ws5{word-spacing:-18.984000px;}
.ws0{word-spacing:-16.212000px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-4.536000px;}
._6{margin-left:-2.598000px;}
._2{margin-left:-1.428000px;}
._3{width:1.008000px;}
._4{width:2.256000px;}
._5{width:3.433490px;}
._14{width:4.576510px;}
._17{width:6.552000px;}
._13{width:8.064000px;}
._12{width:9.492000px;}
._18{width:10.722000px;}
._e{width:12.768000px;}
._f{width:14.382000px;}
._15{width:15.876000px;}
._23{width:17.892000px;}
._16{width:19.950000px;}
._1f{width:22.680000px;}
._8{width:23.940000px;}
._7{width:25.200000px;}
._9{width:26.544000px;}
._1d{width:28.476000px;}
._1c{width:30.324000px;}
._11{width:38.052000px;}
._b{width:39.648000px;}
._20{width:44.016000px;}
._19{width:45.696000px;}
._1e{width:47.574000px;}
._a{width:48.720000px;}
._d{width:49.728000px;}
._22{width:56.112000px;}
._21{width:57.288000px;}
._1a{width:58.968000px;}
._1b{width:61.320000px;}
._28{width:62.508000px;}
._2a{width:69.384000px;}
._2b{width:70.854000px;}
._10{width:74.592000px;}
._2c{width:90.228000px;}
._2d{width:91.980000px;}
._25{width:96.516000px;}
._24{width:97.524000px;}
._30{width:137.760000px;}
._27{width:147.000000px;}
._2f{width:180.048000px;}
._29{width:242.676000px;}
._26{width:282.576000px;}
._0{width:292.446000px;}
._2e{width:465.780000px;}
._1{width:1555.176000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,102,153);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,153,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:7.800000px;}
.y3f{bottom:8.085000px;}
.y47{bottom:8.100000px;}
.y8{bottom:10.537500px;}
.y50{bottom:21.900000px;}
.y7{bottom:32.437500px;}
.y3e{bottom:35.685000px;}
.y46{bottom:35.700000px;}
.y49{bottom:36.000000px;}
.y6{bottom:54.637500px;}
.y4c{bottom:63.300000px;}
.y3d{bottom:63.585000px;}
.y45{bottom:63.600000px;}
.y4b{bottom:91.185000px;}
.y44{bottom:91.200000px;}
.y2d{bottom:94.237500px;}
.y33{bottom:118.537500px;}
.y43{bottom:119.145000px;}
.y2c{bottom:122.137500px;}
.y32{bottom:146.437500px;}
.y42{bottom:146.730000px;}
.y2b{bottom:149.737500px;}
.y31{bottom:175.575000px;}
.y2a{bottom:177.675000px;}
.y30{bottom:203.775000px;}
.y29{bottom:205.275000px;}
.y2f{bottom:231.375000px;}
.y28{bottom:233.175000px;}
.y52{bottom:235.275000px;}
.y51{bottom:257.475000px;}
.y2e{bottom:260.475000px;}
.y27{bottom:260.775000px;}
.y4f{bottom:287.475000px;}
.y26{bottom:288.675000px;}
.y25{bottom:316.575000px;}
.y24{bottom:344.205000px;}
.y4e{bottom:345.405000px;}
.y23{bottom:372.120000px;}
.y22{bottom:399.705000px;}
.y4a{bottom:403.320000px;}
.y21{bottom:427.620000px;}
.y20{bottom:455.205000px;}
.y1f{bottom:483.120000px;}
.y1e{bottom:511.050000px;}
.y48{bottom:516.450000px;}
.y1d{bottom:538.650000px;}
.y1c{bottom:566.550000px;}
.y41{bottom:574.350000px;}
.y1b{bottom:594.150000px;}
.y1a{bottom:622.050000px;}
.y19{bottom:649.650000px;}
.y18{bottom:677.580000px;}
.y17{bottom:705.195000px;}
.y16{bottom:733.080000px;}
.y40{bottom:743.295000px;}
.y15{bottom:760.995000px;}
.y3c{bottom:773.295000px;}
.y14{bottom:788.580000px;}
.y13{bottom:816.495000px;}
.y12{bottom:844.080000px;}
.y3b{bottom:866.925000px;}
.y11{bottom:872.025000px;}
.y3a{bottom:896.025000px;}
.y10{bottom:899.625000px;}
.y39{bottom:924.225000px;}
.yf{bottom:927.525000px;}
.y38{bottom:953.325000px;}
.ye{bottom:955.425000px;}
.y37{bottom:981.225000px;}
.yd{bottom:983.025000px;}
.y36{bottom:1009.125000px;}
.yc{bottom:1010.925000px;}
.y35{bottom:1037.070000px;}
.yb{bottom:1038.570000px;}
.y34{bottom:1066.170000px;}
.ya{bottom:1066.455000px;}
.y9{bottom:1094.070000px;}
.y5{bottom:1117.755000px;}
.y4{bottom:1138.755000px;}
.y3{bottom:1162.455000px;}
.y2{bottom:1186.200000px;}
.y1{bottom:1210.500000px;}
.hd{height:27.900000px;}
.h5{height:53.424000px;}
.h11{height:55.500000px;}
.hf{height:55.800000px;}
.h12{height:55.837500px;}
.hb{height:56.888672px;}
.h9{height:58.652344px;}
.h6{height:59.267578px;}
.h2{height:66.978516px;}
.h4{height:70.628906px;}
.h3{height:76.546875px;}
.h8{height:82.441406px;}
.hc{height:83.437500px;}
.ha{height:83.548828px;}
.h7{height:84.656250px;}
.h10{height:111.037500px;}
.he{height:166.530000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:332.820000px;}
.w3{width:386.820000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:42.299987px;}
.x5{left:84.937487px;}
.xf{left:86.137500px;}
.x1{left:106.537487px;}
.x7{left:112.237487px;}
.x8{left:125.737487px;}
.xd{left:211.574987px;}
.xb{left:222.974987px;}
.xa{left:250.274987px;}
.xc{left:277.874987px;}
.xe{left:316.004987px;}
.x9{left:446.249987px;}
.x10{left:474.150000px;}
.x2{left:550.994987px;}
.x3{left:636.779987px;}
.x4{left:808.154987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.490667pt;}
.ls11{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.576000pt;}
.ls1{letter-spacing:3.733333pt;}
.ls8{letter-spacing:6.986667pt;}
.lsa{letter-spacing:7.946667pt;}
.ls2{letter-spacing:9.066667pt;}
.ls0{letter-spacing:12.266667pt;}
.lsb{letter-spacing:33.600000pt;}
.ls9{letter-spacing:54.933333pt;}
.ws4{word-spacing:-19.157333pt;}
.ws2{word-spacing:-18.666667pt;}
.ws1{word-spacing:-17.578667pt;}
.ws6{word-spacing:-17.162667pt;}
.ws7{word-spacing:-17.141333pt;}
.ws5{word-spacing:-16.874667pt;}
.ws0{word-spacing:-14.410667pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-4.032000pt;}
._6{margin-left:-2.309333pt;}
._2{margin-left:-1.269333pt;}
._3{width:0.896000pt;}
._4{width:2.005333pt;}
._5{width:3.051991pt;}
._14{width:4.068009pt;}
._17{width:5.824000pt;}
._13{width:7.168000pt;}
._12{width:8.437333pt;}
._18{width:9.530667pt;}
._e{width:11.349333pt;}
._f{width:12.784000pt;}
._15{width:14.112000pt;}
._23{width:15.904000pt;}
._16{width:17.733333pt;}
._1f{width:20.160000pt;}
._8{width:21.280000pt;}
._7{width:22.400000pt;}
._9{width:23.594667pt;}
._1d{width:25.312000pt;}
._1c{width:26.954667pt;}
._11{width:33.824000pt;}
._b{width:35.242667pt;}
._20{width:39.125333pt;}
._19{width:40.618667pt;}
._1e{width:42.288000pt;}
._a{width:43.306667pt;}
._d{width:44.202667pt;}
._22{width:49.877333pt;}
._21{width:50.922667pt;}
._1a{width:52.416000pt;}
._1b{width:54.506667pt;}
._28{width:55.562667pt;}
._2a{width:61.674667pt;}
._2b{width:62.981333pt;}
._10{width:66.304000pt;}
._2c{width:80.202667pt;}
._2d{width:81.760000pt;}
._25{width:85.792000pt;}
._24{width:86.688000pt;}
._30{width:122.453333pt;}
._27{width:130.666667pt;}
._2f{width:160.042667pt;}
._29{width:215.712000pt;}
._26{width:251.178667pt;}
._0{width:259.952000pt;}
._2e{width:414.026667pt;}
._1{width:1382.378667pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:6.933333pt;}
.y3f{bottom:7.186667pt;}
.y47{bottom:7.200000pt;}
.y8{bottom:9.366667pt;}
.y50{bottom:19.466667pt;}
.y7{bottom:28.833333pt;}
.y3e{bottom:31.720000pt;}
.y46{bottom:31.733333pt;}
.y49{bottom:32.000000pt;}
.y6{bottom:48.566667pt;}
.y4c{bottom:56.266667pt;}
.y3d{bottom:56.520000pt;}
.y45{bottom:56.533333pt;}
.y4b{bottom:81.053333pt;}
.y44{bottom:81.066667pt;}
.y2d{bottom:83.766667pt;}
.y33{bottom:105.366667pt;}
.y43{bottom:105.906667pt;}
.y2c{bottom:108.566667pt;}
.y32{bottom:130.166667pt;}
.y42{bottom:130.426667pt;}
.y2b{bottom:133.100000pt;}
.y31{bottom:156.066667pt;}
.y2a{bottom:157.933333pt;}
.y30{bottom:181.133333pt;}
.y29{bottom:182.466667pt;}
.y2f{bottom:205.666667pt;}
.y28{bottom:207.266667pt;}
.y52{bottom:209.133333pt;}
.y51{bottom:228.866667pt;}
.y2e{bottom:231.533333pt;}
.y27{bottom:231.800000pt;}
.y4f{bottom:255.533333pt;}
.y26{bottom:256.600000pt;}
.y25{bottom:281.400000pt;}
.y24{bottom:305.960000pt;}
.y4e{bottom:307.026667pt;}
.y23{bottom:330.773333pt;}
.y22{bottom:355.293333pt;}
.y4a{bottom:358.506667pt;}
.y21{bottom:380.106667pt;}
.y20{bottom:404.626667pt;}
.y1f{bottom:429.440000pt;}
.y1e{bottom:454.266667pt;}
.y48{bottom:459.066667pt;}
.y1d{bottom:478.800000pt;}
.y1c{bottom:503.600000pt;}
.y41{bottom:510.533333pt;}
.y1b{bottom:528.133333pt;}
.y1a{bottom:552.933333pt;}
.y19{bottom:577.466667pt;}
.y18{bottom:602.293333pt;}
.y17{bottom:626.840000pt;}
.y16{bottom:651.626667pt;}
.y40{bottom:660.706667pt;}
.y15{bottom:676.440000pt;}
.y3c{bottom:687.373333pt;}
.y14{bottom:700.960000pt;}
.y13{bottom:725.773333pt;}
.y12{bottom:750.293333pt;}
.y3b{bottom:770.600000pt;}
.y11{bottom:775.133333pt;}
.y3a{bottom:796.466667pt;}
.y10{bottom:799.666667pt;}
.y39{bottom:821.533333pt;}
.yf{bottom:824.466667pt;}
.y38{bottom:847.400000pt;}
.ye{bottom:849.266667pt;}
.y37{bottom:872.200000pt;}
.yd{bottom:873.800000pt;}
.y36{bottom:897.000000pt;}
.yc{bottom:898.600000pt;}
.y35{bottom:921.840000pt;}
.yb{bottom:923.173333pt;}
.y34{bottom:947.706667pt;}
.ya{bottom:947.960000pt;}
.y9{bottom:972.506667pt;}
.y5{bottom:993.560000pt;}
.y4{bottom:1012.226667pt;}
.y3{bottom:1033.293333pt;}
.y2{bottom:1054.400000pt;}
.y1{bottom:1076.000000pt;}
.hd{height:24.800000pt;}
.h5{height:47.488000pt;}
.h11{height:49.333333pt;}
.hf{height:49.600000pt;}
.h12{height:49.633333pt;}
.hb{height:50.567708pt;}
.h9{height:52.135417pt;}
.h6{height:52.682292pt;}
.h2{height:59.536458pt;}
.h4{height:62.781250pt;}
.h3{height:68.041667pt;}
.h8{height:73.281250pt;}
.hc{height:74.166667pt;}
.ha{height:74.265625pt;}
.h7{height:75.250000pt;}
.h10{height:98.700000pt;}
.he{height:148.026667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:295.840000pt;}
.w3{width:343.840000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:37.599988pt;}
.x5{left:75.499988pt;}
.xf{left:76.566667pt;}
.x1{left:94.699988pt;}
.x7{left:99.766655pt;}
.x8{left:111.766655pt;}
.xd{left:188.066655pt;}
.xb{left:198.199988pt;}
.xa{left:222.466655pt;}
.xc{left:246.999988pt;}
.xe{left:280.893322pt;}
.x9{left:396.666655pt;}
.x10{left:421.466667pt;}
.x2{left:489.773322pt;}
.x3{left:566.026655pt;}
.x4{left:718.359988pt;}
}




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