
    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_74108df0bfd37b867ac4db1e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b6ef07251c51958d83db2f04.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3c4a0a94d87128406251dc10.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9b4ffe0dc7802cadcfceb5f7.woff')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-1.458000px;}
.ls9{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.466800px;}
.lsa{letter-spacing:1.080000px;}
.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:-19.602000px;}
.ws0{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.144000px;}
.ws9{word-spacing:-16.020000px;}
.ws7{word-spacing:-15.406800px;}
.ws8{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws5{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-4.072320px;}
._9{margin-left:-3.024000px;}
._0{margin-left:-1.080000px;}
._1{width:1.056000px;}
._5{width:2.174160px;}
._a{width:3.537840px;}
._b{width:4.805280px;}
._7{width:6.552000px;}
._8{width:7.848000px;}
._f{width:9.684000px;}
._10{width:10.836240px;}
._11{width:12.250800px;}
._3{width:22.320000px;}
._e{width:40.284000px;}
._c{width:53.485200px;}
._d{width:54.768240px;}
._4{width:198.000000px;}
._6{width:846.120000px;}
._2{width:2122.140000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.580000px;}
.yf{bottom:5.625000px;}
.y2a{bottom:12.060000px;}
.y1f{bottom:12.240000px;}
.y26{bottom:12.270000px;}
.y6{bottom:14.220000px;}
.y3c{bottom:16.560000px;}
.y32{bottom:16.740000px;}
.y59{bottom:16.770000px;}
.y42{bottom:20.520000px;}
.y5d{bottom:20.880000px;}
.y36{bottom:25.380000px;}
.y21{bottom:27.000000px;}
.y48{bottom:29.340000px;}
.y2c{bottom:29.520000px;}
.y27{bottom:29.550000px;}
.y55{bottom:29.565000px;}
.y3b{bottom:33.840000px;}
.y31{bottom:34.020000px;}
.y58{bottom:34.050000px;}
.y19{bottom:34.920000px;}
.y4e{bottom:37.620000px;}
.y29{bottom:38.340000px;}
.y38{bottom:38.370000px;}
.y30{bottom:38.520000px;}
.y25{bottom:38.550000px;}
.y1e{bottom:39.240000px;}
.y18{bottom:42.480000px;}
.y35{bottom:42.660000px;}
.y39{bottom:42.690000px;}
.y20{bottom:44.280000px;}
.y41{bottom:46.620000px;}
.y2b{bottom:46.800000px;}
.y54{bottom:46.845000px;}
.y5c{bottom:47.160000px;}
.y44{bottom:51.300000px;}
.y47{bottom:55.620000px;}
.y37{bottom:55.650000px;}
.y34{bottom:55.800000px;}
.y24{bottom:55.830000px;}
.y1d{bottom:59.220000px;}
.y5{bottom:63.900000px;}
.y2e{bottom:67.350000px;}
.y4{bottom:68.220000px;}
.y46{bottom:72.900000px;}
.y53{bottom:72.945000px;}
.y23{bottom:73.110000px;}
.y3f{bottom:73.125000px;}
.y1b{bottom:73.260000px;}
.y4d{bottom:81.225000px;}
.y52{bottom:90.225000px;}
.y3e{bottom:90.405000px;}
.y16{bottom:94.860000px;}
.y3{bottom:99.180000px;}
.y2d{bottom:118.800000px;}
.y15{bottom:125.820000px;}
.y57{bottom:140.400000px;}
.y76{bottom:155.910000px;}
.y14{bottom:157.005000px;}
.y4a{bottom:157.710000px;}
.y75{bottom:173.190000px;}
.y13{bottom:187.965000px;}
.y74{bottom:190.470000px;}
.y33{bottom:198.210000px;}
.y56{bottom:202.710000px;}
.y73{bottom:207.750000px;}
.y12{bottom:219.105000px;}
.y72{bottom:225.030000px;}
.y71{bottom:242.130000px;}
.y49{bottom:254.370000px;}
.y70{bottom:259.410000px;}
.y6f{bottom:276.690000px;}
.y2f{bottom:277.770000px;}
.y6e{bottom:293.970000px;}
.y10{bottom:297.930000px;}
.y51{bottom:299.370000px;}
.y6d{bottom:311.250000px;}
.ye{bottom:315.390000px;}
.y6c{bottom:328.395000px;}
.y45{bottom:333.975000px;}
.yd{bottom:338.475000px;}
.y1a{bottom:340.095000px;}
.y6b{bottom:345.675000px;}
.yc{bottom:361.695000px;}
.y6a{bottom:362.955000px;}
.y69{bottom:380.235000px;}
.ya{bottom:384.735000px;}
.y68{bottom:397.515000px;}
.y8c{bottom:397.875000px;}
.y28{bottom:410.655000px;}
.y50{bottom:413.355000px;}
.y67{bottom:414.795000px;}
.y8b{bottom:415.155000px;}
.y9{bottom:425.415000px;}
.y43{bottom:430.635000px;}
.y66{bottom:431.895000px;}
.y8a{bottom:432.435000px;}
.y65{bottom:449.175000px;}
.y89{bottom:449.715000px;}
.y8{bottom:456.375000px;}
.y64{bottom:466.455000px;}
.y88{bottom:466.995000px;}
.y22{bottom:472.755000px;}
.y63{bottom:483.765000px;}
.y87{bottom:484.125000px;}
.y11{bottom:491.505000px;}
.y4f{bottom:492.945000px;}
.y62{bottom:501.045000px;}
.y86{bottom:501.405000px;}
.y40{bottom:510.225000px;}
.y61{bottom:518.325000px;}
.y85{bottom:518.685000px;}
.y60{bottom:535.425000px;}
.y84{bottom:535.965000px;}
.y83{bottom:553.245000px;}
.y5f{bottom:553.425000px;}
.y1c{bottom:569.625000px;}
.y82{bottom:570.525000px;}
.y5e{bottom:570.885000px;}
.y4c{bottom:572.505000px;}
.y81{bottom:587.625000px;}
.y3d{bottom:597.885000px;}
.y80{bottom:604.905000px;}
.y7f{bottom:622.185000px;}
.y7e{bottom:639.465000px;}
.y5b{bottom:650.490000px;}
.y17{bottom:652.650000px;}
.y7d{bottom:656.790000px;}
.y7c{bottom:673.890000px;}
.y4b{bottom:677.490000px;}
.y7b{bottom:691.170000px;}
.y7a{bottom:708.450000px;}
.y3a{bottom:712.050000px;}
.y79{bottom:725.730000px;}
.y5a{bottom:730.050000px;}
.y78{bottom:743.010000px;}
.y7{bottom:751.830000px;}
.y77{bottom:760.290000px;}
.y2{bottom:788.550000px;}
.y1{bottom:822.240000px;}
.h5{height:22.320000px;}
.h6{height:22.356000px;}
.h3{height:30.960000px;}
.h20{height:43.380000px;}
.hd{height:58.651172px;}
.h11{height:59.038594px;}
.h17{height:59.218594px;}
.h12{height:60.226875px;}
.h13{height:61.380000px;}
.h1f{height:61.416000px;}
.h16{height:61.596000px;}
.hf{height:65.010937px;}
.h14{height:69.660000px;}
.h8{height:70.628906px;}
.h2{height:70.664062px;}
.he{height:74.704922px;}
.h21{height:78.660000px;}
.h19{height:78.696000px;}
.h18{height:78.840000px;}
.h1c{height:78.876000px;}
.hc{height:82.116000px;}
.ha{height:82.676953px;}
.h9{height:84.960000px;}
.h1b{height:86.940000px;}
.h4{height:93.983203px;}
.h1d{height:95.940000px;}
.h10{height:96.156000px;}
.h1e{height:104.256000px;}
.h1a{height:113.256000px;}
.h15{height:220.575000px;}
.h7{height:235.830000px;}
.hb{height:311.655000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w3{width:9.000000px;}
.w4{width:46.656000px;}
.w7{width:59.076000px;}
.w8{width:173.700000px;}
.w5{width:632.415000px;}
.w9{width:796.650000px;}
.w6{width:1047.780000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x7{left:10.836000px;}
.xa{left:34.560000px;}
.x8{left:37.296000px;}
.x1{left:107.999981px;}
.x6{left:110.700000px;}
.xd{left:129.275981px;}
.x2{left:135.035981px;}
.x5{left:156.090000px;}
.x9{left:167.790000px;}
.xc{left:329.835000px;}
.xb{left:342.390000px;}
.x3{left:1146.060000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-1.296000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.414933pt;}
.lsa{letter-spacing:0.960000pt;}
.ws3{word-spacing:-17.424000pt;}
.ws0{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws9{word-spacing:-14.240000pt;}
.ws7{word-spacing:-13.694933pt;}
.ws8{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws5{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-3.619840pt;}
._9{margin-left:-2.688000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.938667pt;}
._5{width:1.932587pt;}
._a{width:3.144747pt;}
._b{width:4.271360pt;}
._7{width:5.824000pt;}
._8{width:6.976000pt;}
._f{width:8.608000pt;}
._10{width:9.632213pt;}
._11{width:10.889600pt;}
._3{width:19.840000pt;}
._e{width:35.808000pt;}
._c{width:47.542400pt;}
._d{width:48.682880pt;}
._4{width:176.000000pt;}
._6{width:752.106667pt;}
._2{width:1886.346667pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.960000pt;}
.yf{bottom:5.000000pt;}
.y2a{bottom:10.720000pt;}
.y1f{bottom:10.880000pt;}
.y26{bottom:10.906667pt;}
.y6{bottom:12.640000pt;}
.y3c{bottom:14.720000pt;}
.y32{bottom:14.880000pt;}
.y59{bottom:14.906667pt;}
.y42{bottom:18.240000pt;}
.y5d{bottom:18.560000pt;}
.y36{bottom:22.560000pt;}
.y21{bottom:24.000000pt;}
.y48{bottom:26.080000pt;}
.y2c{bottom:26.240000pt;}
.y27{bottom:26.266667pt;}
.y55{bottom:26.280000pt;}
.y3b{bottom:30.080000pt;}
.y31{bottom:30.240000pt;}
.y58{bottom:30.266667pt;}
.y19{bottom:31.040000pt;}
.y4e{bottom:33.440000pt;}
.y29{bottom:34.080000pt;}
.y38{bottom:34.106667pt;}
.y30{bottom:34.240000pt;}
.y25{bottom:34.266667pt;}
.y1e{bottom:34.880000pt;}
.y18{bottom:37.760000pt;}
.y35{bottom:37.920000pt;}
.y39{bottom:37.946667pt;}
.y20{bottom:39.360000pt;}
.y41{bottom:41.440000pt;}
.y2b{bottom:41.600000pt;}
.y54{bottom:41.640000pt;}
.y5c{bottom:41.920000pt;}
.y44{bottom:45.600000pt;}
.y47{bottom:49.440000pt;}
.y37{bottom:49.466667pt;}
.y34{bottom:49.600000pt;}
.y24{bottom:49.626667pt;}
.y1d{bottom:52.640000pt;}
.y5{bottom:56.800000pt;}
.y2e{bottom:59.866667pt;}
.y4{bottom:60.640000pt;}
.y46{bottom:64.800000pt;}
.y53{bottom:64.840000pt;}
.y23{bottom:64.986667pt;}
.y3f{bottom:65.000000pt;}
.y1b{bottom:65.120000pt;}
.y4d{bottom:72.200000pt;}
.y52{bottom:80.200000pt;}
.y3e{bottom:80.360000pt;}
.y16{bottom:84.320000pt;}
.y3{bottom:88.160000pt;}
.y2d{bottom:105.600000pt;}
.y15{bottom:111.840000pt;}
.y57{bottom:124.800000pt;}
.y76{bottom:138.586667pt;}
.y14{bottom:139.560000pt;}
.y4a{bottom:140.186667pt;}
.y75{bottom:153.946667pt;}
.y13{bottom:167.080000pt;}
.y74{bottom:169.306667pt;}
.y33{bottom:176.186667pt;}
.y56{bottom:180.186667pt;}
.y73{bottom:184.666667pt;}
.y12{bottom:194.760000pt;}
.y72{bottom:200.026667pt;}
.y71{bottom:215.226667pt;}
.y49{bottom:226.106667pt;}
.y70{bottom:230.586667pt;}
.y6f{bottom:245.946667pt;}
.y2f{bottom:246.906667pt;}
.y6e{bottom:261.306667pt;}
.y10{bottom:264.826667pt;}
.y51{bottom:266.106667pt;}
.y6d{bottom:276.666667pt;}
.ye{bottom:280.346667pt;}
.y6c{bottom:291.906667pt;}
.y45{bottom:296.866667pt;}
.yd{bottom:300.866667pt;}
.y1a{bottom:302.306667pt;}
.y6b{bottom:307.266667pt;}
.yc{bottom:321.506667pt;}
.y6a{bottom:322.626667pt;}
.y69{bottom:337.986667pt;}
.ya{bottom:341.986667pt;}
.y68{bottom:353.346667pt;}
.y8c{bottom:353.666667pt;}
.y28{bottom:365.026667pt;}
.y50{bottom:367.426667pt;}
.y67{bottom:368.706667pt;}
.y8b{bottom:369.026667pt;}
.y9{bottom:378.146667pt;}
.y43{bottom:382.786667pt;}
.y66{bottom:383.906667pt;}
.y8a{bottom:384.386667pt;}
.y65{bottom:399.266667pt;}
.y89{bottom:399.746667pt;}
.y8{bottom:405.666667pt;}
.y64{bottom:414.626667pt;}
.y88{bottom:415.106667pt;}
.y22{bottom:420.226667pt;}
.y63{bottom:430.013333pt;}
.y87{bottom:430.333333pt;}
.y11{bottom:436.893333pt;}
.y4f{bottom:438.173333pt;}
.y62{bottom:445.373333pt;}
.y86{bottom:445.693333pt;}
.y40{bottom:453.533333pt;}
.y61{bottom:460.733333pt;}
.y85{bottom:461.053333pt;}
.y60{bottom:475.933333pt;}
.y84{bottom:476.413333pt;}
.y83{bottom:491.773333pt;}
.y5f{bottom:491.933333pt;}
.y1c{bottom:506.333333pt;}
.y82{bottom:507.133333pt;}
.y5e{bottom:507.453333pt;}
.y4c{bottom:508.893333pt;}
.y81{bottom:522.333333pt;}
.y3d{bottom:531.453333pt;}
.y80{bottom:537.693333pt;}
.y7f{bottom:553.053333pt;}
.y7e{bottom:568.413333pt;}
.y5b{bottom:578.213333pt;}
.y17{bottom:580.133333pt;}
.y7d{bottom:583.813333pt;}
.y7c{bottom:599.013333pt;}
.y4b{bottom:602.213333pt;}
.y7b{bottom:614.373333pt;}
.y7a{bottom:629.733333pt;}
.y3a{bottom:632.933333pt;}
.y79{bottom:645.093333pt;}
.y5a{bottom:648.933333pt;}
.y78{bottom:660.453333pt;}
.y7{bottom:668.293333pt;}
.y77{bottom:675.813333pt;}
.y2{bottom:700.933333pt;}
.y1{bottom:730.880000pt;}
.h5{height:19.840000pt;}
.h6{height:19.872000pt;}
.h3{height:27.520000pt;}
.h20{height:38.560000pt;}
.hd{height:52.134375pt;}
.h11{height:52.478750pt;}
.h17{height:52.638750pt;}
.h12{height:53.535000pt;}
.h13{height:54.560000pt;}
.h1f{height:54.592000pt;}
.h16{height:54.752000pt;}
.hf{height:57.787500pt;}
.h14{height:61.920000pt;}
.h8{height:62.781250pt;}
.h2{height:62.812500pt;}
.he{height:66.404375pt;}
.h21{height:69.920000pt;}
.h19{height:69.952000pt;}
.h18{height:70.080000pt;}
.h1c{height:70.112000pt;}
.hc{height:72.992000pt;}
.ha{height:73.490625pt;}
.h9{height:75.520000pt;}
.h1b{height:77.280000pt;}
.h4{height:83.540625pt;}
.h1d{height:85.280000pt;}
.h10{height:85.472000pt;}
.h1e{height:92.672000pt;}
.h1a{height:100.672000pt;}
.h15{height:196.066667pt;}
.h7{height:209.626667pt;}
.hb{height:277.026667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w3{width:8.000000pt;}
.w4{width:41.472000pt;}
.w7{width:52.512000pt;}
.w8{width:154.400000pt;}
.w5{width:562.146667pt;}
.w9{width:708.133333pt;}
.w6{width:931.360000pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x7{left:9.632000pt;}
.xa{left:30.720000pt;}
.x8{left:33.152000pt;}
.x1{left:95.999983pt;}
.x6{left:98.400000pt;}
.xd{left:114.911983pt;}
.x2{left:120.031983pt;}
.x5{left:138.746667pt;}
.x9{left:149.146667pt;}
.xc{left:293.186667pt;}
.xb{left:304.346667pt;}
.x3{left:1018.720000pt;}
}




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