
    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_282d25970833572163ccbfd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_ab0169d1cb841b196024d6f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_a12ba9f68819a1f21c533bc1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.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:8.993444px;}
.ls2{letter-spacing:22.493579px;}
.ls3{letter-spacing:40.493525px;}
.ls4{letter-spacing:44.993525px;}
.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:-16.669921px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-40.544199px;}
._12{margin-left:-23.022172px;}
._a{margin-left:-8.152088px;}
._10{margin-left:-6.664649px;}
._9{margin-left:-4.584357px;}
._3{margin-left:-3.310475px;}
._8{margin-left:-1.029435px;}
._6{width:3.658170px;}
._5{width:5.092428px;}
._4{width:8.035166px;}
._1{width:9.202037px;}
._0{width:13.346492px;}
._2{width:17.918179px;}
._7{width:22.480524px;}
._f{width:26.854559px;}
._14{width:31.435004px;}
._d{width:35.028013px;}
._c{width:36.421033px;}
._b{width:40.375269px;}
._e{width:44.799834px;}
._11{width:49.397353px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.999999px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:78.000003px;}
.fs0{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y23{bottom:114.477534px;}
.y73{bottom:118.382799px;}
.y22{bottom:134.313350px;}
.y4c{bottom:135.563225px;}
.y72{bottom:138.218255px;}
.y21{bottom:154.149165px;}
.y4b{bottom:155.399040px;}
.y71{bottom:158.054437px;}
.y20{bottom:173.984980px;}
.y4a{bottom:175.234855px;}
.y70{bottom:177.889885px;}
.y1f{bottom:211.820805px;}
.y49{bottom:213.070683px;}
.y6f{bottom:215.726075px;}
.y1e{bottom:231.656620px;}
.y48{bottom:232.906499px;}
.y6e{bottom:235.561523px;}
.y47{bottom:252.742314px;}
.y6d{bottom:255.397705px;}
.y1d{bottom:269.492424px;}
.y46{bottom:272.578130px;}
.y1c{bottom:289.328240px;}
.y45{bottom:292.413945px;}
.y6c{bottom:293.233147px;}
.y1b{bottom:309.164055px;}
.y44{bottom:312.249760px;}
.y6b{bottom:313.069330px;}
.y1a{bottom:328.999870px;}
.y43{bottom:351.238772px;}
.y6a{bottom:352.058357px;}
.y19{bottom:366.835692px;}
.y18{bottom:386.671508px;}
.y42{bottom:394.888554px;}
.y69{bottom:395.708130px;}
.y17{bottom:406.507323px;}
.y41{bottom:414.724370px;}
.y68{bottom:415.543945px;}
.y16{bottom:426.343139px;}
.y40{bottom:434.560185px;}
.y15{bottom:446.178954px;}
.y67{bottom:453.379763px;}
.y3f{bottom:454.396000px;}
.y14{bottom:466.014770px;}
.y66{bottom:473.215569px;}
.y13{bottom:485.850585px;}
.y3e{bottom:492.231804px;}
.y65{bottom:493.051389px;}
.y12{bottom:505.686400px;}
.y3d{bottom:512.067620px;}
.y64{bottom:512.887207px;}
.y3c{bottom:531.903435px;}
.y63{bottom:532.722655px;}
.y11{bottom:544.675412px;}
.y3b{bottom:551.739250px;}
.y62{bottom:571.711667px;}
.y10{bottom:588.325194px;}
.y3a{bottom:589.575074px;}
.yf{bottom:608.161010px;}
.y39{bottom:609.410889px;}
.y61{bottom:615.361455px;}
.ye{bottom:627.996825px;}
.y38{bottom:629.246705px;}
.y60{bottom:635.197270px;}
.yd{bottom:647.832640px;}
.y37{bottom:649.082520px;}
.y5f{bottom:655.033075px;}
.y36{bottom:668.918335px;}
.y5e{bottom:674.868895px;}
.yc{bottom:685.668459px;}
.y5d{bottom:694.704715px;}
.yb{bottom:705.504275px;}
.y35{bottom:706.754145px;}
.ya{bottom:725.340090px;}
.y34{bottom:726.589960px;}
.y5c{bottom:732.540525px;}
.y9{bottom:745.175905px;}
.y5b{bottom:752.376340px;}
.y33{bottom:764.425779px;}
.y8{bottom:783.011720px;}
.y32{bottom:784.261595px;}
.y5a{bottom:790.212162px;}
.y7e{bottom:791.228755px;}
.y7{bottom:802.847535px;}
.y31{bottom:804.097410px;}
.y59{bottom:810.048160px;}
.y6{bottom:822.683350px;}
.y30{bottom:823.933225px;}
.y7d{bottom:829.064576px;}
.y58{bottom:849.036988px;}
.y5{bottom:860.519160px;}
.y2f{bottom:862.922237px;}
.y7c{bottom:866.900396px;}
.y57{bottom:873.416748px;}
.y4{bottom:880.354975px;}
.y7b{bottom:904.736207px;}
.y2e{bottom:906.572025px;}
.y56{bottom:918.473510px;}
.y3{bottom:921.650392px;}
.y7a{bottom:924.572022px;}
.y2d{bottom:926.407840px;}
.y55{bottom:938.309325px;}
.y79{bottom:944.407838px;}
.y2{bottom:953.387698px;}
.y54{bottom:958.145141px;}
.y2c{bottom:964.243652px;}
.y78{bottom:964.243653px;}
.y53{bottom:977.980956px;}
.y2b{bottom:984.079467px;}
.y77{bottom:984.079469px;}
.y52{bottom:997.816771px;}
.y2a{bottom:1003.915283px;}
.y76{bottom:1003.915284px;}
.y1{bottom:1012.125000px;}
.y29{bottom:1023.751098px;}
.y75{bottom:1023.751100px;}
.y51{bottom:1035.652587px;}
.y28{bottom:1043.586913px;}
.y74{bottom:1043.586914px;}
.y50{bottom:1055.488403px;}
.y4f{bottom:1075.324218px;}
.y27{bottom:1081.422729px;}
.y26{bottom:1101.258545px;}
.y4e{bottom:1114.313233px;}
.y25{bottom:1121.094360px;}
.y4d{bottom:1138.116211px;}
.y24{bottom:1140.930175px;}
.h5{height:53.554686px;}
.h3{height:53.789061px;}
.h2{height:54.287108px;}
.h7{height:56.999999px;}
.h4{height:65.144531px;}
.h6{height:69.925784px;}
.h1{height:86.859378px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x4{left:126.720703px;}
.x3{left:784.913411px;}
.x1{left:789.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:7.994172pt;}
.ls2{letter-spacing:19.994292pt;}
.ls3{letter-spacing:35.994244pt;}
.ls4{letter-spacing:39.994244pt;}
.ws0{word-spacing:-14.817708pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-36.039288pt;}
._12{margin-left:-20.464152pt;}
._a{margin-left:-7.246300pt;}
._10{margin-left:-5.924132pt;}
._9{margin-left:-4.074984pt;}
._3{margin-left:-2.942645pt;}
._8{margin-left:-0.915053pt;}
._6{width:3.251707pt;}
._5{width:4.526603pt;}
._4{width:7.142370pt;}
._1{width:8.179589pt;}
._0{width:11.863549pt;}
._2{width:15.927271pt;}
._7{width:19.982688pt;}
._f{width:23.870719pt;}
._14{width:27.942226pt;}
._d{width:31.136012pt;}
._c{width:32.374251pt;}
._b{width:35.889128pt;}
._e{width:39.822075pt;}
._11{width:43.908758pt;}
.fs1{font-size:53.333332pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.333336pt;}
.fs0{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:101.757808pt;}
.y73{bottom:105.229155pt;}
.y22{bottom:119.389644pt;}
.y4c{bottom:120.500644pt;}
.y72{bottom:122.860671pt;}
.y21{bottom:137.021480pt;}
.y4b{bottom:138.132480pt;}
.y71{bottom:140.492833pt;}
.y20{bottom:154.653316pt;}
.y4a{bottom:155.764316pt;}
.y70{bottom:158.124343pt;}
.y1f{bottom:188.285160pt;}
.y49{bottom:189.396163pt;}
.y6f{bottom:191.756511pt;}
.y1e{bottom:205.916996pt;}
.y48{bottom:207.027999pt;}
.y6e{bottom:209.388020pt;}
.y47{bottom:224.659835pt;}
.y6d{bottom:227.020183pt;}
.y1d{bottom:239.548822pt;}
.y46{bottom:242.291671pt;}
.y1c{bottom:257.180658pt;}
.y45{bottom:259.923507pt;}
.y6c{bottom:260.651686pt;}
.y1b{bottom:274.812494pt;}
.y44{bottom:277.555342pt;}
.y6b{bottom:278.283849pt;}
.y1a{bottom:292.444329pt;}
.y43{bottom:312.212242pt;}
.y6a{bottom:312.940762pt;}
.y19{bottom:326.076171pt;}
.y18{bottom:343.708007pt;}
.y42{bottom:351.012048pt;}
.y69{bottom:351.740560pt;}
.y17{bottom:361.339843pt;}
.y41{bottom:368.643884pt;}
.y68{bottom:369.372396pt;}
.y16{bottom:378.971679pt;}
.y40{bottom:386.275720pt;}
.y15{bottom:396.603515pt;}
.y67{bottom:403.004233pt;}
.y3f{bottom:403.907556pt;}
.y14{bottom:414.235351pt;}
.y66{bottom:420.636061pt;}
.y13{bottom:431.867187pt;}
.y3e{bottom:437.539382pt;}
.y65{bottom:438.267901pt;}
.y12{bottom:449.499022pt;}
.y3d{bottom:455.171218pt;}
.y64{bottom:455.899739pt;}
.y3c{bottom:472.803054pt;}
.y63{bottom:473.531249pt;}
.y11{bottom:484.155921pt;}
.y3b{bottom:490.434889pt;}
.y62{bottom:508.188148pt;}
.y10{bottom:522.955728pt;}
.y3a{bottom:524.066732pt;}
.yf{bottom:540.587564pt;}
.y39{bottom:541.698568pt;}
.y61{bottom:546.987960pt;}
.ye{bottom:558.219400pt;}
.y38{bottom:559.330404pt;}
.y60{bottom:564.619796pt;}
.yd{bottom:575.851236pt;}
.y37{bottom:576.962240pt;}
.y5f{bottom:582.251623pt;}
.y36{bottom:594.594076pt;}
.y5e{bottom:599.883463pt;}
.yc{bottom:609.483075pt;}
.y5d{bottom:617.515303pt;}
.yb{bottom:627.114911pt;}
.y35{bottom:628.225907pt;}
.ya{bottom:644.746747pt;}
.y34{bottom:645.857743pt;}
.y5c{bottom:651.147134pt;}
.y9{bottom:662.378583pt;}
.y5b{bottom:668.778969pt;}
.y33{bottom:679.489581pt;}
.y8{bottom:696.010418pt;}
.y32{bottom:697.121417pt;}
.y5a{bottom:702.410810pt;}
.y7e{bottom:703.314449pt;}
.y7{bottom:713.642254pt;}
.y31{bottom:714.753253pt;}
.y59{bottom:720.042809pt;}
.y6{bottom:731.274089pt;}
.y30{bottom:732.385089pt;}
.y7d{bottom:736.946290pt;}
.y58{bottom:754.699545pt;}
.y5{bottom:764.905920pt;}
.y2f{bottom:767.041988pt;}
.y7c{bottom:770.578130pt;}
.y57{bottom:776.370443pt;}
.y4{bottom:782.537756pt;}
.y7b{bottom:804.209961pt;}
.y2e{bottom:805.841800pt;}
.y56{bottom:816.420898pt;}
.y3{bottom:819.244793pt;}
.y7a{bottom:821.841797pt;}
.y2d{bottom:823.473636pt;}
.y55{bottom:834.052734pt;}
.y79{bottom:839.473633pt;}
.y2{bottom:847.455731pt;}
.y54{bottom:851.684570pt;}
.y2c{bottom:857.105468pt;}
.y78{bottom:857.105469pt;}
.y53{bottom:869.316406pt;}
.y2b{bottom:874.737304pt;}
.y77{bottom:874.737305pt;}
.y52{bottom:886.948241pt;}
.y2a{bottom:892.369140pt;}
.y76{bottom:892.369141pt;}
.y1{bottom:899.666667pt;}
.y29{bottom:910.000976pt;}
.y75{bottom:910.000977pt;}
.y51{bottom:920.580077pt;}
.y28{bottom:927.632812pt;}
.y74{bottom:927.632813pt;}
.y50{bottom:938.211913pt;}
.y4f{bottom:955.843749pt;}
.y27{bottom:961.264648pt;}
.y26{bottom:978.896484pt;}
.y4e{bottom:990.500651pt;}
.y25{bottom:996.528320pt;}
.y4d{bottom:1011.658854pt;}
.y24{bottom:1014.160156pt;}
.h5{height:47.604165pt;}
.h3{height:47.812499pt;}
.h2{height:48.255207pt;}
.h7{height:50.666665pt;}
.h4{height:57.906250pt;}
.h6{height:62.156252pt;}
.h1{height:77.208336pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x4{left:112.640625pt;}
.x3{left:697.700810pt;}
.x1{left:702.000000pt;}
}




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