
    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_491f6ef4cebc737e4f05d591.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_b41e1354236d414d20ea50b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_0cb2645868bed4389df4cba6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_e887d722b9a62639608d51a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_cddc26aae767abf9166c410e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.590400px;}
.ls3{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.292200px;}
.ls6{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.108480px;}
.ls0{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.371400px;}
.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:-102.240000px;}
.ws6{word-spacing:-15.341640px;}
.ws3{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.506440px;}
.ws5{word-spacing:-14.379840px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2.760480px;}
._0{margin-left:-1.635840px;}
._2{width:1.299840px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y28{bottom:105.696000px;}
.y52{bottom:114.696000px;}
.y63{bottom:123.696000px;}
.y27{bottom:127.476000px;}
.y51{bottom:136.296000px;}
.y62{bottom:145.296000px;}
.y26{bottom:149.256000px;}
.y50{bottom:167.070000px;}
.y25{bottom:179.850000px;}
.y4f{bottom:188.850000px;}
.y61{bottom:197.850000px;}
.y24{bottom:201.630000px;}
.y4e{bottom:210.630000px;}
.y60{bottom:219.630000px;}
.y23{bottom:223.410000px;}
.y69{bottom:232.230000px;}
.y4d{bottom:241.230000px;}
.y22{bottom:254.190000px;}
.y4c{bottom:263.010000px;}
.y5f{bottom:272.010000px;}
.y21{bottom:275.970000px;}
.y68{bottom:284.790000px;}
.y4b{bottom:293.790000px;}
.y20{bottom:297.570000px;}
.y4a{bottom:315.570000px;}
.y1f{bottom:319.350000px;}
.y67{bottom:337.215000px;}
.y49{bottom:346.215000px;}
.y1e{bottom:350.175000px;}
.y48{bottom:367.995000px;}
.y1d{bottom:371.955000px;}
.y5e{bottom:389.775000px;}
.y1c{bottom:393.555000px;}
.y47{bottom:398.775000px;}
.y66{bottom:411.555000px;}
.y46{bottom:420.555000px;}
.y1b{bottom:424.335000px;}
.y45{bottom:442.155000px;}
.y1a{bottom:446.115000px;}
.y5d{bottom:463.935000px;}
.y19{bottom:467.895000px;}
.y44{bottom:472.935000px;}
.y65{bottom:485.715000px;}
.y43{bottom:494.715000px;}
.y18{bottom:498.495000px;}
.y42{bottom:516.495000px;}
.y17{bottom:520.275000px;}
.y5c{bottom:538.095000px;}
.y16{bottom:542.055000px;}
.y41{bottom:547.095000px;}
.y75{bottom:556.095000px;}
.y64{bottom:559.875000px;}
.y40{bottom:568.875000px;}
.y15{bottom:572.835000px;}
.y74{bottom:577.875000px;}
.y3f{bottom:590.655000px;}
.y14{bottom:594.435000px;}
.y73{bottom:599.685000px;}
.y5b{bottom:612.465000px;}
.y13{bottom:616.245000px;}
.y3e{bottom:621.465000px;}
.y5a{bottom:634.065000px;}
.y3d{bottom:643.065000px;}
.y12{bottom:647.025000px;}
.y72{bottom:652.065000px;}
.y3c{bottom:664.845000px;}
.y11{bottom:668.805000px;}
.y71{bottom:673.845000px;}
.y59{bottom:686.625000px;}
.y3b{bottom:695.625000px;}
.y10{bottom:699.405000px;}
.y58{bottom:708.405000px;}
.y3a{bottom:717.405000px;}
.yf{bottom:721.185000px;}
.y70{bottom:726.405000px;}
.y39{bottom:739.005000px;}
.y6f{bottom:748.005000px;}
.ye{bottom:751.965000px;}
.y38{bottom:760.785000px;}
.y57{bottom:769.785000px;}
.yd{bottom:773.745000px;}
.y37{bottom:791.565000px;}
.yc{bottom:795.345000px;}
.y6e{bottom:800.565000px;}
.y36{bottom:813.345000px;}
.y56{bottom:822.345000px;}
.yb{bottom:826.125000px;}
.y35{bottom:835.125000px;}
.y55{bottom:844.125000px;}
.ya{bottom:847.905000px;}
.y34{bottom:865.770000px;}
.y9{bottom:869.730000px;}
.y6d{bottom:874.770000px;}
.y33{bottom:887.550000px;}
.y8{bottom:891.330000px;}
.y54{bottom:896.550000px;}
.y32{bottom:918.330000px;}
.y7{bottom:922.110000px;}
.y6c{bottom:927.330000px;}
.y31{bottom:940.110000px;}
.y6{bottom:943.890000px;}
.y6b{bottom:949.110000px;}
.y30{bottom:970.710000px;}
.y5{bottom:974.670000px;}
.y2f{bottom:992.490000px;}
.y4{bottom:996.270000px;}
.y2e{bottom:1014.270000px;}
.y3{bottom:1018.050000px;}
.y6a{bottom:1023.270000px;}
.y2d{bottom:1045.050000px;}
.y2{bottom:1048.830000px;}
.y2c{bottom:1066.650000px;}
.y53{bottom:1088.430000px;}
.y2b{bottom:1097.430000px;}
.y2a{bottom:1119.210000px;}
.y1{bottom:1132.380000px;}
.y29{bottom:1141.020000px;}
.h4{height:57.927656px;}
.h3{height:65.884219px;}
.h2{height:104.686172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.524800pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.259733pt;}
.ls6{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.096427pt;}
.ls0{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.330133pt;}
.ws0{word-spacing:-90.880000pt;}
.ws6{word-spacing:-13.637013pt;}
.ws3{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.894613pt;}
.ws5{word-spacing:-12.782080pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2.453760pt;}
._0{margin-left:-1.454080pt;}
._2{width:1.155413pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:93.952000pt;}
.y52{bottom:101.952000pt;}
.y63{bottom:109.952000pt;}
.y27{bottom:113.312000pt;}
.y51{bottom:121.152000pt;}
.y62{bottom:129.152000pt;}
.y26{bottom:132.672000pt;}
.y50{bottom:148.506667pt;}
.y25{bottom:159.866667pt;}
.y4f{bottom:167.866667pt;}
.y61{bottom:175.866667pt;}
.y24{bottom:179.226667pt;}
.y4e{bottom:187.226667pt;}
.y60{bottom:195.226667pt;}
.y23{bottom:198.586667pt;}
.y69{bottom:206.426667pt;}
.y4d{bottom:214.426667pt;}
.y22{bottom:225.946667pt;}
.y4c{bottom:233.786667pt;}
.y5f{bottom:241.786667pt;}
.y21{bottom:245.306667pt;}
.y68{bottom:253.146667pt;}
.y4b{bottom:261.146667pt;}
.y20{bottom:264.506667pt;}
.y4a{bottom:280.506667pt;}
.y1f{bottom:283.866667pt;}
.y67{bottom:299.746667pt;}
.y49{bottom:307.746667pt;}
.y1e{bottom:311.266667pt;}
.y48{bottom:327.106667pt;}
.y1d{bottom:330.626667pt;}
.y5e{bottom:346.466667pt;}
.y1c{bottom:349.826667pt;}
.y47{bottom:354.466667pt;}
.y66{bottom:365.826667pt;}
.y46{bottom:373.826667pt;}
.y1b{bottom:377.186667pt;}
.y45{bottom:393.026667pt;}
.y1a{bottom:396.546667pt;}
.y5d{bottom:412.386667pt;}
.y19{bottom:415.906667pt;}
.y44{bottom:420.386667pt;}
.y65{bottom:431.746667pt;}
.y43{bottom:439.746667pt;}
.y18{bottom:443.106667pt;}
.y42{bottom:459.106667pt;}
.y17{bottom:462.466667pt;}
.y5c{bottom:478.306667pt;}
.y16{bottom:481.826667pt;}
.y41{bottom:486.306667pt;}
.y75{bottom:494.306667pt;}
.y64{bottom:497.666667pt;}
.y40{bottom:505.666667pt;}
.y15{bottom:509.186667pt;}
.y74{bottom:513.666667pt;}
.y3f{bottom:525.026667pt;}
.y14{bottom:528.386667pt;}
.y73{bottom:533.053333pt;}
.y5b{bottom:544.413333pt;}
.y13{bottom:547.773333pt;}
.y3e{bottom:552.413333pt;}
.y5a{bottom:563.613333pt;}
.y3d{bottom:571.613333pt;}
.y12{bottom:575.133333pt;}
.y72{bottom:579.613333pt;}
.y3c{bottom:590.973333pt;}
.y11{bottom:594.493333pt;}
.y71{bottom:598.973333pt;}
.y59{bottom:610.333333pt;}
.y3b{bottom:618.333333pt;}
.y10{bottom:621.693333pt;}
.y58{bottom:629.693333pt;}
.y3a{bottom:637.693333pt;}
.yf{bottom:641.053333pt;}
.y70{bottom:645.693333pt;}
.y39{bottom:656.893333pt;}
.y6f{bottom:664.893333pt;}
.ye{bottom:668.413333pt;}
.y38{bottom:676.253333pt;}
.y57{bottom:684.253333pt;}
.yd{bottom:687.773333pt;}
.y37{bottom:703.613333pt;}
.yc{bottom:706.973333pt;}
.y6e{bottom:711.613333pt;}
.y36{bottom:722.973333pt;}
.y56{bottom:730.973333pt;}
.yb{bottom:734.333333pt;}
.y35{bottom:742.333333pt;}
.y55{bottom:750.333333pt;}
.ya{bottom:753.693333pt;}
.y34{bottom:769.573333pt;}
.y9{bottom:773.093333pt;}
.y6d{bottom:777.573333pt;}
.y33{bottom:788.933333pt;}
.y8{bottom:792.293333pt;}
.y54{bottom:796.933333pt;}
.y32{bottom:816.293333pt;}
.y7{bottom:819.653333pt;}
.y6c{bottom:824.293333pt;}
.y31{bottom:835.653333pt;}
.y6{bottom:839.013333pt;}
.y6b{bottom:843.653333pt;}
.y30{bottom:862.853333pt;}
.y5{bottom:866.373333pt;}
.y2f{bottom:882.213333pt;}
.y4{bottom:885.573333pt;}
.y2e{bottom:901.573333pt;}
.y3{bottom:904.933333pt;}
.y6a{bottom:909.573333pt;}
.y2d{bottom:928.933333pt;}
.y2{bottom:932.293333pt;}
.y2c{bottom:948.133333pt;}
.y53{bottom:967.493333pt;}
.y2b{bottom:975.493333pt;}
.y2a{bottom:994.853333pt;}
.y1{bottom:1006.560000pt;}
.y29{bottom:1014.240000pt;}
.h4{height:51.491250pt;}
.h3{height:58.563750pt;}
.h2{height:93.054375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
}




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