
    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_f17ac53f3d3485a72f8e6003.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_b585d9cf115e46e42912de12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_8e9170f115becf8c2fade0fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_b945c9684f5ce5d0d3901dfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_620d63ceb4be802294745a68.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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;}
.ls11{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000600px;}
.lse{letter-spacing:0.007200px;}
.ls14{letter-spacing:0.010800px;}
.lsc{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.028800px;}
.ls6{letter-spacing:0.107568px;}
.ls8{letter-spacing:0.116928px;}
.ls7{letter-spacing:0.158688px;}
.ls1{letter-spacing:0.250992px;}
.ls4{letter-spacing:0.275616px;}
.ls9{letter-spacing:0.317376px;}
.ls2{letter-spacing:0.318816px;}
.lsf{letter-spacing:0.454176px;}
.lsb{letter-spacing:0.522720px;}
.ls10{letter-spacing:0.551232px;}
.lsa{letter-spacing:0.615480px;}
.ls12{letter-spacing:0.731808px;}
.ls13{letter-spacing:27.937200px;}
.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:-40.060800px;}
.ws9{word-spacing:-27.152928px;}
.ws5{word-spacing:-26.972352px;}
.wsa{word-spacing:-26.943840px;}
.ws3{word-spacing:-23.494176px;}
.ws2{word-spacing:-23.335488px;}
.ws8{word-spacing:-20.030400px;}
.ws7{word-spacing:-20.016000px;}
.ws6{word-spacing:-20.001600px;}
.ws1{word-spacing:-16.731936px;}
.wsb{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.002240px;}
._0{width:1.075680px;}
._6{width:2.874000px;}
._4{width:4.484400px;}
._3{width:6.032400px;}
._13{width:7.063200px;}
._a{width:8.064000px;}
._e{width:9.684000px;}
._16{width:11.325600px;}
._11{width:12.391200px;}
._17{width:13.638000px;}
._f{width:14.867400px;}
._8{width:16.215000px;}
._5{width:17.229600px;}
._12{width:18.245400px;}
._7{width:21.153600px;}
._9{width:22.953600px;}
._19{width:24.458400px;}
._1b{width:26.992200px;}
._14{width:29.527200px;}
._2{width:30.578400px;}
._b{width:32.508000px;}
._15{width:34.563600px;}
._18{width:35.875320px;}
._1f{width:37.685400px;}
._20{width:38.799600px;}
._c{width:44.762400px;}
._1e{width:46.101600px;}
._10{width:54.107400px;}
._1a{width:61.155000px;}
._1c{width:62.641800px;}
._1d{width:64.095000px;}
._d{width:75.549600px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.040000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs6{font-size:95.040000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:119.520000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.119937px;}
.y3{bottom:56.520003px;}
.y29{bottom:122.399988px;}
.y5c{bottom:146.520003px;}
.y28{bottom:149.399988px;}
.y42{bottom:155.520063px;}
.y5b{bottom:173.520063px;}
.y41{bottom:182.520063px;}
.y27{bottom:194.400063px;}
.y5a{bottom:200.519913px;}
.y11{bottom:206.640063px;}
.y65{bottom:209.519913px;}
.y26{bottom:221.399913px;}
.y40{bottom:227.519913px;}
.y10{bottom:230.760063px;}
.y59{bottom:236.519913px;}
.y25{bottom:248.399913px;}
.y3f{bottom:254.519913px;}
.yf{bottom:254.880063px;}
.y58{bottom:263.519913px;}
.y24{bottom:275.399913px;}
.y3e{bottom:281.519913px;}
.y57{bottom:290.519913px;}
.y23{bottom:302.399913px;}
.ye{bottom:315.000063px;}
.y56{bottom:317.519913px;}
.y3d{bottom:326.519913px;}
.y22{bottom:329.399913px;}
.yd{bottom:339.120063px;}
.y3c{bottom:353.519913px;}
.y21{bottom:356.399913px;}
.y55{bottom:380.519913px;}
.y3b{bottom:398.519913px;}
.y20{bottom:401.400063px;}
.y54{bottom:407.519913px;}
.y3a{bottom:425.519913px;}
.y1f{bottom:428.400063px;}
.y64{bottom:434.519913px;}
.y53{bottom:443.519913px;}
.y39{bottom:452.519913px;}
.y1e{bottom:455.400063px;}
.y52{bottom:470.519913px;}
.y38{bottom:497.519913px;}
.y1d{bottom:500.400063px;}
.y37{bottom:524.519913px;}
.y1c{bottom:527.400063px;}
.y51{bottom:533.519913px;}
.yc{bottom:534.240063px;}
.y1b{bottom:554.400063px;}
.yb{bottom:559.799913px;}
.y50{bottom:560.519913px;}
.y36{bottom:569.519913px;}
.y1a{bottom:581.400063px;}
.ya{bottom:591.119913px;}
.y35{bottom:596.519913px;}
.y4f{bottom:605.519913px;}
.y9{bottom:622.080063px;}
.y34{bottom:623.519913px;}
.y19{bottom:626.400063px;}
.y4e{bottom:632.519913px;}
.y33{bottom:650.519913px;}
.y4d{bottom:659.519913px;}
.y4c{bottom:686.519913px;}
.y8{bottom:686.879913px;}
.y32{bottom:695.519913px;}
.y18{bottom:698.400063px;}
.y4b{bottom:713.519913px;}
.y63{bottom:722.519913px;}
.y17{bottom:725.400063px;}
.y7{bottom:743.399913px;}
.y62{bottom:749.519913px;}
.y16{bottom:752.399913px;}
.y31{bottom:767.519913px;}
.y4a{bottom:776.519913px;}
.y15{bottom:779.399913px;}
.y61{bottom:785.519913px;}
.y30{bottom:794.519913px;}
.y49{bottom:803.519913px;}
.y60{bottom:812.519913px;}
.y6{bottom:824.039913px;}
.y14{bottom:824.399913px;}
.y48{bottom:830.519913px;}
.y2f{bottom:839.519913px;}
.y5f{bottom:848.519913px;}
.y47{bottom:857.519913px;}
.y5{bottom:865.439913px;}
.y5e{bottom:875.519913px;}
.y2e{bottom:884.519913px;}
.y46{bottom:902.519913px;}
.y2d{bottom:911.519913px;}
.y45{bottom:929.519913px;}
.y13{bottom:941.399913px;}
.y5d{bottom:947.519913px;}
.y4{bottom:950.399913px;}
.y2c{bottom:956.519913px;}
.y44{bottom:974.519913px;}
.y2b{bottom:983.519913px;}
.y43{bottom:1001.519913px;}
.y2a{bottom:1028.519913px;}
.y12{bottom:1030.320063px;}
.y2{bottom:1193.039913px;}
.h3{height:43.011563px;}
.h2{height:52.453125px;}
.h7{height:60.845625px;}
.h9{height:69.238125px;}
.h6{height:78.679688px;}
.h8{height:85.554844px;}
.h4{height:87.072188px;}
.h5{height:104.906250px;}
.h1{height:1262.880000px;}
.h0{height:1263.000000px;}
.w2{width:892.440000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x8{left:85.175910px;}
.x1{left:127.439925px;}
.x7{left:131.422470px;}
.x11{left:154.215150px;}
.x10{left:175.126050px;}
.x4{left:185.932200px;}
.x12{left:208.439850px;}
.x13{left:235.439850px;}
.x9{left:246.515250px;}
.x6{left:266.832600px;}
.xc{left:301.365600px;}
.x5{left:307.019100px;}
.xb{left:318.284550px;}
.xa{left:334.629300px;}
.xe{left:341.627550px;}
.xd{left:345.718800px;}
.x3{left:363.570900px;}
.xf{left:446.114850px;}
.x2{left:756.447450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000533pt;}
.lse{letter-spacing:0.006400pt;}
.ls14{letter-spacing:0.009600pt;}
.lsc{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.025600pt;}
.ls6{letter-spacing:0.095616pt;}
.ls8{letter-spacing:0.103936pt;}
.ls7{letter-spacing:0.141056pt;}
.ls1{letter-spacing:0.223104pt;}
.ls4{letter-spacing:0.244992pt;}
.ls9{letter-spacing:0.282112pt;}
.ls2{letter-spacing:0.283392pt;}
.lsf{letter-spacing:0.403712pt;}
.lsb{letter-spacing:0.464640pt;}
.ls10{letter-spacing:0.489984pt;}
.lsa{letter-spacing:0.547093pt;}
.ls12{letter-spacing:0.650496pt;}
.ls13{letter-spacing:24.833067pt;}
.ws0{word-spacing:-35.609600pt;}
.ws9{word-spacing:-24.135936pt;}
.ws5{word-spacing:-23.975424pt;}
.wsa{word-spacing:-23.950080pt;}
.ws3{word-spacing:-20.883712pt;}
.ws2{word-spacing:-20.742656pt;}
.ws8{word-spacing:-17.804800pt;}
.ws7{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.779200pt;}
.ws1{word-spacing:-14.872832pt;}
.wsb{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.890880pt;}
._0{width:0.956160pt;}
._6{width:2.554667pt;}
._4{width:3.986133pt;}
._3{width:5.362133pt;}
._13{width:6.278400pt;}
._a{width:7.168000pt;}
._e{width:8.608000pt;}
._16{width:10.067200pt;}
._11{width:11.014400pt;}
._17{width:12.122667pt;}
._f{width:13.215467pt;}
._8{width:14.413333pt;}
._5{width:15.315200pt;}
._12{width:16.218133pt;}
._7{width:18.803200pt;}
._9{width:20.403200pt;}
._19{width:21.740800pt;}
._1b{width:23.993067pt;}
._14{width:26.246400pt;}
._2{width:27.180800pt;}
._b{width:28.896000pt;}
._15{width:30.723200pt;}
._18{width:31.889173pt;}
._1f{width:33.498133pt;}
._20{width:34.488533pt;}
._c{width:39.788800pt;}
._1e{width:40.979200pt;}
._10{width:48.095467pt;}
._1a{width:54.360000pt;}
._1c{width:55.681600pt;}
._1d{width:56.973333pt;}
._d{width:67.155200pt;}
.fs1{font-size:52.480000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs6{font-size:84.480000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.240000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.106610pt;}
.y3{bottom:50.240003pt;}
.y29{bottom:108.799990pt;}
.y5c{bottom:130.240003pt;}
.y28{bottom:132.799990pt;}
.y42{bottom:138.240056pt;}
.y5b{bottom:154.240056pt;}
.y41{bottom:162.240056pt;}
.y27{bottom:172.800056pt;}
.y5a{bottom:178.239923pt;}
.y11{bottom:183.680056pt;}
.y65{bottom:186.239923pt;}
.y26{bottom:196.799923pt;}
.y40{bottom:202.239923pt;}
.y10{bottom:205.120056pt;}
.y59{bottom:210.239923pt;}
.y25{bottom:220.799923pt;}
.y3f{bottom:226.239923pt;}
.yf{bottom:226.560056pt;}
.y58{bottom:234.239923pt;}
.y24{bottom:244.799923pt;}
.y3e{bottom:250.239923pt;}
.y57{bottom:258.239923pt;}
.y23{bottom:268.799923pt;}
.ye{bottom:280.000056pt;}
.y56{bottom:282.239923pt;}
.y3d{bottom:290.239923pt;}
.y22{bottom:292.799923pt;}
.yd{bottom:301.440056pt;}
.y3c{bottom:314.239923pt;}
.y21{bottom:316.799923pt;}
.y55{bottom:338.239923pt;}
.y3b{bottom:354.239923pt;}
.y20{bottom:356.800056pt;}
.y54{bottom:362.239923pt;}
.y3a{bottom:378.239923pt;}
.y1f{bottom:380.800056pt;}
.y64{bottom:386.239923pt;}
.y53{bottom:394.239923pt;}
.y39{bottom:402.239923pt;}
.y1e{bottom:404.800056pt;}
.y52{bottom:418.239923pt;}
.y38{bottom:442.239923pt;}
.y1d{bottom:444.800056pt;}
.y37{bottom:466.239923pt;}
.y1c{bottom:468.800056pt;}
.y51{bottom:474.239923pt;}
.yc{bottom:474.880056pt;}
.y1b{bottom:492.800056pt;}
.yb{bottom:497.599923pt;}
.y50{bottom:498.239923pt;}
.y36{bottom:506.239923pt;}
.y1a{bottom:516.800056pt;}
.ya{bottom:525.439923pt;}
.y35{bottom:530.239923pt;}
.y4f{bottom:538.239923pt;}
.y9{bottom:552.960056pt;}
.y34{bottom:554.239923pt;}
.y19{bottom:556.800056pt;}
.y4e{bottom:562.239923pt;}
.y33{bottom:578.239923pt;}
.y4d{bottom:586.239923pt;}
.y4c{bottom:610.239923pt;}
.y8{bottom:610.559923pt;}
.y32{bottom:618.239923pt;}
.y18{bottom:620.800056pt;}
.y4b{bottom:634.239923pt;}
.y63{bottom:642.239923pt;}
.y17{bottom:644.800056pt;}
.y7{bottom:660.799923pt;}
.y62{bottom:666.239923pt;}
.y16{bottom:668.799923pt;}
.y31{bottom:682.239923pt;}
.y4a{bottom:690.239923pt;}
.y15{bottom:692.799923pt;}
.y61{bottom:698.239923pt;}
.y30{bottom:706.239923pt;}
.y49{bottom:714.239923pt;}
.y60{bottom:722.239923pt;}
.y6{bottom:732.479923pt;}
.y14{bottom:732.799923pt;}
.y48{bottom:738.239923pt;}
.y2f{bottom:746.239923pt;}
.y5f{bottom:754.239923pt;}
.y47{bottom:762.239923pt;}
.y5{bottom:769.279923pt;}
.y5e{bottom:778.239923pt;}
.y2e{bottom:786.239923pt;}
.y46{bottom:802.239923pt;}
.y2d{bottom:810.239923pt;}
.y45{bottom:826.239923pt;}
.y13{bottom:836.799923pt;}
.y5d{bottom:842.239923pt;}
.y4{bottom:844.799923pt;}
.y2c{bottom:850.239923pt;}
.y44{bottom:866.239923pt;}
.y2b{bottom:874.239923pt;}
.y43{bottom:890.239923pt;}
.y2a{bottom:914.239923pt;}
.y12{bottom:915.840056pt;}
.y2{bottom:1060.479923pt;}
.h3{height:38.232500pt;}
.h2{height:46.625000pt;}
.h7{height:54.085000pt;}
.h9{height:61.545000pt;}
.h6{height:69.937500pt;}
.h8{height:76.048750pt;}
.h4{height:77.397500pt;}
.h5{height:93.250000pt;}
.h1{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w2{width:793.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x8{left:75.711920pt;}
.x1{left:113.279933pt;}
.x7{left:116.819973pt;}
.x11{left:137.080133pt;}
.x10{left:155.667600pt;}
.x4{left:165.273067pt;}
.x12{left:185.279867pt;}
.x13{left:209.279867pt;}
.x9{left:219.124667pt;}
.x6{left:237.184533pt;}
.xc{left:267.880533pt;}
.x5{left:272.905867pt;}
.xb{left:282.919600pt;}
.xa{left:297.448267pt;}
.xe{left:303.668933pt;}
.xd{left:307.305600pt;}
.x3{left:323.174133pt;}
.xf{left:396.546533pt;}
.x2{left:672.397733pt;}
}




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