
    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_f60c8e59a9264f9d3dd81d2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130000;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_d8c6cdd67805db971553ba4e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_abe34fc8ba8f98715c218745.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123000;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_5b0a068cd2fdd1345372de07.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m2{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,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:-8.733393px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:107.972165px;}
.ls1{letter-spacing:107.972233px;}
.ls3{letter-spacing:107.994702px;}
.ls4{letter-spacing:2946.256353px;}
.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;}
}
.ws9{word-spacing:-59.136003px;}
.ws7{word-spacing:-48.384002px;}
.ws2{word-spacing:-30.912000px;}
.ws8{word-spacing:-29.568002px;}
.ws6{word-spacing:-27.240000px;}
.ws5{word-spacing:-26.880000px;}
.wsa{word-spacing:-24.192001px;}
.ws4{word-spacing:-23.268000px;}
.ws1{word-spacing:-18.816000px;}
.ws3{word-spacing:-14.958000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-10.116001px;}
._1{margin-left:-8.857935px;}
._2{margin-left:-6.156000px;}
._3{margin-left:-3.864000px;}
._0{margin-left:-2.160000px;}
._5{margin-left:-1.104000px;}
._7{width:1.316700px;}
._4{width:2.340000px;}
._6{width:3.594000px;}
._8{width:5.616000px;}
.fc7{color:rgb(153,0,255);}
.fc6{color:rgb(0,151,167);}
.fc5{color:rgb(89,89,89);}
.fc3{color:rgb(183,183,183);}
.fc2{color:rgb(67,67,67);}
.fc1{color:rgb(153,153,153);}
.fc4{color:rgb(180,167,214);}
.fc0{color:rgb(142,124,195);}
.fs9{font-size:54.000002px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.fsa{font-size:92.400001px;}
.fsb{font-size:94.229882px;}
.fs0{font-size:108.000003px;}
.fs5{font-size:120.000001px;}
.fsc{font-size:132.000007px;}
.fs6{font-size:138.000001px;}
.fs8{font-size:162.000005px;}
.fs3{font-size:180.000006px;}
.fs7{font-size:216.000007px;}
.fsd{font-size:264.000014px;}
.fs1{font-size:276.000003px;}
.y0{bottom:0.000000px;}
.y19{bottom:15.052785px;}
.y8{bottom:28.082245px;}
.y4a{bottom:30.265593px;}
.y33{bottom:30.274238px;}
.y41{bottom:31.595809px;}
.y5{bottom:34.654934px;}
.yf{bottom:47.561213px;}
.y25{bottom:55.067360px;}
.y40{bottom:60.701810px;}
.y49{bottom:62.665599px;}
.y29{bottom:67.613594px;}
.y24{bottom:79.817361px;}
.y3f{bottom:89.807822px;}
.y28{bottom:105.863598px;}
.y20{bottom:107.480619px;}
.y16{bottom:108.572125px;}
.y3e{bottom:118.913834px;}
.y32{bottom:130.055891px;}
.y3d{bottom:148.019847px;}
.y2b{bottom:165.277491px;}
.yd{bottom:176.511237px;}
.y31{bottom:180.455915px;}
.y15{bottom:191.372105px;}
.yc{bottom:201.261238px;}
.y46{bottom:203.293787px;}
.y3c{bottom:206.231871px;}
.y1f{bottom:221.559563px;}
.y2a{bottom:222.857693px;}
.y1c{bottom:224.720881px;}
.yb{bottom:226.011239px;}
.y30{bottom:230.855905px;}
.y1{bottom:231.616405px;}
.y14{bottom:232.772107px;}
.y3b{bottom:235.337883px;}
.ye{bottom:236.700224px;}
.y47{bottom:241.943006px;}
.y45{bottom:242.893788px;}
.y1e{bottom:246.309564px;}
.y1b{bottom:249.470882px;}
.y23{bottom:258.039788px;}
.y3a{bottom:264.443895px;}
.y1d{bottom:271.059565px;}
.y13{bottom:274.172108px;}
.y1a{bottom:274.220882px;}
.y2f{bottom:281.255896px;}
.y17{bottom:284.309995px;}
.y39{bottom:293.549907px;}
.y43{bottom:301.343019px;}
.y22{bottom:307.539800px;}
.y48{bottom:309.713014px;}
.ya{bottom:314.706135px;}
.y12{bottom:315.572121px;}
.y38{bottom:322.655920px;}
.y4{bottom:323.153496px;}
.y2e{bottom:331.655909px;}
.y42{bottom:340.943020px;}
.y27{bottom:349.152978px;}
.y11{bottom:356.972122px;}
.y9{bottom:376.152984px;}
.y37{bottom:380.867915px;}
.y2d{bottom:382.055906px;}
.y26{bottom:387.402981px;}
.y10{bottom:398.372112px;}
.y3{bottom:405.953487px;}
.y44{bottom:408.713021px;}
.y36{bottom:409.973909px;}
.y2c{bottom:432.455901px;}
.y34{bottom:438.342171px;}
.y35{bottom:439.079901px;}
.y21{bottom:445.392413px;}
.y7{bottom:484.965354px;}
.y2{bottom:488.753479px;}
.y18{bottom:505.932990px;}
.y6{bottom:565.309489px;}
.ha{height:39.339845px;}
.h5{height:43.710938px;}
.hb{height:61.195312px;}
.h3{height:73.920000px;}
.hc{height:81.312001px;}
.hd{height:82.922296px;}
.h1{height:95.040003px;}
.h6{height:105.600001px;}
.he{height:116.160006px;}
.h7{height:121.440001px;}
.h9{height:142.560005px;}
.h4{height:158.400005px;}
.h8{height:190.080006px;}
.hf{height:232.320013px;}
.h2{height:242.880002px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3{left:23.737205px;}
.xb{left:39.667324px;}
.x10{left:46.939963px;}
.x1{left:52.644688px;}
.x11{left:55.497048px;}
.x2e{left:59.988889px;}
.x12{left:88.057473px;}
.x14{left:93.555856px;}
.x2c{left:100.939964px;}
.x29{left:109.826925px;}
.x2f{left:113.988891px;}
.x13{left:118.017483px;}
.x30{left:154.939966px;}
.xf{left:157.706251px;}
.x1b{left:264.330137px;}
.x8{left:278.096185px;}
.x18{left:290.937581px;}
.x7{left:304.750934px;}
.x6{left:311.124784px;}
.x28{left:313.172583px;}
.x1a{left:318.113549px;}
.x9{left:328.436279px;}
.x31{left:393.953581px;}
.x32{left:408.620544px;}
.x2d{left:417.068800px;}
.x5{left:486.536078px;}
.x1c{left:496.782913px;}
.xc{left:503.962267px;}
.x1d{left:523.248722px;}
.x33{left:539.329562px;}
.xd{left:557.962268px;}
.x34{left:566.700217px;}
.x22{left:570.970384px;}
.x26{left:588.922184px;}
.x25{left:592.207514px;}
.x23{left:602.317023px;}
.xe{left:605.793327px;}
.xa{left:618.137165px;}
.x24{left:633.008961px;}
.x27{left:674.372254px;}
.x1f{left:746.838768px;}
.x1e{left:752.390169px;}
.x20{left:823.648270px;}
.x15{left:846.439738px;}
.x16{left:851.067522px;}
.x21{left:876.507118px;}
.x17{left:880.482353px;}
.x19{left:927.487380px;}
.x2{left:934.137007px;}
.x2a{left:937.134015px;}
.x2b{left:952.096293px;}
.x35{left:1038.688064px;}
.x4{left:1047.027099px;}
@media print{
.v1{vertical-align:-7.763016pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:95.975258pt;}
.ls1{letter-spacing:95.975318pt;}
.ls3{letter-spacing:95.995291pt;}
.ls4{letter-spacing:2618.894536pt;}
.ws9{word-spacing:-52.565336pt;}
.ws7{word-spacing:-43.008001pt;}
.ws2{word-spacing:-27.477334pt;}
.ws8{word-spacing:-26.282668pt;}
.ws6{word-spacing:-24.213334pt;}
.ws5{word-spacing:-23.893334pt;}
.wsa{word-spacing:-21.504001pt;}
.ws4{word-spacing:-20.682667pt;}
.ws1{word-spacing:-16.725333pt;}
.ws3{word-spacing:-13.296000pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-8.992001pt;}
._1{margin-left:-7.873720pt;}
._2{margin-left:-5.472000pt;}
._3{margin-left:-3.434667pt;}
._0{margin-left:-1.920000pt;}
._5{margin-left:-0.981333pt;}
._7{width:1.170400pt;}
._4{width:2.080000pt;}
._6{width:3.194667pt;}
._8{width:4.992000pt;}
.fs9{font-size:48.000002pt;}
.fs4{font-size:53.333334pt;}
.fs2{font-size:74.666666pt;}
.fsa{font-size:82.133335pt;}
.fsb{font-size:83.759895pt;}
.fs0{font-size:96.000003pt;}
.fs5{font-size:106.666667pt;}
.fsc{font-size:117.333340pt;}
.fs6{font-size:122.666668pt;}
.fs8{font-size:144.000005pt;}
.fs3{font-size:160.000005pt;}
.fs7{font-size:192.000006pt;}
.fsd{font-size:234.666680pt;}
.fs1{font-size:245.333336pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:13.380253pt;}
.y8{bottom:24.961996pt;}
.y4a{bottom:26.902750pt;}
.y33{bottom:26.910434pt;}
.y41{bottom:28.085164pt;}
.y5{bottom:30.804386pt;}
.yf{bottom:42.276634pt;}
.y25{bottom:48.948764pt;}
.y40{bottom:53.957164pt;}
.y49{bottom:55.702755pt;}
.y29{bottom:60.100973pt;}
.y24{bottom:70.948765pt;}
.y3f{bottom:79.829175pt;}
.y28{bottom:94.100976pt;}
.y20{bottom:95.538328pt;}
.y16{bottom:96.508556pt;}
.y3e{bottom:105.701186pt;}
.y32{bottom:115.605236pt;}
.y3d{bottom:131.573197pt;}
.y2b{bottom:146.913325pt;}
.yd{bottom:156.898878pt;}
.y31{bottom:160.405258pt;}
.y15{bottom:170.108538pt;}
.yc{bottom:178.898878pt;}
.y46{bottom:180.705589pt;}
.y3c{bottom:183.317219pt;}
.y1f{bottom:196.941834pt;}
.y2a{bottom:198.095727pt;}
.y1c{bottom:199.751894pt;}
.yb{bottom:200.898879pt;}
.y30{bottom:205.205249pt;}
.y1{bottom:205.881249pt;}
.y14{bottom:206.908539pt;}
.y3b{bottom:209.189229pt;}
.ye{bottom:210.400199pt;}
.y47{bottom:215.060450pt;}
.y45{bottom:215.905590pt;}
.y1e{bottom:218.941835pt;}
.y1b{bottom:221.751895pt;}
.y23{bottom:229.368700pt;}
.y3a{bottom:235.061240pt;}
.y1d{bottom:240.941835pt;}
.y13{bottom:243.708541pt;}
.y1a{bottom:243.751896pt;}
.y2f{bottom:250.005241pt;}
.y17{bottom:252.719996pt;}
.y39{bottom:260.933251pt;}
.y43{bottom:267.860461pt;}
.y22{bottom:273.368711pt;}
.y48{bottom:275.300457pt;}
.ya{bottom:279.738787pt;}
.y12{bottom:280.508552pt;}
.y38{bottom:286.805262pt;}
.y4{bottom:287.247552pt;}
.y2e{bottom:294.805252pt;}
.y42{bottom:303.060462pt;}
.y27{bottom:310.358203pt;}
.y11{bottom:317.308553pt;}
.y9{bottom:334.358208pt;}
.y37{bottom:338.549258pt;}
.y2d{bottom:339.605250pt;}
.y26{bottom:344.358206pt;}
.y10{bottom:354.108544pt;}
.y3{bottom:360.847544pt;}
.y44{bottom:363.300463pt;}
.y36{bottom:364.421252pt;}
.y2c{bottom:384.405245pt;}
.y34{bottom:389.637485pt;}
.y35{bottom:390.293245pt;}
.y21{bottom:395.904367pt;}
.y7{bottom:431.080315pt;}
.y2{bottom:434.447537pt;}
.y18{bottom:449.718213pt;}
.y6{bottom:502.497324pt;}
.ha{height:34.968751pt;}
.h5{height:38.854167pt;}
.hb{height:54.395833pt;}
.h3{height:65.706666pt;}
.hc{height:72.277334pt;}
.hd{height:73.708708pt;}
.h1{height:84.480003pt;}
.h6{height:93.866667pt;}
.he{height:103.253339pt;}
.h7{height:107.946668pt;}
.h9{height:126.720004pt;}
.h4{height:140.800005pt;}
.h8{height:168.960005pt;}
.hf{height:206.506678pt;}
.h2{height:215.893336pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3{left:21.099738pt;}
.xb{left:35.259843pt;}
.x10{left:41.724411pt;}
.x1{left:46.795278pt;}
.x11{left:49.330710pt;}
.x2e{left:53.323457pt;}
.x12{left:78.273310pt;}
.x14{left:83.160761pt;}
.x2c{left:89.724413pt;}
.x29{left:97.623933pt;}
.x2f{left:101.323458pt;}
.x13{left:104.904429pt;}
.x30{left:137.724414pt;}
.xf{left:140.183334pt;}
.x1b{left:234.960122pt;}
.x8{left:247.196609pt;}
.x18{left:258.611183pt;}
.x7{left:270.889719pt;}
.x6{left:276.555364pt;}
.x28{left:278.375629pt;}
.x1a{left:282.767599pt;}
.x9{left:291.943359pt;}
.x31{left:350.180961pt;}
.x32{left:363.218262pt;}
.x2d{left:370.727822pt;}
.x5{left:432.476514pt;}
.x1c{left:441.584811pt;}
.xc{left:447.966459pt;}
.x1d{left:465.109975pt;}
.x33{left:479.404055pt;}
.xd{left:495.966461pt;}
.x34{left:503.733526pt;}
.x22{left:507.529230pt;}
.x26{left:523.486386pt;}
.x25{left:526.406679pt;}
.x23{left:535.392909pt;}
.xe{left:538.482957pt;}
.xa{left:549.455258pt;}
.x24{left:562.674632pt;}
.x27{left:599.442003pt;}
.x1f{left:663.856682pt;}
.x1e{left:668.791261pt;}
.x20{left:732.131795pt;}
.x15{left:752.390878pt;}
.x16{left:756.504464pt;}
.x21{left:779.117438pt;}
.x17{left:782.650980pt;}
.x19{left:824.433226pt;}
.x2{left:830.344007pt;}
.x2a{left:833.008014pt;}
.x2b{left:846.307816pt;}
.x35{left:923.278280pt;}
.x4{left:930.690755pt;}
}




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