
    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_279fbb47b677036f0df0787d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_38175acd2d6c9cc67541b0d2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_d48104ba5af9c595ceb01276.woff')format("woff");}.ff3{font-family:ff3;line-height:0.679688;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_1b118865538bbe18297e4e10.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_59d12ab89224fd6d2ac4b05e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.678711;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.639400px;}
.ls8{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.720000px;}
.ls0{letter-spacing:4.200000px;}
.ls1{letter-spacing:6.600000px;}
.ls2{letter-spacing:10.200000px;}
.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.860000px;}
.ws2{word-spacing:-12.139200px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-20.952000px;}
._c{margin-left:-14.544000px;}
._12{margin-left:-8.160000px;}
._6{margin-left:-6.624000px;}
._2{margin-left:-5.610000px;}
._0{margin-left:-3.906000px;}
._4{margin-left:-2.880000px;}
._3{margin-left:-1.320000px;}
._b{width:1.026000px;}
._5{width:2.088000px;}
._1{width:3.780000px;}
._a{width:4.806000px;}
._9{width:6.138000px;}
._f{width:7.320000px;}
._8{width:8.622000px;}
._7{width:9.720000px;}
._11{width:11.184000px;}
._10{width:12.384000px;}
._d{width:14.112000px;}
._e{width:15.174000px;}
._13{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y81{bottom:76.314150px;}
.y1{bottom:76.337550px;}
.ya7{bottom:140.288100px;}
.y5d{bottom:145.863000px;}
.y15{bottom:146.370750px;}
.y3a{bottom:150.112500px;}
.ya6{bottom:162.339600px;}
.y14{bottom:167.970750px;}
.y39{bottom:171.712500px;}
.y5c{bottom:178.012350px;}
.y80{bottom:182.398350px;}
.y13{bottom:189.570750px;}
.ya5{bottom:192.683100px;}
.y38{bottom:193.312500px;}
.y5b{bottom:200.062350px;}
.y7f{bottom:203.692350px;}
.y12{bottom:211.170750px;}
.ya4{bottom:213.485100px;}
.y37{bottom:214.912500px;}
.y5a{bottom:222.112350px;}
.y7e{bottom:224.986350px;}
.y11{bottom:232.770750px;}
.ya3{bottom:234.491100px;}
.y36{bottom:236.512500px;}
.y59{bottom:244.162350px;}
.y7d{bottom:246.280350px;}
.y10{bottom:254.370750px;}
.ya2{bottom:255.497100px;}
.y35{bottom:258.112500px;}
.y58{bottom:266.212350px;}
.y7c{bottom:267.574350px;}
.yf{bottom:275.970750px;}
.ya1{bottom:276.503100px;}
.y34{bottom:279.712500px;}
.y57{bottom:288.262350px;}
.y7b{bottom:288.868350px;}
.ya0{bottom:297.509100px;}
.ye{bottom:297.570750px;}
.y33{bottom:301.312500px;}
.y7a{bottom:310.162350px;}
.y56{bottom:310.312350px;}
.y9f{bottom:318.515100px;}
.yd{bottom:319.170750px;}
.y32{bottom:322.912500px;}
.y79{bottom:331.456350px;}
.y55{bottom:332.362350px;}
.y9e{bottom:339.521100px;}
.yc{bottom:340.770750px;}
.y31{bottom:344.512500px;}
.y78{bottom:352.750350px;}
.y54{bottom:354.412350px;}
.y9d{bottom:360.527100px;}
.yb{bottom:362.370750px;}
.y30{bottom:366.112500px;}
.y77{bottom:374.044350px;}
.y53{bottom:376.462350px;}
.y9c{bottom:381.533100px;}
.ya{bottom:383.970750px;}
.y2f{bottom:387.712500px;}
.y76{bottom:395.338350px;}
.y52{bottom:398.512350px;}
.y9b{bottom:402.539100px;}
.y9{bottom:405.570750px;}
.y2e{bottom:409.312500px;}
.y75{bottom:416.632350px;}
.y51{bottom:420.562350px;}
.y9a{bottom:423.545100px;}
.y8{bottom:427.170750px;}
.y2d{bottom:430.912500px;}
.y74{bottom:437.926350px;}
.y50{bottom:442.612350px;}
.y99{bottom:444.551100px;}
.y7{bottom:448.770750px;}
.y2c{bottom:452.512500px;}
.y73{bottom:459.220350px;}
.y4f{bottom:464.662350px;}
.y98{bottom:465.557100px;}
.y6{bottom:470.370750px;}
.y2b{bottom:474.112500px;}
.y72{bottom:480.514350px;}
.y97{bottom:486.563100px;}
.y4e{bottom:486.712350px;}
.y5{bottom:491.970750px;}
.y2a{bottom:495.712500px;}
.y71{bottom:501.808350px;}
.y96{bottom:507.569100px;}
.y4d{bottom:508.762350px;}
.y29{bottom:517.312500px;}
.y70{bottom:523.102350px;}
.y95{bottom:528.575100px;}
.y4c{bottom:530.812350px;}
.y28{bottom:538.912500px;}
.y6f{bottom:544.396350px;}
.y94{bottom:549.581100px;}
.y4b{bottom:552.862350px;}
.y27{bottom:560.512500px;}
.y6e{bottom:565.690350px;}
.y93{bottom:570.587100px;}
.y4a{bottom:574.912350px;}
.y26{bottom:582.112500px;}
.y6d{bottom:586.984350px;}
.y92{bottom:591.593100px;}
.y49{bottom:596.962350px;}
.y25{bottom:603.712500px;}
.y6c{bottom:608.278350px;}
.y91{bottom:612.599100px;}
.y48{bottom:619.012350px;}
.y24{bottom:625.312500px;}
.y6b{bottom:629.572350px;}
.y90{bottom:633.605100px;}
.y47{bottom:641.062350px;}
.y23{bottom:646.912500px;}
.y6a{bottom:650.866350px;}
.y8f{bottom:654.611100px;}
.y46{bottom:663.112350px;}
.y22{bottom:668.512500px;}
.y69{bottom:672.160350px;}
.y8e{bottom:675.617100px;}
.y45{bottom:685.162500px;}
.y21{bottom:690.112500px;}
.y68{bottom:693.454350px;}
.y8d{bottom:696.623100px;}
.y44{bottom:707.212500px;}
.y20{bottom:711.712500px;}
.y67{bottom:714.748350px;}
.y8c{bottom:717.629100px;}
.y43{bottom:729.262500px;}
.y1f{bottom:733.312500px;}
.y66{bottom:736.042350px;}
.y8b{bottom:738.635100px;}
.y42{bottom:751.312500px;}
.y1e{bottom:754.912500px;}
.y65{bottom:757.336350px;}
.y8a{bottom:759.641100px;}
.y41{bottom:773.362500px;}
.y1d{bottom:776.512500px;}
.y64{bottom:778.630350px;}
.y89{bottom:780.647100px;}
.y40{bottom:795.412500px;}
.y1c{bottom:798.112500px;}
.y63{bottom:799.924350px;}
.y88{bottom:801.653100px;}
.y3f{bottom:817.462500px;}
.y1b{bottom:819.712500px;}
.y62{bottom:821.218350px;}
.y87{bottom:822.659100px;}
.y3e{bottom:839.512500px;}
.y1a{bottom:841.312500px;}
.y61{bottom:842.536500px;}
.y86{bottom:843.665100px;}
.y4{bottom:855.448650px;}
.y3d{bottom:861.562500px;}
.y19{bottom:862.912500px;}
.y60{bottom:863.830500px;}
.y85{bottom:864.671100px;}
.y3c{bottom:883.612500px;}
.y18{bottom:884.512500px;}
.y5f{bottom:885.124500px;}
.y84{bottom:885.677100px;}
.y3b{bottom:905.662500px;}
.y17{bottom:906.112500px;}
.y5e{bottom:906.418500px;}
.y83{bottom:906.683100px;}
.y3{bottom:910.710000px;}
.y82{bottom:927.689100px;}
.y16{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.ha{height:26.199902px;}
.h4{height:27.993164px;}
.h3{height:35.663086px;}
.h2{height:39.990234px;}
.h9{height:40.757812px;}
.h5{height:43.989258px;}
.hc{height:48.399902px;}
.h6{height:50.947266px;}
.h8{height:61.136719px;}
.hb{height:61.952719px;}
.h7{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x1{left:97.795350px;}
.x4{left:119.053350px;}
.x2{left:150.670350px;}
.x3{left:270.577950px;}
.x5{left:370.319100px;}
.x6{left:575.539350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.679467pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls2{letter-spacing:9.066667pt;}
.ws0{word-spacing:-14.986667pt;}
.ws2{word-spacing:-10.790400pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-18.624000pt;}
._c{margin-left:-12.928000pt;}
._12{margin-left:-7.253333pt;}
._6{margin-left:-5.888000pt;}
._2{margin-left:-4.986667pt;}
._0{margin-left:-3.472000pt;}
._4{margin-left:-2.560000pt;}
._3{margin-left:-1.173333pt;}
._b{width:0.912000pt;}
._5{width:1.856000pt;}
._1{width:3.360000pt;}
._a{width:4.272000pt;}
._9{width:5.456000pt;}
._f{width:6.506667pt;}
._8{width:7.664000pt;}
._7{width:8.640000pt;}
._11{width:9.941333pt;}
._10{width:11.008000pt;}
._d{width:12.544000pt;}
._e{width:13.488000pt;}
._13{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:67.834800pt;}
.y1{bottom:67.855600pt;}
.ya7{bottom:124.700533pt;}
.y5d{bottom:129.656000pt;}
.y15{bottom:130.107333pt;}
.y3a{bottom:133.433333pt;}
.ya6{bottom:144.301867pt;}
.y14{bottom:149.307333pt;}
.y39{bottom:152.633333pt;}
.y5c{bottom:158.233200pt;}
.y80{bottom:162.131867pt;}
.y13{bottom:168.507333pt;}
.ya5{bottom:171.273867pt;}
.y38{bottom:171.833333pt;}
.y5b{bottom:177.833200pt;}
.y7f{bottom:181.059867pt;}
.y12{bottom:187.707333pt;}
.ya4{bottom:189.764533pt;}
.y37{bottom:191.033333pt;}
.y5a{bottom:197.433200pt;}
.y7e{bottom:199.987867pt;}
.y11{bottom:206.907333pt;}
.ya3{bottom:208.436533pt;}
.y36{bottom:210.233333pt;}
.y59{bottom:217.033200pt;}
.y7d{bottom:218.915867pt;}
.y10{bottom:226.107333pt;}
.ya2{bottom:227.108533pt;}
.y35{bottom:229.433333pt;}
.y58{bottom:236.633200pt;}
.y7c{bottom:237.843867pt;}
.yf{bottom:245.307333pt;}
.ya1{bottom:245.780533pt;}
.y34{bottom:248.633333pt;}
.y57{bottom:256.233200pt;}
.y7b{bottom:256.771867pt;}
.ya0{bottom:264.452533pt;}
.ye{bottom:264.507333pt;}
.y33{bottom:267.833333pt;}
.y7a{bottom:275.699867pt;}
.y56{bottom:275.833200pt;}
.y9f{bottom:283.124533pt;}
.yd{bottom:283.707333pt;}
.y32{bottom:287.033333pt;}
.y79{bottom:294.627867pt;}
.y55{bottom:295.433200pt;}
.y9e{bottom:301.796533pt;}
.yc{bottom:302.907333pt;}
.y31{bottom:306.233333pt;}
.y78{bottom:313.555867pt;}
.y54{bottom:315.033200pt;}
.y9d{bottom:320.468533pt;}
.yb{bottom:322.107333pt;}
.y30{bottom:325.433333pt;}
.y77{bottom:332.483867pt;}
.y53{bottom:334.633200pt;}
.y9c{bottom:339.140533pt;}
.ya{bottom:341.307333pt;}
.y2f{bottom:344.633333pt;}
.y76{bottom:351.411867pt;}
.y52{bottom:354.233200pt;}
.y9b{bottom:357.812533pt;}
.y9{bottom:360.507333pt;}
.y2e{bottom:363.833333pt;}
.y75{bottom:370.339867pt;}
.y51{bottom:373.833200pt;}
.y9a{bottom:376.484533pt;}
.y8{bottom:379.707333pt;}
.y2d{bottom:383.033333pt;}
.y74{bottom:389.267867pt;}
.y50{bottom:393.433200pt;}
.y99{bottom:395.156533pt;}
.y7{bottom:398.907333pt;}
.y2c{bottom:402.233333pt;}
.y73{bottom:408.195867pt;}
.y4f{bottom:413.033200pt;}
.y98{bottom:413.828533pt;}
.y6{bottom:418.107333pt;}
.y2b{bottom:421.433333pt;}
.y72{bottom:427.123867pt;}
.y97{bottom:432.500533pt;}
.y4e{bottom:432.633200pt;}
.y5{bottom:437.307333pt;}
.y2a{bottom:440.633333pt;}
.y71{bottom:446.051867pt;}
.y96{bottom:451.172533pt;}
.y4d{bottom:452.233200pt;}
.y29{bottom:459.833333pt;}
.y70{bottom:464.979867pt;}
.y95{bottom:469.844533pt;}
.y4c{bottom:471.833200pt;}
.y28{bottom:479.033333pt;}
.y6f{bottom:483.907867pt;}
.y94{bottom:488.516533pt;}
.y4b{bottom:491.433200pt;}
.y27{bottom:498.233333pt;}
.y6e{bottom:502.835867pt;}
.y93{bottom:507.188533pt;}
.y4a{bottom:511.033200pt;}
.y26{bottom:517.433333pt;}
.y6d{bottom:521.763867pt;}
.y92{bottom:525.860533pt;}
.y49{bottom:530.633200pt;}
.y25{bottom:536.633333pt;}
.y6c{bottom:540.691867pt;}
.y91{bottom:544.532533pt;}
.y48{bottom:550.233200pt;}
.y24{bottom:555.833333pt;}
.y6b{bottom:559.619867pt;}
.y90{bottom:563.204533pt;}
.y47{bottom:569.833200pt;}
.y23{bottom:575.033333pt;}
.y6a{bottom:578.547867pt;}
.y8f{bottom:581.876533pt;}
.y46{bottom:589.433200pt;}
.y22{bottom:594.233333pt;}
.y69{bottom:597.475867pt;}
.y8e{bottom:600.548533pt;}
.y45{bottom:609.033333pt;}
.y21{bottom:613.433333pt;}
.y68{bottom:616.403867pt;}
.y8d{bottom:619.220533pt;}
.y44{bottom:628.633333pt;}
.y20{bottom:632.633333pt;}
.y67{bottom:635.331867pt;}
.y8c{bottom:637.892533pt;}
.y43{bottom:648.233333pt;}
.y1f{bottom:651.833333pt;}
.y66{bottom:654.259867pt;}
.y8b{bottom:656.564533pt;}
.y42{bottom:667.833333pt;}
.y1e{bottom:671.033333pt;}
.y65{bottom:673.187867pt;}
.y8a{bottom:675.236533pt;}
.y41{bottom:687.433333pt;}
.y1d{bottom:690.233333pt;}
.y64{bottom:692.115867pt;}
.y89{bottom:693.908533pt;}
.y40{bottom:707.033333pt;}
.y1c{bottom:709.433333pt;}
.y63{bottom:711.043867pt;}
.y88{bottom:712.580533pt;}
.y3f{bottom:726.633333pt;}
.y1b{bottom:728.633333pt;}
.y62{bottom:729.971867pt;}
.y87{bottom:731.252533pt;}
.y3e{bottom:746.233333pt;}
.y1a{bottom:747.833333pt;}
.y61{bottom:748.921333pt;}
.y86{bottom:749.924533pt;}
.y4{bottom:760.398800pt;}
.y3d{bottom:765.833333pt;}
.y19{bottom:767.033333pt;}
.y60{bottom:767.849333pt;}
.y85{bottom:768.596533pt;}
.y3c{bottom:785.433333pt;}
.y18{bottom:786.233333pt;}
.y5f{bottom:786.777333pt;}
.y84{bottom:787.268533pt;}
.y3b{bottom:805.033333pt;}
.y17{bottom:805.433333pt;}
.y5e{bottom:805.705333pt;}
.y83{bottom:805.940533pt;}
.y3{bottom:809.520000pt;}
.y82{bottom:824.612533pt;}
.y16{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.ha{height:23.288802pt;}
.h4{height:24.882812pt;}
.h3{height:31.700521pt;}
.h2{height:35.546875pt;}
.h9{height:36.229167pt;}
.h5{height:39.101562pt;}
.hc{height:43.022135pt;}
.h6{height:45.286458pt;}
.h8{height:54.343750pt;}
.hb{height:55.069083pt;}
.h7{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x1{left:86.929200pt;}
.x4{left:105.825200pt;}
.x2{left:133.929200pt;}
.x3{left:240.513733pt;}
.x5{left:329.172533pt;}
.x6{left:511.590533pt;}
}




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