
    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_ccbdcb1d0e90ce3a391ab21b.woff2')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_31f5a4aded1825902b57a883.woff2')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_484e9aac1bb590b04fef1321.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_004f86456465c3581f56e500.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_346d2e4ab74c03f3e8346188.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e8921ace2cdc08812c4bb099.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_da6f261d862eae0fa9a2bf05.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c2e4902c438d863391be8a84.woff2')format("woff");}.ff9{font-family:ff9;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;}
.lsa{letter-spacing:-0.900000px;}
.ls2{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.129600px;}
.ls4{letter-spacing:0.252720px;}
.ls3{letter-spacing:0.341400px;}
.lsc{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.480000px;}
.ls8{letter-spacing:45.701280px;}
.ls6{letter-spacing:64.026720px;}
.lsd{letter-spacing:146.681280px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws2{word-spacing:-21.312720px;}
.ws5{word-spacing:-21.097440px;}
.ws4{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:0.000000px;}
._23{margin-left:-6.634320px;}
._1f{margin-left:-5.606640px;}
._14{margin-left:-4.539600px;}
._c{margin-left:-3.453840px;}
._0{margin-left:-2.140800px;}
._2{margin-left:-1.133280px;}
._1{width:1.158720px;}
._5{width:2.442960px;}
._6{width:3.572880px;}
._d{width:5.302320px;}
._b{width:6.963120px;}
._12{width:8.307120px;}
._17{width:9.519120px;}
._18{width:10.716480px;}
._19{width:11.876640px;}
._13{width:13.765680px;}
._11{width:14.871120px;}
._10{width:16.293120px;}
._f{width:17.879520px;}
._e{width:19.329120px;}
._a{width:22.716000px;}
._1d{width:23.755680px;}
._21{width:26.956800px;}
._22{width:28.086720px;}
._20{width:30.178800px;}
._9{width:31.392720px;}
._7{width:32.432400px;}
._8{width:34.024800px;}
._1e{width:35.633520px;}
._1b{width:36.644400px;}
._1c{width:37.858560px;}
._1a{width:39.845520px;}
._24{width:40.856400px;}
._16{width:42.962400px;}
._15{width:44.682000px;}
._3{width:138.271200px;}
._4{width:194.400000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,0);}
.fs3{font-size:5.760000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y2{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y6{bottom:6.300000px;}
.yc{bottom:11.700000px;}
.y4{bottom:13.140000px;}
.yb{bottom:27.720000px;}
.y5{bottom:36.360000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.180000px;}
.y93{bottom:91.080000px;}
.y6e{bottom:93.420000px;}
.y46{bottom:105.120000px;}
.y29{bottom:123.156000px;}
.y6d{bottom:129.816000px;}
.y56{bottom:135.396000px;}
.y45{bottom:141.336000px;}
.y78{bottom:153.210000px;}
.y28{bottom:159.330000px;}
.y92{bottom:159.510000px;}
.y6c{bottom:165.990000px;}
.y55{bottom:171.570000px;}
.y44{bottom:177.510000px;}
.y77{bottom:189.570000px;}
.y27{bottom:195.510000px;}
.y91{bottom:195.690000px;}
.y6b{bottom:202.170000px;}
.y54{bottom:207.750000px;}
.y43{bottom:213.690000px;}
.y76{bottom:227.190000px;}
.y26{bottom:231.690000px;}
.y6a{bottom:238.350000px;}
.y53{bottom:243.930000px;}
.y90{bottom:246.810000px;}
.y42{bottom:250.050000px;}
.y75{bottom:263.550000px;}
.y25{bottom:268.050000px;}
.y69{bottom:274.170000px;}
.y52{bottom:279.750000px;}
.y8f{bottom:283.170000px;}
.y41{bottom:286.230000px;}
.y74{bottom:301.170000px;}
.y24{bottom:304.230000px;}
.y51{bottom:319.350000px;}
.y8e{bottom:320.790000px;}
.y40{bottom:322.410000px;}
.y68{bottom:328.890000px;}
.y73{bottom:337.530000px;}
.y23{bottom:340.410000px;}
.y50{bottom:355.710000px;}
.y8d{bottom:357.150000px;}
.y3f{bottom:358.590000px;}
.y72{bottom:375.195000px;}
.y22{bottom:376.635000px;}
.y67{bottom:380.055000px;}
.y4f{bottom:391.935000px;}
.y8c{bottom:394.815000px;}
.y3e{bottom:394.995000px;}
.y71{bottom:411.555000px;}
.y21{bottom:412.995000px;}
.y66{bottom:416.415000px;}
.y4e{bottom:428.115000px;}
.y3d{bottom:431.175000px;}
.y70{bottom:448.815000px;}
.y20{bottom:449.175000px;}
.y65{bottom:454.035000px;}
.y4d{bottom:464.295000px;}
.y3c{bottom:467.355000px;}
.y8b{bottom:468.795000px;}
.y1f{bottom:485.355000px;}
.y64{bottom:490.215000px;}
.y4c{bottom:500.655000px;}
.y3b{bottom:503.535000px;}
.y8a{bottom:504.975000px;}
.y1e{bottom:521.535000px;}
.y63{bottom:526.575000px;}
.y4b{bottom:536.835000px;}
.y3a{bottom:539.715000px;}
.y89{bottom:542.775000px;}
.y1d{bottom:557.715000px;}
.y62{bottom:564.195000px;}
.y4a{bottom:573.015000px;}
.y39{bottom:576.075000px;}
.y88{bottom:578.955000px;}
.y1c{bottom:594.075000px;}
.y61{bottom:600.555000px;}
.y49{bottom:608.835000px;}
.y38{bottom:612.255000px;}
.y87{bottom:616.755000px;}
.y1b{bottom:630.285000px;}
.y60{bottom:638.205000px;}
.y48{bottom:648.105000px;}
.y37{bottom:648.465000px;}
.y86{bottom:652.965000px;}
.y1a{bottom:666.465000px;}
.y5f{bottom:674.385000px;}
.y36{bottom:684.645000px;}
.y85{bottom:690.765000px;}
.y19{bottom:702.645000px;}
.y5e{bottom:710.745000px;}
.y35{bottom:721.005000px;}
.y84{bottom:728.385000px;}
.y18{bottom:739.005000px;}
.y5d{bottom:748.365000px;}
.y34{bottom:757.185000px;}
.y83{bottom:766.185000px;}
.y17{bottom:775.185000px;}
.y5c{bottom:784.185000px;}
.y33{bottom:793.365000px;}
.y82{bottom:803.805000px;}
.y16{bottom:811.365000px;}
.y5b{bottom:823.785000px;}
.y32{bottom:829.545000px;}
.y81{bottom:840.165000px;}
.y15{bottom:847.545000px;}
.y5a{bottom:859.965000px;}
.y31{bottom:865.905000px;}
.y80{bottom:877.785000px;}
.y14{bottom:883.950000px;}
.y30{bottom:902.130000px;}
.y59{bottom:911.310000px;}
.y7f{bottom:914.190000px;}
.y13{bottom:920.130000px;}
.y2f{bottom:938.310000px;}
.y7e{bottom:951.810000px;}
.y12{bottom:955.950000px;}
.y47{bottom:956.310000px;}
.y58{bottom:962.610000px;}
.y2e{bottom:974.490000px;}
.y7d{bottom:987.990000px;}
.y11{bottom:992.490000px;}
.y2d{bottom:1010.670000px;}
.y57{bottom:1013.730000px;}
.y7c{bottom:1025.790000px;}
.y10{bottom:1028.670000px;}
.y2c{bottom:1046.670000px;}
.y7b{bottom:1061.970000px;}
.y6f{bottom:1064.670000px;}
.yf{bottom:1065.030000px;}
.y7a{bottom:1099.770000px;}
.ye{bottom:1100.850000px;}
.y2b{bottom:1101.210000px;}
.y79{bottom:1135.950000px;}
.yd{bottom:1137.030000px;}
.y2a{bottom:1137.390000px;}
.y3{bottom:1180.080000px;}
.y1{bottom:1193.040000px;}
.y8{bottom:1193.760000px;}
.y7{bottom:1209.060000px;}
.h9{height:5.653125px;}
.h2{height:15.840000px;}
.h5{height:23.760000px;}
.ha{height:28.620000px;}
.h4{height:29.700000px;}
.h7{height:58.651172px;}
.he{height:58.819922px;}
.h8{height:65.010937px;}
.h3{height:66.757500px;}
.h6{height:70.664062px;}
.hd{height:82.635820px;}
.hc{height:82.676953px;}
.hb{height:84.898125px;}
.hf{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:121.500000px;}
.w3{width:221.250000px;}
.w4{width:484.275000px;}
.w2{width:518.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.xf{left:83.700000px;}
.x7{left:92.700000px;}
.x5{left:127.655987px;}
.x1{left:144.036000px;}
.xb{left:146.195987px;}
.x4{left:149.616000px;}
.xe{left:154.649987px;}
.x8{left:178.409987px;}
.xd{left:180.749987px;}
.x9{left:230.429987px;}
.x10{left:234.749987px;}
.xc{left:337.754987px;}
.xa{left:407.594987px;}
.x3{left:593.205000px;}
.x6{left:659.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.115200pt;}
.ls4{letter-spacing:0.224640pt;}
.ls3{letter-spacing:0.303467pt;}
.lsc{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls8{letter-spacing:40.623360pt;}
.ls6{letter-spacing:56.912640pt;}
.lsd{letter-spacing:130.383360pt;}
.ws3{word-spacing:-53.120000pt;}
.ws2{word-spacing:-18.944640pt;}
.ws5{word-spacing:-18.753280pt;}
.ws4{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:0.000000pt;}
._23{margin-left:-5.897173pt;}
._1f{margin-left:-4.983680pt;}
._14{margin-left:-4.035200pt;}
._c{margin-left:-3.070080pt;}
._0{margin-left:-1.902933pt;}
._2{margin-left:-1.007360pt;}
._1{width:1.029973pt;}
._5{width:2.171520pt;}
._6{width:3.175893pt;}
._d{width:4.713173pt;}
._b{width:6.189440pt;}
._12{width:7.384107pt;}
._17{width:8.461440pt;}
._18{width:9.525760pt;}
._19{width:10.557013pt;}
._13{width:12.236160pt;}
._11{width:13.218773pt;}
._10{width:14.482773pt;}
._f{width:15.892907pt;}
._e{width:17.181440pt;}
._a{width:20.192000pt;}
._1d{width:21.116160pt;}
._21{width:23.961600pt;}
._22{width:24.965973pt;}
._20{width:26.825600pt;}
._9{width:27.904640pt;}
._7{width:28.828800pt;}
._8{width:30.244267pt;}
._1e{width:31.674240pt;}
._1b{width:32.572800pt;}
._1c{width:33.652053pt;}
._1a{width:35.418240pt;}
._24{width:36.316800pt;}
._16{width:38.188800pt;}
._15{width:39.717333pt;}
._3{width:122.907733pt;}
._4{width:172.800000pt;}
.fs3{font-size:5.120000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y2{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:5.600000pt;}
.yc{bottom:10.400000pt;}
.y4{bottom:11.680000pt;}
.yb{bottom:24.640000pt;}
.y5{bottom:32.320000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.160000pt;}
.y93{bottom:80.960000pt;}
.y6e{bottom:83.040000pt;}
.y46{bottom:93.440000pt;}
.y29{bottom:109.472000pt;}
.y6d{bottom:115.392000pt;}
.y56{bottom:120.352000pt;}
.y45{bottom:125.632000pt;}
.y78{bottom:136.186667pt;}
.y28{bottom:141.626667pt;}
.y92{bottom:141.786667pt;}
.y6c{bottom:147.546667pt;}
.y55{bottom:152.506667pt;}
.y44{bottom:157.786667pt;}
.y77{bottom:168.506667pt;}
.y27{bottom:173.786667pt;}
.y91{bottom:173.946667pt;}
.y6b{bottom:179.706667pt;}
.y54{bottom:184.666667pt;}
.y43{bottom:189.946667pt;}
.y76{bottom:201.946667pt;}
.y26{bottom:205.946667pt;}
.y6a{bottom:211.866667pt;}
.y53{bottom:216.826667pt;}
.y90{bottom:219.386667pt;}
.y42{bottom:222.266667pt;}
.y75{bottom:234.266667pt;}
.y25{bottom:238.266667pt;}
.y69{bottom:243.706667pt;}
.y52{bottom:248.666667pt;}
.y8f{bottom:251.706667pt;}
.y41{bottom:254.426667pt;}
.y74{bottom:267.706667pt;}
.y24{bottom:270.426667pt;}
.y51{bottom:283.866667pt;}
.y8e{bottom:285.146667pt;}
.y40{bottom:286.586667pt;}
.y68{bottom:292.346667pt;}
.y73{bottom:300.026667pt;}
.y23{bottom:302.586667pt;}
.y50{bottom:316.186667pt;}
.y8d{bottom:317.466667pt;}
.y3f{bottom:318.746667pt;}
.y72{bottom:333.506667pt;}
.y22{bottom:334.786667pt;}
.y67{bottom:337.826667pt;}
.y4f{bottom:348.386667pt;}
.y8c{bottom:350.946667pt;}
.y3e{bottom:351.106667pt;}
.y71{bottom:365.826667pt;}
.y21{bottom:367.106667pt;}
.y66{bottom:370.146667pt;}
.y4e{bottom:380.546667pt;}
.y3d{bottom:383.266667pt;}
.y70{bottom:398.946667pt;}
.y20{bottom:399.266667pt;}
.y65{bottom:403.586667pt;}
.y4d{bottom:412.706667pt;}
.y3c{bottom:415.426667pt;}
.y8b{bottom:416.706667pt;}
.y1f{bottom:431.426667pt;}
.y64{bottom:435.746667pt;}
.y4c{bottom:445.026667pt;}
.y3b{bottom:447.586667pt;}
.y8a{bottom:448.866667pt;}
.y1e{bottom:463.586667pt;}
.y63{bottom:468.066667pt;}
.y4b{bottom:477.186667pt;}
.y3a{bottom:479.746667pt;}
.y89{bottom:482.466667pt;}
.y1d{bottom:495.746667pt;}
.y62{bottom:501.506667pt;}
.y4a{bottom:509.346667pt;}
.y39{bottom:512.066667pt;}
.y88{bottom:514.626667pt;}
.y1c{bottom:528.066667pt;}
.y61{bottom:533.826667pt;}
.y49{bottom:541.186667pt;}
.y38{bottom:544.226667pt;}
.y87{bottom:548.226667pt;}
.y1b{bottom:560.253333pt;}
.y60{bottom:567.293333pt;}
.y48{bottom:576.093333pt;}
.y37{bottom:576.413333pt;}
.y86{bottom:580.413333pt;}
.y1a{bottom:592.413333pt;}
.y5f{bottom:599.453333pt;}
.y36{bottom:608.573333pt;}
.y85{bottom:614.013333pt;}
.y19{bottom:624.573333pt;}
.y5e{bottom:631.773333pt;}
.y35{bottom:640.893333pt;}
.y84{bottom:647.453333pt;}
.y18{bottom:656.893333pt;}
.y5d{bottom:665.213333pt;}
.y34{bottom:673.053333pt;}
.y83{bottom:681.053333pt;}
.y17{bottom:689.053333pt;}
.y5c{bottom:697.053333pt;}
.y33{bottom:705.213333pt;}
.y82{bottom:714.493333pt;}
.y16{bottom:721.213333pt;}
.y5b{bottom:732.253333pt;}
.y32{bottom:737.373333pt;}
.y81{bottom:746.813333pt;}
.y15{bottom:753.373333pt;}
.y5a{bottom:764.413333pt;}
.y31{bottom:769.693333pt;}
.y80{bottom:780.253333pt;}
.y14{bottom:785.733333pt;}
.y30{bottom:801.893333pt;}
.y59{bottom:810.053333pt;}
.y7f{bottom:812.613333pt;}
.y13{bottom:817.893333pt;}
.y2f{bottom:834.053333pt;}
.y7e{bottom:846.053333pt;}
.y12{bottom:849.733333pt;}
.y47{bottom:850.053333pt;}
.y58{bottom:855.653333pt;}
.y2e{bottom:866.213333pt;}
.y7d{bottom:878.213333pt;}
.y11{bottom:882.213333pt;}
.y2d{bottom:898.373333pt;}
.y57{bottom:901.093333pt;}
.y7c{bottom:911.813333pt;}
.y10{bottom:914.373333pt;}
.y2c{bottom:930.373333pt;}
.y7b{bottom:943.973333pt;}
.y6f{bottom:946.373333pt;}
.yf{bottom:946.693333pt;}
.y7a{bottom:977.573333pt;}
.ye{bottom:978.533333pt;}
.y2b{bottom:978.853333pt;}
.y79{bottom:1009.733333pt;}
.yd{bottom:1010.693333pt;}
.y2a{bottom:1011.013333pt;}
.y3{bottom:1048.960000pt;}
.y1{bottom:1060.480000pt;}
.y8{bottom:1061.120000pt;}
.y7{bottom:1074.720000pt;}
.h9{height:5.025000pt;}
.h2{height:14.080000pt;}
.h5{height:21.120000pt;}
.ha{height:25.440000pt;}
.h4{height:26.400000pt;}
.h7{height:52.134375pt;}
.he{height:52.284375pt;}
.h8{height:57.787500pt;}
.h3{height:59.340000pt;}
.h6{height:62.812500pt;}
.hd{height:73.454062pt;}
.hc{height:73.490625pt;}
.hb{height:75.465000pt;}
.hf{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:108.000000pt;}
.w3{width:196.666667pt;}
.w4{width:430.466667pt;}
.w2{width:460.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.xf{left:74.400000pt;}
.x7{left:82.400000pt;}
.x5{left:113.471988pt;}
.x1{left:128.032000pt;}
.xb{left:129.951988pt;}
.x4{left:132.992000pt;}
.xe{left:137.466655pt;}
.x8{left:158.586655pt;}
.xd{left:160.666655pt;}
.x9{left:204.826655pt;}
.x10{left:208.666655pt;}
.xc{left:300.226655pt;}
.xa{left:362.306655pt;}
.x3{left:527.293333pt;}
.x6{left:586.533333pt;}
}




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