
    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_dde7eadac4dbe2454e94a0eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_beadf5a036ae6626e492ee90.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_03a44e49a81e4ce87aa095aa.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_d1efd0a38415b6e4cb4df8b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls1{letter-spacing:1.458000px;}
.ls3{letter-spacing:911.069000px;}
.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:-91.801758px;}
.ws2{word-spacing:-21.129671px;}
.ws6{word-spacing:-14.958000px;}
.ws7{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:-10.508889px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:269.839872px;}
._1a{margin-left:-9.805026px;}
._1b{margin-left:-8.662750px;}
._19{margin-left:-6.477179px;}
._17{margin-left:-4.999294px;}
._9{margin-left:-3.450502px;}
._3{margin-left:-2.205097px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:3.799743px;}
._c{width:4.878391px;}
._a{width:6.135187px;}
._b{width:7.419074px;}
._11{width:8.646179px;}
._5{width:10.299710px;}
._e{width:11.859187px;}
._f{width:13.470214px;}
._10{width:16.103909px;}
._4{width:18.952939px;}
._d{width:21.056542px;}
._12{width:24.272686px;}
._8{width:43.335996px;}
._6{width:45.620364px;}
._18{width:115.685464px;}
._1c{width:299.819076px;}
._14{width:326.484000px;}
._15{width:330.031872px;}
._13{width:333.828000px;}
._16{width:346.509097px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y27{bottom:46.734370px;}
.y26{bottom:59.015622px;}
.y25{bottom:71.302734px;}
.y49{bottom:146.203125px;}
.y22{bottom:155.455052px;}
.y21{bottom:174.357401px;}
.y48{bottom:176.853516px;}
.y20{bottom:193.253891px;}
.y1f{bottom:212.156240px;}
.y1e{bottom:231.052730px;}
.y47{bottom:232.464843px;}
.y1d{bottom:249.955079px;}
.y46{bottom:263.121093px;}
.y1c{bottom:268.857384px;}
.y1b{bottom:287.753874px;}
.y1a{bottom:306.656223px;}
.y4b{bottom:310.489500px;}
.y63{bottom:315.017572px;}
.y45{bottom:318.732395px;}
.y19{bottom:325.552713px;}
.y62{bottom:332.976560px;}
.y44{bottom:337.628885px;}
.y18{bottom:344.455062px;}
.y61{bottom:350.929688px;}
.y43{bottom:356.531234px;}
.y17{bottom:363.357411px;}
.y60{bottom:368.882813px;}
.y42{bottom:375.427724px;}
.y16{bottom:382.253901px;}
.y5f{bottom:386.841776px;}
.y41{bottom:394.330073px;}
.y15{bottom:401.156250px;}
.y5e{bottom:404.794903px;}
.y40{bottom:413.232417px;}
.y5d{bottom:422.748031px;}
.y14{bottom:431.812500px;}
.y3f{bottom:432.128907px;}
.y5c{bottom:440.707019px;}
.y3e{bottom:451.031217px;}
.y5b{bottom:458.660146px;}
.y3d{bottom:469.927707px;}
.y5a{bottom:476.613273px;}
.y3c{bottom:488.830056px;}
.y59{bottom:494.572262px;}
.y13{bottom:500.912106px;}
.y3b{bottom:507.732405px;}
.y58{bottom:512.525389px;}
.y12{bottom:517.710933px;}
.y57{bottom:530.478512px;}
.y11{bottom:534.509759px;}
.y3a{bottom:540.128895px;}
.y56{bottom:548.437500px;}
.y10{bottom:555.808592px;}
.y39{bottom:559.031244px;}
.y4d{bottom:569.975343px;}
.y38{bottom:577.927729px;}
.yf{bottom:581.607422px;}
.y55{bottom:585.943359px;}
.y37{bottom:596.830073px;}
.y4c{bottom:600.631593px;}
.y36{bottom:615.732422px;}
.ye{bottom:631.863310px;}
.y35{bottom:634.628895px;}
.y54{bottom:639.644532px;}
.yd{bottom:645.093774px;}
.yc{bottom:658.324238px;}
.y34{bottom:667.031244px;}
.y53{bottom:668.390625px;}
.yb{bottom:671.554702px;}
.ya{bottom:684.785166px;}
.y33{bottom:685.927686px;}
.y9{bottom:698.015630px;}
.y32{bottom:704.830035px;}
.y8{bottom:711.246095px;}
.y31{bottom:723.732384px;}
.y52{bottom:724.001937px;}
.y7{bottom:732.199218px;}
.y24{bottom:736.699215px;}
.y30{bottom:742.628874px;}
.y51{bottom:742.898427px;}
.y6{bottom:751.400391px;}
.y23{bottom:755.900391px;}
.y2f{bottom:761.531223px;}
.y50{bottom:775.300776px;}
.y2e{bottom:780.427713px;}
.y5{bottom:793.710931px;}
.y4f{bottom:794.203125px;}
.y2d{bottom:799.330062px;}
.y4e{bottom:824.853516px;}
.y4{bottom:831.269532px;}
.y2c{bottom:831.732411px;}
.y2b{bottom:850.628901px;}
.y2a{bottom:869.531239px;}
.y3{bottom:899.378907px;}
.y29{bottom:901.927730px;}
.y28{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4a{bottom:974.730470px;}
.h7{height:26.244141px;}
.h5{height:27.557629px;}
.h8{height:28.048904px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.hb{height:35.617086px;}
.hd{height:37.399182px;}
.h2{height:39.366211px;}
.ha{height:39.366319px;}
.h9{height:39.366403px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.hc{height:624.474000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x8{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:123.662109px;}
.x7{left:152.912109px;}
.xa{left:160.101562px;}
.x6{left:174.996093px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls1{letter-spacing:1.296000pt;}
.ls3{letter-spacing:809.839111pt;}
.ws1{word-spacing:-81.601563pt;}
.ws2{word-spacing:-18.781930pt;}
.ws6{word-spacing:-13.296000pt;}
.ws7{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:-9.341234pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:239.857664pt;}
._1a{margin-left:-8.715578pt;}
._1b{margin-left:-7.700222pt;}
._19{margin-left:-5.757492pt;}
._17{margin-left:-4.443817pt;}
._9{margin-left:-3.067113pt;}
._3{margin-left:-1.960086pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.377550pt;}
._c{width:4.336347pt;}
._a{width:5.453500pt;}
._b{width:6.594733pt;}
._11{width:7.685492pt;}
._5{width:9.155297pt;}
._e{width:10.541500pt;}
._f{width:11.973523pt;}
._10{width:14.314586pt;}
._4{width:16.847056pt;}
._d{width:18.716926pt;}
._12{width:21.575721pt;}
._8{width:38.520885pt;}
._6{width:40.551435pt;}
._18{width:102.831524pt;}
._1c{width:266.505845pt;}
._14{width:290.208000pt;}
._15{width:293.361664pt;}
._13{width:296.736000pt;}
._16{width:308.008086pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:41.541662pt;}
.y26{bottom:52.458331pt;}
.y25{bottom:63.380208pt;}
.y49{bottom:129.958333pt;}
.y22{bottom:138.182268pt;}
.y21{bottom:154.984356pt;}
.y48{bottom:157.203125pt;}
.y20{bottom:171.781236pt;}
.y1f{bottom:188.583324pt;}
.y1e{bottom:205.380204pt;}
.y47{bottom:206.635416pt;}
.y1d{bottom:222.182292pt;}
.y46{bottom:233.885416pt;}
.y1c{bottom:238.984341pt;}
.y1b{bottom:255.781221pt;}
.y1a{bottom:272.583309pt;}
.y4b{bottom:275.990667pt;}
.y63{bottom:280.015620pt;}
.y45{bottom:283.317684pt;}
.y19{bottom:289.380189pt;}
.y62{bottom:295.979165pt;}
.y44{bottom:300.114564pt;}
.y18{bottom:306.182277pt;}
.y61{bottom:311.937500pt;}
.y43{bottom:316.916652pt;}
.y17{bottom:322.984365pt;}
.y60{bottom:327.895833pt;}
.y42{bottom:333.713532pt;}
.y16{bottom:339.781245pt;}
.y5f{bottom:343.859357pt;}
.y41{bottom:350.515620pt;}
.y15{bottom:356.583333pt;}
.y5e{bottom:359.817692pt;}
.y40{bottom:367.317704pt;}
.y5d{bottom:375.776027pt;}
.y14{bottom:383.833333pt;}
.y3f{bottom:384.114584pt;}
.y5c{bottom:391.739572pt;}
.y3e{bottom:400.916637pt;}
.y5b{bottom:407.697908pt;}
.y3d{bottom:417.713517pt;}
.y5a{bottom:423.656243pt;}
.y3c{bottom:434.515605pt;}
.y59{bottom:439.619788pt;}
.y13{bottom:445.255206pt;}
.y3b{bottom:451.317693pt;}
.y58{bottom:455.578123pt;}
.y12{bottom:460.187496pt;}
.y57{bottom:471.536455pt;}
.y11{bottom:475.119786pt;}
.y3a{bottom:480.114573pt;}
.y56{bottom:487.500000pt;}
.y10{bottom:494.052082pt;}
.y39{bottom:496.916661pt;}
.y4d{bottom:506.644749pt;}
.y38{bottom:513.713537pt;}
.yf{bottom:516.984375pt;}
.y55{bottom:520.838541pt;}
.y37{bottom:530.515620pt;}
.y4c{bottom:533.894749pt;}
.y36{bottom:547.317708pt;}
.ye{bottom:561.656276pt;}
.y35{bottom:564.114573pt;}
.y54{bottom:568.572917pt;}
.yd{bottom:573.416688pt;}
.yc{bottom:585.177101pt;}
.y34{bottom:592.916661pt;}
.y53{bottom:594.125000pt;}
.yb{bottom:596.937513pt;}
.ya{bottom:608.697926pt;}
.y33{bottom:609.713499pt;}
.y9{bottom:620.458338pt;}
.y32{bottom:626.515587pt;}
.y8{bottom:632.218751pt;}
.y31{bottom:643.317675pt;}
.y52{bottom:643.557277pt;}
.y7{bottom:650.843749pt;}
.y24{bottom:654.843747pt;}
.y30{bottom:660.114555pt;}
.y51{bottom:660.354157pt;}
.y6{bottom:667.911459pt;}
.y23{bottom:671.911459pt;}
.y2f{bottom:676.916643pt;}
.y50{bottom:689.156245pt;}
.y2e{bottom:693.713523pt;}
.y5{bottom:705.520828pt;}
.y4f{bottom:705.958333pt;}
.y2d{bottom:710.515611pt;}
.y4e{bottom:733.203125pt;}
.y4{bottom:738.906251pt;}
.y2c{bottom:739.317699pt;}
.y2b{bottom:756.114579pt;}
.y2a{bottom:772.916657pt;}
.y3{bottom:799.447917pt;}
.y29{bottom:801.713537pt;}
.y28{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4a{bottom:866.427084pt;}
.h7{height:23.328125pt;}
.h5{height:24.495670pt;}
.h8{height:24.932359pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.hb{height:31.659632pt;}
.hd{height:33.243717pt;}
.h2{height:34.992188pt;}
.ha{height:34.992283pt;}
.h9{height:34.992358pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.hc{height:555.088000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x8{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:109.921874pt;}
.x7{left:135.921875pt;}
.xa{left:142.312500pt;}
.x6{left:155.552083pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
}




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