
    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_edfc900e3b3a17b932c7f5d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114258;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_96b5bf50eb7cc45fd50f3304.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_ae2abb281d7cdf8ba369d69a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2822384f2cd1cb021cbf8575.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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:-42.516000px;}
.v3{vertical-align:-31.638000px;}
.v2{vertical-align:-17.688000px;}
.v4{vertical-align:-6.294000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.096000px;}
.ls7{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.360000px;}
.ls0{letter-spacing:6.696000px;}
.ls3{letter-spacing:63.708000px;}
.ls5{letter-spacing:84.774090px;}
.ls4{letter-spacing:84.780090px;}
.ls2{letter-spacing:101.620800px;}
.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;}
}
.ws1{word-spacing:-59.832000px;}
.ws3{word-spacing:-39.902958px;}
.ws2{word-spacing:-29.916000px;}
.ws6{word-spacing:-26.570394px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:298.968000px;}
.ws5{word-spacing:412.794000px;}
._9{margin-left:-11.772000px;}
._6{margin-left:-9.246006px;}
._0{margin-left:-7.560000px;}
._4{margin-left:-6.003900px;}
._7{margin-left:-4.322808px;}
._8{margin-left:-2.376000px;}
._1{margin-left:-1.080000px;}
._5{width:1.440936px;}
._2{width:2.688576px;}
._3{width:3.696792px;}
._a{width:10.368000px;}
._b{width:11.664000px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(10,38,61);}
.fc2{color:rgb(19,42,74);}
.fc1{color:rgb(1,60,114);}
.fc0{color:rgb(2,162,237);}
.fs6{font-size:48.642000px;}
.fs3{font-size:64.800000px;}
.fs7{font-size:95.922000px;}
.fs5{font-size:108.000000px;}
.fs2{font-size:120.078000px;}
.fs4{font-size:144.054000px;}
.fs1{font-size:168.036000px;}
.fs0{font-size:216.000000px;}
.fs8{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y58{bottom:25.215000px;}
.y1c{bottom:33.123000px;}
.y3d{bottom:42.222000px;}
.y48{bottom:55.744500px;}
.y57{bottom:65.523000px;}
.y42{bottom:76.239000px;}
.y1a{bottom:82.531500px;}
.y56{bottom:114.931500px;}
.y41{bottom:116.547000px;}
.y4b{bottom:121.096500px;}
.y38{bottom:125.646000px;}
.y3c{bottom:127.261500px;}
.y51{bottom:128.452500px;}
.y19{bottom:131.938500px;}
.y45{bottom:141.039000px;}
.y24{bottom:144.270000px;}
.y5a{bottom:145.461000px;}
.y37{bottom:158.046000px;}
.y3b{bottom:159.661500px;}
.y55{bottom:164.338500px;}
.y9{bottom:169.993500px;}
.y50{bottom:173.439000px;}
.y23{bottom:176.670000px;}
.y18{bottom:181.347000px;}
.y3a{bottom:192.061500px;}
.y59{bottom:194.868000px;}
.y36{bottom:198.355500px;}
.y8{bottom:203.457000px;}
.y54{bottom:205.839000px;}
.y22{bottom:209.070000px;}
.y4f{bottom:213.747000px;}
.y14{bottom:215.362500px;}
.y2b{bottom:216.978000px;}
.y39{bottom:224.461500px;}
.y17{bottom:230.755500px;}
.y40{bottom:239.854500px;}
.y21{bottom:241.470000px;}
.y53{bottom:246.147000px;}
.y35{bottom:247.762500px;}
.y13{bottom:256.861500px;}
.y2a{bottom:258.477000px;}
.y4e{bottom:263.155500px;}
.y3{bottom:266.428500px;}
.y16{bottom:280.162500px;}
.y20{bottom:281.778000px;}
.y34{bottom:289.261500px;}
.y30{bottom:295.555500px;}
.y12{bottom:297.171000px;}
.y29{bottom:298.786500px;}
.y1b{bottom:306.270000px;}
.y4d{bottom:309.076500px;}
.y3f{bottom:321.661500px;}
.y1f{bottom:323.277000px;}
.y15{bottom:329.571000px;}
.y11{bottom:338.670000px;}
.y28{bottom:340.285500px;}
.y2f{bottom:344.962500px;}
.y47{bottom:346.578000px;}
.y1e{bottom:355.677000px;}
.y3e{bottom:361.971000px;}
.y33{bottom:371.070000px;}
.y5b{bottom:371.112000px;}
.y2{bottom:371.793000px;}
.y27{bottom:372.685500px;}
.y10{bottom:378.978000px;}
.y1d{bottom:388.077000px;}
.y2e{bottom:390.883500px;}
.y52{bottom:394.371000px;}
.y4c{bottom:403.470000px;}
.y26{bottom:405.085500px;}
.y32{bottom:411.378000px;}
.y44{bottom:420.477000px;}
.yf{bottom:428.386500px;}
.y25{bottom:437.485500px;}
.y2d{bottom:443.778000px;}
.y31{bottom:452.877000px;}
.y43{bottom:460.786500px;}
.ye{bottom:469.885500px;}
.y46{bottom:489.699000px;}
.y2c{bottom:493.186500px;}
.yd{bottom:502.285500px;}
.y4a{bottom:519.421500px;}
.y7{bottom:528.265500px;}
.yc{bottom:539.107500px;}
.y6{bottom:561.727500px;}
.y49{bottom:562.621500px;}
.y5{bottom:595.191000px;}
.yb{bottom:616.450500px;}
.y4{bottom:628.654500px;}
.ya{bottom:670.705500px;}
.hd{height:64.865906px;}
.hc{height:64.871906px;}
.ha{height:65.973328px;}
.hb{height:65.979328px;}
.he{height:78.815906px;}
.hf{height:79.523438px;}
.h7{height:79.923328px;}
.h6{height:87.681243px;}
.h8{height:96.503906px;}
.h9{height:97.611328px;}
.h4{height:107.296260px;}
.h5{height:108.527528px;}
.h10{height:130.197243px;}
.h3{height:151.872381px;}
.h2{height:195.222656px;}
.h11{height:390.445312px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.w2{width:1439.971500px;}
.w1{width:1440.000000px;}
.w0{width:1440.014173px;}
.x0{left:0.000000px;}
.x1{left:45.964500px;}
.x3{left:53.149500px;}
.x2{left:65.224500px;}
.x5{left:66.756000px;}
.xc{left:105.024000px;}
.x6{left:118.417500px;}
.x4{left:141.336000px;}
.x7{left:143.929500px;}
.x8{left:169.441500px;}
.x9{left:194.953500px;}
.xa{left:220.464000px;}
.xe{left:245.976000px;}
.xd{left:253.459500px;}
.xf{left:293.173500px;}
.xb{left:329.527500px;}
@media print{
.v1{vertical-align:-37.792000pt;}
.v3{vertical-align:-28.122667pt;}
.v2{vertical-align:-15.722667pt;}
.v4{vertical-align:-5.594667pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.085333pt;}
.ls7{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls0{letter-spacing:5.952000pt;}
.ls3{letter-spacing:56.629333pt;}
.ls5{letter-spacing:75.354747pt;}
.ls4{letter-spacing:75.360080pt;}
.ls2{letter-spacing:90.329600pt;}
.ws1{word-spacing:-53.184000pt;}
.ws3{word-spacing:-35.469296pt;}
.ws2{word-spacing:-26.592000pt;}
.ws6{word-spacing:-23.618128pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:265.749333pt;}
.ws5{word-spacing:366.928000pt;}
._9{margin-left:-10.464000pt;}
._6{margin-left:-8.218672pt;}
._0{margin-left:-6.720000pt;}
._4{margin-left:-5.336800pt;}
._7{margin-left:-3.842496pt;}
._8{margin-left:-2.112000pt;}
._1{margin-left:-0.960000pt;}
._5{width:1.280832pt;}
._2{width:2.389845pt;}
._3{width:3.286037pt;}
._a{width:9.216000pt;}
._b{width:10.368000pt;}
.fs6{font-size:43.237333pt;}
.fs3{font-size:57.600000pt;}
.fs7{font-size:85.264000pt;}
.fs5{font-size:96.000000pt;}
.fs2{font-size:106.736000pt;}
.fs4{font-size:128.048000pt;}
.fs1{font-size:149.365333pt;}
.fs0{font-size:192.000000pt;}
.fs8{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y58{bottom:22.413333pt;}
.y1c{bottom:29.442667pt;}
.y3d{bottom:37.530667pt;}
.y48{bottom:49.550667pt;}
.y57{bottom:58.242667pt;}
.y42{bottom:67.768000pt;}
.y1a{bottom:73.361333pt;}
.y56{bottom:102.161333pt;}
.y41{bottom:103.597333pt;}
.y4b{bottom:107.641333pt;}
.y38{bottom:111.685333pt;}
.y3c{bottom:113.121333pt;}
.y51{bottom:114.180000pt;}
.y19{bottom:117.278667pt;}
.y45{bottom:125.368000pt;}
.y24{bottom:128.240000pt;}
.y5a{bottom:129.298667pt;}
.y37{bottom:140.485333pt;}
.y3b{bottom:141.921333pt;}
.y55{bottom:146.078667pt;}
.y9{bottom:151.105333pt;}
.y50{bottom:154.168000pt;}
.y23{bottom:157.040000pt;}
.y18{bottom:161.197333pt;}
.y3a{bottom:170.721333pt;}
.y59{bottom:173.216000pt;}
.y36{bottom:176.316000pt;}
.y8{bottom:180.850667pt;}
.y54{bottom:182.968000pt;}
.y22{bottom:185.840000pt;}
.y4f{bottom:189.997333pt;}
.y14{bottom:191.433333pt;}
.y2b{bottom:192.869333pt;}
.y39{bottom:199.521333pt;}
.y17{bottom:205.116000pt;}
.y40{bottom:213.204000pt;}
.y21{bottom:214.640000pt;}
.y53{bottom:218.797333pt;}
.y35{bottom:220.233333pt;}
.y13{bottom:228.321333pt;}
.y2a{bottom:229.757333pt;}
.y4e{bottom:233.916000pt;}
.y3{bottom:236.825333pt;}
.y16{bottom:249.033333pt;}
.y20{bottom:250.469333pt;}
.y34{bottom:257.121333pt;}
.y30{bottom:262.716000pt;}
.y12{bottom:264.152000pt;}
.y29{bottom:265.588000pt;}
.y1b{bottom:272.240000pt;}
.y4d{bottom:274.734667pt;}
.y3f{bottom:285.921333pt;}
.y1f{bottom:287.357333pt;}
.y15{bottom:292.952000pt;}
.y11{bottom:301.040000pt;}
.y28{bottom:302.476000pt;}
.y2f{bottom:306.633333pt;}
.y47{bottom:308.069333pt;}
.y1e{bottom:316.157333pt;}
.y3e{bottom:321.752000pt;}
.y33{bottom:329.840000pt;}
.y5b{bottom:329.877333pt;}
.y2{bottom:330.482667pt;}
.y27{bottom:331.276000pt;}
.y10{bottom:336.869333pt;}
.y1d{bottom:344.957333pt;}
.y2e{bottom:347.452000pt;}
.y52{bottom:350.552000pt;}
.y4c{bottom:358.640000pt;}
.y26{bottom:360.076000pt;}
.y32{bottom:365.669333pt;}
.y44{bottom:373.757333pt;}
.yf{bottom:380.788000pt;}
.y25{bottom:388.876000pt;}
.y2d{bottom:394.469333pt;}
.y31{bottom:402.557333pt;}
.y43{bottom:409.588000pt;}
.ye{bottom:417.676000pt;}
.y46{bottom:435.288000pt;}
.y2c{bottom:438.388000pt;}
.yd{bottom:446.476000pt;}
.y4a{bottom:461.708000pt;}
.y7{bottom:469.569333pt;}
.yc{bottom:479.206667pt;}
.y6{bottom:499.313333pt;}
.y49{bottom:500.108000pt;}
.y5{bottom:529.058667pt;}
.yb{bottom:547.956000pt;}
.y4{bottom:558.804000pt;}
.ya{bottom:596.182667pt;}
.hd{height:57.658583pt;}
.hc{height:57.663917pt;}
.ha{height:58.642958pt;}
.hb{height:58.648292pt;}
.he{height:70.058583pt;}
.hf{height:70.687500pt;}
.h7{height:71.042958pt;}
.h6{height:77.938883pt;}
.h8{height:85.781250pt;}
.h9{height:86.765625pt;}
.h4{height:95.374453pt;}
.h5{height:96.468914pt;}
.h10{height:115.730883pt;}
.h3{height:134.997672pt;}
.h2{height:173.531250pt;}
.h11{height:347.062500pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.w2{width:1279.974667pt;}
.w1{width:1280.000000pt;}
.w0{width:1280.012598pt;}
.x0{left:0.000000pt;}
.x1{left:40.857333pt;}
.x3{left:47.244000pt;}
.x2{left:57.977333pt;}
.x5{left:59.338667pt;}
.xc{left:93.354667pt;}
.x6{left:105.260000pt;}
.x4{left:125.632000pt;}
.x7{left:127.937333pt;}
.x8{left:150.614667pt;}
.x9{left:173.292000pt;}
.xa{left:195.968000pt;}
.xe{left:218.645333pt;}
.xd{left:225.297333pt;}
.xf{left:260.598667pt;}
.xb{left:292.913333pt;}
}




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