
    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_862ab7c6a55627a82ef6c7ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_c349c39e540f72cf75643bfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_753a31992f64bd547b66a5de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933105;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_99420a9acf06a5d610ecaf9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_d4d85187120a1e01be8e6601.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.lsd{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.115200px;}
.ls7{letter-spacing:-0.048960px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.089400px;}
.lsb{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.312480px;}
.ls8{letter-spacing:0.360000px;}
.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;}
}
.ws7{word-spacing:-17.856000px;}
.ws4{word-spacing:-16.632000px;}
.ws9{word-spacing:-16.416000px;}
.ws8{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.056000px;}
.wsb{word-spacing:-15.984000px;}
.wsc{word-spacing:-15.912000px;}
.ws0{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.059640px;}
.ws6{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.855040px;}
.ws1{word-spacing:-14.506440px;}
.ws5{word-spacing:0.000000px;}
._27{margin-left:-4.167360px;}
._10{margin-left:-3.096000px;}
._0{margin-left:-1.192320px;}
._9{width:1.048800px;}
._11{width:2.311200px;}
._b{width:3.631680px;}
._7{width:4.901760px;}
._8{width:6.491520px;}
._a{width:7.536000px;}
._6{width:8.592000px;}
._5{width:9.984000px;}
._e{width:11.568000px;}
._12{width:12.792000px;}
._1a{width:14.088000px;}
._1b{width:15.256320px;}
._26{width:17.367840px;}
._22{width:18.432000px;}
._f{width:19.440000px;}
._18{width:21.064320px;}
._19{width:22.216320px;}
._1e{width:23.218320px;}
._1c{width:24.983040px;}
._d{width:26.000640px;}
._c{width:27.144000px;}
._1d{width:28.728000px;}
._20{width:29.743680px;}
._1f{width:30.755520px;}
._24{width:35.503680px;}
._14{width:36.568320px;}
._13{width:38.136000px;}
._25{width:52.560000px;}
._21{width:74.448000px;}
._17{width:93.480960px;}
._16{width:94.524480px;}
._23{width:134.616000px;}
._1{width:297.296160px;}
._15{width:312.266400px;}
._4{width:464.736000px;}
._3{width:1001.892000px;}
._2{width:1430.369760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.536000px;}
.y50{bottom:112.896000px;}
.y29{bottom:115.776000px;}
.y38{bottom:117.576000px;}
.y1d{bottom:117.936000px;}
.y4f{bottom:133.056000px;}
.y37{bottom:137.556000px;}
.y28{bottom:139.356000px;}
.y1c{bottom:141.516000px;}
.y4e{bottom:150.510000px;}
.y62{bottom:153.930000px;}
.y36{bottom:155.010000px;}
.y27{bottom:163.110000px;}
.y1b{bottom:165.270000px;}
.y61{bottom:177.510000px;}
.y26{bottom:186.870000px;}
.y1a{bottom:189.030000px;}
.y60{bottom:201.270000px;}
.y70{bottom:209.370000px;}
.y25{bottom:210.630000px;}
.y19{bottom:212.790000px;}
.y5f{bottom:225.030000px;}
.y6f{bottom:232.950000px;}
.y24{bottom:234.210000px;}
.y18{bottom:236.370000px;}
.y5e{bottom:248.790000px;}
.y6e{bottom:256.710000px;}
.y23{bottom:257.430000px;}
.y17{bottom:260.130000px;}
.y5d{bottom:272.370000px;}
.y22{bottom:279.210000px;}
.y6d{bottom:280.470000px;}
.y16{bottom:283.890000px;}
.y5c{bottom:296.175000px;}
.y21{bottom:296.715000px;}
.y6c{bottom:304.275000px;}
.y15{bottom:307.695000px;}
.y5b{bottom:319.935000px;}
.y6b{bottom:327.855000px;}
.y14{bottom:331.275000px;}
.y5a{bottom:343.695000px;}
.y6a{bottom:351.615000px;}
.y13{bottom:354.495000px;}
.y59{bottom:367.275000px;}
.y69{bottom:375.375000px;}
.y12{bottom:376.275000px;}
.y58{bottom:391.035000px;}
.y11{bottom:393.735000px;}
.y68{bottom:398.955000px;}
.y57{bottom:414.795000px;}
.y67{bottom:422.715000px;}
.y35{bottom:424.875000px;}
.y56{bottom:438.555000px;}
.y34{bottom:446.475000px;}
.y55{bottom:462.135000px;}
.y33{bottom:466.635000px;}
.y66{bottom:470.235000px;}
.y54{bottom:483.735000px;}
.y32{bottom:483.915000px;}
.y65{bottom:493.815000px;}
.y53{bottom:503.895000px;}
.y64{bottom:517.575000px;}
.y52{bottom:524.055000px;}
.y63{bottom:541.335000px;}
.y51{bottom:541.515000px;}
.y4d{bottom:565.125000px;}
.y4c{bottom:588.705000px;}
.y4b{bottom:612.465000px;}
.y4a{bottom:636.225000px;}
.y20{bottom:654.225000px;}
.y49{bottom:659.985000px;}
.y1f{bottom:677.985000px;}
.y48{bottom:683.565000px;}
.y1e{bottom:701.745000px;}
.y47{bottom:707.325000px;}
.y10{bottom:725.505000px;}
.y46{bottom:731.085000px;}
.yf{bottom:749.085000px;}
.y45{bottom:754.665000px;}
.y31{bottom:757.005000px;}
.ye{bottom:772.845000px;}
.y30{bottom:778.425000px;}
.yd{bottom:796.605000px;}
.y2f{bottom:801.465000px;}
.y44{bottom:802.185000px;}
.yc{bottom:820.230000px;}
.y2e{bottom:824.730000px;}
.y43{bottom:825.990000px;}
.yb{bottom:843.990000px;}
.y2d{bottom:846.330000px;}
.y42{bottom:849.570000px;}
.ya{bottom:867.210000px;}
.y2c{bottom:868.110000px;}
.y41{bottom:873.330000px;}
.y2b{bottom:885.570000px;}
.y9{bottom:888.990000px;}
.y40{bottom:897.090000px;}
.y8{bottom:910.590000px;}
.y3f{bottom:920.850000px;}
.y7{bottom:932.910000px;}
.y3e{bottom:944.430000px;}
.y6{bottom:956.670000px;}
.y3d{bottom:968.190000px;}
.y5{bottom:983.490000px;}
.y3c{bottom:991.950000px;}
.y3b{bottom:1015.710000px;}
.y4{bottom:1015.890000px;}
.y3a{bottom:1039.290000px;}
.y3{bottom:1039.650000px;}
.y1{bottom:1056.570000px;}
.y39{bottom:1063.080000px;}
.y2a{bottom:1118.340000px;}
.h5{height:50.585625px;}
.h1{height:53.302500px;}
.h2{height:54.421875px;}
.h4{height:57.937500px;}
.h6{height:70.664062px;}
.h3{height:81.632812px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x8{left:108.036000px;}
.x5{left:244.470000px;}
.x6{left:269.310000px;}
.xd{left:323.715000px;}
.x7{left:367.995000px;}
.x4{left:378.975000px;}
.x9{left:419.655000px;}
.xe{left:432.075000px;}
.x3{left:459.075000px;}
.xb{left:486.075000px;}
.xa{left:513.075000px;}
.x10{left:692.025000px;}
.xf{left:833.730000px;}
.xc{left:837.150000px;}
.x1{left:918.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.102400pt;}
.ls7{letter-spacing:-0.043520pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.079467pt;}
.lsb{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.277760pt;}
.ls8{letter-spacing:0.320000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4{word-spacing:-14.784000pt;}
.ws9{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.272000pt;}
.wsb{word-spacing:-14.208000pt;}
.wsc{word-spacing:-14.144000pt;}
.ws0{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.386347pt;}
.ws6{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.204480pt;}
.ws1{word-spacing:-12.894613pt;}
.ws5{word-spacing:0.000000pt;}
._27{margin-left:-3.704320pt;}
._10{margin-left:-2.752000pt;}
._0{margin-left:-1.059840pt;}
._9{width:0.932267pt;}
._11{width:2.054400pt;}
._b{width:3.228160pt;}
._7{width:4.357120pt;}
._8{width:5.770240pt;}
._a{width:6.698667pt;}
._6{width:7.637333pt;}
._5{width:8.874667pt;}
._e{width:10.282667pt;}
._12{width:11.370667pt;}
._1a{width:12.522667pt;}
._1b{width:13.561173pt;}
._26{width:15.438080pt;}
._22{width:16.384000pt;}
._f{width:17.280000pt;}
._18{width:18.723840pt;}
._19{width:19.747840pt;}
._1e{width:20.638507pt;}
._1c{width:22.207147pt;}
._d{width:23.111680pt;}
._c{width:24.128000pt;}
._1d{width:25.536000pt;}
._20{width:26.438827pt;}
._1f{width:27.338240pt;}
._24{width:31.558827pt;}
._14{width:32.505173pt;}
._13{width:33.898667pt;}
._25{width:46.720000pt;}
._21{width:66.176000pt;}
._17{width:83.094187pt;}
._16{width:84.021760pt;}
._23{width:119.658667pt;}
._1{width:264.263253pt;}
._15{width:277.570133pt;}
._4{width:413.098667pt;}
._3{width:890.570667pt;}
._2{width:1271.439787pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:52.032000pt;}
.y50{bottom:100.352000pt;}
.y29{bottom:102.912000pt;}
.y38{bottom:104.512000pt;}
.y1d{bottom:104.832000pt;}
.y4f{bottom:118.272000pt;}
.y37{bottom:122.272000pt;}
.y28{bottom:123.872000pt;}
.y1c{bottom:125.792000pt;}
.y4e{bottom:133.786667pt;}
.y62{bottom:136.826667pt;}
.y36{bottom:137.786667pt;}
.y27{bottom:144.986667pt;}
.y1b{bottom:146.906667pt;}
.y61{bottom:157.786667pt;}
.y26{bottom:166.106667pt;}
.y1a{bottom:168.026667pt;}
.y60{bottom:178.906667pt;}
.y70{bottom:186.106667pt;}
.y25{bottom:187.226667pt;}
.y19{bottom:189.146667pt;}
.y5f{bottom:200.026667pt;}
.y6f{bottom:207.066667pt;}
.y24{bottom:208.186667pt;}
.y18{bottom:210.106667pt;}
.y5e{bottom:221.146667pt;}
.y6e{bottom:228.186667pt;}
.y23{bottom:228.826667pt;}
.y17{bottom:231.226667pt;}
.y5d{bottom:242.106667pt;}
.y22{bottom:248.186667pt;}
.y6d{bottom:249.306667pt;}
.y16{bottom:252.346667pt;}
.y5c{bottom:263.266667pt;}
.y21{bottom:263.746667pt;}
.y6c{bottom:270.466667pt;}
.y15{bottom:273.506667pt;}
.y5b{bottom:284.386667pt;}
.y6b{bottom:291.426667pt;}
.y14{bottom:294.466667pt;}
.y5a{bottom:305.506667pt;}
.y6a{bottom:312.546667pt;}
.y13{bottom:315.106667pt;}
.y59{bottom:326.466667pt;}
.y69{bottom:333.666667pt;}
.y12{bottom:334.466667pt;}
.y58{bottom:347.586667pt;}
.y11{bottom:349.986667pt;}
.y68{bottom:354.626667pt;}
.y57{bottom:368.706667pt;}
.y67{bottom:375.746667pt;}
.y35{bottom:377.666667pt;}
.y56{bottom:389.826667pt;}
.y34{bottom:396.866667pt;}
.y55{bottom:410.786667pt;}
.y33{bottom:414.786667pt;}
.y66{bottom:417.986667pt;}
.y54{bottom:429.986667pt;}
.y32{bottom:430.146667pt;}
.y65{bottom:438.946667pt;}
.y53{bottom:447.906667pt;}
.y64{bottom:460.066667pt;}
.y52{bottom:465.826667pt;}
.y63{bottom:481.186667pt;}
.y51{bottom:481.346667pt;}
.y4d{bottom:502.333333pt;}
.y4c{bottom:523.293333pt;}
.y4b{bottom:544.413333pt;}
.y4a{bottom:565.533333pt;}
.y20{bottom:581.533333pt;}
.y49{bottom:586.653333pt;}
.y1f{bottom:602.653333pt;}
.y48{bottom:607.613333pt;}
.y1e{bottom:623.773333pt;}
.y47{bottom:628.733333pt;}
.y10{bottom:644.893333pt;}
.y46{bottom:649.853333pt;}
.yf{bottom:665.853333pt;}
.y45{bottom:670.813333pt;}
.y31{bottom:672.893333pt;}
.ye{bottom:686.973333pt;}
.y30{bottom:691.933333pt;}
.yd{bottom:708.093333pt;}
.y2f{bottom:712.413333pt;}
.y44{bottom:713.053333pt;}
.yc{bottom:729.093333pt;}
.y2e{bottom:733.093333pt;}
.y43{bottom:734.213333pt;}
.yb{bottom:750.213333pt;}
.y2d{bottom:752.293333pt;}
.y42{bottom:755.173333pt;}
.ya{bottom:770.853333pt;}
.y2c{bottom:771.653333pt;}
.y41{bottom:776.293333pt;}
.y2b{bottom:787.173333pt;}
.y9{bottom:790.213333pt;}
.y40{bottom:797.413333pt;}
.y8{bottom:809.413333pt;}
.y3f{bottom:818.533333pt;}
.y7{bottom:829.253333pt;}
.y3e{bottom:839.493333pt;}
.y6{bottom:850.373333pt;}
.y3d{bottom:860.613333pt;}
.y5{bottom:874.213333pt;}
.y3c{bottom:881.733333pt;}
.y3b{bottom:902.853333pt;}
.y4{bottom:903.013333pt;}
.y3a{bottom:923.813333pt;}
.y3{bottom:924.133333pt;}
.y1{bottom:939.173333pt;}
.y39{bottom:944.960000pt;}
.y2a{bottom:994.080000pt;}
.h5{height:44.965000pt;}
.h1{height:47.380000pt;}
.h2{height:48.375000pt;}
.h4{height:51.500000pt;}
.h6{height:62.812500pt;}
.h3{height:72.562500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x8{left:96.032000pt;}
.x5{left:217.306667pt;}
.x6{left:239.386667pt;}
.xd{left:287.746667pt;}
.x7{left:327.106667pt;}
.x4{left:336.866667pt;}
.x9{left:373.026667pt;}
.xe{left:384.066667pt;}
.x3{left:408.066667pt;}
.xb{left:432.066667pt;}
.xa{left:456.066667pt;}
.x10{left:615.133333pt;}
.xf{left:741.093333pt;}
.xc{left:744.133333pt;}
.x1{left:816.133333pt;}
}




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