
    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_c5b4a2aea0f0d6f7be4ad719.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d483b08024dcc6ff23c6197d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_61d9d4be9c616dcf9bc7fa1f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.233400px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.400320px;}
.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;}
}
.ws3{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.ws2{word-spacing:-14.339400px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._1{width:1.477440px;}
._2{width:2.549280px;}
.fc3{color:transparent;}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,95,145);}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y4a{bottom:-18.285000px;}
.y4c{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:41.250000px;}
.y48{bottom:126.756000px;}
.y4d{bottom:130.860000px;}
.y1a{bottom:135.756000px;}
.y47{bottom:146.016000px;}
.y19{bottom:158.070000px;}
.y46{bottom:165.270000px;}
.y72{bottom:172.650000px;}
.y18{bottom:180.210000px;}
.y45{bottom:184.710000px;}
.y71{bottom:194.970000px;}
.y17{bottom:202.530000px;}
.y44{bottom:203.970000px;}
.y70{bottom:217.110000px;}
.y43{bottom:223.410000px;}
.y16{bottom:224.670000px;}
.y6f{bottom:239.430000px;}
.y42{bottom:242.670000px;}
.y15{bottom:246.990000px;}
.y6e{bottom:261.570000px;}
.y41{bottom:262.110000px;}
.y14{bottom:269.130000px;}
.y40{bottom:281.370000px;}
.y6d{bottom:286.410000px;}
.y13{bottom:294.015000px;}
.y3f{bottom:300.855000px;}
.y3e{bottom:320.115000px;}
.y6c{bottom:326.235000px;}
.y12{bottom:333.795000px;}
.y3d{bottom:339.555000px;}
.y6b{bottom:348.555000px;}
.y11{bottom:356.115000px;}
.y3c{bottom:358.815000px;}
.y6a{bottom:370.875000px;}
.y3b{bottom:378.255000px;}
.y10{bottom:378.435000px;}
.y69{bottom:393.015000px;}
.y4b{bottom:393.555000px;}
.y49{bottom:393.660000px;}
.y3a{bottom:397.515000px;}
.yf{bottom:400.575000px;}
.y68{bottom:415.335000px;}
.y39{bottom:416.955000px;}
.ye{bottom:422.895000px;}
.y38{bottom:436.215000px;}
.y67{bottom:439.995000px;}
.yd{bottom:445.035000px;}
.y37{bottom:455.475000px;}
.yc{bottom:467.355000px;}
.y36{bottom:474.915000px;}
.y66{bottom:479.955000px;}
.yb{bottom:489.675000px;}
.y35{bottom:494.175000px;}
.y65{bottom:502.095000px;}
.ya{bottom:511.815000px;}
.y34{bottom:513.615000px;}
.y64{bottom:524.415000px;}
.y89{bottom:529.275000px;}
.y33{bottom:532.875000px;}
.y9{bottom:534.135000px;}
.y63{bottom:546.735000px;}
.y88{bottom:551.625000px;}
.y32{bottom:552.345000px;}
.y8{bottom:556.305000px;}
.y62{bottom:568.905000px;}
.y31{bottom:571.605000px;}
.y87{bottom:573.765000px;}
.y7{bottom:578.625000px;}
.y30{bottom:591.045000px;}
.y61{bottom:593.565000px;}
.y86{bottom:596.085000px;}
.y6{bottom:603.285000px;}
.y2f{bottom:610.305000px;}
.y85{bottom:618.225000px;}
.y2e{bottom:629.745000px;}
.y60{bottom:633.525000px;}
.y5{bottom:639.645000px;}
.y84{bottom:642.885000px;}
.y2d{bottom:649.005000px;}
.y5f{bottom:655.845000px;}
.y2c{bottom:668.445000px;}
.y5e{bottom:677.985000px;}
.y83{bottom:682.845000px;}
.y2b{bottom:687.705000px;}
.y5d{bottom:700.305000px;}
.y82{bottom:705.165000px;}
.y2a{bottom:707.145000px;}
.y5c{bottom:722.625000px;}
.y29{bottom:726.405000px;}
.y81{bottom:727.305000px;}
.y28{bottom:745.665000px;}
.y5b{bottom:747.285000px;}
.y80{bottom:749.625000px;}
.y27{bottom:765.105000px;}
.y7f{bottom:771.945000px;}
.y26{bottom:784.365000px;}
.y5a{bottom:787.245000px;}
.y7e{bottom:794.085000px;}
.y7d{bottom:816.450000px;}
.y25{bottom:821.490000px;}
.y59{bottom:824.370000px;}
.y7c{bottom:838.590000px;}
.y24{bottom:843.810000px;}
.y58{bottom:846.690000px;}
.y7b{bottom:863.250000px;}
.y23{bottom:865.950000px;}
.y57{bottom:869.010000px;}
.y22{bottom:888.270000px;}
.y56{bottom:891.150000px;}
.y7a{bottom:903.210000px;}
.y21{bottom:910.590000px;}
.y55{bottom:913.470000px;}
.y79{bottom:925.530000px;}
.y20{bottom:932.730000px;}
.y54{bottom:935.610000px;}
.y4{bottom:946.950000px;}
.y78{bottom:947.850000px;}
.y1f{bottom:955.050000px;}
.y53{bottom:957.930000px;}
.y3{bottom:969.090000px;}
.y77{bottom:969.990000px;}
.y1e{bottom:977.190000px;}
.y52{bottom:980.250000px;}
.y76{bottom:992.310000px;}
.y2{bottom:994.290000px;}
.y1d{bottom:1001.850000px;}
.y51{bottom:1002.390000px;}
.y75{bottom:1014.450000px;}
.y1{bottom:1023.810000px;}
.y50{bottom:1027.230000px;}
.y74{bottom:1036.770000px;}
.y1c{bottom:1041.810000px;}
.y73{bottom:1061.430000px;}
.y1b{bottom:1064.130000px;}
.y4f{bottom:1064.310000px;}
.h2{height:56.084062px;}
.h3{height:79.620469px;}
.h1{height:86.255508px;}
.h4{height:224.820000px;}
.h5{height:224.850000px;}
.h6{height:235.800000px;}
.h0{height:1188.000000px;}
.w2{width:306.900000px;}
.w3{width:311.475000px;}
.w4{width:522.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.035986px;}
.x3{left:136.800000px;}
.x7{left:203.400000px;}
.x4{left:279.435000px;}
.x6{left:285.735000px;}
.x9{left:459.074986px;}
.x5{left:484.275000px;}
.x8{left:531.150000px;}
.x2{left:616.604986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.207467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.355840pt;}
.ws3{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.ws2{word-spacing:-12.746133pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.313280pt;}
._2{width:2.266027pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y4a{bottom:-16.253333pt;}
.y4c{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:36.666667pt;}
.y48{bottom:112.672000pt;}
.y4d{bottom:116.320000pt;}
.y1a{bottom:120.672000pt;}
.y47{bottom:129.792000pt;}
.y19{bottom:140.506667pt;}
.y46{bottom:146.906667pt;}
.y72{bottom:153.466667pt;}
.y18{bottom:160.186667pt;}
.y45{bottom:164.186667pt;}
.y71{bottom:173.306667pt;}
.y17{bottom:180.026667pt;}
.y44{bottom:181.306667pt;}
.y70{bottom:192.986667pt;}
.y43{bottom:198.586667pt;}
.y16{bottom:199.706667pt;}
.y6f{bottom:212.826667pt;}
.y42{bottom:215.706667pt;}
.y15{bottom:219.546667pt;}
.y6e{bottom:232.506667pt;}
.y41{bottom:232.986667pt;}
.y14{bottom:239.226667pt;}
.y40{bottom:250.106667pt;}
.y6d{bottom:254.586667pt;}
.y13{bottom:261.346667pt;}
.y3f{bottom:267.426667pt;}
.y3e{bottom:284.546667pt;}
.y6c{bottom:289.986667pt;}
.y12{bottom:296.706667pt;}
.y3d{bottom:301.826667pt;}
.y6b{bottom:309.826667pt;}
.y11{bottom:316.546667pt;}
.y3c{bottom:318.946667pt;}
.y6a{bottom:329.666667pt;}
.y3b{bottom:336.226667pt;}
.y10{bottom:336.386667pt;}
.y69{bottom:349.346667pt;}
.y4b{bottom:349.826667pt;}
.y49{bottom:349.920000pt;}
.y3a{bottom:353.346667pt;}
.yf{bottom:356.066667pt;}
.y68{bottom:369.186667pt;}
.y39{bottom:370.626667pt;}
.ye{bottom:375.906667pt;}
.y38{bottom:387.746667pt;}
.y67{bottom:391.106667pt;}
.yd{bottom:395.586667pt;}
.y37{bottom:404.866667pt;}
.yc{bottom:415.426667pt;}
.y36{bottom:422.146667pt;}
.y66{bottom:426.626667pt;}
.yb{bottom:435.266667pt;}
.y35{bottom:439.266667pt;}
.y65{bottom:446.306667pt;}
.ya{bottom:454.946667pt;}
.y34{bottom:456.546667pt;}
.y64{bottom:466.146667pt;}
.y89{bottom:470.466667pt;}
.y33{bottom:473.666667pt;}
.y9{bottom:474.786667pt;}
.y63{bottom:485.986667pt;}
.y88{bottom:490.333333pt;}
.y32{bottom:490.973333pt;}
.y8{bottom:494.493333pt;}
.y62{bottom:505.693333pt;}
.y31{bottom:508.093333pt;}
.y87{bottom:510.013333pt;}
.y7{bottom:514.333333pt;}
.y30{bottom:525.373333pt;}
.y61{bottom:527.613333pt;}
.y86{bottom:529.853333pt;}
.y6{bottom:536.253333pt;}
.y2f{bottom:542.493333pt;}
.y85{bottom:549.533333pt;}
.y2e{bottom:559.773333pt;}
.y60{bottom:563.133333pt;}
.y5{bottom:568.573333pt;}
.y84{bottom:571.453333pt;}
.y2d{bottom:576.893333pt;}
.y5f{bottom:582.973333pt;}
.y2c{bottom:594.173333pt;}
.y5e{bottom:602.653333pt;}
.y83{bottom:606.973333pt;}
.y2b{bottom:611.293333pt;}
.y5d{bottom:622.493333pt;}
.y82{bottom:626.813333pt;}
.y2a{bottom:628.573333pt;}
.y5c{bottom:642.333333pt;}
.y29{bottom:645.693333pt;}
.y81{bottom:646.493333pt;}
.y28{bottom:662.813333pt;}
.y5b{bottom:664.253333pt;}
.y80{bottom:666.333333pt;}
.y27{bottom:680.093333pt;}
.y7f{bottom:686.173333pt;}
.y26{bottom:697.213333pt;}
.y5a{bottom:699.773333pt;}
.y7e{bottom:705.853333pt;}
.y7d{bottom:725.733333pt;}
.y25{bottom:730.213333pt;}
.y59{bottom:732.773333pt;}
.y7c{bottom:745.413333pt;}
.y24{bottom:750.053333pt;}
.y58{bottom:752.613333pt;}
.y7b{bottom:767.333333pt;}
.y23{bottom:769.733333pt;}
.y57{bottom:772.453333pt;}
.y22{bottom:789.573333pt;}
.y56{bottom:792.133333pt;}
.y7a{bottom:802.853333pt;}
.y21{bottom:809.413333pt;}
.y55{bottom:811.973333pt;}
.y79{bottom:822.693333pt;}
.y20{bottom:829.093333pt;}
.y54{bottom:831.653333pt;}
.y4{bottom:841.733333pt;}
.y78{bottom:842.533333pt;}
.y1f{bottom:848.933333pt;}
.y53{bottom:851.493333pt;}
.y3{bottom:861.413333pt;}
.y77{bottom:862.213333pt;}
.y1e{bottom:868.613333pt;}
.y52{bottom:871.333333pt;}
.y76{bottom:882.053333pt;}
.y2{bottom:883.813333pt;}
.y1d{bottom:890.533333pt;}
.y51{bottom:891.013333pt;}
.y75{bottom:901.733333pt;}
.y1{bottom:910.053333pt;}
.y50{bottom:913.093333pt;}
.y74{bottom:921.573333pt;}
.y1c{bottom:926.053333pt;}
.y73{bottom:943.493333pt;}
.y1b{bottom:945.893333pt;}
.y4f{bottom:946.053333pt;}
.h2{height:49.852500pt;}
.h3{height:70.773750pt;}
.h1{height:76.671562pt;}
.h4{height:199.840000pt;}
.h5{height:199.866667pt;}
.h6{height:209.600000pt;}
.h0{height:1056.000000pt;}
.w2{width:272.800000pt;}
.w3{width:276.866667pt;}
.w4{width:464.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.031988pt;}
.x3{left:121.600000pt;}
.x7{left:180.800000pt;}
.x4{left:248.386667pt;}
.x6{left:253.986667pt;}
.x9{left:408.066655pt;}
.x5{left:430.466667pt;}
.x8{left:472.133333pt;}
.x2{left:548.093321pt;}
}




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