
    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_ce9ff837eef73f8aa81985f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_acbfc5ed8975bd6a5a7cd575.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.766000;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;}
.ls3{letter-spacing:-0.307368px;}
.lsb{letter-spacing:-0.079916px;}
.ls8{letter-spacing:-0.061474px;}
.ls16{letter-spacing:-0.043032px;}
.ls6{letter-spacing:-0.032386px;}
.ls10{letter-spacing:-0.030737px;}
.ls4{letter-spacing:-0.028727px;}
.ls5{letter-spacing:-0.023939px;}
.ls9{letter-spacing:-0.018442px;}
.lsa{letter-spacing:-0.012295px;}
.lsc{letter-spacing:-0.006147px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006147px;}
.ls0{letter-spacing:0.012295px;}
.ls1{letter-spacing:0.018442px;}
.lsd{letter-spacing:0.019152px;}
.lse{letter-spacing:0.024589px;}
.ls15{letter-spacing:0.030737px;}
.lsf{letter-spacing:0.036884px;}
.ls13{letter-spacing:0.043032px;}
.ls12{letter-spacing:0.055326px;}
.ls14{letter-spacing:0.307368px;}
.ls11{letter-spacing:0.356547px;}
.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;}
}
.ws1{word-spacing:-13.831560px;}
.ws0{word-spacing:-13.770086px;}
.wsb{word-spacing:-0.055326px;}
.ws11{word-spacing:-0.043032px;}
.wse{word-spacing:-0.036884px;}
.ws13{word-spacing:-0.030737px;}
.wsd{word-spacing:-0.024589px;}
.wsc{word-spacing:-0.019152px;}
.ws9{word-spacing:-0.018442px;}
.ws6{word-spacing:-0.012295px;}
.wsa{word-spacing:-0.006147px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:0.006147px;}
.ws8{word-spacing:0.012295px;}
.ws7{word-spacing:0.018442px;}
.ws4{word-spacing:0.023939px;}
.ws3{word-spacing:0.028727px;}
.ws10{word-spacing:0.030737px;}
.ws5{word-spacing:0.032386px;}
.ws12{word-spacing:0.043032px;}
._4{margin-left:-4.303152px;}
._2{margin-left:-2.657300px;}
._1{margin-left:-1.311641px;}
._3{width:1.223325px;}
._5{width:1844.813255px;}
._0{width:2334.369197px;}
.fc1{color:rgb(233,50,43);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:47.878800px;}
.fs0{font-size:61.473600px;}
.fs2{font-size:161.931000px;}
.y0{bottom:0.000000px;}
.y2{bottom:48.271200px;}
.y2f{bottom:129.244206px;}
.y2e{bottom:169.726108px;}
.y19{bottom:169.766575px;}
.y2d{bottom:210.208011px;}
.y18{bottom:210.245404px;}
.y41{bottom:230.434362px;}
.y2c{bottom:250.689913px;}
.y17{bottom:250.725769px;}
.y40{bottom:270.917801px;}
.y51{bottom:270.936243px;}
.y2b{bottom:291.171815px;}
.y16{bottom:291.206135px;}
.y3f{bottom:311.401240px;}
.y66{bottom:311.410461px;}
.y50{bottom:311.418146px;}
.y2a{bottom:331.653718px;}
.y15{bottom:331.686500px;}
.y5c{bottom:351.884680px;}
.y4f{bottom:351.900048px;}
.y29{bottom:372.135620px;}
.y14{bottom:372.166866px;}
.y3e{bottom:392.366582px;}
.y5b{bottom:392.368119px;}
.y4e{bottom:392.381950px;}
.y28{bottom:412.619060px;}
.y13{bottom:412.647232px;}
.y3d{bottom:432.850021px;}
.y5a{bottom:432.851558px;}
.y1{bottom:432.856800px;}
.y65{bottom:432.857706px;}
.y4d{bottom:432.863853px;}
.y27{bottom:453.100962px;}
.y12{bottom:453.127597px;}
.y3c{bottom:473.333461px;}
.y59{bottom:473.334997px;}
.y64{bottom:473.341145px;}
.y4c{bottom:473.345755px;}
.y26{bottom:493.584401px;}
.y11{bottom:493.607963px;}
.y3b{bottom:513.816900px;}
.y58{bottom:513.818437px;}
.y63{bottom:513.824584px;}
.y4b{bottom:513.827658px;}
.y25{bottom:534.066304px;}
.y10{bottom:534.088328px;}
.y3a{bottom:554.298802px;}
.y57{bottom:554.301876px;}
.y62{bottom:554.308023px;}
.y4a{bottom:554.309560px;}
.y52{bottom:554.311097px;}
.y24{bottom:574.548206px;}
.yf{bottom:574.568694px;}
.y39{bottom:594.782242px;}
.y56{bottom:594.785315px;}
.y61{bottom:594.791463px;}
.y49{bottom:594.792999px;}
.ye{bottom:615.049060px;}
.y38{bottom:635.265681px;}
.y55{bottom:635.268755px;}
.y60{bottom:635.273365px;}
.y48{bottom:635.274902px;}
.y23{bottom:655.513548px;}
.yd{bottom:655.529425px;}
.y37{bottom:675.749120px;}
.y54{bottom:675.752194px;}
.y47{bottom:675.756804px;}
.y22{bottom:695.995450px;}
.yc{bottom:696.009791px;}
.y36{bottom:716.232559px;}
.y53{bottom:716.235633px;}
.y46{bottom:716.238707px;}
.y5f{bottom:716.240244px;}
.y21{bottom:736.477353px;}
.yb{bottom:736.490156px;}
.y35{bottom:756.715999px;}
.y45{bottom:756.720609px;}
.y5e{bottom:756.722146px;}
.y20{bottom:776.959255px;}
.ya{bottom:776.970522px;}
.y34{bottom:797.199438px;}
.y5d{bottom:797.204049px;}
.y1f{bottom:817.442694px;}
.y9{bottom:817.450888px;}
.y33{bottom:837.682877px;}
.y44{bottom:837.685951px;}
.y1e{bottom:857.924597px;}
.y8{bottom:857.931253px;}
.y32{bottom:878.166317px;}
.y43{bottom:878.167853px;}
.y1d{bottom:898.406499px;}
.y7{bottom:898.411619px;}
.y31{bottom:918.649756px;}
.y6{bottom:938.891984px;}
.y42{bottom:959.131658px;}
.y1c{bottom:979.371841px;}
.y5{bottom:979.372350px;}
.y30{bottom:999.613561px;}
.y1b{bottom:1019.855280px;}
.y1a{bottom:1040.097000px;}
.y4{bottom:1102.728150px;}
.y3{bottom:1143.210600px;}
.h2{height:36.866676px;}
.h1{height:47.334672px;}
.h3{height:122.095974px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x9{left:60.724050px;}
.x15{left:70.113000px;}
.x12{left:75.046200px;}
.x1{left:76.060200px;}
.x2{left:121.447950px;}
.xa{left:200.461950px;}
.xe{left:204.744450px;}
.xf{left:220.131292px;}
.x13{left:285.668100px;}
.xc{left:303.909600px;}
.x3{left:322.371600px;}
.x10{left:397.788459px;}
.x11{left:406.393226px;}
.x7{left:446.855640px;}
.x14{left:453.088573px;}
.xb{left:512.451228px;}
.xd{left:586.193298px;}
.x6{left:589.980012px;}
.x4{left:593.915860px;}
.x5{left:632.658059px;}
.x8{left:799.782000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.273216pt;}
.lsb{letter-spacing:-0.071036pt;}
.ls8{letter-spacing:-0.054643pt;}
.ls16{letter-spacing:-0.038250pt;}
.ls6{letter-spacing:-0.028788pt;}
.ls10{letter-spacing:-0.027322pt;}
.ls4{letter-spacing:-0.025535pt;}
.ls5{letter-spacing:-0.021279pt;}
.ls9{letter-spacing:-0.016393pt;}
.lsa{letter-spacing:-0.010929pt;}
.lsc{letter-spacing:-0.005464pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005464pt;}
.ls0{letter-spacing:0.010929pt;}
.ls1{letter-spacing:0.016393pt;}
.lsd{letter-spacing:0.017024pt;}
.lse{letter-spacing:0.021857pt;}
.ls15{letter-spacing:0.027322pt;}
.lsf{letter-spacing:0.032786pt;}
.ls13{letter-spacing:0.038250pt;}
.ls12{letter-spacing:0.049179pt;}
.ls14{letter-spacing:0.273216pt;}
.ls11{letter-spacing:0.316931pt;}
.ws1{word-spacing:-12.294720pt;}
.ws0{word-spacing:-12.240077pt;}
.wsb{word-spacing:-0.049179pt;}
.ws11{word-spacing:-0.038250pt;}
.wse{word-spacing:-0.032786pt;}
.ws13{word-spacing:-0.027322pt;}
.wsd{word-spacing:-0.021857pt;}
.wsc{word-spacing:-0.017024pt;}
.ws9{word-spacing:-0.016393pt;}
.ws6{word-spacing:-0.010929pt;}
.wsa{word-spacing:-0.005464pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:0.005464pt;}
.ws8{word-spacing:0.010929pt;}
.ws7{word-spacing:0.016393pt;}
.ws4{word-spacing:0.021279pt;}
.ws3{word-spacing:0.025535pt;}
.ws10{word-spacing:0.027322pt;}
.ws5{word-spacing:0.028788pt;}
.ws12{word-spacing:0.038250pt;}
._4{margin-left:-3.825024pt;}
._2{margin-left:-2.362044pt;}
._1{margin-left:-1.165903pt;}
._3{width:1.087400pt;}
._5{width:1639.834004pt;}
._0{width:2074.994842pt;}
.fs1{font-size:42.558933pt;}
.fs0{font-size:54.643200pt;}
.fs2{font-size:143.938667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:42.907733pt;}
.y2f{bottom:114.883738pt;}
.y2e{bottom:150.867652pt;}
.y19{bottom:150.903622pt;}
.y2d{bottom:186.851565pt;}
.y18{bottom:186.884803pt;}
.y41{bottom:204.830544pt;}
.y2c{bottom:222.835478pt;}
.y17{bottom:222.867350pt;}
.y40{bottom:240.815823pt;}
.y51{bottom:240.832216pt;}
.y2b{bottom:258.819391pt;}
.y16{bottom:258.849898pt;}
.y3f{bottom:276.801103pt;}
.y66{bottom:276.809299pt;}
.y50{bottom:276.816129pt;}
.y2a{bottom:294.803305pt;}
.y15{bottom:294.832445pt;}
.y5c{bottom:312.786382pt;}
.y4f{bottom:312.800043pt;}
.y29{bottom:330.787218pt;}
.y14{bottom:330.814992pt;}
.y3e{bottom:348.770295pt;}
.y5b{bottom:348.771661pt;}
.y4e{bottom:348.783956pt;}
.y28{bottom:366.772497pt;}
.y13{bottom:366.797539pt;}
.y3d{bottom:384.755575pt;}
.y5a{bottom:384.756941pt;}
.y1{bottom:384.761600pt;}
.y65{bottom:384.762405pt;}
.y4d{bottom:384.767869pt;}
.y27{bottom:402.756411pt;}
.y12{bottom:402.780086pt;}
.y3c{bottom:420.740854pt;}
.y59{bottom:420.742220pt;}
.y64{bottom:420.747684pt;}
.y4c{bottom:420.751783pt;}
.y26{bottom:438.741690pt;}
.y11{bottom:438.762634pt;}
.y3b{bottom:456.726133pt;}
.y58{bottom:456.727499pt;}
.y63{bottom:456.732964pt;}
.y4b{bottom:456.735696pt;}
.y25{bottom:474.725603pt;}
.y10{bottom:474.745181pt;}
.y3a{bottom:492.710047pt;}
.y57{bottom:492.712779pt;}
.y62{bottom:492.718243pt;}
.y4a{bottom:492.719609pt;}
.y52{bottom:492.720975pt;}
.y24{bottom:510.709517pt;}
.yf{bottom:510.727728pt;}
.y39{bottom:528.695326pt;}
.y56{bottom:528.698058pt;}
.y61{bottom:528.703522pt;}
.y49{bottom:528.704888pt;}
.ye{bottom:546.710275pt;}
.y38{bottom:564.680605pt;}
.y55{bottom:564.683337pt;}
.y60{bottom:564.687436pt;}
.y48{bottom:564.688802pt;}
.y23{bottom:582.678709pt;}
.yd{bottom:582.692822pt;}
.y37{bottom:600.665885pt;}
.y54{bottom:600.668617pt;}
.y47{bottom:600.672715pt;}
.y22{bottom:618.662623pt;}
.yc{bottom:618.675370pt;}
.y36{bottom:636.651164pt;}
.y53{bottom:636.653896pt;}
.y46{bottom:636.656628pt;}
.y5f{bottom:636.657994pt;}
.y21{bottom:654.646536pt;}
.yb{bottom:654.657917pt;}
.y35{bottom:672.636443pt;}
.y45{bottom:672.640542pt;}
.y5e{bottom:672.641908pt;}
.y20{bottom:690.630449pt;}
.ya{bottom:690.640464pt;}
.y34{bottom:708.621723pt;}
.y5d{bottom:708.625821pt;}
.y1f{bottom:726.615728pt;}
.y9{bottom:726.623011pt;}
.y33{bottom:744.607002pt;}
.y44{bottom:744.609734pt;}
.y1e{bottom:762.599642pt;}
.y8{bottom:762.605558pt;}
.y32{bottom:780.592281pt;}
.y43{bottom:780.593647pt;}
.y1d{bottom:798.583555pt;}
.y7{bottom:798.588106pt;}
.y31{bottom:816.577561pt;}
.y6{bottom:834.570653pt;}
.y42{bottom:852.561474pt;}
.y1c{bottom:870.552748pt;}
.y5{bottom:870.553200pt;}
.y30{bottom:888.545387pt;}
.y1b{bottom:906.538027pt;}
.y1a{bottom:924.530667pt;}
.y4{bottom:980.202800pt;}
.y3{bottom:1016.187200pt;}
.h2{height:32.770379pt;}
.h1{height:42.075264pt;}
.h3{height:108.529755pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x9{left:53.976933pt;}
.x15{left:62.322667pt;}
.x12{left:66.707733pt;}
.x1{left:67.609067pt;}
.x2{left:107.953733pt;}
.xa{left:178.188400pt;}
.xe{left:181.995067pt;}
.xf{left:195.672260pt;}
.x13{left:253.927200pt;}
.xc{left:270.141867pt;}
.x3{left:286.552533pt;}
.x10{left:353.589742pt;}
.x11{left:361.238423pt;}
.x7{left:397.205013pt;}
.x14{left:402.745398pt;}
.xb{left:455.512203pt;}
.xd{left:521.060709pt;}
.x6{left:524.426678pt;}
.x4{left:527.925209pt;}
.x5{left:562.362719pt;}
.x8{left:710.917333pt;}
}




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