
    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_c02b6726a2f19209149a9e49.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_913ba1eacbe50a66bc846884.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_3ab0af82905137d8bbd3b896.woff')format("woff");}.ff3{font-family:ff3;line-height:0.682617;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_9f2cf4737166bd7d359bb389.woff')format("woff");}.ff4{font-family:ff4;line-height:0.907715;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_80126b52d4e0ab22bba387d2.woff')format("woff");}.ff5{font-family:ff5;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.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);}
.m1{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:2.982000px;}
.ls18{letter-spacing:-1.224000px;}
.lsa{letter-spacing:-1.008000px;}
.lsb{letter-spacing:-0.936000px;}
.ls1c{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls1b{letter-spacing:1.008000px;}
.ls15{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.224000px;}
.ls0{letter-spacing:4.200000px;}
.ls1{letter-spacing:6.600000px;}
.ls2{letter-spacing:10.200000px;}
.ls6{letter-spacing:39.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;}
}
.ws3{word-spacing:-18.144000px;}
.ws4{word-spacing:-17.640000px;}
.ws2{word-spacing:-17.424000px;}
.ws1{word-spacing:-16.860000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-17.622000px;}
._7{margin-left:-15.177333px;}
._5{margin-left:-10.200000px;}
._4{margin-left:-8.976000px;}
._e{margin-left:-7.212667px;}
._14{margin-left:-5.518667px;}
._d{margin-left:-3.906000px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.722000px;}
._b{width:1.068667px;}
._1{width:2.223333px;}
._9{width:3.569333px;}
._3{width:4.686000px;}
._f{width:6.048000px;}
._6{width:7.140000px;}
._10{width:8.636667px;}
._8{width:9.792000px;}
._a{width:10.889333px;}
._c{width:11.899333px;}
._12{width:12.918000px;}
._13{width:21.633333px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:76.325850px;}
.y1{bottom:76.337550px;}
.y34{bottom:144.916800px;}
.y59{bottom:144.928500px;}
.ye{bottom:145.095150px;}
.y33{bottom:166.660800px;}
.y58{bottom:166.672500px;}
.yd{bottom:166.695150px;}
.yc{bottom:188.295150px;}
.y32{bottom:188.404800px;}
.y57{bottom:188.416500px;}
.yb{bottom:209.895150px;}
.y31{bottom:210.148800px;}
.y56{bottom:210.160500px;}
.ya{bottom:231.495150px;}
.y30{bottom:231.892800px;}
.y55{bottom:231.904500px;}
.y9{bottom:253.095150px;}
.y2f{bottom:253.636800px;}
.y54{bottom:253.648500px;}
.y8{bottom:274.695150px;}
.y2e{bottom:275.380800px;}
.y53{bottom:275.392500px;}
.y7{bottom:296.295150px;}
.y2d{bottom:297.124800px;}
.y52{bottom:297.136500px;}
.y2c{bottom:318.868800px;}
.y51{bottom:318.880500px;}
.y2b{bottom:340.612800px;}
.y50{bottom:340.624500px;}
.y2a{bottom:362.356800px;}
.y4f{bottom:362.368500px;}
.y29{bottom:384.100800px;}
.y4e{bottom:384.112500px;}
.y28{bottom:405.844800px;}
.y4d{bottom:405.856500px;}
.y27{bottom:427.588800px;}
.y4c{bottom:427.600500px;}
.y26{bottom:449.332800px;}
.y4b{bottom:449.344500px;}
.y25{bottom:471.076800px;}
.y4a{bottom:471.088500px;}
.y24{bottom:492.820800px;}
.y49{bottom:492.832500px;}
.y23{bottom:514.564800px;}
.y48{bottom:514.576500px;}
.y22{bottom:536.308800px;}
.y47{bottom:536.320500px;}
.y21{bottom:558.052800px;}
.y46{bottom:558.064500px;}
.y20{bottom:579.796800px;}
.y45{bottom:579.808500px;}
.y1f{bottom:601.540800px;}
.y44{bottom:601.552500px;}
.y1e{bottom:623.284800px;}
.y43{bottom:623.296500px;}
.y1d{bottom:645.028800px;}
.y42{bottom:645.040500px;}
.y5a{bottom:656.362500px;}
.y1c{bottom:666.772800px;}
.y41{bottom:666.784500px;}
.y6{bottom:668.027550px;}
.y1b{bottom:688.516800px;}
.y40{bottom:688.528500px;}
.y5{bottom:698.627550px;}
.y1a{bottom:710.260800px;}
.y3f{bottom:710.272500px;}
.y4{bottom:729.227550px;}
.y19{bottom:732.004800px;}
.y3e{bottom:732.016500px;}
.y18{bottom:753.748800px;}
.y3d{bottom:753.760500px;}
.y17{bottom:775.492800px;}
.y3c{bottom:775.504500px;}
.y3{bottom:788.114850px;}
.y16{bottom:797.236800px;}
.y3b{bottom:797.248500px;}
.y15{bottom:818.980800px;}
.y3a{bottom:818.992500px;}
.y14{bottom:840.724800px;}
.y39{bottom:840.736500px;}
.y13{bottom:862.468800px;}
.y38{bottom:862.480500px;}
.y12{bottom:884.212800px;}
.y37{bottom:884.224500px;}
.y11{bottom:905.956800px;}
.y36{bottom:905.968500px;}
.y2{bottom:926.714850px;}
.y10{bottom:927.700800px;}
.y35{bottom:927.712500px;}
.h9{height:35.663086px;}
.h2{height:40.757812px;}
.h5{height:43.989258px;}
.ha{height:48.399902px;}
.h3{height:50.947266px;}
.h4{height:51.987305px;}
.h8{height:61.136719px;}
.h6{height:67.983398px;}
.h7{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.795350px;}
.x6{left:119.055150px;}
.x5{left:150.670350px;}
.x1{left:328.490400px;}
.x7{left:518.943600px;}
.x2{left:575.539350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.ls18{letter-spacing:-1.088000pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls1c{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.896000pt;}
.ls15{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.088000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls2{letter-spacing:9.066667pt;}
.ls6{letter-spacing:34.666667pt;}
.ws3{word-spacing:-16.128000pt;}
.ws4{word-spacing:-15.680000pt;}
.ws2{word-spacing:-15.488000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-15.664000pt;}
._7{margin-left:-13.490963pt;}
._5{margin-left:-9.066667pt;}
._4{margin-left:-7.978667pt;}
._e{margin-left:-6.411259pt;}
._14{margin-left:-4.905481pt;}
._d{margin-left:-3.472000pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.530667pt;}
._b{width:0.949926pt;}
._1{width:1.976296pt;}
._9{width:3.172741pt;}
._3{width:4.165333pt;}
._f{width:5.376000pt;}
._6{width:6.346667pt;}
._10{width:7.677037pt;}
._8{width:8.704000pt;}
._a{width:9.679407pt;}
._c{width:10.577185pt;}
._12{width:11.482667pt;}
._13{width:19.229630pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:67.845200pt;}
.y1{bottom:67.855600pt;}
.y34{bottom:128.814933pt;}
.y59{bottom:128.825333pt;}
.ye{bottom:128.973467pt;}
.y33{bottom:148.142933pt;}
.y58{bottom:148.153333pt;}
.yd{bottom:148.173467pt;}
.yc{bottom:167.373467pt;}
.y32{bottom:167.470933pt;}
.y57{bottom:167.481333pt;}
.yb{bottom:186.573467pt;}
.y31{bottom:186.798933pt;}
.y56{bottom:186.809333pt;}
.ya{bottom:205.773467pt;}
.y30{bottom:206.126933pt;}
.y55{bottom:206.137333pt;}
.y9{bottom:224.973467pt;}
.y2f{bottom:225.454933pt;}
.y54{bottom:225.465333pt;}
.y8{bottom:244.173467pt;}
.y2e{bottom:244.782933pt;}
.y53{bottom:244.793333pt;}
.y7{bottom:263.373467pt;}
.y2d{bottom:264.110933pt;}
.y52{bottom:264.121333pt;}
.y2c{bottom:283.438933pt;}
.y51{bottom:283.449333pt;}
.y2b{bottom:302.766933pt;}
.y50{bottom:302.777333pt;}
.y2a{bottom:322.094933pt;}
.y4f{bottom:322.105333pt;}
.y29{bottom:341.422933pt;}
.y4e{bottom:341.433333pt;}
.y28{bottom:360.750933pt;}
.y4d{bottom:360.761333pt;}
.y27{bottom:380.078933pt;}
.y4c{bottom:380.089333pt;}
.y26{bottom:399.406933pt;}
.y4b{bottom:399.417333pt;}
.y25{bottom:418.734933pt;}
.y4a{bottom:418.745333pt;}
.y24{bottom:438.062933pt;}
.y49{bottom:438.073333pt;}
.y23{bottom:457.390933pt;}
.y48{bottom:457.401333pt;}
.y22{bottom:476.718933pt;}
.y47{bottom:476.729333pt;}
.y21{bottom:496.046933pt;}
.y46{bottom:496.057333pt;}
.y20{bottom:515.374933pt;}
.y45{bottom:515.385333pt;}
.y1f{bottom:534.702933pt;}
.y44{bottom:534.713333pt;}
.y1e{bottom:554.030933pt;}
.y43{bottom:554.041333pt;}
.y1d{bottom:573.358933pt;}
.y42{bottom:573.369333pt;}
.y5a{bottom:583.433333pt;}
.y1c{bottom:592.686933pt;}
.y41{bottom:592.697333pt;}
.y6{bottom:593.802267pt;}
.y1b{bottom:612.014933pt;}
.y40{bottom:612.025333pt;}
.y5{bottom:621.002267pt;}
.y1a{bottom:631.342933pt;}
.y3f{bottom:631.353333pt;}
.y4{bottom:648.202267pt;}
.y19{bottom:650.670933pt;}
.y3e{bottom:650.681333pt;}
.y18{bottom:669.998933pt;}
.y3d{bottom:670.009333pt;}
.y17{bottom:689.326933pt;}
.y3c{bottom:689.337333pt;}
.y3{bottom:700.546533pt;}
.y16{bottom:708.654933pt;}
.y3b{bottom:708.665333pt;}
.y15{bottom:727.982933pt;}
.y3a{bottom:727.993333pt;}
.y14{bottom:747.310933pt;}
.y39{bottom:747.321333pt;}
.y13{bottom:766.638933pt;}
.y38{bottom:766.649333pt;}
.y12{bottom:785.966933pt;}
.y37{bottom:785.977333pt;}
.y11{bottom:805.294933pt;}
.y36{bottom:805.305333pt;}
.y2{bottom:823.746533pt;}
.y10{bottom:824.622933pt;}
.y35{bottom:824.633333pt;}
.h9{height:31.700521pt;}
.h2{height:36.229167pt;}
.h5{height:39.101562pt;}
.ha{height:43.022135pt;}
.h3{height:45.286458pt;}
.h4{height:46.210938pt;}
.h8{height:54.343750pt;}
.h6{height:60.429688pt;}
.h7{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.929200pt;}
.x6{left:105.826800pt;}
.x5{left:133.929200pt;}
.x1{left:291.991467pt;}
.x7{left:461.283200pt;}
.x2{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; }
  