
    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_bbfbe586eaf6c9ccd10e5df8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_0daf74d3ba842adfe68112ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_106142c24b88209092669072.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_65ce997eee888c332d53e342.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_44bfeca5040d0dc3d67edc06.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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;}
.v1{vertical-align:47.820000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:24.253114px;}
.ls0{letter-spacing:26.515114px;}
.ls3{letter-spacing:190.195114px;}
.ls4{letter-spacing:195.085114px;}
.ls1{letter-spacing:277.003114px;}
.ls2{letter-spacing:300.433114px;}
.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;}
}
.ws5{word-spacing:-2.654054px;}
.ws3{word-spacing:-2.080205px;}
.ws13{word-spacing:-0.358656px;}
.wsf{word-spacing:-0.071731px;}
.ws1b{word-spacing:0.000000px;}
.ws11{word-spacing:1.506355px;}
.ws2a{word-spacing:1.865011px;}
.wsd{word-spacing:2.295398px;}
.ws2b{word-spacing:2.869248px;}
.ws12{word-spacing:3.371366px;}
.ws8{word-spacing:3.873485px;}
.ws18{word-spacing:3.945216px;}
.ws1d{word-spacing:4.447334px;}
.ws2c{word-spacing:4.519066px;}
.ws7{word-spacing:4.590797px;}
.ws1{word-spacing:4.648169px;}
.ws17{word-spacing:4.805990px;}
.ws26{word-spacing:5.021184px;}
.ws14{word-spacing:5.236378px;}
.ws20{word-spacing:5.451571px;}
.ws10{word-spacing:5.523302px;}
.ws16{word-spacing:5.810227px;}
.ws6{word-spacing:6.312346px;}
.ws28{word-spacing:6.384077px;}
.wsa{word-spacing:6.455808px;}
.wse{word-spacing:7.029658px;}
.ws29{word-spacing:7.101389px;}
.ws22{word-spacing:7.388314px;}
.ws23{word-spacing:7.675238px;}
.ws25{word-spacing:7.746970px;}
.ws1e{word-spacing:8.822938px;}
.ws1c{word-spacing:9.325056px;}
.ws27{word-spacing:10.114099px;}
.wsb{word-spacing:10.329293px;}
.wsc{word-spacing:11.190067px;}
.ws1f{word-spacing:11.692186px;}
.ws4{word-spacing:19.295693px;}
.ws2d{word-spacing:25.679770px;}
.ws15{word-spacing:29.051136px;}
.ws9{word-spacing:29.768448px;}
.ws21{word-spacing:30.844416px;}
.ws24{word-spacing:31.274803px;}
.ws0{word-spacing:37.316475px;}
.ws2{word-spacing:38.631358px;}
.ws19{word-spacing:54.594453px;}
.ws1a{word-spacing:54.595945px;}
._1{margin-left:-9.794025px;}
._22{margin-left:-7.645348px;}
._d{margin-left:-5.810227px;}
._0{margin-left:-3.223350px;}
._5{margin-left:-1.936742px;}
._6{width:1.793280px;}
._3{width:3.223350px;}
._12{width:4.299318px;}
._2{width:5.633512px;}
._f{width:11.046605px;}
._e{width:12.337766px;}
._9{width:18.147994px;}
._13{width:25.247178px;}
._20{width:28.190362px;}
._8{width:29.949197px;}
._10{width:31.561728px;}
._7{width:33.355008px;}
._11{width:35.937331px;}
._15{width:37.516368px;}
._a{width:39.165235px;}
._1f{width:40.966645px;}
._14{width:42.608333px;}
._b{width:44.545075px;}
._1c{width:46.835920px;}
._1e{width:47.988173px;}
._21{width:49.135872px;}
._c{width:51.422162px;}
._1d{width:53.793846px;}
._18{width:85.796427px;}
._16{width:97.877453px;}
._1b{width:104.347213px;}
._17{width:109.237213px;}
._4{width:116.203950px;}
._19{width:174.586404px;}
._1a{width:179.476404px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y23{bottom:61.467000px;}
.y22{bottom:119.323500px;}
.y21{bottom:141.589500px;}
.y20{bottom:147.567000px;}
.y1f{bottom:153.544500px;}
.y1e{bottom:171.352500px;}
.y1d{bottom:193.620000px;}
.y1c{bottom:215.886000px;}
.y1b{bottom:238.152000px;}
.y1a{bottom:275.362500px;}
.y19{bottom:323.905500px;}
.y3d{bottom:337.840500px;}
.y18{bottom:345.574500px;}
.y3c{bottom:359.509500px;}
.y17{bottom:367.243500px;}
.y16{bottom:388.912500px;}
.y3b{bottom:398.937000px;}
.y15{bottom:410.580000px;}
.y14{bottom:432.249000px;}
.y13{bottom:453.918000px;}
.y3a{bottom:458.836500px;}
.y12{bottom:475.587000px;}
.y39{bottom:480.505500px;}
.y11{bottom:497.256000px;}
.y38{bottom:502.174500px;}
.y10{bottom:518.925000px;}
.y37{bottom:523.843500px;}
.yf{bottom:540.592500px;}
.y36{bottom:545.511000px;}
.ye{bottom:562.261500px;}
.y35{bottom:567.180000px;}
.yd{bottom:583.930500px;}
.y34{bottom:588.849000px;}
.yc{bottom:605.599500px;}
.y33{bottom:610.518000px;}
.yb{bottom:627.268500px;}
.y32{bottom:632.187000px;}
.ya{bottom:648.937500px;}
.y31{bottom:653.856000px;}
.y9{bottom:670.605000px;}
.y30{bottom:675.523500px;}
.y8{bottom:692.274000px;}
.y2f{bottom:697.192500px;}
.y7{bottom:713.943000px;}
.y2e{bottom:718.861500px;}
.y6{bottom:735.612000px;}
.y5{bottom:775.039500px;}
.y2d{bottom:781.227000px;}
.y2c{bottom:824.565000px;}
.y2b{bottom:867.903000px;}
.y4{bottom:873.793500px;}
.y3{bottom:900.693000px;}
.y2a{bottom:933.756000px;}
.y2{bottom:953.931000px;}
.y29{bottom:955.425000px;}
.y28{bottom:977.092500px;}
.y1{bottom:991.290000px;}
.y27{bottom:998.761500px;}
.y26{bottom:1020.430500px;}
.y25{bottom:1042.099500px;}
.y24{bottom:1063.768500px;}
.h4{height:53.798400px;}
.h2{height:64.557900px;}
.h3{height:72.304680px;}
.h1{height:87.650325px;}
.h5{height:101.618400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:127.558500px;}
.x1{left:132.175500px;}
.x3{left:143.593500px;}
.x6{left:153.897000px;}
.x2{left:199.213500px;}
.x8{left:307.099500px;}
.x7{left:336.669000px;}
.x9{left:381.228000px;}
.x4{left:401.247000px;}
.xa{left:461.214000px;}
.xd{left:465.240000px;}
.xb{left:513.640500px;}
.xc{left:567.289500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:42.506667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:21.558323pt;}
.ls0{letter-spacing:23.568990pt;}
.ls3{letter-spacing:169.062323pt;}
.ls4{letter-spacing:173.408990pt;}
.ls1{letter-spacing:246.224990pt;}
.ls2{letter-spacing:267.051657pt;}
.ws5{word-spacing:-2.359159pt;}
.ws3{word-spacing:-1.849071pt;}
.ws13{word-spacing:-0.318805pt;}
.wsf{word-spacing:-0.063761pt;}
.ws1b{word-spacing:0.000000pt;}
.ws11{word-spacing:1.338982pt;}
.ws2a{word-spacing:1.657788pt;}
.wsd{word-spacing:2.040354pt;}
.ws2b{word-spacing:2.550443pt;}
.ws12{word-spacing:2.996770pt;}
.ws8{word-spacing:3.443098pt;}
.ws18{word-spacing:3.506859pt;}
.ws1d{word-spacing:3.953186pt;}
.ws2c{word-spacing:4.016947pt;}
.ws7{word-spacing:4.080708pt;}
.ws1{word-spacing:4.131706pt;}
.ws17{word-spacing:4.271991pt;}
.ws26{word-spacing:4.463275pt;}
.ws14{word-spacing:4.654558pt;}
.ws20{word-spacing:4.845841pt;}
.ws10{word-spacing:4.909602pt;}
.ws16{word-spacing:5.164646pt;}
.ws6{word-spacing:5.610974pt;}
.ws28{word-spacing:5.674735pt;}
.wsa{word-spacing:5.738496pt;}
.wse{word-spacing:6.248585pt;}
.ws29{word-spacing:6.312346pt;}
.ws22{word-spacing:6.567390pt;}
.ws23{word-spacing:6.822434pt;}
.ws25{word-spacing:6.886195pt;}
.ws1e{word-spacing:7.842611pt;}
.ws1c{word-spacing:8.288939pt;}
.ws27{word-spacing:8.990310pt;}
.wsb{word-spacing:9.181594pt;}
.wsc{word-spacing:9.946726pt;}
.ws1f{word-spacing:10.393054pt;}
.ws4{word-spacing:17.151727pt;}
.ws2d{word-spacing:22.826462pt;}
.ws15{word-spacing:25.823232pt;}
.ws9{word-spacing:26.460843pt;}
.ws21{word-spacing:27.417259pt;}
.ws24{word-spacing:27.799825pt;}
.ws0{word-spacing:33.170200pt;}
.ws2{word-spacing:34.338985pt;}
.ws19{word-spacing:48.528403pt;}
.ws1a{word-spacing:48.529729pt;}
._1{margin-left:-8.705800pt;}
._22{margin-left:-6.795865pt;}
._d{margin-left:-5.164646pt;}
._0{margin-left:-2.865200pt;}
._5{margin-left:-1.721549pt;}
._6{width:1.594027pt;}
._3{width:2.865200pt;}
._12{width:3.821616pt;}
._2{width:5.007566pt;}
._f{width:9.819204pt;}
._e{width:10.966903pt;}
._9{width:16.131550pt;}
._13{width:22.441936pt;}
._20{width:25.058099pt;}
._8{width:26.621508pt;}
._10{width:28.054869pt;}
._7{width:29.648896pt;}
._11{width:31.944294pt;}
._15{width:33.347883pt;}
._a{width:34.813542pt;}
._1f{width:36.414795pt;}
._14{width:37.874074pt;}
._b{width:39.595622pt;}
._1c{width:41.631929pt;}
._1e{width:42.656154pt;}
._21{width:43.676331pt;}
._c{width:45.708589pt;}
._1d{width:47.816752pt;}
._18{width:76.263491pt;}
._16{width:87.002180pt;}
._1b{width:92.753079pt;}
._17{width:97.099745pt;}
._4{width:103.292400pt;}
._19{width:155.187915pt;}
._1a{width:159.534582pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:54.637333pt;}
.y22{bottom:106.065333pt;}
.y21{bottom:125.857333pt;}
.y20{bottom:131.170667pt;}
.y1f{bottom:136.484000pt;}
.y1e{bottom:152.313333pt;}
.y1d{bottom:172.106667pt;}
.y1c{bottom:191.898667pt;}
.y1b{bottom:211.690667pt;}
.y1a{bottom:244.766667pt;}
.y19{bottom:287.916000pt;}
.y3d{bottom:300.302667pt;}
.y18{bottom:307.177333pt;}
.y3c{bottom:319.564000pt;}
.y17{bottom:326.438667pt;}
.y16{bottom:345.700000pt;}
.y3b{bottom:354.610667pt;}
.y15{bottom:364.960000pt;}
.y14{bottom:384.221333pt;}
.y13{bottom:403.482667pt;}
.y3a{bottom:407.854667pt;}
.y12{bottom:422.744000pt;}
.y39{bottom:427.116000pt;}
.y11{bottom:442.005333pt;}
.y38{bottom:446.377333pt;}
.y10{bottom:461.266667pt;}
.y37{bottom:465.638667pt;}
.yf{bottom:480.526667pt;}
.y36{bottom:484.898667pt;}
.ye{bottom:499.788000pt;}
.y35{bottom:504.160000pt;}
.yd{bottom:519.049333pt;}
.y34{bottom:523.421333pt;}
.yc{bottom:538.310667pt;}
.y33{bottom:542.682667pt;}
.yb{bottom:557.572000pt;}
.y32{bottom:561.944000pt;}
.ya{bottom:576.833333pt;}
.y31{bottom:581.205333pt;}
.y9{bottom:596.093333pt;}
.y30{bottom:600.465333pt;}
.y8{bottom:615.354667pt;}
.y2f{bottom:619.726667pt;}
.y7{bottom:634.616000pt;}
.y2e{bottom:638.988000pt;}
.y6{bottom:653.877333pt;}
.y5{bottom:688.924000pt;}
.y2d{bottom:694.424000pt;}
.y2c{bottom:732.946667pt;}
.y2b{bottom:771.469333pt;}
.y4{bottom:776.705333pt;}
.y3{bottom:800.616000pt;}
.y2a{bottom:830.005333pt;}
.y2{bottom:847.938667pt;}
.y29{bottom:849.266667pt;}
.y28{bottom:868.526667pt;}
.y1{bottom:881.146667pt;}
.y27{bottom:887.788000pt;}
.y26{bottom:907.049333pt;}
.y25{bottom:926.310667pt;}
.y24{bottom:945.572000pt;}
.h4{height:47.820800pt;}
.h2{height:57.384800pt;}
.h3{height:64.270827pt;}
.h1{height:77.911400pt;}
.h5{height:90.327467pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.385333pt;}
.x1{left:117.489333pt;}
.x3{left:127.638667pt;}
.x6{left:136.797333pt;}
.x2{left:177.078667pt;}
.x8{left:272.977333pt;}
.x7{left:299.261333pt;}
.x9{left:338.869333pt;}
.x4{left:356.664000pt;}
.xa{left:409.968000pt;}
.xd{left:413.546667pt;}
.xb{left:456.569333pt;}
.xc{left:504.257333pt;}
}




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