
    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_ddbb1f1fcadf8438ec87bc8f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_01caea5e4984b92b19319076.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f58314deb3b864c85b677d8a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9012055343cfa9c9dec7cef4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_e8d2127513450597d14af16e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_d572e0d9161340b4ae5f091f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_09997f18c69de744e212b738.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b8c4873099900598e92c9cdb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_dd596801e4f2dfc4c506e930.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_30d1e9016f98fcfc88ab5036.woff')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_954fbb03ffee965b5589776b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.000000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.372000px;}
.ls11{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.600000px;}
.lse{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.828000px;}
.lsf{letter-spacing:1.800000px;}
.ls16{letter-spacing:2.028000px;}
.ls10{letter-spacing:3.120000px;}
.ls17{letter-spacing:7.800000px;}
.ls8{letter-spacing:16.200000px;}
.ls9{letter-spacing:16.260000px;}
.ls7{letter-spacing:19.740000px;}
.ls6{letter-spacing:19.800000px;}
.lsb{letter-spacing:48.540000px;}
.lsa{letter-spacing:48.600000px;}
.ls5{letter-spacing:54.660000px;}
.ls19{letter-spacing:129.198000px;}
.ls13{letter-spacing:153.870000px;}
.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:-21.000000px;}
.ws3{word-spacing:-20.952000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.580000px;}
.ws2{word-spacing:0.000000px;}
._24{margin-left:-4.368000px;}
._1a{margin-left:-2.946000px;}
._0{margin-left:-1.632000px;}
._2{width:1.296000px;}
._1{width:2.592000px;}
._19{width:4.626000px;}
._22{width:5.862000px;}
._5{width:6.888000px;}
._4{width:8.250000px;}
._7{width:9.276000px;}
._6{width:10.536000px;}
._25{width:11.802000px;}
._f{width:12.864000px;}
._e{width:14.166000px;}
._a{width:15.654000px;}
._b{width:16.992000px;}
._15{width:18.630000px;}
._26{width:19.800000px;}
._23{width:22.452000px;}
._2d{width:26.028000px;}
._1d{width:27.552000px;}
._1e{width:28.980000px;}
._16{width:30.198000px;}
._c{width:31.290000px;}
._d{width:32.850000px;}
._27{width:34.560000px;}
._18{width:38.064000px;}
._17{width:39.096000px;}
._1c{width:47.136000px;}
._1b{width:48.438000px;}
._21{width:49.512000px;}
._2a{width:52.716000px;}
._29{width:53.796000px;}
._11{width:54.804000px;}
._10{width:55.944000px;}
._2b{width:57.270000px;}
._2c{width:58.482000px;}
._20{width:60.450000px;}
._1f{width:61.692000px;}
._28{width:65.376000px;}
._9{width:67.620000px;}
._8{width:69.168000px;}
._12{width:72.744000px;}
._13{width:74.172000px;}
._14{width:85.596000px;}
._3{width:2491.170000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(140,140,140);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:3.600000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:19.837500px;}
.y5{bottom:68.137500px;}
.y4{bottom:91.537500px;}
.y23{bottom:135.637500px;}
.y61{bottom:140.137500px;}
.y49{bottom:156.345000px;}
.y22{bottom:171.675000px;}
.y60{bottom:177.075000px;}
.y48{bottom:192.375000px;}
.y21{bottom:207.975000px;}
.y5f{bottom:213.075000px;}
.y47{bottom:228.675000px;}
.y20{bottom:244.275000px;}
.y5e{bottom:249.375000px;}
.y76{bottom:254.475000px;}
.y46{bottom:264.975000px;}
.y1f{bottom:280.275000px;}
.y5d{bottom:285.675000px;}
.y75{bottom:290.775000px;}
.y45{bottom:300.975000px;}
.y1e{bottom:316.575000px;}
.y5c{bottom:321.675000px;}
.y74{bottom:326.475000px;}
.y44{bottom:337.275000px;}
.y1d{bottom:352.905000px;}
.y5b{bottom:358.005000px;}
.y73{bottom:363.120000px;}
.y43{bottom:373.620000px;}
.y1c{bottom:389.220000px;}
.y5a{bottom:394.320000px;}
.y72{bottom:399.405000px;}
.y42{bottom:409.905000px;}
.y1b{bottom:425.205000px;}
.y59{bottom:430.605000px;}
.y71{bottom:435.705000px;}
.y41{bottom:445.905000px;}
.y1a{bottom:461.505000px;}
.y58{bottom:466.620000px;}
.y70{bottom:472.005000px;}
.y40{bottom:482.205000px;}
.y2f{bottom:497.205000px;}
.y19{bottom:497.820000px;}
.y57{bottom:502.305000px;}
.y6f{bottom:508.050000px;}
.y3f{bottom:518.550000px;}
.y18{bottom:534.150000px;}
.y56{bottom:539.250000px;}
.y6e{bottom:544.350000px;}
.y3e{bottom:554.850000px;}
.y17{bottom:570.150000px;}
.y55{bottom:575.550000px;}
.y6d{bottom:580.650000px;}
.y3d{bottom:590.850000px;}
.y16{bottom:606.450000px;}
.y54{bottom:611.550000px;}
.y6c{bottom:616.950000px;}
.y3c{bottom:627.150000px;}
.y15{bottom:642.750000px;}
.y53{bottom:647.850000px;}
.y6b{bottom:652.950000px;}
.y3b{bottom:663.450000px;}
.y14{bottom:679.080000px;}
.y52{bottom:684.180000px;}
.y6a{bottom:689.280000px;}
.y3a{bottom:699.780000px;}
.y13{bottom:714.480000px;}
.y2e{bottom:715.080000px;}
.y51{bottom:720.495000px;}
.y69{bottom:725.595000px;}
.y39{bottom:735.780000px;}
.y12{bottom:750.780000px;}
.y2d{bottom:751.380000px;}
.y50{bottom:756.480000px;}
.y68{bottom:761.880000px;}
.y38{bottom:772.080000px;}
.y11{bottom:787.080000px;}
.y2c{bottom:787.695000px;}
.y4f{bottom:792.780000px;}
.y67{bottom:797.880000px;}
.y37{bottom:808.380000px;}
.y10{bottom:823.380000px;}
.y2b{bottom:823.980000px;}
.y4e{bottom:829.080000px;}
.y66{bottom:834.195000px;}
.y36{bottom:844.695000px;}
.yf{bottom:860.025000px;}
.y4d{bottom:865.425000px;}
.y65{bottom:869.925000px;}
.y35{bottom:880.725000px;}
.ye{bottom:895.725000px;}
.y2a{bottom:896.325000px;}
.y4c{bottom:901.425000px;}
.y64{bottom:906.225000px;}
.y34{bottom:917.025000px;}
.yd{bottom:932.025000px;}
.y29{bottom:932.625000px;}
.y4b{bottom:937.725000px;}
.y63{bottom:942.225000px;}
.y33{bottom:953.325000px;}
.yc{bottom:968.925000px;}
.y62{bottom:974.325000px;}
.y32{bottom:989.625000px;}
.y4a{bottom:995.025000px;}
.yb{bottom:1004.325000px;}
.y28{bottom:1004.925000px;}
.y31{bottom:1020.855000px;}
.ya{bottom:1040.670000px;}
.y27{bottom:1041.255000px;}
.y30{bottom:1046.670000px;}
.y9{bottom:1076.955000px;}
.y26{bottom:1077.570000px;}
.y8{bottom:1113.255000px;}
.y25{bottom:1113.870000px;}
.y7{bottom:1149.255000px;}
.y24{bottom:1149.855000px;}
.y3{bottom:1183.500000px;}
.y2{bottom:1206.600000px;}
.y1{bottom:1227.900000px;}
.h7{height:58.857422px;}
.h9{height:58.886719px;}
.h5{height:58.898438px;}
.h6{height:59.853516px;}
.h8{height:61.670545px;}
.h3{height:82.400391px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.ha{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.x5{left:132.337500px;}
.x1{left:157.830000px;}
.xb{left:236.475000px;}
.xe{left:286.875000px;}
.x9{left:291.675000px;}
.x2{left:296.505000px;}
.xc{left:298.905000px;}
.x10{left:306.405000px;}
.x8{left:325.020000px;}
.xd{left:335.820000px;}
.x4{left:356.205000px;}
.xf{left:385.905000px;}
.xa{left:390.120000px;}
.x6{left:447.450000px;}
.x11{left:449.850000px;}
.x7{left:478.350000px;}
@media print{
.v1{vertical-align:-85.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.330667pt;}
.ls11{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.736000pt;}
.lsf{letter-spacing:1.600000pt;}
.ls16{letter-spacing:1.802667pt;}
.ls10{letter-spacing:2.773333pt;}
.ls17{letter-spacing:6.933333pt;}
.ls8{letter-spacing:14.400000pt;}
.ls9{letter-spacing:14.453333pt;}
.ls7{letter-spacing:17.546667pt;}
.ls6{letter-spacing:17.600000pt;}
.lsb{letter-spacing:43.146667pt;}
.lsa{letter-spacing:43.200000pt;}
.ls5{letter-spacing:48.586667pt;}
.ls19{letter-spacing:114.842667pt;}
.ls13{letter-spacing:136.773333pt;}
.ws1{word-spacing:-18.666667pt;}
.ws3{word-spacing:-18.624000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.960000pt;}
.ws2{word-spacing:0.000000pt;}
._24{margin-left:-3.882667pt;}
._1a{margin-left:-2.618667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.152000pt;}
._1{width:2.304000pt;}
._19{width:4.112000pt;}
._22{width:5.210667pt;}
._5{width:6.122667pt;}
._4{width:7.333333pt;}
._7{width:8.245333pt;}
._6{width:9.365333pt;}
._25{width:10.490667pt;}
._f{width:11.434667pt;}
._e{width:12.592000pt;}
._a{width:13.914667pt;}
._b{width:15.104000pt;}
._15{width:16.560000pt;}
._26{width:17.600000pt;}
._23{width:19.957333pt;}
._2d{width:23.136000pt;}
._1d{width:24.490667pt;}
._1e{width:25.760000pt;}
._16{width:26.842667pt;}
._c{width:27.813333pt;}
._d{width:29.200000pt;}
._27{width:30.720000pt;}
._18{width:33.834667pt;}
._17{width:34.752000pt;}
._1c{width:41.898667pt;}
._1b{width:43.056000pt;}
._21{width:44.010667pt;}
._2a{width:46.858667pt;}
._29{width:47.818667pt;}
._11{width:48.714667pt;}
._10{width:49.728000pt;}
._2b{width:50.906667pt;}
._2c{width:51.984000pt;}
._20{width:53.733333pt;}
._1f{width:54.837333pt;}
._28{width:58.112000pt;}
._9{width:60.106667pt;}
._8{width:61.482667pt;}
._12{width:64.661333pt;}
._13{width:65.930667pt;}
._14{width:76.085333pt;}
._3{width:2214.373333pt;}
.fs1{font-size:3.200000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:17.633333pt;}
.y5{bottom:60.566667pt;}
.y4{bottom:81.366667pt;}
.y23{bottom:120.566667pt;}
.y61{bottom:124.566667pt;}
.y49{bottom:138.973333pt;}
.y22{bottom:152.600000pt;}
.y60{bottom:157.400000pt;}
.y48{bottom:171.000000pt;}
.y21{bottom:184.866667pt;}
.y5f{bottom:189.400000pt;}
.y47{bottom:203.266667pt;}
.y20{bottom:217.133333pt;}
.y5e{bottom:221.666667pt;}
.y76{bottom:226.200000pt;}
.y46{bottom:235.533333pt;}
.y1f{bottom:249.133333pt;}
.y5d{bottom:253.933333pt;}
.y75{bottom:258.466667pt;}
.y45{bottom:267.533333pt;}
.y1e{bottom:281.400000pt;}
.y5c{bottom:285.933333pt;}
.y74{bottom:290.200000pt;}
.y44{bottom:299.800000pt;}
.y1d{bottom:313.693333pt;}
.y5b{bottom:318.226667pt;}
.y73{bottom:322.773333pt;}
.y43{bottom:332.106667pt;}
.y1c{bottom:345.973333pt;}
.y5a{bottom:350.506667pt;}
.y72{bottom:355.026667pt;}
.y42{bottom:364.360000pt;}
.y1b{bottom:377.960000pt;}
.y59{bottom:382.760000pt;}
.y71{bottom:387.293333pt;}
.y41{bottom:396.360000pt;}
.y1a{bottom:410.226667pt;}
.y58{bottom:414.773333pt;}
.y70{bottom:419.560000pt;}
.y40{bottom:428.626667pt;}
.y2f{bottom:441.960000pt;}
.y19{bottom:442.506667pt;}
.y57{bottom:446.493333pt;}
.y6f{bottom:451.600000pt;}
.y3f{bottom:460.933333pt;}
.y18{bottom:474.800000pt;}
.y56{bottom:479.333333pt;}
.y6e{bottom:483.866667pt;}
.y3e{bottom:493.200000pt;}
.y17{bottom:506.800000pt;}
.y55{bottom:511.600000pt;}
.y6d{bottom:516.133333pt;}
.y3d{bottom:525.200000pt;}
.y16{bottom:539.066667pt;}
.y54{bottom:543.600000pt;}
.y6c{bottom:548.400000pt;}
.y3c{bottom:557.466667pt;}
.y15{bottom:571.333333pt;}
.y53{bottom:575.866667pt;}
.y6b{bottom:580.400000pt;}
.y3b{bottom:589.733333pt;}
.y14{bottom:603.626667pt;}
.y52{bottom:608.160000pt;}
.y6a{bottom:612.693333pt;}
.y3a{bottom:622.026667pt;}
.y13{bottom:635.093333pt;}
.y2e{bottom:635.626667pt;}
.y51{bottom:640.440000pt;}
.y69{bottom:644.973333pt;}
.y39{bottom:654.026667pt;}
.y12{bottom:667.360000pt;}
.y2d{bottom:667.893333pt;}
.y50{bottom:672.426667pt;}
.y68{bottom:677.226667pt;}
.y38{bottom:686.293333pt;}
.y11{bottom:699.626667pt;}
.y2c{bottom:700.173333pt;}
.y4f{bottom:704.693333pt;}
.y67{bottom:709.226667pt;}
.y37{bottom:718.560000pt;}
.y10{bottom:731.893333pt;}
.y2b{bottom:732.426667pt;}
.y4e{bottom:736.960000pt;}
.y66{bottom:741.506667pt;}
.y36{bottom:750.840000pt;}
.yf{bottom:764.466667pt;}
.y4d{bottom:769.266667pt;}
.y65{bottom:773.266667pt;}
.y35{bottom:782.866667pt;}
.ye{bottom:796.200000pt;}
.y2a{bottom:796.733333pt;}
.y4c{bottom:801.266667pt;}
.y64{bottom:805.533333pt;}
.y34{bottom:815.133333pt;}
.yd{bottom:828.466667pt;}
.y29{bottom:829.000000pt;}
.y4b{bottom:833.533333pt;}
.y63{bottom:837.533333pt;}
.y33{bottom:847.400000pt;}
.yc{bottom:861.266667pt;}
.y62{bottom:866.066667pt;}
.y32{bottom:879.666667pt;}
.y4a{bottom:884.466667pt;}
.yb{bottom:892.733333pt;}
.y28{bottom:893.266667pt;}
.y31{bottom:907.426667pt;}
.ya{bottom:925.040000pt;}
.y27{bottom:925.560000pt;}
.y30{bottom:930.373333pt;}
.y9{bottom:957.293333pt;}
.y26{bottom:957.840000pt;}
.y8{bottom:989.560000pt;}
.y25{bottom:990.106667pt;}
.y7{bottom:1021.560000pt;}
.y24{bottom:1022.093333pt;}
.y3{bottom:1052.000000pt;}
.y2{bottom:1072.533333pt;}
.y1{bottom:1091.466667pt;}
.h7{height:52.317708pt;}
.h9{height:52.343750pt;}
.h5{height:52.354167pt;}
.h6{height:53.203125pt;}
.h8{height:54.818262pt;}
.h3{height:73.244792pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.ha{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.x5{left:117.633333pt;}
.x1{left:140.293333pt;}
.xb{left:210.200000pt;}
.xe{left:255.000000pt;}
.x9{left:259.266667pt;}
.x2{left:263.560000pt;}
.xc{left:265.693333pt;}
.x10{left:272.360000pt;}
.x8{left:288.906667pt;}
.xd{left:298.506667pt;}
.x4{left:316.626667pt;}
.xf{left:343.026667pt;}
.xa{left:346.773333pt;}
.x6{left:397.733333pt;}
.x11{left:399.866667pt;}
.x7{left:425.200000pt;}
}




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