
    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_f56cd6dec5450aff86ca0128.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.381348;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_c84102ed1de8d4d9de463700.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901855;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_9f5c985bdc563fbdfac2c84a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.325195;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_57d9209b1b2428586103edaa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.152344;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_74a493b5146ce223ac0303bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083984;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_5a85ea1760a0f37c8ed1d18e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.152344;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;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-0.453000px;}
.ls7{letter-spacing:-0.313200px;}
.ls9{letter-spacing:-0.276000px;}
.lsd{letter-spacing:-0.093000px;}
.ls8{letter-spacing:-0.046800px;}
.lsc{letter-spacing:-0.043920px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024120px;}
.lsa{letter-spacing:0.041760px;}
.ls0{letter-spacing:0.046800px;}
.ls1{letter-spacing:0.083880px;}
.ls4{letter-spacing:0.084000px;}
.lsf{letter-spacing:0.115800px;}
.ls10{letter-spacing:0.124920px;}
.lsb{letter-spacing:0.313200px;}
.ls11{letter-spacing:0.460080px;}
.lse{letter-spacing:0.510000px;}
.ls3{letter-spacing:2.243880px;}
.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:-32.292000px;}
.ws2{word-spacing:-25.778880px;}
.ws4{word-spacing:-20.779920px;}
.ws3{word-spacing:-18.022680px;}
.ws1{word-spacing:-17.975880px;}
.ws8{word-spacing:-17.931960px;}
.ws7{word-spacing:-14.629320px;}
.ws5{word-spacing:-14.316120px;}
.ws6{word-spacing:-14.269320px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-1.022040px;}
._2{width:1.149120px;}
._6{width:2.239200px;}
._4{width:3.267720px;}
._3{width:4.412520px;}
._a{width:6.252480px;}
._e{width:7.257360px;}
._5{width:8.522640px;}
._b{width:16.917240px;}
._c{width:38.155080px;}
._d{width:39.339600px;}
._9{width:134.855280px;}
._7{width:159.515280px;}
._8{width:198.203880px;}
._0{width:382.344120px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:11.880000px;}
.fsa{font-size:18.000000px;}
.fs5{font-size:24.120000px;}
.fs9{font-size:27.000000px;}
.fs8{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.510000px;}
.y5d{bottom:5.130000px;}
.y9{bottom:7.830000px;}
.y3{bottom:11.250000px;}
.y5a{bottom:20.250000px;}
.y2{bottom:27.720000px;}
.y59{bottom:37.080000px;}
.y8{bottom:42.030000px;}
.yc{bottom:57.240000px;}
.y7{bottom:63.000000px;}
.yb{bottom:77.940000px;}
.y6{bottom:82.080000px;}
.y4{bottom:92.160000px;}
.y5{bottom:95.670000px;}
.y41{bottom:114.930000px;}
.y40{bottom:135.630000px;}
.y3f{bottom:155.700000px;}
.y3e{bottom:173.430000px;}
.y3d{bottom:194.130000px;}
.y3c{bottom:215.130000px;}
.y3b{bottom:236.010000px;}
.y3a{bottom:256.080000px;}
.y39{bottom:273.810000px;}
.y38{bottom:294.690000px;}
.y37{bottom:315.390000px;}
.y36{bottom:335.460000px;}
.y35{bottom:348.690000px;}
.y34{bottom:374.790000px;}
.y33{bottom:398.190000px;}
.y32{bottom:415.920000px;}
.y31{bottom:435.810000px;}
.y30{bottom:448.950000px;}
.y2f{bottom:475.140000px;}
.y2e{bottom:498.540000px;}
.y2d{bottom:516.090000px;}
.y2c{bottom:536.970000px;}
.y2b{bottom:557.940000px;}
.y2a{bottom:579.000000px;}
.y29{bottom:599.700000px;}
.y28{bottom:620.760000px;}
.y27{bottom:641.760000px;}
.y26{bottom:658.950000px;}
.y25{bottom:664.890000px;}
.y24{bottom:676.590000px;}
.y23{bottom:686.760000px;}
.y22{bottom:703.500000px;}
.y58{bottom:714.840000px;}
.y21{bottom:718.440000px;}
.y20{bottom:728.520000px;}
.y1f{bottom:743.550000px;}
.y56{bottom:751.920000px;}
.y1e{bottom:753.630000px;}
.y1d{bottom:770.280000px;}
.y55{bottom:772.800000px;}
.y57{bottom:775.770000px;}
.y1c{bottom:787.110000px;}
.y54{bottom:793.680000px;}
.y1b{bottom:803.850000px;}
.y53{bottom:814.650000px;}
.y1a{bottom:819.600000px;}
.y19{bottom:833.100000px;}
.y52{bottom:835.530000px;}
.y18{bottom:849.750000px;}
.y51{bottom:856.410000px;}
.y17{bottom:866.490000px;}
.y50{bottom:877.290000px;}
.y16{bottom:883.230000px;}
.y4f{bottom:898.260000px;}
.y15{bottom:900.780000px;}
.y4e{bottom:919.140000px;}
.y14{bottom:920.310000px;}
.y13{bottom:935.430000px;}
.y4d{bottom:940.020000px;}
.y12{bottom:956.220000px;}
.y4c{bottom:960.900000px;}
.y11{bottom:968.460000px;}
.y4b{bottom:981.870000px;}
.y10{bottom:991.410000px;}
.y4a{bottom:1002.750000px;}
.yf{bottom:1010.040000px;}
.y49{bottom:1023.630000px;}
.ye{bottom:1043.430000px;}
.y48{bottom:1044.510000px;}
.y47{bottom:1065.510000px;}
.yd{bottom:1071.720000px;}
.ya{bottom:1082.340000px;}
.y46{bottom:1086.390000px;}
.y1{bottom:1098.900000px;}
.y5c{bottom:1105.830000px;}
.y45{bottom:1107.270000px;}
.y44{bottom:1128.240000px;}
.y43{bottom:1148.760000px;}
.y42{bottom:1172.610000px;}
.h10{height:13.011152px;}
.h14{height:24.930000px;}
.h9{height:26.416582px;}
.hd{height:29.570801px;}
.hf{height:37.195312px;}
.h7{height:39.427734px;}
.hb{height:46.130449px;}
.h6{height:49.469766px;}
.h13{height:50.130000px;}
.h5{height:50.273438px;}
.h11{height:52.223379px;}
.he{height:52.438887px;}
.h3{height:65.844316px;}
.hc{height:78.855469px;}
.ha{height:105.272051px;}
.h2{height:108.717000px;}
.h4{height:108.720000px;}
.h8{height:111.585938px;}
.h12{height:369.480000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:31.500000px;}
.w3{width:42.570000px;}
.w2{width:337.740000px;}
.w4{width:367.320000px;}
.w5{width:558.060000px;}
.w6{width:558.330000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x15{left:10.800000px;}
.x9{left:14.310000px;}
.x3{left:20.340000px;}
.x1{left:72.720000px;}
.xa{left:80.820000px;}
.xd{left:98.820000px;}
.x8{left:103.410000px;}
.x13{left:122.520000px;}
.x11{left:133.950000px;}
.x2{left:174.630000px;}
.x16{left:186.690000px;}
.x10{left:252.030000px;}
.x7{left:259.680000px;}
.x12{left:295.770000px;}
.xf{left:345.360000px;}
.x4{left:410.460000px;}
.xe{left:416.130000px;}
.xc{left:446.550000px;}
.x6{left:453.030000px;}
.x14{left:547.260000px;}
.xb{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.402667pt;}
.ls7{letter-spacing:-0.278400pt;}
.ls9{letter-spacing:-0.245333pt;}
.lsd{letter-spacing:-0.082667pt;}
.ls8{letter-spacing:-0.041600pt;}
.lsc{letter-spacing:-0.039040pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021440pt;}
.lsa{letter-spacing:0.037120pt;}
.ls0{letter-spacing:0.041600pt;}
.ls1{letter-spacing:0.074560pt;}
.ls4{letter-spacing:0.074667pt;}
.lsf{letter-spacing:0.102933pt;}
.ls10{letter-spacing:0.111040pt;}
.lsb{letter-spacing:0.278400pt;}
.ls11{letter-spacing:0.408960pt;}
.lse{letter-spacing:0.453333pt;}
.ls3{letter-spacing:1.994560pt;}
.ws0{word-spacing:-28.704000pt;}
.ws2{word-spacing:-22.914560pt;}
.ws4{word-spacing:-18.471040pt;}
.ws3{word-spacing:-16.020160pt;}
.ws1{word-spacing:-15.978560pt;}
.ws8{word-spacing:-15.939520pt;}
.ws7{word-spacing:-13.003840pt;}
.ws5{word-spacing:-12.725440pt;}
.ws6{word-spacing:-12.683840pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-0.908480pt;}
._2{width:1.021440pt;}
._6{width:1.990400pt;}
._4{width:2.904640pt;}
._3{width:3.922240pt;}
._a{width:5.557760pt;}
._e{width:6.450987pt;}
._5{width:7.575680pt;}
._b{width:15.037547pt;}
._c{width:33.915627pt;}
._d{width:34.968533pt;}
._9{width:119.871360pt;}
._7{width:141.791360pt;}
._8{width:176.181227pt;}
._0{width:339.861440pt;}
.fsb{font-size:10.560000pt;}
.fsa{font-size:16.000000pt;}
.fs5{font-size:21.440000pt;}
.fs9{font-size:24.000000pt;}
.fs8{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:3.120000pt;}
.y5d{bottom:4.560000pt;}
.y9{bottom:6.960000pt;}
.y3{bottom:10.000000pt;}
.y5a{bottom:18.000000pt;}
.y2{bottom:24.640000pt;}
.y59{bottom:32.960000pt;}
.y8{bottom:37.360000pt;}
.yc{bottom:50.880000pt;}
.y7{bottom:56.000000pt;}
.yb{bottom:69.280000pt;}
.y6{bottom:72.960000pt;}
.y4{bottom:81.920000pt;}
.y5{bottom:85.040000pt;}
.y41{bottom:102.160000pt;}
.y40{bottom:120.560000pt;}
.y3f{bottom:138.400000pt;}
.y3e{bottom:154.160000pt;}
.y3d{bottom:172.560000pt;}
.y3c{bottom:191.226667pt;}
.y3b{bottom:209.786667pt;}
.y3a{bottom:227.626667pt;}
.y39{bottom:243.386667pt;}
.y38{bottom:261.946667pt;}
.y37{bottom:280.346667pt;}
.y36{bottom:298.186667pt;}
.y35{bottom:309.946667pt;}
.y34{bottom:333.146667pt;}
.y33{bottom:353.946667pt;}
.y32{bottom:369.706667pt;}
.y31{bottom:387.386667pt;}
.y30{bottom:399.066667pt;}
.y2f{bottom:422.346667pt;}
.y2e{bottom:443.146667pt;}
.y2d{bottom:458.746667pt;}
.y2c{bottom:477.306667pt;}
.y2b{bottom:495.946667pt;}
.y2a{bottom:514.666667pt;}
.y29{bottom:533.066667pt;}
.y28{bottom:551.786667pt;}
.y27{bottom:570.453333pt;}
.y26{bottom:585.733333pt;}
.y25{bottom:591.013333pt;}
.y24{bottom:601.413333pt;}
.y23{bottom:610.453333pt;}
.y22{bottom:625.333333pt;}
.y58{bottom:635.413333pt;}
.y21{bottom:638.613333pt;}
.y20{bottom:647.573333pt;}
.y1f{bottom:660.933333pt;}
.y56{bottom:668.373333pt;}
.y1e{bottom:669.893333pt;}
.y1d{bottom:684.693333pt;}
.y55{bottom:686.933333pt;}
.y57{bottom:689.573333pt;}
.y1c{bottom:699.653333pt;}
.y54{bottom:705.493333pt;}
.y1b{bottom:714.533333pt;}
.y53{bottom:724.133333pt;}
.y1a{bottom:728.533333pt;}
.y19{bottom:740.533333pt;}
.y52{bottom:742.693333pt;}
.y18{bottom:755.333333pt;}
.y51{bottom:761.253333pt;}
.y17{bottom:770.213333pt;}
.y50{bottom:779.813333pt;}
.y16{bottom:785.093333pt;}
.y4f{bottom:798.453333pt;}
.y15{bottom:800.693333pt;}
.y4e{bottom:817.013333pt;}
.y14{bottom:818.053333pt;}
.y13{bottom:831.493333pt;}
.y4d{bottom:835.573333pt;}
.y12{bottom:849.973333pt;}
.y4c{bottom:854.133333pt;}
.y11{bottom:860.853333pt;}
.y4b{bottom:872.773333pt;}
.y10{bottom:881.253333pt;}
.y4a{bottom:891.333333pt;}
.yf{bottom:897.813333pt;}
.y49{bottom:909.893333pt;}
.ye{bottom:927.493333pt;}
.y48{bottom:928.453333pt;}
.y47{bottom:947.120000pt;}
.yd{bottom:952.640000pt;}
.ya{bottom:962.080000pt;}
.y46{bottom:965.680000pt;}
.y1{bottom:976.800000pt;}
.y5c{bottom:982.960000pt;}
.y45{bottom:984.240000pt;}
.y44{bottom:1002.880000pt;}
.y43{bottom:1021.120000pt;}
.y42{bottom:1042.320000pt;}
.h10{height:11.565469pt;}
.h14{height:22.160000pt;}
.h9{height:23.481406pt;}
.hd{height:26.285156pt;}
.hf{height:33.062500pt;}
.h7{height:35.046875pt;}
.hb{height:41.004844pt;}
.h6{height:43.973125pt;}
.h13{height:44.560000pt;}
.h5{height:44.687500pt;}
.h11{height:46.420781pt;}
.he{height:46.612344pt;}
.h3{height:58.528281pt;}
.hc{height:70.093750pt;}
.ha{height:93.575156pt;}
.h2{height:96.637333pt;}
.h4{height:96.640000pt;}
.h8{height:99.187500pt;}
.h12{height:328.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:28.000000pt;}
.w3{width:37.840000pt;}
.w2{width:300.213333pt;}
.w4{width:326.506667pt;}
.w5{width:496.053333pt;}
.w6{width:496.293333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x15{left:9.600000pt;}
.x9{left:12.720000pt;}
.x3{left:18.080000pt;}
.x1{left:64.640000pt;}
.xa{left:71.840000pt;}
.xd{left:87.840000pt;}
.x8{left:91.920000pt;}
.x13{left:108.906667pt;}
.x11{left:119.066667pt;}
.x2{left:155.226667pt;}
.x16{left:165.946667pt;}
.x10{left:224.026667pt;}
.x7{left:230.826667pt;}
.x12{left:262.906667pt;}
.xf{left:306.986667pt;}
.x4{left:364.853333pt;}
.xe{left:369.893333pt;}
.xc{left:396.933333pt;}
.x6{left:402.693333pt;}
.x14{left:486.453333pt;}
.xb{left:698.080000pt;}
}




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