
    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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_e3be3f1b883da0b7ae50b393.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_9454ca8362d4781adbf84361.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_3bf2efd71095570b12025349.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_d1165e3b8677835ef1037807.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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;}
.ls11{letter-spacing:-0.816000px;}
.lsb{letter-spacing:-0.624000px;}
.lsc{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.024000px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.168000px;}
.lse{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.384000px;}
.ls10{letter-spacing:5.784000px;}
.lsf{letter-spacing:15.984000px;}
.lsa{letter-spacing:21.984000px;}
.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:-20.232000px;}
.ws8{word-spacing:-20.184000px;}
.ws3{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.992000px;}
.ws9{word-spacing:-19.800000px;}
.ws6{word-spacing:-19.392000px;}
.ws4{word-spacing:-16.680000px;}
.ws1{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.988000px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-4.998000px;}
._4{margin-left:-3.414000px;}
._1{margin-left:-2.040000px;}
._3{margin-left:-1.008000px;}
._2{width:1.056000px;}
._7{width:2.880000px;}
._6{width:3.888000px;}
._16{width:4.968000px;}
._12{width:6.054000px;}
._13{width:7.212000px;}
._b{width:8.424000px;}
._a{width:9.432000px;}
._c{width:10.512000px;}
._10{width:11.550000px;}
._f{width:12.744000px;}
._14{width:13.752000px;}
._20{width:15.072000px;}
._15{width:16.266000px;}
._19{width:17.388000px;}
._5{width:18.528000px;}
._e{width:21.456000px;}
._17{width:23.400000px;}
._21{width:24.522000px;}
._1c{width:25.638000px;}
._9{width:26.712000px;}
._8{width:28.014000px;}
._18{width:29.280000px;}
._25{width:30.744000px;}
._26{width:31.824000px;}
._1f{width:33.048000px;}
._1b{width:34.416000px;}
._1a{width:35.568000px;}
._27{width:37.872000px;}
._24{width:39.024000px;}
._1e{width:41.544000px;}
._1d{width:42.552000px;}
._22{width:43.848000px;}
._23{width:45.864000px;}
._11{width:47.628000px;}
._28{width:58.176000px;}
._30{width:96.264000px;}
._29{width:128.304000px;}
._2a{width:129.702000px;}
._2e{width:183.312000px;}
._2c{width:277.926000px;}
._2b{width:279.210000px;}
._2f{width:578.370000px;}
._0{width:844.014000px;}
._2d{width:980.640000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,9);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.987500px;}
.y5{bottom:71.437500px;}
.y4{bottom:87.037500px;}
.y31{bottom:120.037500px;}
.y3e{bottom:122.887500px;}
.y30{bottom:137.287500px;}
.y2f{bottom:142.537500px;}
.y55{bottom:144.037500px;}
.y3d{bottom:153.930000px;}
.y2e{bottom:154.545000px;}
.y2d{bottom:171.795000px;}
.y5b{bottom:174.645000px;}
.y54{bottom:175.095000px;}
.y2c{bottom:177.045000px;}
.y3c{bottom:184.995000px;}
.y2b{bottom:189.795000px;}
.y5a{bottom:195.345000px;}
.y53{bottom:206.130000px;}
.y3b{bottom:216.045000px;}
.y59{bottom:236.745000px;}
.y52{bottom:237.195000px;}
.y3a{bottom:247.080000px;}
.y58{bottom:257.445000px;}
.y51{bottom:268.245000px;}
.y2a{bottom:278.145000px;}
.y57{bottom:298.845000px;}
.y50{bottom:299.295000px;}
.y29{bottom:309.195000px;}
.y56{bottom:319.545000px;}
.y4f{bottom:330.345000px;}
.y28{bottom:340.245000px;}
.y63{bottom:360.945000px;}
.y4e{bottom:361.380000px;}
.y27{bottom:371.295000px;}
.y62{bottom:381.675000px;}
.y4d{bottom:392.475000px;}
.y26{bottom:402.375000px;}
.y25{bottom:423.075000px;}
.y4c{bottom:423.525000px;}
.y39{bottom:433.425000px;}
.y24{bottom:443.775000px;}
.y4b{bottom:454.575000px;}
.y23{bottom:464.475000px;}
.y22{bottom:485.175000px;}
.y4a{bottom:485.625000px;}
.y38{bottom:495.525000px;}
.y21{bottom:505.875000px;}
.y49{bottom:516.675000px;}
.y20{bottom:526.575000px;}
.y1f{bottom:547.275000px;}
.y48{bottom:547.725000px;}
.y37{bottom:557.625000px;}
.y1e{bottom:567.975000px;}
.y47{bottom:578.775000px;}
.y1d{bottom:588.675000px;}
.y1c{bottom:609.375000px;}
.y46{bottom:609.825000px;}
.y36{bottom:619.725000px;}
.y1b{bottom:630.075000px;}
.y45{bottom:640.875000px;}
.y1a{bottom:650.775000px;}
.y19{bottom:671.475000px;}
.y44{bottom:671.925000px;}
.y35{bottom:681.825000px;}
.y18{bottom:692.175000px;}
.y43{bottom:702.975000px;}
.y17{bottom:712.875000px;}
.y16{bottom:733.575000px;}
.y42{bottom:734.025000px;}
.y34{bottom:743.970000px;}
.y15{bottom:754.320000px;}
.y41{bottom:765.120000px;}
.y14{bottom:775.020000px;}
.y40{bottom:785.220000px;}
.y13{bottom:795.705000px;}
.y33{bottom:806.070000px;}
.y12{bottom:816.420000px;}
.y11{bottom:837.120000px;}
.y10{bottom:857.820000px;}
.y32{bottom:868.170000px;}
.yf{bottom:878.520000px;}
.ye{bottom:899.220000px;}
.y61{bottom:919.920000px;}
.yd{bottom:930.270000px;}
.y60{bottom:940.620000px;}
.yb{bottom:961.320000px;}
.yc{bottom:967.320000px;}
.y5f{bottom:982.020000px;}
.y9{bottom:992.370000px;}
.ya{bottom:998.370000px;}
.y5e{bottom:1002.720000px;}
.y8{bottom:1023.420000px;}
.y5d{bottom:1044.120000px;}
.y7{bottom:1054.470000px;}
.y5c{bottom:1064.820000px;}
.y3{bottom:1085.520000px;}
.y3f{bottom:1088.370000px;}
.y2{bottom:1106.400000px;}
.y1{bottom:1127.100000px;}
.h7{height:34.962891px;}
.h6{height:43.031250px;}
.h4{height:48.410156px;}
.h2{height:49.992188px;}
.h8{height:53.789062px;}
.h9{height:54.287109px;}
.h5{height:64.546875px;}
.h3{height:65.144531px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:892.949973px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.687487px;}
.xd{left:133.087487px;}
.x3{left:160.679987px;}
.xb{left:180.779987px;}
.x7{left:208.394987px;}
.x6{left:217.829987px;}
.x10{left:276.194987px;}
.x11{left:325.694987px;}
.x4{left:338.144987px;}
.xc{left:343.694987px;}
.xf{left:467.924987px;}
.xa{left:595.274987px;}
.x8{left:625.274987px;}
.xe{left:709.769987px;}
.x5{left:717.254987px;}
.x9{left:801.404973px;}
.x2{left:808.154987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.725333pt;}
.lsb{letter-spacing:-0.554667pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.149333pt;}
.lse{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.341333pt;}
.ls10{letter-spacing:5.141333pt;}
.lsf{letter-spacing:14.208000pt;}
.lsa{letter-spacing:19.541333pt;}
.ws7{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.941333pt;}
.ws3{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.770667pt;}
.ws9{word-spacing:-17.600000pt;}
.ws6{word-spacing:-17.237333pt;}
.ws4{word-spacing:-14.826667pt;}
.ws1{word-spacing:-13.344000pt;}
.ws2{word-spacing:-13.322667pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-4.442667pt;}
._4{margin-left:-3.034667pt;}
._1{margin-left:-1.813333pt;}
._3{margin-left:-0.896000pt;}
._2{width:0.938667pt;}
._7{width:2.560000pt;}
._6{width:3.456000pt;}
._16{width:4.416000pt;}
._12{width:5.381333pt;}
._13{width:6.410667pt;}
._b{width:7.488000pt;}
._a{width:8.384000pt;}
._c{width:9.344000pt;}
._10{width:10.266667pt;}
._f{width:11.328000pt;}
._14{width:12.224000pt;}
._20{width:13.397333pt;}
._15{width:14.458667pt;}
._19{width:15.456000pt;}
._5{width:16.469333pt;}
._e{width:19.072000pt;}
._17{width:20.800000pt;}
._21{width:21.797333pt;}
._1c{width:22.789333pt;}
._9{width:23.744000pt;}
._8{width:24.901333pt;}
._18{width:26.026667pt;}
._25{width:27.328000pt;}
._26{width:28.288000pt;}
._1f{width:29.376000pt;}
._1b{width:30.592000pt;}
._1a{width:31.616000pt;}
._27{width:33.664000pt;}
._24{width:34.688000pt;}
._1e{width:36.928000pt;}
._1d{width:37.824000pt;}
._22{width:38.976000pt;}
._23{width:40.768000pt;}
._11{width:42.336000pt;}
._28{width:51.712000pt;}
._30{width:85.568000pt;}
._29{width:114.048000pt;}
._2a{width:115.290667pt;}
._2e{width:162.944000pt;}
._2c{width:247.045333pt;}
._2b{width:248.186667pt;}
._2f{width:514.106667pt;}
._0{width:750.234667pt;}
._2d{width:871.680000pt;}
.fs3{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.766667pt;}
.y5{bottom:63.500000pt;}
.y4{bottom:77.366667pt;}
.y31{bottom:106.700000pt;}
.y3e{bottom:109.233333pt;}
.y30{bottom:122.033333pt;}
.y2f{bottom:126.700000pt;}
.y55{bottom:128.033333pt;}
.y3d{bottom:136.826667pt;}
.y2e{bottom:137.373333pt;}
.y2d{bottom:152.706667pt;}
.y5b{bottom:155.240000pt;}
.y54{bottom:155.640000pt;}
.y2c{bottom:157.373333pt;}
.y3c{bottom:164.440000pt;}
.y2b{bottom:168.706667pt;}
.y5a{bottom:173.640000pt;}
.y53{bottom:183.226667pt;}
.y3b{bottom:192.040000pt;}
.y59{bottom:210.440000pt;}
.y52{bottom:210.840000pt;}
.y3a{bottom:219.626667pt;}
.y58{bottom:228.840000pt;}
.y51{bottom:238.440000pt;}
.y2a{bottom:247.240000pt;}
.y57{bottom:265.640000pt;}
.y50{bottom:266.040000pt;}
.y29{bottom:274.840000pt;}
.y56{bottom:284.040000pt;}
.y4f{bottom:293.640000pt;}
.y28{bottom:302.440000pt;}
.y63{bottom:320.840000pt;}
.y4e{bottom:321.226667pt;}
.y27{bottom:330.040000pt;}
.y62{bottom:339.266667pt;}
.y4d{bottom:348.866667pt;}
.y26{bottom:357.666667pt;}
.y25{bottom:376.066667pt;}
.y4c{bottom:376.466667pt;}
.y39{bottom:385.266667pt;}
.y24{bottom:394.466667pt;}
.y4b{bottom:404.066667pt;}
.y23{bottom:412.866667pt;}
.y22{bottom:431.266667pt;}
.y4a{bottom:431.666667pt;}
.y38{bottom:440.466667pt;}
.y21{bottom:449.666667pt;}
.y49{bottom:459.266667pt;}
.y20{bottom:468.066667pt;}
.y1f{bottom:486.466667pt;}
.y48{bottom:486.866667pt;}
.y37{bottom:495.666667pt;}
.y1e{bottom:504.866667pt;}
.y47{bottom:514.466667pt;}
.y1d{bottom:523.266667pt;}
.y1c{bottom:541.666667pt;}
.y46{bottom:542.066667pt;}
.y36{bottom:550.866667pt;}
.y1b{bottom:560.066667pt;}
.y45{bottom:569.666667pt;}
.y1a{bottom:578.466667pt;}
.y19{bottom:596.866667pt;}
.y44{bottom:597.266667pt;}
.y35{bottom:606.066667pt;}
.y18{bottom:615.266667pt;}
.y43{bottom:624.866667pt;}
.y17{bottom:633.666667pt;}
.y16{bottom:652.066667pt;}
.y42{bottom:652.466667pt;}
.y34{bottom:661.306667pt;}
.y15{bottom:670.506667pt;}
.y41{bottom:680.106667pt;}
.y14{bottom:688.906667pt;}
.y40{bottom:697.973333pt;}
.y13{bottom:707.293333pt;}
.y33{bottom:716.506667pt;}
.y12{bottom:725.706667pt;}
.y11{bottom:744.106667pt;}
.y10{bottom:762.506667pt;}
.y32{bottom:771.706667pt;}
.yf{bottom:780.906667pt;}
.ye{bottom:799.306667pt;}
.y61{bottom:817.706667pt;}
.yd{bottom:826.906667pt;}
.y60{bottom:836.106667pt;}
.yb{bottom:854.506667pt;}
.yc{bottom:859.840000pt;}
.y5f{bottom:872.906667pt;}
.y9{bottom:882.106667pt;}
.ya{bottom:887.440000pt;}
.y5e{bottom:891.306667pt;}
.y8{bottom:909.706667pt;}
.y5d{bottom:928.106667pt;}
.y7{bottom:937.306667pt;}
.y5c{bottom:946.506667pt;}
.y3{bottom:964.906667pt;}
.y3f{bottom:967.440000pt;}
.y2{bottom:983.466667pt;}
.y1{bottom:1001.866667pt;}
.h7{height:31.078125pt;}
.h6{height:38.250000pt;}
.h4{height:43.031250pt;}
.h2{height:44.437500pt;}
.h8{height:47.812500pt;}
.h9{height:48.255208pt;}
.h5{height:57.375000pt;}
.h3{height:57.906250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:793.733310pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.499988pt;}
.xd{left:118.299988pt;}
.x3{left:142.826655pt;}
.xb{left:160.693322pt;}
.x7{left:185.239988pt;}
.x6{left:193.626655pt;}
.x10{left:245.506655pt;}
.x11{left:289.506655pt;}
.x4{left:300.573322pt;}
.xc{left:305.506655pt;}
.xf{left:415.933322pt;}
.xa{left:529.133322pt;}
.x8{left:555.799988pt;}
.xe{left:630.906655pt;}
.x5{left:637.559988pt;}
.x9{left:712.359976pt;}
.x2{left:718.359988pt;}
}




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