
    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_5abc2a4ba2b6aead89602ed9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5cac278ba427c6eb91486fc2.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_defc3bc78ca6adee8ef2282c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f70952a8006fb8e99726f892.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b4c311f61d78d6aa74c66b06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_ca0e07885ea3a864ead40367.woff')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.176000px;}
.lse{letter-spacing:-0.666000px;}
.ls12{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.208200px;}
.ls5{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.lsd{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.620000px;}
.lsa{letter-spacing:10.026720px;}
.ls11{letter-spacing:11.466720px;}
.lsc{letter-spacing:19.386720px;}
.lsf{letter-spacing:37.386720px;}
.ls10{letter-spacing:41.706720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.958720px;}
.ws2{word-spacing:-23.921280px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.384000px;}
.ws9{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.146400px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.274000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._7{margin-left:-6.176400px;}
._8{margin-left:-4.205280px;}
._f{margin-left:-2.691600px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._9{width:2.257440px;}
._a{width:3.406320px;}
._10{width:5.149440px;}
._15{width:6.174720px;}
._e{width:7.181280px;}
._d{width:8.545680px;}
._11{width:9.598320px;}
._13{width:10.876320px;}
._c{width:11.952000px;}
._14{width:13.654080px;}
._b{width:17.031600px;}
._12{width:23.306400px;}
._17{width:24.747360px;}
._16{width:26.351040px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:10.800000px;}
.yb3{bottom:30.600000px;}
.yb0{bottom:34.740000px;}
.yb2{bottom:50.400000px;}
.y6{bottom:60.156000px;}
.yb1{bottom:70.194000px;}
.yaf{bottom:88.596000px;}
.y34{bottom:97.956000px;}
.y67{bottom:102.276000px;}
.y33{bottom:117.936000px;}
.y66{bottom:122.076000px;}
.y96{bottom:126.756000px;}
.y32{bottom:137.736000px;}
.y65{bottom:141.876000px;}
.y95{bottom:146.556000px;}
.y31{bottom:157.530000px;}
.y94{bottom:166.530000px;}
.y64{bottom:170.850000px;}
.y30{bottom:177.330000px;}
.y93{bottom:186.330000px;}
.y63{bottom:190.650000px;}
.y2f{bottom:197.130000px;}
.y92{bottom:206.130000px;}
.y62{bottom:210.450000px;}
.y2e{bottom:217.110000px;}
.y91{bottom:225.930000px;}
.y61{bottom:230.250000px;}
.y2d{bottom:236.910000px;}
.y90{bottom:245.730000px;}
.y60{bottom:250.050000px;}
.y2c{bottom:256.710000px;}
.y8f{bottom:265.710000px;}
.y5f{bottom:270.030000px;}
.y2b{bottom:276.510000px;}
.y8e{bottom:285.555000px;}
.y5e{bottom:289.875000px;}
.y2a{bottom:296.355000px;}
.y8d{bottom:305.355000px;}
.y29{bottom:316.335000px;}
.y5d{bottom:318.675000px;}
.y8c{bottom:325.155000px;}
.y28{bottom:336.135000px;}
.y5c{bottom:338.475000px;}
.y8b{bottom:346.035000px;}
.y27{bottom:355.935000px;}
.y5b{bottom:359.355000px;}
.y8a{bottom:367.095000px;}
.y26{bottom:375.735000px;}
.y5a{bottom:379.155000px;}
.y89{bottom:387.975000px;}
.y25{bottom:395.535000px;}
.y59{bottom:399.135000px;}
.y88{bottom:407.775000px;}
.y24{bottom:415.515000px;}
.y58{bottom:420.015000px;}
.y23{bottom:435.315000px;}
.y87{bottom:436.575000px;}
.y57{bottom:448.815000px;}
.yae{bottom:450.795000px;}
.y22{bottom:455.115000px;}
.y86{bottom:456.375000px;}
.y56{bottom:468.615000px;}
.y21{bottom:474.915000px;}
.y85{bottom:476.355000px;}
.yad{bottom:481.395000px;}
.y55{bottom:488.415000px;}
.y20{bottom:494.715000px;}
.y84{bottom:496.155000px;}
.y54{bottom:508.395000px;}
.yac{bottom:511.995000px;}
.y1f{bottom:514.695000px;}
.y83{bottom:515.955000px;}
.y1e{bottom:534.495000px;}
.y53{bottom:537.195000px;}
.yab{bottom:542.595000px;}
.y82{bottom:544.755000px;}
.y1d{bottom:554.295000px;}
.y52{bottom:556.995000px;}
.y81{bottom:564.585000px;}
.yaa{bottom:573.225000px;}
.y1c{bottom:574.125000px;}
.y51{bottom:576.825000px;}
.y80{bottom:584.565000px;}
.y1b{bottom:593.925000px;}
.y50{bottom:596.625000px;}
.ya9{bottom:603.825000px;}
.y7f{bottom:604.365000px;}
.y1a{bottom:613.905000px;}
.y4f{bottom:616.605000px;}
.ya8{bottom:623.625000px;}
.y7e{bottom:624.165000px;}
.y19{bottom:633.705000px;}
.y4e{bottom:636.405000px;}
.ya7{bottom:643.605000px;}
.y7d{bottom:652.965000px;}
.y18{bottom:653.505000px;}
.y4d{bottom:656.205000px;}
.ya6{bottom:663.405000px;}
.y7c{bottom:672.765000px;}
.y17{bottom:675.645000px;}
.y4c{bottom:676.005000px;}
.ya5{bottom:683.205000px;}
.y7b{bottom:692.745000px;}
.y16{bottom:695.445000px;}
.y4b{bottom:695.805000px;}
.ya4{bottom:703.005000px;}
.y7a{bottom:712.545000px;}
.y4a{bottom:715.785000px;}
.ya3{bottom:722.805000px;}
.y15{bottom:724.245000px;}
.y79{bottom:732.345000px;}
.y49{bottom:735.585000px;}
.ya2{bottom:742.785000px;}
.y14{bottom:744.045000px;}
.y78{bottom:752.145000px;}
.ya1{bottom:762.585000px;}
.y13{bottom:763.845000px;}
.y48{bottom:764.385000px;}
.y77{bottom:780.945000px;}
.ya0{bottom:782.385000px;}
.y12{bottom:783.825000px;}
.y47{bottom:784.185000px;}
.y76{bottom:800.925000px;}
.y9f{bottom:802.185000px;}
.y11{bottom:803.625000px;}
.y46{bottom:803.985000px;}
.y75{bottom:820.725000px;}
.y9e{bottom:821.985000px;}
.y10{bottom:823.425000px;}
.y45{bottom:823.965000px;}
.y74{bottom:840.525000px;}
.y9d{bottom:841.965000px;}
.yf{bottom:843.225000px;}
.y44{bottom:843.765000px;}
.y73{bottom:860.370000px;}
.y9c{bottom:861.810000px;}
.ye{bottom:863.070000px;}
.y43{bottom:872.610000px;}
.y72{bottom:880.170000px;}
.y9b{bottom:881.610000px;}
.yd{bottom:883.050000px;}
.y42{bottom:892.410000px;}
.y9a{bottom:901.410000px;}
.yc{bottom:905.010000px;}
.y71{bottom:909.150000px;}
.y41{bottom:912.210000px;}
.y99{bottom:921.210000px;}
.yb{bottom:924.990000px;}
.y70{bottom:928.950000px;}
.y40{bottom:932.190000px;}
.y98{bottom:941.190000px;}
.ya{bottom:945.330000px;}
.y6f{bottom:948.750000px;}
.y3f{bottom:951.990000px;}
.y97{bottom:960.990000px;}
.y9{bottom:966.570000px;}
.y6e{bottom:968.550000px;}
.y3e{bottom:980.790000px;}
.y6d{bottom:988.350000px;}
.y8{bottom:989.970000px;}
.y3d{bottom:1000.590000px;}
.y6c{bottom:1008.150000px;}
.y3c{bottom:1020.390000px;}
.y7{bottom:1021.830000px;}
.y6b{bottom:1029.210000px;}
.y3b{bottom:1040.370000px;}
.y6a{bottom:1050.090000px;}
.y5{bottom:1060.170000px;}
.y69{bottom:1069.890000px;}
.y3a{bottom:1079.970000px;}
.y68{bottom:1090.770000px;}
.y4{bottom:1090.950000px;}
.y39{bottom:1099.770000px;}
.y38{bottom:1119.570000px;}
.y3{bottom:1121.730000px;}
.y37{bottom:1139.580000px;}
.y2{bottom:1152.720000px;}
.y36{bottom:1170.000000px;}
.y1{bottom:1186.560000px;}
.y35{bottom:1193.220000px;}
.hb{height:2.826563px;}
.hc{height:41.726953px;}
.h6{height:58.651172px;}
.h7{height:59.614102px;}
.h5{height:60.226875px;}
.h9{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h8{height:67.824844px;}
.ha{height:84.240000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:54.179987px;}
.x2{left:80.999987px;}
.x3{left:108.035987px;}
.x4{left:191.370000px;}
.x5{left:264.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.045333pt;}
.lse{letter-spacing:-0.592000pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.lsd{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.440000pt;}
.lsa{letter-spacing:8.912640pt;}
.ls11{letter-spacing:10.192640pt;}
.lsc{letter-spacing:17.232640pt;}
.lsf{letter-spacing:33.232640pt;}
.ls10{letter-spacing:37.072640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.296640pt;}
.ws2{word-spacing:-21.263360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.674667pt;}
.ws9{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.688000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._7{margin-left:-5.490133pt;}
._8{margin-left:-3.738027pt;}
._f{margin-left:-2.392533pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._9{width:2.006613pt;}
._a{width:3.027840pt;}
._10{width:4.577280pt;}
._15{width:5.488640pt;}
._e{width:6.383360pt;}
._d{width:7.596160pt;}
._11{width:8.531840pt;}
._13{width:9.667840pt;}
._c{width:10.624000pt;}
._14{width:12.136960pt;}
._b{width:15.139200pt;}
._12{width:20.716800pt;}
._17{width:21.997653pt;}
._16{width:23.423147pt;}
.fs3{font-size:2.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:9.600000pt;}
.yb3{bottom:27.200000pt;}
.yb0{bottom:30.880000pt;}
.yb2{bottom:44.800000pt;}
.y6{bottom:53.472000pt;}
.yb1{bottom:62.394667pt;}
.yaf{bottom:78.752000pt;}
.y34{bottom:87.072000pt;}
.y67{bottom:90.912000pt;}
.y33{bottom:104.832000pt;}
.y66{bottom:108.512000pt;}
.y96{bottom:112.672000pt;}
.y32{bottom:122.432000pt;}
.y65{bottom:126.112000pt;}
.y95{bottom:130.272000pt;}
.y31{bottom:140.026667pt;}
.y94{bottom:148.026667pt;}
.y64{bottom:151.866667pt;}
.y30{bottom:157.626667pt;}
.y93{bottom:165.626667pt;}
.y63{bottom:169.466667pt;}
.y2f{bottom:175.226667pt;}
.y92{bottom:183.226667pt;}
.y62{bottom:187.066667pt;}
.y2e{bottom:192.986667pt;}
.y91{bottom:200.826667pt;}
.y61{bottom:204.666667pt;}
.y2d{bottom:210.586667pt;}
.y90{bottom:218.426667pt;}
.y60{bottom:222.266667pt;}
.y2c{bottom:228.186667pt;}
.y8f{bottom:236.186667pt;}
.y5f{bottom:240.026667pt;}
.y2b{bottom:245.786667pt;}
.y8e{bottom:253.826667pt;}
.y5e{bottom:257.666667pt;}
.y2a{bottom:263.426667pt;}
.y8d{bottom:271.426667pt;}
.y29{bottom:281.186667pt;}
.y5d{bottom:283.266667pt;}
.y8c{bottom:289.026667pt;}
.y28{bottom:298.786667pt;}
.y5c{bottom:300.866667pt;}
.y8b{bottom:307.586667pt;}
.y27{bottom:316.386667pt;}
.y5b{bottom:319.426667pt;}
.y8a{bottom:326.306667pt;}
.y26{bottom:333.986667pt;}
.y5a{bottom:337.026667pt;}
.y89{bottom:344.866667pt;}
.y25{bottom:351.586667pt;}
.y59{bottom:354.786667pt;}
.y88{bottom:362.466667pt;}
.y24{bottom:369.346667pt;}
.y58{bottom:373.346667pt;}
.y23{bottom:386.946667pt;}
.y87{bottom:388.066667pt;}
.y57{bottom:398.946667pt;}
.yae{bottom:400.706667pt;}
.y22{bottom:404.546667pt;}
.y86{bottom:405.666667pt;}
.y56{bottom:416.546667pt;}
.y21{bottom:422.146667pt;}
.y85{bottom:423.426667pt;}
.yad{bottom:427.906667pt;}
.y55{bottom:434.146667pt;}
.y20{bottom:439.746667pt;}
.y84{bottom:441.026667pt;}
.y54{bottom:451.906667pt;}
.yac{bottom:455.106667pt;}
.y1f{bottom:457.506667pt;}
.y83{bottom:458.626667pt;}
.y1e{bottom:475.106667pt;}
.y53{bottom:477.506667pt;}
.yab{bottom:482.306667pt;}
.y82{bottom:484.226667pt;}
.y1d{bottom:492.706667pt;}
.y52{bottom:495.106667pt;}
.y81{bottom:501.853333pt;}
.yaa{bottom:509.533333pt;}
.y1c{bottom:510.333333pt;}
.y51{bottom:512.733333pt;}
.y80{bottom:519.613333pt;}
.y1b{bottom:527.933333pt;}
.y50{bottom:530.333333pt;}
.ya9{bottom:536.733333pt;}
.y7f{bottom:537.213333pt;}
.y1a{bottom:545.693333pt;}
.y4f{bottom:548.093333pt;}
.ya8{bottom:554.333333pt;}
.y7e{bottom:554.813333pt;}
.y19{bottom:563.293333pt;}
.y4e{bottom:565.693333pt;}
.ya7{bottom:572.093333pt;}
.y7d{bottom:580.413333pt;}
.y18{bottom:580.893333pt;}
.y4d{bottom:583.293333pt;}
.ya6{bottom:589.693333pt;}
.y7c{bottom:598.013333pt;}
.y17{bottom:600.573333pt;}
.y4c{bottom:600.893333pt;}
.ya5{bottom:607.293333pt;}
.y7b{bottom:615.773333pt;}
.y16{bottom:618.173333pt;}
.y4b{bottom:618.493333pt;}
.ya4{bottom:624.893333pt;}
.y7a{bottom:633.373333pt;}
.y4a{bottom:636.253333pt;}
.ya3{bottom:642.493333pt;}
.y15{bottom:643.773333pt;}
.y79{bottom:650.973333pt;}
.y49{bottom:653.853333pt;}
.ya2{bottom:660.253333pt;}
.y14{bottom:661.373333pt;}
.y78{bottom:668.573333pt;}
.ya1{bottom:677.853333pt;}
.y13{bottom:678.973333pt;}
.y48{bottom:679.453333pt;}
.y77{bottom:694.173333pt;}
.ya0{bottom:695.453333pt;}
.y12{bottom:696.733333pt;}
.y47{bottom:697.053333pt;}
.y76{bottom:711.933333pt;}
.y9f{bottom:713.053333pt;}
.y11{bottom:714.333333pt;}
.y46{bottom:714.653333pt;}
.y75{bottom:729.533333pt;}
.y9e{bottom:730.653333pt;}
.y10{bottom:731.933333pt;}
.y45{bottom:732.413333pt;}
.y74{bottom:747.133333pt;}
.y9d{bottom:748.413333pt;}
.yf{bottom:749.533333pt;}
.y44{bottom:750.013333pt;}
.y73{bottom:764.773333pt;}
.y9c{bottom:766.053333pt;}
.ye{bottom:767.173333pt;}
.y43{bottom:775.653333pt;}
.y72{bottom:782.373333pt;}
.y9b{bottom:783.653333pt;}
.yd{bottom:784.933333pt;}
.y42{bottom:793.253333pt;}
.y9a{bottom:801.253333pt;}
.yc{bottom:804.453333pt;}
.y71{bottom:808.133333pt;}
.y41{bottom:810.853333pt;}
.y99{bottom:818.853333pt;}
.yb{bottom:822.213333pt;}
.y70{bottom:825.733333pt;}
.y40{bottom:828.613333pt;}
.y98{bottom:836.613333pt;}
.ya{bottom:840.293333pt;}
.y6f{bottom:843.333333pt;}
.y3f{bottom:846.213333pt;}
.y97{bottom:854.213333pt;}
.y9{bottom:859.173333pt;}
.y6e{bottom:860.933333pt;}
.y3e{bottom:871.813333pt;}
.y6d{bottom:878.533333pt;}
.y8{bottom:879.973333pt;}
.y3d{bottom:889.413333pt;}
.y6c{bottom:896.133333pt;}
.y3c{bottom:907.013333pt;}
.y7{bottom:908.293333pt;}
.y6b{bottom:914.853333pt;}
.y3b{bottom:924.773333pt;}
.y6a{bottom:933.413333pt;}
.y5{bottom:942.373333pt;}
.y69{bottom:951.013333pt;}
.y3a{bottom:959.973333pt;}
.y68{bottom:969.573333pt;}
.y4{bottom:969.733333pt;}
.y39{bottom:977.573333pt;}
.y38{bottom:995.173333pt;}
.y3{bottom:997.093333pt;}
.y37{bottom:1012.960000pt;}
.y2{bottom:1024.640000pt;}
.y36{bottom:1040.000000pt;}
.y1{bottom:1054.720000pt;}
.y35{bottom:1060.640000pt;}
.hb{height:2.512500pt;}
.hc{height:37.090625pt;}
.h6{height:52.134375pt;}
.h7{height:52.990313pt;}
.h5{height:53.535000pt;}
.h9{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h8{height:60.288750pt;}
.ha{height:74.880000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:48.159988pt;}
.x2{left:71.999988pt;}
.x3{left:96.031988pt;}
.x4{left:170.106667pt;}
.x5{left:235.386667pt;}
}




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