
    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_e056f485ad0dfbbae14ca17b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2f6b51d168507db9bfd6e810.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_16a361b5c31fe64275f90362.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_dd8f5346d203021a7355f4d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000387px;}
.ls2{letter-spacing:0.001557px;}
.ls0{letter-spacing:1.393545px;}
.ls4{letter-spacing:29.892538px;}
.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;}
}
.ws16{word-spacing:-40.348800px;}
.ws4{word-spacing:-34.370970px;}
.ws3{word-spacing:-29.887800px;}
.wsc{word-spacing:-17.574026px;}
.ws0{word-spacing:-16.139475px;}
.ws8{word-spacing:-14.704798px;}
.wsd{word-spacing:-13.449600px;}
.wsa{word-spacing:-11.476915px;}
.wsf{word-spacing:-11.417140px;}
.ws9{word-spacing:-10.341179px;}
.wse{word-spacing:-10.102076px;}
.ws12{word-spacing:-10.042301px;}
.ws10{word-spacing:-9.984925px;}
.ws6{word-spacing:-9.982525px;}
.ws13{word-spacing:-9.922750px;}
.ws1{word-spacing:-9.803198px;}
.ws15{word-spacing:-9.743423px;}
.ws2{word-spacing:-9.683647px;}
.ws5{word-spacing:-9.682556px;}
.ws7{word-spacing:-9.500823px;}
.wsb{word-spacing:-7.890379px;}
.ws11{word-spacing:-7.671853px;}
.ws14{word-spacing:0.000000px;}
._23{margin-left:-6.742733px;}
._8{margin-left:-4.901599px;}
._1{margin-left:-2.728169px;}
._2{margin-left:-1.054452px;}
._6{width:1.613941px;}
._0{width:2.668393px;}
._9{width:10.477488px;}
._3{width:19.030150px;}
._5{width:26.095678px;}
._4{width:27.910454px;}
._7{width:31.257888px;}
._a{width:35.729051px;}
._18{width:161.095242px;}
._1a{width:201.921977px;}
._14{width:219.512761px;}
._17{width:270.185712px;}
._19{width:410.538821px;}
._16{width:424.504802px;}
._b{width:450.648248px;}
._15{width:461.027694px;}
._1c{width:622.182712px;}
._11{width:627.165595px;}
._f{width:652.869103px;}
._12{width:660.281278px;}
._10{width:669.426944px;}
._1b{width:671.796460px;}
._1d{width:677.774020px;}
._13{width:684.012191px;}
._22{width:713.063132px;}
._1f{width:747.434102px;}
._d{width:788.619491px;}
._21{width:793.281988px;}
._1e{width:802.069001px;}
._20{width:807.030376px;}
._c{width:873.680170px;}
._e{width:886.950353px;}
._24{width:1400.482532px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y23{bottom:63.168000px;}
.y4c{bottom:126.109500px;}
.y4b{bottom:144.042000px;}
.y4a{bottom:161.974500px;}
.y22{bottom:178.611000px;}
.y49{bottom:179.907000px;}
.y48{bottom:197.839500px;}
.y47{bottom:215.773500px;}
.y21{bottom:232.591500px;}
.y20{bottom:250.524000px;}
.y46{bottom:252.322500px;}
.y1f{bottom:268.456500px;}
.y1e{bottom:286.389000px;}
.y1d{bottom:304.323000px;}
.y45{bottom:309.292500px;}
.y1c{bottom:322.255500px;}
.y44{bottom:327.225000px;}
.y1b{bottom:340.188000px;}
.y43{bottom:345.157500px;}
.y1a{bottom:358.120500px;}
.y42{bottom:363.090000px;}
.y19{bottom:376.053000px;}
.y41{bottom:381.022500px;}
.y18{bottom:393.985500px;}
.y40{bottom:398.956500px;}
.y3f{bottom:416.889000px;}
.y17{bottom:419.419500px;}
.y3e{bottom:434.821500px;}
.y3d{bottom:452.754000px;}
.y16{bottom:468.420000px;}
.y3c{bottom:478.188000px;}
.y15{bottom:519.219000px;}
.y3b{bottom:527.188500px;}
.y14{bottom:537.151500px;}
.y13{bottom:555.084000px;}
.y3a{bottom:577.987500px;}
.y12{bottom:591.634500px;}
.y39{bottom:631.966500px;}
.y11{bottom:642.433500px;}
.y38{bottom:649.899000px;}
.y10{bottom:660.366000px;}
.y37{bottom:667.833000px;}
.y36{bottom:685.765500px;}
.yf{bottom:696.916500px;}
.y35{bottom:703.698000px;}
.y34{bottom:721.630500px;}
.y33{bottom:739.563000px;}
.ye{bottom:747.715500px;}
.y32{bottom:757.495500px;}
.yd{bottom:765.648000px;}
.y31{bottom:775.429500px;}
.yc{bottom:783.580500px;}
.y30{bottom:793.362000px;}
.yb{bottom:801.513000px;}
.y2f{bottom:811.294500px;}
.y2e{bottom:829.227000px;}
.ya{bottom:838.063500px;}
.y2d{bottom:847.159500px;}
.y2c{bottom:865.092000px;}
.y2b{bottom:883.026000px;}
.y9{bottom:888.862500px;}
.y2a{bottom:900.958500px;}
.y8{bottom:906.795000px;}
.y29{bottom:918.891000px;}
.y7{bottom:924.729000px;}
.y28{bottom:936.823500px;}
.y6{bottom:942.661500px;}
.y27{bottom:954.756000px;}
.y5{bottom:960.594000px;}
.y26{bottom:972.688500px;}
.y4{bottom:987.493500px;}
.y25{bottom:990.622500px;}
.y3{bottom:1005.426000px;}
.y24{bottom:1016.056500px;}
.y2{bottom:1023.358500px;}
.y1{bottom:1065.055500px;}
.h2{height:44.831700px;}
.h3{height:50.211840px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:106.251000px;}
.x1{left:108.000000px;}
.xe{left:120.093000px;}
.x12{left:126.264000px;}
.x8{left:334.462500px;}
.x11{left:355.644000px;}
.xf{left:376.702500px;}
.x7{left:409.132500px;}
.x9{left:437.544000px;}
.x10{left:455.263500px;}
.xc{left:590.367000px;}
.xd{left:646.026000px;}
.xa{left:653.173500px;}
.x2{left:709.795500px;}
.x3{left:726.109500px;}
.x4{left:754.054500px;}
.x5{left:766.467000px;}
.xb{left:799.873500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000344pt;}
.ls2{letter-spacing:0.001384pt;}
.ls0{letter-spacing:1.238707pt;}
.ls4{letter-spacing:26.571145pt;}
.ws16{word-spacing:-35.865600pt;}
.ws4{word-spacing:-30.551973pt;}
.ws3{word-spacing:-26.566933pt;}
.wsc{word-spacing:-15.621357pt;}
.ws0{word-spacing:-14.346200pt;}
.ws8{word-spacing:-13.070931pt;}
.wsd{word-spacing:-11.955200pt;}
.wsa{word-spacing:-10.201702pt;}
.wsf{word-spacing:-10.148569pt;}
.ws9{word-spacing:-9.192159pt;}
.wse{word-spacing:-8.979623pt;}
.ws12{word-spacing:-8.926490pt;}
.ws10{word-spacing:-8.875489pt;}
.ws6{word-spacing:-8.873356pt;}
.ws13{word-spacing:-8.820222pt;}
.ws1{word-spacing:-8.713954pt;}
.ws15{word-spacing:-8.660820pt;}
.ws2{word-spacing:-8.607686pt;}
.ws5{word-spacing:-8.606716pt;}
.ws7{word-spacing:-8.445176pt;}
.wsb{word-spacing:-7.013670pt;}
.ws11{word-spacing:-6.819425pt;}
.ws14{word-spacing:0.000000pt;}
._23{margin-left:-5.993540pt;}
._8{margin-left:-4.356977pt;}
._1{margin-left:-2.425039pt;}
._2{margin-left:-0.937291pt;}
._6{width:1.434614pt;}
._0{width:2.371905pt;}
._9{width:9.313323pt;}
._3{width:16.915689pt;}
._5{width:23.196158pt;}
._4{width:24.809293pt;}
._7{width:27.784789pt;}
._a{width:31.759156pt;}
._18{width:143.195771pt;}
._1a{width:179.486202pt;}
._14{width:195.122454pt;}
._17{width:240.165077pt;}
._19{width:364.923396pt;}
._16{width:377.337602pt;}
._b{width:400.576221pt;}
._15{width:409.802395pt;}
._1c{width:553.051299pt;}
._11{width:557.480529pt;}
._f{width:580.328092pt;}
._12{width:586.916691pt;}
._10{width:595.046173pt;}
._1b{width:597.152409pt;}
._1d{width:602.465795pt;}
._13{width:608.010836pt;}
._22{width:633.833895pt;}
._1f{width:664.385869pt;}
._d{width:700.995103pt;}
._21{width:705.139545pt;}
._1e{width:712.950223pt;}
._20{width:717.360334pt;}
._c{width:776.604595pt;}
._e{width:788.400314pt;}
._24{width:1244.873362pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:56.149333pt;}
.y4c{bottom:112.097333pt;}
.y4b{bottom:128.037333pt;}
.y4a{bottom:143.977333pt;}
.y22{bottom:158.765333pt;}
.y49{bottom:159.917333pt;}
.y48{bottom:175.857333pt;}
.y47{bottom:191.798667pt;}
.y21{bottom:206.748000pt;}
.y20{bottom:222.688000pt;}
.y46{bottom:224.286667pt;}
.y1f{bottom:238.628000pt;}
.y1e{bottom:254.568000pt;}
.y1d{bottom:270.509333pt;}
.y45{bottom:274.926667pt;}
.y1c{bottom:286.449333pt;}
.y44{bottom:290.866667pt;}
.y1b{bottom:302.389333pt;}
.y43{bottom:306.806667pt;}
.y1a{bottom:318.329333pt;}
.y42{bottom:322.746667pt;}
.y19{bottom:334.269333pt;}
.y41{bottom:338.686667pt;}
.y18{bottom:350.209333pt;}
.y40{bottom:354.628000pt;}
.y3f{bottom:370.568000pt;}
.y17{bottom:372.817333pt;}
.y3e{bottom:386.508000pt;}
.y3d{bottom:402.448000pt;}
.y16{bottom:416.373333pt;}
.y3c{bottom:425.056000pt;}
.y15{bottom:461.528000pt;}
.y3b{bottom:468.612000pt;}
.y14{bottom:477.468000pt;}
.y13{bottom:493.408000pt;}
.y3a{bottom:513.766667pt;}
.y12{bottom:525.897333pt;}
.y39{bottom:561.748000pt;}
.y11{bottom:571.052000pt;}
.y38{bottom:577.688000pt;}
.y10{bottom:586.992000pt;}
.y37{bottom:593.629333pt;}
.y36{bottom:609.569333pt;}
.yf{bottom:619.481333pt;}
.y35{bottom:625.509333pt;}
.y34{bottom:641.449333pt;}
.y33{bottom:657.389333pt;}
.ye{bottom:664.636000pt;}
.y32{bottom:673.329333pt;}
.yd{bottom:680.576000pt;}
.y31{bottom:689.270667pt;}
.yc{bottom:696.516000pt;}
.y30{bottom:705.210667pt;}
.yb{bottom:712.456000pt;}
.y2f{bottom:721.150667pt;}
.y2e{bottom:737.090667pt;}
.ya{bottom:744.945333pt;}
.y2d{bottom:753.030667pt;}
.y2c{bottom:768.970667pt;}
.y2b{bottom:784.912000pt;}
.y9{bottom:790.100000pt;}
.y2a{bottom:800.852000pt;}
.y8{bottom:806.040000pt;}
.y29{bottom:816.792000pt;}
.y7{bottom:821.981333pt;}
.y28{bottom:832.732000pt;}
.y6{bottom:837.921333pt;}
.y27{bottom:848.672000pt;}
.y5{bottom:853.861333pt;}
.y26{bottom:864.612000pt;}
.y4{bottom:877.772000pt;}
.y25{bottom:880.553333pt;}
.y3{bottom:893.712000pt;}
.y24{bottom:903.161333pt;}
.y2{bottom:909.652000pt;}
.y1{bottom:946.716000pt;}
.h2{height:39.850400pt;}
.h3{height:44.632747pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.445333pt;}
.x1{left:96.000000pt;}
.xe{left:106.749333pt;}
.x12{left:112.234667pt;}
.x8{left:297.300000pt;}
.x11{left:316.128000pt;}
.xf{left:334.846667pt;}
.x7{left:363.673333pt;}
.x9{left:388.928000pt;}
.x10{left:404.678667pt;}
.xc{left:524.770667pt;}
.xd{left:574.245333pt;}
.xa{left:580.598667pt;}
.x2{left:630.929333pt;}
.x3{left:645.430667pt;}
.x4{left:670.270667pt;}
.x5{left:681.304000pt;}
.xb{left:710.998667pt;}
}




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