
    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_523f939b6ea1bd2d4ac07381.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_3791894ffefdd8bf556eea91.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_9ee5212f66c393d4da1b1912.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.213379;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_f011480f0aa486b6f22b185b.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;}
.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);}
.v2{vertical-align:-20.491262px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.768066px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-9.000000px;}
.ws2{word-spacing:-8.100000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-7.207031px;}
._5{margin-left:-5.765603px;}
._6{margin-left:-4.289082px;}
._1{margin-left:-3.007600px;}
._0{margin-left:-1.625957px;}
._3{width:4.499987px;}
._2{width:9.000002px;}
._4{width:13.499999px;}
._9{width:22.499976px;}
._8{width:27.000002px;}
._b{width:36.140572px;}
._a{width:40.464862px;}
._c{width:44.507812px;}
.fc1{color:rgb(24,128,56);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.399999px;}
.fs3{font-size:36.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:11.768552px;}
.y2b{bottom:11.768553px;}
.y26{bottom:11.768555px;}
.y2a{bottom:32.466796px;}
.y29{bottom:53.165038px;}
.y66{bottom:119.621333px;}
.ya3{bottom:122.771483px;}
.y22{bottom:130.598513px;}
.y84{bottom:137.586181px;}
.y65{bottom:152.436766px;}
.ya2{bottom:155.575202px;}
.y45{bottom:163.062018px;}
.y21{bottom:163.401488px;}
.y83{bottom:170.480716px;}
.ya1{bottom:179.377452px;}
.y64{bottom:185.330566px;}
.y20{bottom:196.204462px;}
.y43{bottom:200.635251px;}
.ya0{bottom:203.192146px;}
.y82{bottom:203.374141px;}
.y63{bottom:218.224366px;}
.y44{bottom:221.333493px;}
.y1f{bottom:229.007452px;}
.y9f{bottom:236.086666px;}
.y81{bottom:236.256232px;}
.y62{bottom:251.106443px;}
.y42{bottom:258.906741px;}
.y1e{bottom:261.810428px;}
.y9e{bottom:268.980106px;}
.y80{bottom:269.059204px;}
.y41{bottom:279.604983px;}
.y61{bottom:283.909429px;}
.y7f{bottom:292.862183px;}
.y1d{bottom:294.613403px;}
.y9d{bottom:301.874266px;}
.y60{bottom:307.712408px;}
.y40{bottom:317.178228px;}
.y7e{bottom:325.677241px;}
.y1c{bottom:327.416378px;}
.y9c{bottom:334.756342px;}
.y5f{bottom:340.515382px;}
.y3f{bottom:354.751458px;}
.y7d{bottom:358.559333px;}
.y9b{bottom:358.571416px;}
.y1b{bottom:360.219368px;}
.y5e{bottom:373.318358px;}
.y7c{bottom:391.362307px;}
.y9a{bottom:391.453493px;}
.y1a{bottom:393.022342px;}
.y5d{bottom:406.121333px;}
.y3e{bottom:408.323003px;}
.y7b{bottom:424.165283px;}
.y99{bottom:424.256468px;}
.y19{bottom:425.825317px;}
.y5c{bottom:438.936031px;}
.y3d{bottom:441.125977px;}
.y7a{bottom:456.980341px;}
.y98{bottom:457.059442px;}
.y18{bottom:458.628293px;}
.y3c{bottom:459.284181px;}
.y5b{bottom:471.829831px;}
.y3b{bottom:479.982423px;}
.y79{bottom:489.873781px;}
.y17{bottom:491.431268px;}
.y5a{bottom:504.724366px;}
.y3a{bottom:517.784181px;}
.y78{bottom:522.768316px;}
.y16{bottom:524.234258px;}
.y59{bottom:537.618166px;}
.y97{bottom:555.661741px;}
.y77{bottom:555.662116px;}
.y15{bottom:557.037233px;}
.y58{bottom:570.500246px;}
.y39{bottom:576.284181px;}
.y76{bottom:588.544197px;}
.y96{bottom:588.555901px;}
.y14{bottom:589.840208px;}
.y57{bottom:594.314941px;}
.y38{bottom:596.982423px;}
.y75{bottom:612.358891px;}
.y95{bottom:621.450076px;}
.y13{bottom:622.643182px;}
.y56{bottom:627.197018px;}
.y37{bottom:634.784181px;}
.y74{bottom:645.240968px;}
.y94{bottom:654.332153px;}
.y12{bottom:655.446172px;}
.y36{bottom:655.482423px;}
.y55{bottom:660.000004px;}
.y73{bottom:678.043942px;}
.y54{bottom:683.802983px;}
.y93{bottom:687.135128px;}
.y11{bottom:688.249148px;}
.y35{bottom:693.732423px;}
.y72{bottom:710.858641px;}
.y53{bottom:716.605954px;}
.y92{bottom:719.938118px;}
.y10{bottom:721.052122px;}
.y52{bottom:740.408932px;}
.y71{bottom:743.752441px;}
.y34{bottom:747.303952px;}
.y91{bottom:752.752441px;}
.yf{bottom:753.855098px;}
.yac{bottom:762.013178px;}
.y51{bottom:773.211908px;}
.y70{bottom:776.646976px;}
.y33{bottom:780.106928px;}
.y90{bottom:785.646976px;}
.ye{bottom:786.658077px;}
.yab{bottom:794.816899px;}
.y32{bottom:798.036621px;}
.y50{bottom:806.014898px;}
.y6f{bottom:809.540776px;}
.yd{bottom:810.461055px;}
.y8f{bottom:818.540401px;}
.yaa{bottom:818.619144px;}
.y31{bottom:818.734863px;}
.yc{bottom:834.264034px;}
.y4f{bottom:838.817873px;}
.y6e{bottom:842.434576px;}
.y8e{bottom:851.434576px;}
.y30{bottom:856.308111px;}
.y4e{bottom:856.976076px;}
.yb{bottom:858.067012px;}
.y6d{bottom:875.328376px;}
.ya9{bottom:875.329096px;}
.y2f{bottom:877.006353px;}
.y4d{bottom:877.674318px;}
.y8d{bottom:884.328736px;}
.ya{bottom:890.870003px;}
.y6c{bottom:908.222161px;}
.y2d{bottom:914.579586px;}
.y4c{bottom:915.924318px;}
.y8c{bottom:917.222161px;}
.y9{bottom:921.923395px;}
.y2c{bottom:935.277828px;}
.ya8{bottom:941.104253px;}
.y6b{bottom:941.116696px;}
.y8{bottom:944.898444px;}
.y8b{bottom:950.104238px;}
.y4b{bottom:954.174318px;}
.y7{bottom:966.627865px;}
.y28{bottom:972.851074px;}
.ya7{bottom:973.907227px;}
.y8a{bottom:973.919671px;}
.y6a{bottom:974.010496px;}
.y6{bottom:989.602914px;}
.y4a{bottom:992.424317px;}
.ya6{bottom:1006.722656px;}
.y89{bottom:1006.813111px;}
.y69{bottom:1006.904297px;}
.y5{bottom:1011.915528px;}
.y27{bottom:1014.247558px;}
.y4{bottom:1031.751342px;}
.ya5{bottom:1039.615723px;}
.y88{bottom:1039.695191px;}
.y68{bottom:1039.786377px;}
.y49{bottom:1045.995849px;}
.y3{bottom:1051.587158px;}
.y25{bottom:1051.820800px;}
.y87{bottom:1072.498169px;}
.ya4{bottom:1072.510253px;}
.y67{bottom:1072.589355px;}
.y48{bottom:1078.798828px;}
.y2{bottom:1083.338927px;}
.y47{bottom:1096.728516px;}
.y86{bottom:1105.301148px;}
.y24{bottom:1105.392335px;}
.y46{bottom:1117.426758px;}
.y1{bottom:1125.591797px;}
.y85{bottom:1138.116211px;}
.y23{bottom:1138.195312px;}
.h6{height:29.046093px;}
.hb{height:36.448242px;}
.h7{height:48.410156px;}
.h8{height:48.796875px;}
.h5{height:55.041503px;}
.h3{height:55.041504px;}
.h4{height:55.041507px;}
.hd{height:57.146484px;}
.h2{height:60.996094px;}
.h9{height:64.546875px;}
.ha{height:65.531250px;}
.hc{height:77.844726px;}
.h1{height:85.394531px;}
.h0{height:1263.000000px;}
.w5{width:86.625000px;}
.w1{width:110.250000px;}
.w3{width:138.375000px;}
.w4{width:535.500000px;}
.w2{width:564.750000px;}
.w6{width:588.375000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xf{left:6.750000px;}
.x13{left:10.757812px;}
.xc{left:22.570312px;}
.x10{left:36.632812px;}
.x3{left:98.460981px;}
.x4{left:100.305955px;}
.x6{left:105.502591px;}
.x9{left:108.000000px;}
.xb{left:109.125000px;}
.x16{left:135.000000px;}
.x2{left:160.380401px;}
.x17{left:162.000000px;}
.x5{left:178.564154px;}
.x18{left:189.000000px;}
.x14{left:196.875000px;}
.x1a{left:216.000000px;}
.xd{left:220.500000px;}
.x12{left:235.687500px;}
.x19{left:243.000000px;}
.x11{left:248.625000px;}
.xe{left:250.312500px;}
.x15{left:262.125000px;}
.x1{left:301.645890px;}
.x7{left:313.748439px;}
.x8{left:338.678612px;}
.xa{left:784.913411px;}
@media print{
.v2{vertical-align:-18.214455pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.238281pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-8.000000pt;}
.ws2{word-spacing:-7.200000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-6.406250pt;}
._5{margin-left:-5.124980pt;}
._6{margin-left:-3.812517pt;}
._1{margin-left:-2.673422pt;}
._0{margin-left:-1.445295pt;}
._3{width:3.999988pt;}
._2{width:8.000002pt;}
._4{width:11.999999pt;}
._9{width:19.999979pt;}
._8{width:24.000002pt;}
._b{width:32.124952pt;}
._a{width:35.968766pt;}
._c{width:39.562500pt;}
.fs4{font-size:28.799999pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:10.460935pt;}
.y2b{bottom:10.460936pt;}
.y26{bottom:10.460937pt;}
.y2a{bottom:28.859375pt;}
.y29{bottom:47.257812pt;}
.y66{bottom:106.330073pt;}
.ya3{bottom:109.130207pt;}
.y22{bottom:116.087567pt;}
.y84{bottom:122.298828pt;}
.y65{bottom:135.499347pt;}
.ya2{bottom:138.289069pt;}
.y45{bottom:144.944016pt;}
.y21{bottom:145.245767pt;}
.y83{bottom:151.538414pt;}
.ya1{bottom:159.446624pt;}
.y64{bottom:164.738281pt;}
.y20{bottom:174.403967pt;}
.y43{bottom:178.342445pt;}
.ya0{bottom:180.615241pt;}
.y82{bottom:180.777014pt;}
.y63{bottom:193.977214pt;}
.y44{bottom:196.740883pt;}
.y1f{bottom:203.562180pt;}
.y9f{bottom:209.854814pt;}
.y81{bottom:210.005540pt;}
.y62{bottom:223.205727pt;}
.y42{bottom:230.139325pt;}
.y1e{bottom:232.720380pt;}
.y9e{bottom:239.093427pt;}
.y80{bottom:239.163737pt;}
.y41{bottom:248.537763pt;}
.y61{bottom:252.363936pt;}
.y7f{bottom:260.321940pt;}
.y1d{bottom:261.878580pt;}
.y9d{bottom:268.332681pt;}
.y60{bottom:273.522140pt;}
.y40{bottom:281.936203pt;}
.y7e{bottom:289.490881pt;}
.y1c{bottom:291.036780pt;}
.y9c{bottom:297.561193pt;}
.y5f{bottom:302.680340pt;}
.y3f{bottom:315.334629pt;}
.y7d{bottom:318.719407pt;}
.y9b{bottom:318.730147pt;}
.y1b{bottom:320.194993pt;}
.y5e{bottom:331.838540pt;}
.y7c{bottom:347.877607pt;}
.y9a{bottom:347.958660pt;}
.y1a{bottom:349.353193pt;}
.y5d{bottom:360.996740pt;}
.y3e{bottom:362.953780pt;}
.y7b{bottom:377.035807pt;}
.y99{bottom:377.116860pt;}
.y19{bottom:378.511393pt;}
.y5c{bottom:390.165361pt;}
.y3d{bottom:392.111980pt;}
.y7a{bottom:406.204747pt;}
.y98{bottom:406.275060pt;}
.y18{bottom:407.669593pt;}
.y3c{bottom:408.252605pt;}
.y5b{bottom:419.404294pt;}
.y3b{bottom:426.651043pt;}
.y79{bottom:435.443361pt;}
.y17{bottom:436.827793pt;}
.y5a{bottom:448.643881pt;}
.y3a{bottom:460.252605pt;}
.y78{bottom:464.682948pt;}
.y16{bottom:465.986007pt;}
.y59{bottom:477.882814pt;}
.y97{bottom:493.921547pt;}
.y77{bottom:493.921881pt;}
.y15{bottom:495.144207pt;}
.y58{bottom:507.111330pt;}
.y39{bottom:512.252605pt;}
.y76{bottom:523.150397pt;}
.y96{bottom:523.160801pt;}
.y14{bottom:524.302407pt;}
.y57{bottom:528.279948pt;}
.y38{bottom:530.651043pt;}
.y75{bottom:544.319014pt;}
.y95{bottom:552.400067pt;}
.y13{bottom:553.460607pt;}
.y56{bottom:557.508460pt;}
.y37{bottom:564.252605pt;}
.y74{bottom:573.547527pt;}
.y94{bottom:581.628580pt;}
.y12{bottom:582.618820pt;}
.y36{bottom:582.651043pt;}
.y55{bottom:586.666670pt;}
.y73{bottom:602.705727pt;}
.y54{bottom:607.824873pt;}
.y93{bottom:610.786780pt;}
.y11{bottom:611.777020pt;}
.y35{bottom:616.651043pt;}
.y72{bottom:631.874347pt;}
.y53{bottom:636.983070pt;}
.y92{bottom:639.944993pt;}
.y10{bottom:640.935220pt;}
.y52{bottom:658.141273pt;}
.y71{bottom:661.113281pt;}
.y34{bottom:664.270180pt;}
.y91{bottom:669.113281pt;}
.yf{bottom:670.093420pt;}
.yac{bottom:677.345047pt;}
.y51{bottom:687.299473pt;}
.y70{bottom:690.352867pt;}
.y33{bottom:693.428380pt;}
.y90{bottom:698.352867pt;}
.ye{bottom:699.251624pt;}
.yab{bottom:706.503910pt;}
.y32{bottom:709.365885pt;}
.y50{bottom:716.457687pt;}
.y6f{bottom:719.591801pt;}
.yd{bottom:720.409827pt;}
.y8f{bottom:727.591467pt;}
.yaa{bottom:727.661461pt;}
.y31{bottom:727.764323pt;}
.yc{bottom:741.568030pt;}
.y4f{bottom:745.615887pt;}
.y6e{bottom:748.830734pt;}
.y8e{bottom:756.830734pt;}
.y30{bottom:761.162765pt;}
.y4e{bottom:761.756512pt;}
.yb{bottom:762.726233pt;}
.y6d{bottom:778.069668pt;}
.ya9{bottom:778.070307pt;}
.y2f{bottom:779.561203pt;}
.y4d{bottom:780.154949pt;}
.y8d{bottom:786.069988pt;}
.ya{bottom:791.884447pt;}
.y6c{bottom:807.308587pt;}
.y2d{bottom:812.959632pt;}
.y4c{bottom:814.154949pt;}
.y8c{bottom:815.308587pt;}
.y9{bottom:819.487462pt;}
.y2c{bottom:831.358069pt;}
.ya8{bottom:836.537113pt;}
.y6b{bottom:836.548174pt;}
.y8{bottom:839.909728pt;}
.y8b{bottom:844.537101pt;}
.y4b{bottom:848.154949pt;}
.y7{bottom:859.224768pt;}
.y28{bottom:864.756511pt;}
.ya7{bottom:865.695313pt;}
.y8a{bottom:865.706374pt;}
.y6a{bottom:865.787108pt;}
.y6{bottom:879.647035pt;}
.y4a{bottom:882.154948pt;}
.ya6{bottom:894.864583pt;}
.y89{bottom:894.944987pt;}
.y69{bottom:895.026042pt;}
.y5{bottom:899.480469pt;}
.y27{bottom:901.553385pt;}
.y4{bottom:917.112304pt;}
.ya5{bottom:924.102865pt;}
.y88{bottom:924.173503pt;}
.y68{bottom:924.254557pt;}
.y49{bottom:929.774088pt;}
.y3{bottom:934.744140pt;}
.y25{bottom:934.951823pt;}
.y87{bottom:953.331705pt;}
.ya4{bottom:953.342448pt;}
.y67{bottom:953.412760pt;}
.y48{bottom:958.932292pt;}
.y2{bottom:962.967935pt;}
.y47{bottom:974.869792pt;}
.y86{bottom:982.489909pt;}
.y24{bottom:982.570964pt;}
.y46{bottom:993.268229pt;}
.y1{bottom:1000.526042pt;}
.y85{bottom:1011.658854pt;}
.y23{bottom:1011.729167pt;}
.h6{height:25.818749pt;}
.hb{height:32.398437pt;}
.h7{height:43.031250pt;}
.h8{height:43.375000pt;}
.h5{height:48.925780pt;}
.h3{height:48.925781pt;}
.h4{height:48.925784pt;}
.hd{height:50.796875pt;}
.h2{height:54.218750pt;}
.h9{height:57.375000pt;}
.ha{height:58.250000pt;}
.hc{height:69.195312pt;}
.h1{height:75.906250pt;}
.h0{height:1122.666667pt;}
.w5{width:77.000000pt;}
.w1{width:98.000000pt;}
.w3{width:123.000000pt;}
.w4{width:476.000000pt;}
.w2{width:502.000000pt;}
.w6{width:523.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xf{left:6.000000pt;}
.x13{left:9.562500pt;}
.xc{left:20.062500pt;}
.x10{left:32.562500pt;}
.x3{left:87.520872pt;}
.x4{left:89.160849pt;}
.x6{left:93.780081pt;}
.x9{left:96.000000pt;}
.xb{left:97.000000pt;}
.x16{left:120.000000pt;}
.x2{left:142.560356pt;}
.x17{left:144.000000pt;}
.x5{left:158.723692pt;}
.x18{left:168.000000pt;}
.x14{left:175.000000pt;}
.x1a{left:192.000000pt;}
.xd{left:196.000000pt;}
.x12{left:209.500000pt;}
.x19{left:216.000000pt;}
.x11{left:221.000000pt;}
.xe{left:222.500000pt;}
.x15{left:233.000000pt;}
.x1{left:268.129680pt;}
.x7{left:278.887501pt;}
.x8{left:301.047655pt;}
.xa{left:697.700810pt;}
}




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