
    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_880b881b5b4229e731b68880.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86d11a8aaeb14fe6725a0cca.woff')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_a0c2a593aebae0b3217dcb29.woff')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_053522db4cfd8c60c407c756.woff')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_7ee37578a8e1f6275ac2d9f4.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ddf00da3ce2a559b6cd7eddf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls14{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.220800px;}
.ls11{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.181200px;}
.ls13{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.864000px;}
.ls1c{letter-spacing:1.008000px;}
.ls18{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.440000px;}
.ls2{letter-spacing:7.380000px;}
.ls3{letter-spacing:8.640000px;}
.lsf{letter-spacing:17.280000px;}
.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:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws12{word-spacing:-15.199920px;}
.ws1{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.220000px;}
.ws11{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.878800px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-8.998320px;}
._10{margin-left:-4.920000px;}
._e{margin-left:-3.842880px;}
._4{margin-left:-2.545920px;}
._2{margin-left:-1.251360px;}
._0{width:1.627920px;}
._7{width:3.200160px;}
._3{width:4.209120px;}
._1{width:6.143040px;}
._b{width:7.448640px;}
._8{width:9.157680px;}
._5{width:10.622880px;}
._6{width:12.340320px;}
._c{width:13.435680px;}
._d{width:14.443680px;}
._9{width:15.993120px;}
._a{width:17.203200px;}
._11{width:19.152000px;}
._12{width:20.215440px;}
._13{width:22.248000px;}
._16{width:24.264000px;}
._17{width:25.351440px;}
._14{width:34.560000px;}
._15{width:35.568000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y71{bottom:16.560000px;}
.y2{bottom:57.780000px;}
.y1{bottom:77.760000px;}
.y6f{bottom:118.800000px;}
.y38{bottom:128.340000px;}
.y5d{bottom:128.880000px;}
.y6e{bottom:139.500000px;}
.y37{bottom:149.040000px;}
.y5c{bottom:149.580000px;}
.y6d{bottom:160.200000px;}
.y36{bottom:169.740000px;}
.y5b{bottom:170.280000px;}
.y6c{bottom:180.900000px;}
.y35{bottom:190.440000px;}
.y5a{bottom:190.980000px;}
.y6b{bottom:201.600000px;}
.y34{bottom:211.140000px;}
.y59{bottom:211.680000px;}
.y6a{bottom:222.300000px;}
.y33{bottom:231.840000px;}
.y58{bottom:232.380000px;}
.y69{bottom:243.000000px;}
.y82{bottom:249.120000px;}
.y32{bottom:252.570000px;}
.y57{bottom:253.110000px;}
.y68{bottom:263.730000px;}
.y81{bottom:269.850000px;}
.y31{bottom:273.270000px;}
.y56{bottom:273.810000px;}
.y67{bottom:284.430000px;}
.y80{bottom:290.550000px;}
.y30{bottom:293.970000px;}
.y55{bottom:294.510000px;}
.y66{bottom:305.130000px;}
.y7f{bottom:311.250000px;}
.y2f{bottom:314.670000px;}
.y54{bottom:315.210000px;}
.y7e{bottom:331.950000px;}
.y2e{bottom:335.370000px;}
.y53{bottom:335.910000px;}
.y65{bottom:340.770000px;}
.y7d{bottom:352.650000px;}
.y2d{bottom:356.070000px;}
.y52{bottom:356.610000px;}
.y64{bottom:361.470000px;}
.y7c{bottom:373.350000px;}
.y2c{bottom:376.770000px;}
.y63{bottom:378.210000px;}
.y51{bottom:392.250000px;}
.y7b{bottom:394.050000px;}
.y2b{bottom:397.470000px;}
.y50{bottom:408.990000px;}
.y7a{bottom:414.750000px;}
.y2a{bottom:418.170000px;}
.y79{bottom:435.450000px;}
.y29{bottom:438.870000px;}
.y78{bottom:455.970000px;}
.y28{bottom:459.570000px;}
.y77{bottom:476.670000px;}
.y27{bottom:480.315000px;}
.y76{bottom:497.415000px;}
.y26{bottom:501.015000px;}
.y75{bottom:518.115000px;}
.y25{bottom:521.715000px;}
.y70{bottom:530.535000px;}
.y74{bottom:538.815000px;}
.y24{bottom:542.415000px;}
.y73{bottom:559.515000px;}
.y23{bottom:562.395000px;}
.y22{bottom:579.495000px;}
.y72{bottom:580.215000px;}
.y62{bottom:582.015000px;}
.y21{bottom:596.775000px;}
.y61{bottom:600.915000px;}
.y20{bottom:614.055000px;}
.y60{bottom:621.615000px;}
.y1f{bottom:631.335000px;}
.y5f{bottom:642.315000px;}
.y1e{bottom:648.615000px;}
.y5e{bottom:663.015000px;}
.y1d{bottom:665.895000px;}
.y1c{bottom:682.995000px;}
.y4f{bottom:683.715000px;}
.y1b{bottom:700.275000px;}
.y4e{bottom:704.445000px;}
.y1a{bottom:717.585000px;}
.y4d{bottom:725.145000px;}
.y19{bottom:734.865000px;}
.y4c{bottom:745.845000px;}
.y18{bottom:752.145000px;}
.y4b{bottom:766.545000px;}
.y17{bottom:769.425000px;}
.y16{bottom:786.525000px;}
.y4a{bottom:787.245000px;}
.y15{bottom:803.805000px;}
.y49{bottom:807.945000px;}
.y14{bottom:821.085000px;}
.y48{bottom:828.645000px;}
.y13{bottom:838.365000px;}
.y47{bottom:849.345000px;}
.y12{bottom:855.645000px;}
.y46{bottom:870.045000px;}
.y11{bottom:872.745000px;}
.y10{bottom:890.025000px;}
.y45{bottom:890.745000px;}
.yf{bottom:907.305000px;}
.y44{bottom:911.445000px;}
.ye{bottom:924.585000px;}
.y43{bottom:932.190000px;}
.yd{bottom:941.730000px;}
.y42{bottom:952.890000px;}
.yc{bottom:958.110000px;}
.y41{bottom:973.590000px;}
.yb{bottom:974.490000px;}
.ya{bottom:990.870000px;}
.y40{bottom:994.290000px;}
.y9{bottom:1007.430000px;}
.y3f{bottom:1014.990000px;}
.y8{bottom:1024.710000px;}
.y3e{bottom:1035.690000px;}
.y7{bottom:1041.990000px;}
.y3d{bottom:1056.390000px;}
.y6{bottom:1059.090000px;}
.y3c{bottom:1077.090000px;}
.y5{bottom:1078.530000px;}
.y3b{bottom:1097.790000px;}
.y4{bottom:1106.070000px;}
.y3a{bottom:1118.490000px;}
.y3{bottom:1133.610000px;}
.y39{bottom:1139.190000px;}
.h9{height:30.600000px;}
.h6{height:42.164648px;}
.h8{height:47.988281px;}
.h7{height:50.800781px;}
.h5{height:50.992031px;}
.h2{height:53.573906px;}
.h3{height:64.546875px;}
.h4{height:67.565039px;}
.h1{height:1262.250000px;}
.h0{height:1262.340000px;}
.w3{width:39.240000px;}
.w4{width:39.996000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.x2{left:84.995987px;}
.x9{left:111.995987px;}
.x3{left:148.895987px;}
.x6{left:387.435000px;}
.x1{left:442.904987px;}
.x8{left:742.650000px;}
.x4{left:786.779987px;}
.x5{left:791.459987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.196267pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.161067pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.896000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls2{letter-spacing:6.560000pt;}
.ls3{letter-spacing:7.680000pt;}
.lsf{letter-spacing:15.360000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws12{word-spacing:-13.511040pt;}
.ws1{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.640000pt;}
.ws11{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.558933pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-7.998507pt;}
._10{margin-left:-4.373333pt;}
._e{margin-left:-3.415893pt;}
._4{margin-left:-2.263040pt;}
._2{margin-left:-1.112320pt;}
._0{width:1.447040pt;}
._7{width:2.844587pt;}
._3{width:3.741440pt;}
._1{width:5.460480pt;}
._b{width:6.621013pt;}
._8{width:8.140160pt;}
._5{width:9.442560pt;}
._6{width:10.969173pt;}
._c{width:11.942827pt;}
._d{width:12.838827pt;}
._9{width:14.216107pt;}
._a{width:15.291733pt;}
._11{width:17.024000pt;}
._12{width:17.969280pt;}
._13{width:19.776000pt;}
._16{width:21.568000pt;}
._17{width:22.534613pt;}
._14{width:30.720000pt;}
._15{width:31.616000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:14.720000pt;}
.y2{bottom:51.360000pt;}
.y1{bottom:69.120000pt;}
.y6f{bottom:105.600000pt;}
.y38{bottom:114.080000pt;}
.y5d{bottom:114.560000pt;}
.y6e{bottom:124.000000pt;}
.y37{bottom:132.480000pt;}
.y5c{bottom:132.960000pt;}
.y6d{bottom:142.400000pt;}
.y36{bottom:150.880000pt;}
.y5b{bottom:151.360000pt;}
.y6c{bottom:160.800000pt;}
.y35{bottom:169.280000pt;}
.y5a{bottom:169.760000pt;}
.y6b{bottom:179.200000pt;}
.y34{bottom:187.680000pt;}
.y59{bottom:188.160000pt;}
.y6a{bottom:197.600000pt;}
.y33{bottom:206.080000pt;}
.y58{bottom:206.560000pt;}
.y69{bottom:216.000000pt;}
.y82{bottom:221.440000pt;}
.y32{bottom:224.506667pt;}
.y57{bottom:224.986667pt;}
.y68{bottom:234.426667pt;}
.y81{bottom:239.866667pt;}
.y31{bottom:242.906667pt;}
.y56{bottom:243.386667pt;}
.y67{bottom:252.826667pt;}
.y80{bottom:258.266667pt;}
.y30{bottom:261.306667pt;}
.y55{bottom:261.786667pt;}
.y66{bottom:271.226667pt;}
.y7f{bottom:276.666667pt;}
.y2f{bottom:279.706667pt;}
.y54{bottom:280.186667pt;}
.y7e{bottom:295.066667pt;}
.y2e{bottom:298.106667pt;}
.y53{bottom:298.586667pt;}
.y65{bottom:302.906667pt;}
.y7d{bottom:313.466667pt;}
.y2d{bottom:316.506667pt;}
.y52{bottom:316.986667pt;}
.y64{bottom:321.306667pt;}
.y7c{bottom:331.866667pt;}
.y2c{bottom:334.906667pt;}
.y63{bottom:336.186667pt;}
.y51{bottom:348.666667pt;}
.y7b{bottom:350.266667pt;}
.y2b{bottom:353.306667pt;}
.y50{bottom:363.546667pt;}
.y7a{bottom:368.666667pt;}
.y2a{bottom:371.706667pt;}
.y79{bottom:387.066667pt;}
.y29{bottom:390.106667pt;}
.y78{bottom:405.306667pt;}
.y28{bottom:408.506667pt;}
.y77{bottom:423.706667pt;}
.y27{bottom:426.946667pt;}
.y76{bottom:442.146667pt;}
.y26{bottom:445.346667pt;}
.y75{bottom:460.546667pt;}
.y25{bottom:463.746667pt;}
.y70{bottom:471.586667pt;}
.y74{bottom:478.946667pt;}
.y24{bottom:482.146667pt;}
.y73{bottom:497.346667pt;}
.y23{bottom:499.906667pt;}
.y22{bottom:515.106667pt;}
.y72{bottom:515.746667pt;}
.y62{bottom:517.346667pt;}
.y21{bottom:530.466667pt;}
.y61{bottom:534.146667pt;}
.y20{bottom:545.826667pt;}
.y60{bottom:552.546667pt;}
.y1f{bottom:561.186667pt;}
.y5f{bottom:570.946667pt;}
.y1e{bottom:576.546667pt;}
.y5e{bottom:589.346667pt;}
.y1d{bottom:591.906667pt;}
.y1c{bottom:607.106667pt;}
.y4f{bottom:607.746667pt;}
.y1b{bottom:622.466667pt;}
.y4e{bottom:626.173333pt;}
.y1a{bottom:637.853333pt;}
.y4d{bottom:644.573333pt;}
.y19{bottom:653.213333pt;}
.y4c{bottom:662.973333pt;}
.y18{bottom:668.573333pt;}
.y4b{bottom:681.373333pt;}
.y17{bottom:683.933333pt;}
.y16{bottom:699.133333pt;}
.y4a{bottom:699.773333pt;}
.y15{bottom:714.493333pt;}
.y49{bottom:718.173333pt;}
.y14{bottom:729.853333pt;}
.y48{bottom:736.573333pt;}
.y13{bottom:745.213333pt;}
.y47{bottom:754.973333pt;}
.y12{bottom:760.573333pt;}
.y46{bottom:773.373333pt;}
.y11{bottom:775.773333pt;}
.y10{bottom:791.133333pt;}
.y45{bottom:791.773333pt;}
.yf{bottom:806.493333pt;}
.y44{bottom:810.173333pt;}
.ye{bottom:821.853333pt;}
.y43{bottom:828.613333pt;}
.yd{bottom:837.093333pt;}
.y42{bottom:847.013333pt;}
.yc{bottom:851.653333pt;}
.y41{bottom:865.413333pt;}
.yb{bottom:866.213333pt;}
.ya{bottom:880.773333pt;}
.y40{bottom:883.813333pt;}
.y9{bottom:895.493333pt;}
.y3f{bottom:902.213333pt;}
.y8{bottom:910.853333pt;}
.y3e{bottom:920.613333pt;}
.y7{bottom:926.213333pt;}
.y3d{bottom:939.013333pt;}
.y6{bottom:941.413333pt;}
.y3c{bottom:957.413333pt;}
.y5{bottom:958.693333pt;}
.y3b{bottom:975.813333pt;}
.y4{bottom:983.173333pt;}
.y3a{bottom:994.213333pt;}
.y3{bottom:1007.653333pt;}
.y39{bottom:1012.613333pt;}
.h9{height:27.200000pt;}
.h6{height:37.479688pt;}
.h8{height:42.656250pt;}
.h7{height:45.156250pt;}
.h5{height:45.326250pt;}
.h2{height:47.621250pt;}
.h3{height:57.375000pt;}
.h4{height:60.057813pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.080000pt;}
.w3{width:34.880000pt;}
.w4{width:35.552000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.x2{left:75.551988pt;}
.x9{left:99.551988pt;}
.x3{left:132.351988pt;}
.x6{left:344.386667pt;}
.x1{left:393.693321pt;}
.x8{left:660.133333pt;}
.x4{left:699.359988pt;}
.x5{left:703.519988pt;}
}




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