
    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_53fddbb8405a6efe39fb9aef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_87aad1af78da1c9e65d1b7ae.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6780d6b66f9e819bb90a9de3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_f6277850d44b90b071a6e2aa.woff2')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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_24225bd91be2ec5d6dbf9e04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_b59391fdc9d1475557c4b927.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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:ff7;src:url('chunks/assets/font_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.816000px;}
.ls10{letter-spacing:-0.432000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.384000px;}
.ls6{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.600000px;}
.ls2{letter-spacing:2.400000px;}
.lse{letter-spacing:19.200000px;}
.ls0{letter-spacing:1037.778000px;}
.lsf{letter-spacing:2824.914000px;}
.lsb{letter-spacing:2851.314000px;}
.lsa{letter-spacing:2854.914000px;}
.ls5{letter-spacing:2860.914000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.384000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.568000px;}
.ws0{word-spacing:-17.100000px;}
.ws3{word-spacing:0.000000px;}
._22{margin-left:-7.560000px;}
._15{margin-left:-4.776000px;}
._14{margin-left:-3.240000px;}
._0{margin-left:-1.272000px;}
._1{width:1.008000px;}
._2{width:2.310000px;}
._6{width:3.786000px;}
._18{width:4.998000px;}
._4{width:6.246000px;}
._3{width:7.776000px;}
._9{width:9.408000px;}
._5{width:10.728000px;}
._1a{width:12.648000px;}
._7{width:13.710000px;}
._8{width:14.862000px;}
._1c{width:16.776000px;}
._1f{width:19.440000px;}
._20{width:20.952000px;}
._12{width:22.176000px;}
._13{width:23.184000px;}
._b{width:24.480000px;}
._a{width:25.848000px;}
._d{width:26.856000px;}
._c{width:28.542000px;}
._1b{width:29.664000px;}
._25{width:30.942000px;}
._1d{width:32.070000px;}
._11{width:33.162000px;}
._10{width:34.272000px;}
._23{width:35.352000px;}
._17{width:36.576000px;}
._16{width:38.088000px;}
._21{width:40.824000px;}
._26{width:44.928000px;}
._e{width:46.512000px;}
._f{width:47.880000px;}
._27{width:53.784000px;}
._19{width:59.808000px;}
._1e{width:63.696000px;}
._24{width:71.640000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,127,172);}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.300000px;}
.y9{bottom:3.937500px;}
.y4a{bottom:6.885000px;}
.y3f{bottom:6.900000px;}
.y4d{bottom:6.915000px;}
.y3a{bottom:7.200000px;}
.y7{bottom:17.700000px;}
.y5{bottom:22.237500px;}
.y8{bottom:22.837500px;}
.y3e{bottom:30.600000px;}
.y4c{bottom:30.615000px;}
.y39{bottom:30.885000px;}
.y4{bottom:41.137500px;}
.y38{bottom:54.585000px;}
.y42{bottom:54.600000px;}
.y3d{bottom:54.645000px;}
.y41{bottom:78.300000px;}
.y3c{bottom:78.345000px;}
.y37{bottom:78.600000px;}
.y48{bottom:88.537500px;}
.y47{bottom:112.537500px;}
.y35{bottom:115.537500px;}
.y46{bottom:136.237500px;}
.y34{bottom:139.237500px;}
.y45{bottom:159.945000px;}
.y33{bottom:162.945000px;}
.y44{bottom:183.945000px;}
.y32{bottom:186.975000px;}
.y43{bottom:207.675000px;}
.y31{bottom:210.675000px;}
.y40{bottom:225.375000px;}
.y56{bottom:231.375000px;}
.y30{bottom:234.375000px;}
.y55{bottom:255.375000px;}
.y2f{bottom:258.375000px;}
.y54{bottom:279.075000px;}
.y2e{bottom:282.075000px;}
.y53{bottom:303.075000px;}
.y2d{bottom:306.075000px;}
.y3b{bottom:321.375000px;}
.y52{bottom:326.775000px;}
.y2c{bottom:329.775000px;}
.y51{bottom:350.475000px;}
.y2b{bottom:353.505000px;}
.y50{bottom:374.505000px;}
.y2a{bottom:377.505000px;}
.y4f{bottom:398.205000px;}
.y29{bottom:401.220000px;}
.y4e{bottom:415.620000px;}
.y36{bottom:417.120000px;}
.y28{bottom:424.920000px;}
.y27{bottom:448.920000px;}
.y4b{bottom:464.205000px;}
.y26{bottom:472.620000px;}
.y25{bottom:496.320000px;}
.y49{bottom:512.520000px;}
.y24{bottom:520.350000px;}
.y23{bottom:544.050000px;}
.y22{bottom:567.750000px;}
.y21{bottom:591.750000px;}
.y20{bottom:615.450000px;}
.y1f{bottom:639.150000px;}
.y1e{bottom:663.150000px;}
.y1d{bottom:686.880000px;}
.y1c{bottom:710.595000px;}
.y1b{bottom:734.595000px;}
.y1a{bottom:758.295000px;}
.y19{bottom:781.995000px;}
.y18{bottom:805.995000px;}
.y17{bottom:829.695000px;}
.y16{bottom:853.425000px;}
.y15{bottom:877.425000px;}
.y14{bottom:901.125000px;}
.y13{bottom:924.825000px;}
.y12{bottom:948.825000px;}
.y11{bottom:972.525000px;}
.y10{bottom:996.225000px;}
.yf{bottom:1020.270000px;}
.ye{bottom:1043.955000px;}
.yd{bottom:1067.670000px;}
.yc{bottom:1091.670000px;}
.yb{bottom:1115.370000px;}
.ya{bottom:1139.370000px;}
.y3{bottom:1184.970000px;}
.y2{bottom:1209.000000px;}
.y1{bottom:1233.000000px;}
.hd{height:23.737500px;}
.h4{height:38.137500px;}
.he{height:47.400000px;}
.hf{height:47.700000px;}
.h5{height:48.796875px;}
.h8{height:50.484375px;}
.h3{height:64.775391px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h9{height:74.004654px;}
.h2{height:87.609375px;}
.hc{height:95.100000px;}
.hb{height:95.137500px;}
.ha{height:95.400000px;}
.h1{height:1263.000000px;}
.h0{height:1263.300000px;}
.w2{width:24.000000px;}
.w8{width:63.000000px;}
.wb{width:84.637500px;}
.w3{width:105.337500px;}
.w5{width:105.637500px;}
.wa{width:117.037500px;}
.w4{width:137.437500px;}
.w7{width:146.437500px;}
.w9{width:198.375000px;}
.w6{width:225.075000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xc{left:7.800000px;}
.x15{left:10.200000px;}
.x11{left:22.800000px;}
.x1b{left:26.700000px;}
.x17{left:28.200000px;}
.x19{left:33.600000px;}
.x20{left:37.800000px;}
.x1d{left:44.137500px;}
.x1f{left:48.300000px;}
.x1e{left:49.485000px;}
.x1c{left:61.537500px;}
.xb{left:71.437500px;}
.x13{left:78.037500px;}
.x1{left:84.937487px;}
.x8{left:93.937487px;}
.x21{left:99.937487px;}
.x4{left:118.237487px;}
.x5{left:139.537487px;}
.x12{left:149.437500px;}
.xd{left:177.675000px;}
.x9{left:194.174987px;}
.x22{left:282.374987px;}
.xa{left:311.219987px;}
.xe{left:316.020000px;}
.x14{left:348.420000px;}
.x7{left:361.019987px;}
.xf{left:422.250000px;}
.x6{left:432.749987px;}
.x3{left:442.350000px;}
.x2{left:457.049987px;}
.x16{left:466.050000px;}
.x18{left:572.595000px;}
.x10{left:647.925000px;}
.x1a{left:678.825000px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.725333pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls6{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls2{letter-spacing:2.133333pt;}
.lse{letter-spacing:17.066667pt;}
.ls0{letter-spacing:922.469333pt;}
.lsf{letter-spacing:2511.034667pt;}
.lsb{letter-spacing:2534.501333pt;}
.lsa{letter-spacing:2537.701333pt;}
.ls5{letter-spacing:2543.034667pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.341333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.616000pt;}
.ws0{word-spacing:-15.200000pt;}
.ws3{word-spacing:0.000000pt;}
._22{margin-left:-6.720000pt;}
._15{margin-left:-4.245333pt;}
._14{margin-left:-2.880000pt;}
._0{margin-left:-1.130667pt;}
._1{width:0.896000pt;}
._2{width:2.053333pt;}
._6{width:3.365333pt;}
._18{width:4.442667pt;}
._4{width:5.552000pt;}
._3{width:6.912000pt;}
._9{width:8.362667pt;}
._5{width:9.536000pt;}
._1a{width:11.242667pt;}
._7{width:12.186667pt;}
._8{width:13.210667pt;}
._1c{width:14.912000pt;}
._1f{width:17.280000pt;}
._20{width:18.624000pt;}
._12{width:19.712000pt;}
._13{width:20.608000pt;}
._b{width:21.760000pt;}
._a{width:22.976000pt;}
._d{width:23.872000pt;}
._c{width:25.370667pt;}
._1b{width:26.368000pt;}
._25{width:27.504000pt;}
._1d{width:28.506667pt;}
._11{width:29.477333pt;}
._10{width:30.464000pt;}
._23{width:31.424000pt;}
._17{width:32.512000pt;}
._16{width:33.856000pt;}
._21{width:36.288000pt;}
._26{width:39.936000pt;}
._e{width:41.344000pt;}
._f{width:42.560000pt;}
._27{width:47.808000pt;}
._19{width:53.162667pt;}
._1e{width:56.618667pt;}
._24{width:63.680000pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.933333pt;}
.y9{bottom:3.500000pt;}
.y4a{bottom:6.120000pt;}
.y3f{bottom:6.133333pt;}
.y4d{bottom:6.146667pt;}
.y3a{bottom:6.400000pt;}
.y7{bottom:15.733333pt;}
.y5{bottom:19.766667pt;}
.y8{bottom:20.300000pt;}
.y3e{bottom:27.200000pt;}
.y4c{bottom:27.213333pt;}
.y39{bottom:27.453333pt;}
.y4{bottom:36.566667pt;}
.y38{bottom:48.520000pt;}
.y42{bottom:48.533333pt;}
.y3d{bottom:48.573333pt;}
.y41{bottom:69.600000pt;}
.y3c{bottom:69.640000pt;}
.y37{bottom:69.866667pt;}
.y48{bottom:78.700000pt;}
.y47{bottom:100.033333pt;}
.y35{bottom:102.700000pt;}
.y46{bottom:121.100000pt;}
.y34{bottom:123.766667pt;}
.y45{bottom:142.173333pt;}
.y33{bottom:144.840000pt;}
.y44{bottom:163.506667pt;}
.y32{bottom:166.200000pt;}
.y43{bottom:184.600000pt;}
.y31{bottom:187.266667pt;}
.y40{bottom:200.333333pt;}
.y56{bottom:205.666667pt;}
.y30{bottom:208.333333pt;}
.y55{bottom:227.000000pt;}
.y2f{bottom:229.666667pt;}
.y54{bottom:248.066667pt;}
.y2e{bottom:250.733333pt;}
.y53{bottom:269.400000pt;}
.y2d{bottom:272.066667pt;}
.y3b{bottom:285.666667pt;}
.y52{bottom:290.466667pt;}
.y2c{bottom:293.133333pt;}
.y51{bottom:311.533333pt;}
.y2b{bottom:314.226667pt;}
.y50{bottom:332.893333pt;}
.y2a{bottom:335.560000pt;}
.y4f{bottom:353.960000pt;}
.y29{bottom:356.640000pt;}
.y4e{bottom:369.440000pt;}
.y36{bottom:370.773333pt;}
.y28{bottom:377.706667pt;}
.y27{bottom:399.040000pt;}
.y4b{bottom:412.626667pt;}
.y26{bottom:420.106667pt;}
.y25{bottom:441.173333pt;}
.y49{bottom:455.573333pt;}
.y24{bottom:462.533333pt;}
.y23{bottom:483.600000pt;}
.y22{bottom:504.666667pt;}
.y21{bottom:526.000000pt;}
.y20{bottom:547.066667pt;}
.y1f{bottom:568.133333pt;}
.y1e{bottom:589.466667pt;}
.y1d{bottom:610.560000pt;}
.y1c{bottom:631.640000pt;}
.y1b{bottom:652.973333pt;}
.y1a{bottom:674.040000pt;}
.y19{bottom:695.106667pt;}
.y18{bottom:716.440000pt;}
.y17{bottom:737.506667pt;}
.y16{bottom:758.600000pt;}
.y15{bottom:779.933333pt;}
.y14{bottom:801.000000pt;}
.y13{bottom:822.066667pt;}
.y12{bottom:843.400000pt;}
.y11{bottom:864.466667pt;}
.y10{bottom:885.533333pt;}
.yf{bottom:906.906667pt;}
.ye{bottom:927.960000pt;}
.yd{bottom:949.040000pt;}
.yc{bottom:970.373333pt;}
.yb{bottom:991.440000pt;}
.ya{bottom:1012.773333pt;}
.y3{bottom:1053.306667pt;}
.y2{bottom:1074.666667pt;}
.y1{bottom:1096.000000pt;}
.hd{height:21.100000pt;}
.h4{height:33.900000pt;}
.he{height:42.133333pt;}
.hf{height:42.400000pt;}
.h5{height:43.375000pt;}
.h8{height:44.875000pt;}
.h3{height:57.578125pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h9{height:65.781915pt;}
.h2{height:77.875000pt;}
.hc{height:84.533333pt;}
.hb{height:84.566667pt;}
.ha{height:84.800000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.933333pt;}
.w2{width:21.333333pt;}
.w8{width:56.000000pt;}
.wb{width:75.233333pt;}
.w3{width:93.633333pt;}
.w5{width:93.900000pt;}
.wa{width:104.033333pt;}
.w4{width:122.166667pt;}
.w7{width:130.166667pt;}
.w9{width:176.333333pt;}
.w6{width:200.066667pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xc{left:6.933333pt;}
.x15{left:9.066667pt;}
.x11{left:20.266667pt;}
.x1b{left:23.733333pt;}
.x17{left:25.066667pt;}
.x19{left:29.866667pt;}
.x20{left:33.600000pt;}
.x1d{left:39.233333pt;}
.x1f{left:42.933333pt;}
.x1e{left:43.986667pt;}
.x1c{left:54.700000pt;}
.xb{left:63.500000pt;}
.x13{left:69.366667pt;}
.x1{left:75.499988pt;}
.x8{left:83.499988pt;}
.x21{left:88.833321pt;}
.x4{left:105.099988pt;}
.x5{left:124.033321pt;}
.x12{left:132.833333pt;}
.xd{left:157.933333pt;}
.x9{left:172.599988pt;}
.x22{left:250.999988pt;}
.xa{left:276.639988pt;}
.xe{left:280.906667pt;}
.x14{left:309.706667pt;}
.x7{left:320.906655pt;}
.xf{left:375.333333pt;}
.x6{left:384.666655pt;}
.x3{left:393.200000pt;}
.x2{left:406.266655pt;}
.x16{left:414.266667pt;}
.x18{left:508.973333pt;}
.x10{left:575.933333pt;}
.x1a{left:603.400000pt;}
}




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