
    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_481aa71c34ea1f5109e2169e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a85b105f49e0a9b1a62ed43f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_ebbaba56b93db029addc51de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_ba16de9778d2a67c066aaa96.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.253200px;}
.ls14{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106560px;}
.lsd{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.lsc{letter-spacing:54.666720px;}
.ls5{letter-spacing:84.186720px;}
.ls1{letter-spacing:114.426720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws4{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.686800px;}
.wsa{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws0{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.711360px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.192320px;}
._1{width:1.101600px;}
._2{width:2.693760px;}
._3{width:4.166880px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:89.136000px;}
.y73{bottom:90.216000px;}
.y37{bottom:102.276000px;}
.y7b{bottom:106.416000px;}
.y72{bottom:107.496000px;}
.y36{bottom:119.556000px;}
.y7a{bottom:123.696000px;}
.y71{bottom:124.776000px;}
.y35{bottom:136.836000px;}
.y79{bottom:140.976000px;}
.y70{bottom:142.056000px;}
.y34{bottom:154.110000px;}
.y78{bottom:158.070000px;}
.y6f{bottom:159.330000px;}
.y33{bottom:171.390000px;}
.y77{bottom:175.350000px;}
.y6e{bottom:176.610000px;}
.y32{bottom:188.670000px;}
.y76{bottom:192.630000px;}
.y6d{bottom:193.710000px;}
.y31{bottom:205.770000px;}
.y75{bottom:209.910000px;}
.y6c{bottom:210.990000px;}
.y30{bottom:223.050000px;}
.y74{bottom:227.190000px;}
.y6b{bottom:228.270000px;}
.y2f{bottom:240.330000px;}
.ya9{bottom:244.470000px;}
.y6a{bottom:245.550000px;}
.y2e{bottom:257.610000px;}
.ya8{bottom:261.570000px;}
.y69{bottom:262.830000px;}
.y2d{bottom:274.890000px;}
.ya7{bottom:278.850000px;}
.y68{bottom:279.930000px;}
.y2c{bottom:292.215000px;}
.ya6{bottom:296.175000px;}
.y67{bottom:297.255000px;}
.y2b{bottom:309.315000px;}
.ya5{bottom:313.455000px;}
.y66{bottom:314.535000px;}
.y2a{bottom:326.595000px;}
.ya4{bottom:330.735000px;}
.y65{bottom:331.815000px;}
.y29{bottom:343.875000px;}
.ya3{bottom:348.015000px;}
.y64{bottom:349.095000px;}
.y28{bottom:361.155000px;}
.ya2{bottom:365.115000px;}
.y63{bottom:366.375000px;}
.y27{bottom:378.435000px;}
.ya1{bottom:382.395000px;}
.y62{bottom:383.475000px;}
.y26{bottom:395.715000px;}
.ya0{bottom:399.675000px;}
.y61{bottom:400.755000px;}
.y25{bottom:412.815000px;}
.y9f{bottom:416.955000px;}
.y60{bottom:418.035000px;}
.y24{bottom:430.095000px;}
.y9e{bottom:434.235000px;}
.y5f{bottom:435.315000px;}
.y23{bottom:447.375000px;}
.y9d{bottom:451.335000px;}
.y5e{bottom:452.595000px;}
.y22{bottom:464.655000px;}
.y9c{bottom:468.615000px;}
.y5d{bottom:469.875000px;}
.y21{bottom:481.935000px;}
.y9b{bottom:485.895000px;}
.y5c{bottom:486.975000px;}
.y20{bottom:499.035000px;}
.y9a{bottom:503.175000px;}
.y5b{bottom:504.255000px;}
.y1f{bottom:516.315000px;}
.y99{bottom:520.455000px;}
.y5a{bottom:521.535000px;}
.y1e{bottom:533.595000px;}
.y98{bottom:537.735000px;}
.y59{bottom:538.815000px;}
.y1d{bottom:550.875000px;}
.y97{bottom:554.835000px;}
.y58{bottom:556.095000px;}
.y1c{bottom:568.185000px;}
.y96{bottom:572.145000px;}
.y57{bottom:573.405000px;}
.y1b{bottom:585.465000px;}
.y95{bottom:589.425000px;}
.y56{bottom:590.505000px;}
.y1a{bottom:602.565000px;}
.y94{bottom:606.705000px;}
.y55{bottom:607.785000px;}
.y19{bottom:619.845000px;}
.y93{bottom:623.985000px;}
.y54{bottom:625.065000px;}
.y18{bottom:637.125000px;}
.y92{bottom:641.265000px;}
.y53{bottom:642.345000px;}
.y17{bottom:654.405000px;}
.y91{bottom:658.365000px;}
.y52{bottom:659.625000px;}
.y16{bottom:671.685000px;}
.y90{bottom:675.645000px;}
.y51{bottom:676.725000px;}
.y15{bottom:688.965000px;}
.y8f{bottom:692.925000px;}
.y50{bottom:694.005000px;}
.y14{bottom:706.605000px;}
.y8e{bottom:710.205000px;}
.y4f{bottom:711.285000px;}
.y13{bottom:725.505000px;}
.y8d{bottom:727.485000px;}
.y4e{bottom:728.565000px;}
.y12{bottom:744.585000px;}
.y8c{bottom:744.765000px;}
.y4d{bottom:745.845000px;}
.y8b{bottom:761.865000px;}
.y4c{bottom:763.125000px;}
.y11{bottom:771.585000px;}
.y8a{bottom:779.145000px;}
.y4b{bottom:780.225000px;}
.y89{bottom:796.425000px;}
.y10{bottom:797.505000px;}
.y88{bottom:813.705000px;}
.y4a{bottom:814.785000px;}
.yf{bottom:823.425000px;}
.y87{bottom:830.985000px;}
.y49{bottom:832.065000px;}
.y86{bottom:848.130000px;}
.y48{bottom:849.390000px;}
.ye{bottom:854.610000px;}
.y85{bottom:865.410000px;}
.y47{bottom:866.670000px;}
.y7d{bottom:871.890000px;}
.yd{bottom:875.130000px;}
.y84{bottom:882.690000px;}
.y46{bottom:883.770000px;}
.y83{bottom:899.970000px;}
.y45{bottom:901.050000px;}
.yc{bottom:906.270000px;}
.y82{bottom:917.250000px;}
.y44{bottom:918.330000px;}
.yb{bottom:926.970000px;}
.y81{bottom:934.530000px;}
.y43{bottom:935.610000px;}
.y80{bottom:951.630000px;}
.ya{bottom:952.890000px;}
.y7f{bottom:968.910000px;}
.y42{bottom:970.170000px;}
.y9{bottom:983.850000px;}
.y7e{bottom:986.190000px;}
.y41{bottom:987.270000px;}
.y40{bottom:1004.550000px;}
.y8{bottom:1009.770000px;}
.y3f{bottom:1021.830000px;}
.y7{bottom:1035.690000px;}
.y3e{bottom:1039.110000px;}
.y6{bottom:1048.110000px;}
.y3d{bottom:1056.390000px;}
.y5{bottom:1067.190000px;}
.y3c{bottom:1073.490000px;}
.y4{bottom:1086.090000px;}
.y3b{bottom:1090.770000px;}
.y3{bottom:1104.630000px;}
.y3a{bottom:1108.050000px;}
.y2{bottom:1122.270000px;}
.y39{bottom:1125.330000px;}
.y1{bottom:1141.380000px;}
.y38{bottom:1142.640000px;}
.h6{height:34.855313px;}
.h3{height:42.164648px;}
.h2{height:46.736719px;}
.h7{height:53.573906px;}
.h8{height:55.735312px;}
.h9{height:55.915312px;}
.h5{height:59.383125px;}
.h4{height:61.197188px;}
.ha{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:30.959987px;}
.x1{left:84.959987px;}
.x2{left:138.995987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.225067pt;}
.ls14{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094720pt;}
.lsd{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.lsc{letter-spacing:48.592640pt;}
.ls5{letter-spacing:74.832640pt;}
.ls1{letter-spacing:101.712640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.054933pt;}
.wsa{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.632320pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.979200pt;}
._2{width:2.394453pt;}
._3{width:3.703893pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:79.232000pt;}
.y73{bottom:80.192000pt;}
.y37{bottom:90.912000pt;}
.y7b{bottom:94.592000pt;}
.y72{bottom:95.552000pt;}
.y36{bottom:106.272000pt;}
.y7a{bottom:109.952000pt;}
.y71{bottom:110.912000pt;}
.y35{bottom:121.632000pt;}
.y79{bottom:125.312000pt;}
.y70{bottom:126.272000pt;}
.y34{bottom:136.986667pt;}
.y78{bottom:140.506667pt;}
.y6f{bottom:141.626667pt;}
.y33{bottom:152.346667pt;}
.y77{bottom:155.866667pt;}
.y6e{bottom:156.986667pt;}
.y32{bottom:167.706667pt;}
.y76{bottom:171.226667pt;}
.y6d{bottom:172.186667pt;}
.y31{bottom:182.906667pt;}
.y75{bottom:186.586667pt;}
.y6c{bottom:187.546667pt;}
.y30{bottom:198.266667pt;}
.y74{bottom:201.946667pt;}
.y6b{bottom:202.906667pt;}
.y2f{bottom:213.626667pt;}
.ya9{bottom:217.306667pt;}
.y6a{bottom:218.266667pt;}
.y2e{bottom:228.986667pt;}
.ya8{bottom:232.506667pt;}
.y69{bottom:233.626667pt;}
.y2d{bottom:244.346667pt;}
.ya7{bottom:247.866667pt;}
.y68{bottom:248.826667pt;}
.y2c{bottom:259.746667pt;}
.ya6{bottom:263.266667pt;}
.y67{bottom:264.226667pt;}
.y2b{bottom:274.946667pt;}
.ya5{bottom:278.626667pt;}
.y66{bottom:279.586667pt;}
.y2a{bottom:290.306667pt;}
.ya4{bottom:293.986667pt;}
.y65{bottom:294.946667pt;}
.y29{bottom:305.666667pt;}
.ya3{bottom:309.346667pt;}
.y64{bottom:310.306667pt;}
.y28{bottom:321.026667pt;}
.ya2{bottom:324.546667pt;}
.y63{bottom:325.666667pt;}
.y27{bottom:336.386667pt;}
.ya1{bottom:339.906667pt;}
.y62{bottom:340.866667pt;}
.y26{bottom:351.746667pt;}
.ya0{bottom:355.266667pt;}
.y61{bottom:356.226667pt;}
.y25{bottom:366.946667pt;}
.y9f{bottom:370.626667pt;}
.y60{bottom:371.586667pt;}
.y24{bottom:382.306667pt;}
.y9e{bottom:385.986667pt;}
.y5f{bottom:386.946667pt;}
.y23{bottom:397.666667pt;}
.y9d{bottom:401.186667pt;}
.y5e{bottom:402.306667pt;}
.y22{bottom:413.026667pt;}
.y9c{bottom:416.546667pt;}
.y5d{bottom:417.666667pt;}
.y21{bottom:428.386667pt;}
.y9b{bottom:431.906667pt;}
.y5c{bottom:432.866667pt;}
.y20{bottom:443.586667pt;}
.y9a{bottom:447.266667pt;}
.y5b{bottom:448.226667pt;}
.y1f{bottom:458.946667pt;}
.y99{bottom:462.626667pt;}
.y5a{bottom:463.586667pt;}
.y1e{bottom:474.306667pt;}
.y98{bottom:477.986667pt;}
.y59{bottom:478.946667pt;}
.y1d{bottom:489.666667pt;}
.y97{bottom:493.186667pt;}
.y58{bottom:494.306667pt;}
.y1c{bottom:505.053333pt;}
.y96{bottom:508.573333pt;}
.y57{bottom:509.693333pt;}
.y1b{bottom:520.413333pt;}
.y95{bottom:523.933333pt;}
.y56{bottom:524.893333pt;}
.y1a{bottom:535.613333pt;}
.y94{bottom:539.293333pt;}
.y55{bottom:540.253333pt;}
.y19{bottom:550.973333pt;}
.y93{bottom:554.653333pt;}
.y54{bottom:555.613333pt;}
.y18{bottom:566.333333pt;}
.y92{bottom:570.013333pt;}
.y53{bottom:570.973333pt;}
.y17{bottom:581.693333pt;}
.y91{bottom:585.213333pt;}
.y52{bottom:586.333333pt;}
.y16{bottom:597.053333pt;}
.y90{bottom:600.573333pt;}
.y51{bottom:601.533333pt;}
.y15{bottom:612.413333pt;}
.y8f{bottom:615.933333pt;}
.y50{bottom:616.893333pt;}
.y14{bottom:628.093333pt;}
.y8e{bottom:631.293333pt;}
.y4f{bottom:632.253333pt;}
.y13{bottom:644.893333pt;}
.y8d{bottom:646.653333pt;}
.y4e{bottom:647.613333pt;}
.y12{bottom:661.853333pt;}
.y8c{bottom:662.013333pt;}
.y4d{bottom:662.973333pt;}
.y8b{bottom:677.213333pt;}
.y4c{bottom:678.333333pt;}
.y11{bottom:685.853333pt;}
.y8a{bottom:692.573333pt;}
.y4b{bottom:693.533333pt;}
.y89{bottom:707.933333pt;}
.y10{bottom:708.893333pt;}
.y88{bottom:723.293333pt;}
.y4a{bottom:724.253333pt;}
.yf{bottom:731.933333pt;}
.y87{bottom:738.653333pt;}
.y49{bottom:739.613333pt;}
.y86{bottom:753.893333pt;}
.y48{bottom:755.013333pt;}
.ye{bottom:759.653333pt;}
.y85{bottom:769.253333pt;}
.y47{bottom:770.373333pt;}
.y7d{bottom:775.013333pt;}
.yd{bottom:777.893333pt;}
.y84{bottom:784.613333pt;}
.y46{bottom:785.573333pt;}
.y83{bottom:799.973333pt;}
.y45{bottom:800.933333pt;}
.yc{bottom:805.573333pt;}
.y82{bottom:815.333333pt;}
.y44{bottom:816.293333pt;}
.yb{bottom:823.973333pt;}
.y81{bottom:830.693333pt;}
.y43{bottom:831.653333pt;}
.y80{bottom:845.893333pt;}
.ya{bottom:847.013333pt;}
.y7f{bottom:861.253333pt;}
.y42{bottom:862.373333pt;}
.y9{bottom:874.533333pt;}
.y7e{bottom:876.613333pt;}
.y41{bottom:877.573333pt;}
.y40{bottom:892.933333pt;}
.y8{bottom:897.573333pt;}
.y3f{bottom:908.293333pt;}
.y7{bottom:920.613333pt;}
.y3e{bottom:923.653333pt;}
.y6{bottom:931.653333pt;}
.y3d{bottom:939.013333pt;}
.y5{bottom:948.613333pt;}
.y3c{bottom:954.213333pt;}
.y4{bottom:965.413333pt;}
.y3b{bottom:969.573333pt;}
.y3{bottom:981.893333pt;}
.y3a{bottom:984.933333pt;}
.y2{bottom:997.573333pt;}
.y39{bottom:1000.293333pt;}
.y1{bottom:1014.560000pt;}
.y38{bottom:1015.680000pt;}
.h6{height:30.982500pt;}
.h3{height:37.479688pt;}
.h2{height:41.543750pt;}
.h7{height:47.621250pt;}
.h8{height:49.542500pt;}
.h9{height:49.702500pt;}
.h5{height:52.785000pt;}
.h4{height:54.397500pt;}
.ha{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:27.519988pt;}
.x1{left:75.519988pt;}
.x2{left:123.551988pt;}
}




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