
    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_6fffee4ed83081d03c91c6c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_14228f16e371eae31690c4fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_be7935f0a3717d21ac719c99.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_0c98c86e4f1b23d86b9c2f8a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_0fa5ba308666f8908356db1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:78.408000px;}
.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;}
}
.ws0{word-spacing:-23.268000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._24{margin-left:-2673.384000px;}
._2a{margin-left:-2670.672000px;}
._2e{margin-left:-2506.128000px;}
._30{margin-left:-2430.504000px;}
._26{margin-left:-2165.928000px;}
._2c{margin-left:-1884.072000px;}
._19{margin-left:-1251.744000px;}
._17{margin-left:-1225.032000px;}
._32{margin-left:-1083.696000px;}
._22{margin-left:-1059.120000px;}
._1e{margin-left:-963.816000px;}
._20{margin-left:-437.064000px;}
._1c{margin-left:-373.968000px;}
._28{margin-left:-241.128000px;}
._1b{margin-left:-31.848000px;}
._10{margin-left:-8.496000px;}
._14{margin-left:-6.288000px;}
._a{margin-left:-5.112000px;}
._11{margin-left:-3.552000px;}
._4{margin-left:-2.496000px;}
._6{margin-left:-1.320000px;}
._0{width:1.560000px;}
._f{width:2.592000px;}
._3{width:3.648000px;}
._2{width:4.656000px;}
._7{width:6.408000px;}
._5{width:8.136000px;}
._1{width:9.336000px;}
._9{width:10.416000px;}
._12{width:11.808000px;}
._8{width:12.888000px;}
._16{width:15.336000px;}
._13{width:16.344000px;}
._b{width:21.312000px;}
._c{width:22.608000px;}
._d{width:24.048000px;}
._e{width:25.992000px;}
._15{width:28.152000px;}
._29{width:205.128000px;}
._1d{width:337.752000px;}
._21{width:401.328000px;}
._1f{width:928.152000px;}
._23{width:1022.904000px;}
._33{width:1048.104000px;}
._18{width:1189.152000px;}
._1a{width:1216.152000px;}
._2d{width:1848.528000px;}
._27{width:2129.904000px;}
._31{width:2395.728000px;}
._2f{width:2471.328000px;}
._34{width:2636.064000px;}
._2b{width:2637.504000px;}
._25{width:2639.304000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y29{bottom:88.891500px;}
.y51{bottom:130.891500px;}
.y28{bottom:139.891500px;}
.y50{bottom:154.741500px;}
.y27{bottom:163.741500px;}
.y4f{bottom:178.441500px;}
.y26{bottom:187.441500px;}
.y6e{bottom:201.091500px;}
.y4e{bottom:202.291500px;}
.y25{bottom:221.791500px;}
.y6d{bottom:224.941500px;}
.y4d{bottom:225.991500px;}
.y8e{bottom:228.841500px;}
.y24{bottom:245.491500px;}
.y6c{bottom:248.641500px;}
.y4c{bottom:249.841500px;}
.y8d{bottom:252.541500px;}
.y23{bottom:269.341500px;}
.y6b{bottom:272.491500px;}
.y8c{bottom:276.391500px;}
.y4b{bottom:279.991500px;}
.y22{bottom:293.041500px;}
.y6a{bottom:306.691500px;}
.y8b{bottom:310.591500px;}
.y21{bottom:316.891500px;}
.y4a{bottom:317.191500px;}
.y69{bottom:330.541500px;}
.y8a{bottom:334.441500px;}
.y20{bottom:340.591500px;}
.y49{bottom:341.041500px;}
.y89{bottom:358.141500px;}
.y48{bottom:364.741500px;}
.y1f{bottom:374.941500px;}
.y88{bottom:388.441500px;}
.y47{bottom:388.591500px;}
.y1e{bottom:398.641500px;}
.y46{bottom:412.291500px;}
.y1d{bottom:422.491500px;}
.y87{bottom:425.641500px;}
.y45{bottom:436.141500px;}
.y1c{bottom:446.191500px;}
.y86{bottom:449.341500px;}
.y1b{bottom:470.041500px;}
.y44{bottom:470.341500px;}
.y85{bottom:473.191500px;}
.y1a{bottom:493.741500px;}
.y43{bottom:494.191500px;}
.y84{bottom:496.891500px;}
.y19{bottom:517.591500px;}
.y42{bottom:517.891500px;}
.y83{bottom:520.741500px;}
.y68{bottom:528.391500px;}
.y41{bottom:541.741500px;}
.y82{bottom:544.441500px;}
.y18{bottom:551.791500px;}
.y67{bottom:562.741500px;}
.y17{bottom:575.641500px;}
.y40{bottom:575.941500px;}
.y81{bottom:578.791500px;}
.y66{bottom:596.941500px;}
.y16{bottom:599.341500px;}
.y3f{bottom:599.791500px;}
.y80{bottom:602.491500px;}
.y65{bottom:620.791500px;}
.y15{bottom:623.191500px;}
.y3e{bottom:623.491500px;}
.y7f{bottom:626.341500px;}
.y9f{bottom:634.591500px;}
.y64{bottom:644.491500px;}
.y14{bottom:646.891500px;}
.y3d{bottom:647.341500px;}
.y7e{bottom:650.041500px;}
.y9e{bottom:658.441500px;}
.y63{bottom:668.341500px;}
.y13{bottom:681.241500px;}
.y3c{bottom:681.541500px;}
.y7d{bottom:684.391500px;}
.y62{bottom:692.041500px;}
.y9d{bottom:692.641500px;}
.y12{bottom:704.941500px;}
.y3b{bottom:705.391500px;}
.y7c{bottom:708.091500px;}
.y61{bottom:715.891500px;}
.y9c{bottom:726.991500px;}
.y11{bottom:728.791500px;}
.y3a{bottom:729.091500px;}
.y7b{bottom:731.941500px;}
.y60{bottom:746.041500px;}
.y10{bottom:752.491500px;}
.y39{bottom:752.941500px;}
.y7a{bottom:755.641500px;}
.y9b{bottom:761.191500px;}
.y5f{bottom:783.241500px;}
.yf{bottom:786.841500px;}
.y38{bottom:787.141500px;}
.y79{bottom:789.991500px;}
.y9a{bottom:795.541500px;}
.y5e{bottom:807.091500px;}
.ye{bottom:810.541500px;}
.y37{bottom:810.991500px;}
.y78{bottom:813.691500px;}
.y99{bottom:829.741500px;}
.y5d{bottom:830.791500px;}
.yd{bottom:834.391500px;}
.y77{bottom:843.991500px;}
.y36{bottom:845.191500px;}
.y98{bottom:853.591500px;}
.y5c{bottom:854.641500px;}
.yc{bottom:864.541500px;}
.y35{bottom:869.041500px;}
.y5b{bottom:878.341500px;}
.y76{bottom:881.191500px;}
.y97{bottom:887.791500px;}
.y34{bottom:892.741500px;}
.yb{bottom:901.741500px;}
.y5a{bottom:902.191500px;}
.y75{bottom:904.891500px;}
.y33{bottom:916.591500px;}
.y96{bottom:922.141500px;}
.ya{bottom:925.591500px;}
.y59{bottom:925.891500px;}
.y74{bottom:928.741500px;}
.y32{bottom:940.291500px;}
.y95{bottom:945.841500px;}
.y9{bottom:949.291500px;}
.y58{bottom:960.241500px;}
.y73{bottom:962.941500px;}
.y8{bottom:973.141500px;}
.y31{bottom:974.641500px;}
.y94{bottom:980.191500px;}
.y57{bottom:983.941500px;}
.y72{bottom:986.791500px;}
.y7{bottom:996.841500px;}
.y30{bottom:998.341500px;}
.y56{bottom:1007.791500px;}
.y93{bottom:1014.391500px;}
.y6{bottom:1020.691500px;}
.y71{bottom:1020.991500px;}
.y2f{bottom:1022.191500px;}
.y55{bottom:1041.991500px;}
.y5{bottom:1044.391500px;}
.y2e{bottom:1045.891500px;}
.y92{bottom:1048.741500px;}
.y70{bottom:1055.341500px;}
.y54{bottom:1065.841500px;}
.y4{bottom:1068.241500px;}
.y2d{bottom:1069.741500px;}
.y6f{bottom:1079.041500px;}
.y91{bottom:1082.941500px;}
.y53{bottom:1089.541500px;}
.y3{bottom:1098.391500px;}
.y2c{bottom:1099.891500px;}
.y52{bottom:1113.391500px;}
.y90{bottom:1117.291500px;}
.y2{bottom:1134.391500px;}
.y2b{bottom:1137.091500px;}
.y8f{bottom:1147.441500px;}
.y2a{bottom:1160.941500px;}
.h5{height:50.695312px;}
.h4{height:60.867188px;}
.h3{height:78.257812px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.200000px;}
.x3{left:112.200000px;}
.x1{left:125.700000px;}
.x4{left:139.200000px;}
.x7{left:264.750000px;}
.x6{left:327.900000px;}
.x8{left:403.800000px;}
.x5{left:442.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:69.696000pt;}
.ws0{word-spacing:-20.682667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._24{margin-left:-2376.341333pt;}
._2a{margin-left:-2373.930667pt;}
._2e{margin-left:-2227.669333pt;}
._30{margin-left:-2160.448000pt;}
._26{margin-left:-1925.269333pt;}
._2c{margin-left:-1674.730667pt;}
._19{margin-left:-1112.661333pt;}
._17{margin-left:-1088.917333pt;}
._32{margin-left:-963.285333pt;}
._22{margin-left:-941.440000pt;}
._1e{margin-left:-856.725333pt;}
._20{margin-left:-388.501333pt;}
._1c{margin-left:-332.416000pt;}
._28{margin-left:-214.336000pt;}
._1b{margin-left:-28.309333pt;}
._10{margin-left:-7.552000pt;}
._14{margin-left:-5.589333pt;}
._a{margin-left:-4.544000pt;}
._11{margin-left:-3.157333pt;}
._4{margin-left:-2.218667pt;}
._6{margin-left:-1.173333pt;}
._0{width:1.386667pt;}
._f{width:2.304000pt;}
._3{width:3.242667pt;}
._2{width:4.138667pt;}
._7{width:5.696000pt;}
._5{width:7.232000pt;}
._1{width:8.298667pt;}
._9{width:9.258667pt;}
._12{width:10.496000pt;}
._8{width:11.456000pt;}
._16{width:13.632000pt;}
._13{width:14.528000pt;}
._b{width:18.944000pt;}
._c{width:20.096000pt;}
._d{width:21.376000pt;}
._e{width:23.104000pt;}
._15{width:25.024000pt;}
._29{width:182.336000pt;}
._1d{width:300.224000pt;}
._21{width:356.736000pt;}
._1f{width:825.024000pt;}
._23{width:909.248000pt;}
._33{width:931.648000pt;}
._18{width:1057.024000pt;}
._1a{width:1081.024000pt;}
._2d{width:1643.136000pt;}
._27{width:1893.248000pt;}
._31{width:2129.536000pt;}
._2f{width:2196.736000pt;}
._34{width:2343.168000pt;}
._2b{width:2344.448000pt;}
._25{width:2346.048000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y29{bottom:79.014667pt;}
.y51{bottom:116.348000pt;}
.y28{bottom:124.348000pt;}
.y50{bottom:137.548000pt;}
.y27{bottom:145.548000pt;}
.y4f{bottom:158.614667pt;}
.y26{bottom:166.614667pt;}
.y6e{bottom:178.748000pt;}
.y4e{bottom:179.814667pt;}
.y25{bottom:197.148000pt;}
.y6d{bottom:199.948000pt;}
.y4d{bottom:200.881333pt;}
.y8e{bottom:203.414667pt;}
.y24{bottom:218.214667pt;}
.y6c{bottom:221.014667pt;}
.y4c{bottom:222.081333pt;}
.y8d{bottom:224.481333pt;}
.y23{bottom:239.414667pt;}
.y6b{bottom:242.214667pt;}
.y8c{bottom:245.681333pt;}
.y4b{bottom:248.881333pt;}
.y22{bottom:260.481333pt;}
.y6a{bottom:272.614667pt;}
.y8b{bottom:276.081333pt;}
.y21{bottom:281.681333pt;}
.y4a{bottom:281.948000pt;}
.y69{bottom:293.814667pt;}
.y8a{bottom:297.281333pt;}
.y20{bottom:302.748000pt;}
.y49{bottom:303.148000pt;}
.y89{bottom:318.348000pt;}
.y48{bottom:324.214667pt;}
.y1f{bottom:333.281333pt;}
.y88{bottom:345.281333pt;}
.y47{bottom:345.414667pt;}
.y1e{bottom:354.348000pt;}
.y46{bottom:366.481333pt;}
.y1d{bottom:375.548000pt;}
.y87{bottom:378.348000pt;}
.y45{bottom:387.681333pt;}
.y1c{bottom:396.614667pt;}
.y86{bottom:399.414667pt;}
.y1b{bottom:417.814667pt;}
.y44{bottom:418.081333pt;}
.y85{bottom:420.614667pt;}
.y1a{bottom:438.881333pt;}
.y43{bottom:439.281333pt;}
.y84{bottom:441.681333pt;}
.y19{bottom:460.081333pt;}
.y42{bottom:460.348000pt;}
.y83{bottom:462.881333pt;}
.y68{bottom:469.681333pt;}
.y41{bottom:481.548000pt;}
.y82{bottom:483.948000pt;}
.y18{bottom:490.481333pt;}
.y67{bottom:500.214667pt;}
.y17{bottom:511.681333pt;}
.y40{bottom:511.948000pt;}
.y81{bottom:514.481333pt;}
.y66{bottom:530.614667pt;}
.y16{bottom:532.748000pt;}
.y3f{bottom:533.148000pt;}
.y80{bottom:535.548000pt;}
.y65{bottom:551.814667pt;}
.y15{bottom:553.948000pt;}
.y3e{bottom:554.214667pt;}
.y7f{bottom:556.748000pt;}
.y9f{bottom:564.081333pt;}
.y64{bottom:572.881333pt;}
.y14{bottom:575.014667pt;}
.y3d{bottom:575.414667pt;}
.y7e{bottom:577.814667pt;}
.y9e{bottom:585.281333pt;}
.y63{bottom:594.081333pt;}
.y13{bottom:605.548000pt;}
.y3c{bottom:605.814667pt;}
.y7d{bottom:608.348000pt;}
.y62{bottom:615.148000pt;}
.y9d{bottom:615.681333pt;}
.y12{bottom:626.614667pt;}
.y3b{bottom:627.014667pt;}
.y7c{bottom:629.414667pt;}
.y61{bottom:636.348000pt;}
.y9c{bottom:646.214667pt;}
.y11{bottom:647.814667pt;}
.y3a{bottom:648.081333pt;}
.y7b{bottom:650.614667pt;}
.y60{bottom:663.148000pt;}
.y10{bottom:668.881333pt;}
.y39{bottom:669.281333pt;}
.y7a{bottom:671.681333pt;}
.y9b{bottom:676.614667pt;}
.y5f{bottom:696.214667pt;}
.yf{bottom:699.414667pt;}
.y38{bottom:699.681333pt;}
.y79{bottom:702.214667pt;}
.y9a{bottom:707.148000pt;}
.y5e{bottom:717.414667pt;}
.ye{bottom:720.481333pt;}
.y37{bottom:720.881333pt;}
.y78{bottom:723.281333pt;}
.y99{bottom:737.548000pt;}
.y5d{bottom:738.481333pt;}
.yd{bottom:741.681333pt;}
.y77{bottom:750.214667pt;}
.y36{bottom:751.281333pt;}
.y98{bottom:758.748000pt;}
.y5c{bottom:759.681333pt;}
.yc{bottom:768.481333pt;}
.y35{bottom:772.481333pt;}
.y5b{bottom:780.748000pt;}
.y76{bottom:783.281333pt;}
.y97{bottom:789.148000pt;}
.y34{bottom:793.548000pt;}
.yb{bottom:801.548000pt;}
.y5a{bottom:801.948000pt;}
.y75{bottom:804.348000pt;}
.y33{bottom:814.748000pt;}
.y96{bottom:819.681333pt;}
.ya{bottom:822.748000pt;}
.y59{bottom:823.014667pt;}
.y74{bottom:825.548000pt;}
.y32{bottom:835.814667pt;}
.y95{bottom:840.748000pt;}
.y9{bottom:843.814667pt;}
.y58{bottom:853.548000pt;}
.y73{bottom:855.948000pt;}
.y8{bottom:865.014667pt;}
.y31{bottom:866.348000pt;}
.y94{bottom:871.281333pt;}
.y57{bottom:874.614667pt;}
.y72{bottom:877.148000pt;}
.y7{bottom:886.081333pt;}
.y30{bottom:887.414667pt;}
.y56{bottom:895.814667pt;}
.y93{bottom:901.681333pt;}
.y6{bottom:907.281333pt;}
.y71{bottom:907.548000pt;}
.y2f{bottom:908.614667pt;}
.y55{bottom:926.214667pt;}
.y5{bottom:928.348000pt;}
.y2e{bottom:929.681333pt;}
.y92{bottom:932.214667pt;}
.y70{bottom:938.081333pt;}
.y54{bottom:947.414667pt;}
.y4{bottom:949.548000pt;}
.y2d{bottom:950.881333pt;}
.y6f{bottom:959.148000pt;}
.y91{bottom:962.614667pt;}
.y53{bottom:968.481333pt;}
.y3{bottom:976.348000pt;}
.y2c{bottom:977.681333pt;}
.y52{bottom:989.681333pt;}
.y90{bottom:993.148000pt;}
.y2{bottom:1008.348000pt;}
.y2b{bottom:1010.748000pt;}
.y8f{bottom:1019.948000pt;}
.y2a{bottom:1031.948000pt;}
.h5{height:45.062500pt;}
.h4{height:54.104167pt;}
.h3{height:69.562500pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.733333pt;}
.x3{left:99.733333pt;}
.x1{left:111.733333pt;}
.x4{left:123.733333pt;}
.x7{left:235.333333pt;}
.x6{left:291.466667pt;}
.x8{left:358.933333pt;}
.x5{left:393.066667pt;}
}




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