
    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_e6b267c8404c2ed3fa053a2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.078613;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_8b5d9e13b4adf249589e165c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.074219;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_1636f772218e26badc9b940c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.073730;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:-27.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.456000px;}
.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:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-10.500000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-211.776000px;}
._14{margin-left:-205.008000px;}
._4{margin-left:-199.512000px;}
._32{margin-left:-189.744000px;}
._16{margin-left:-185.592000px;}
._11{margin-left:-158.352000px;}
._30{margin-left:-149.496000px;}
._f{margin-left:-147.840000px;}
._2d{margin-left:-141.696000px;}
._d{margin-left:-137.568000px;}
._34{margin-left:-136.176000px;}
._38{margin-left:-133.728000px;}
._36{margin-left:-122.976000px;}
._21{margin-left:-120.912000px;}
._1b{margin-left:-116.472000px;}
._b{margin-left:-114.288000px;}
._27{margin-left:-91.728000px;}
._18{margin-left:-77.736000px;}
._24{margin-left:-71.424000px;}
._3b{margin-left:-49.104000px;}
._2c{margin-left:-41.328000px;}
._a{margin-left:-36.816000px;}
._26{margin-left:-17.040000px;}
._13{margin-left:-10.296000px;}
._46{margin-left:-8.136000px;}
._2{margin-left:-7.128000px;}
._1a{margin-left:-5.544000px;}
._0{margin-left:-4.392000px;}
._1d{margin-left:-2.712000px;}
._1{margin-left:-1.008000px;}
._3{width:1.296000px;}
._6{width:2.400000px;}
._20{width:3.888000px;}
._2b{width:5.112000px;}
._3c{width:6.288000px;}
._9{width:7.296000px;}
._3d{width:8.544000px;}
._3e{width:10.080000px;}
._3f{width:11.448000px;}
._3a{width:12.672000px;}
._41{width:13.680000px;}
._42{width:14.688000px;}
._43{width:15.840000px;}
._44{width:16.920000px;}
._45{width:19.008000px;}
._40{width:20.112000px;}
._47{width:33.240000px;}
._25{width:35.928000px;}
._19{width:42.552000px;}
._28{width:55.728000px;}
._c{width:79.128000px;}
._1c{width:80.928000px;}
._22{width:85.752000px;}
._37{width:86.904000px;}
._39{width:98.928000px;}
._35{width:100.728000px;}
._e{width:102.528000px;}
._2e{width:106.128000px;}
._10{width:112.752000px;}
._31{width:114.552000px;}
._12{width:122.904000px;}
._1e{width:141.000000px;}
._17{width:150.552000px;}
._33{width:154.152000px;}
._5{width:164.304000px;}
._15{width:169.704000px;}
._8{width:176.904000px;}
._2f{width:195.000000px;}
._23{width:209.400000px;}
._1f{width:227.400000px;}
._2a{width:389.400000px;}
._29{width:507.864000px;}
.fc3{color:rgb(1,2,2);}
.fc2{color:rgb(129,0,0);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:42.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y45{bottom:88.950000px;}
.y3b{bottom:91.050000px;}
.y73{bottom:91.200000px;}
.y3a{bottom:111.750000px;}
.y47{bottom:118.650000px;}
.y72{bottom:118.800000px;}
.y41{bottom:132.450000px;}
.y39{bottom:139.350000px;}
.y5{bottom:139.800000px;}
.y54{bottom:146.700000px;}
.y40{bottom:160.050000px;}
.y4a{bottom:167.400000px;}
.y4{bottom:171.000000px;}
.y49{bottom:188.100000px;}
.y3f{bottom:194.550000px;}
.y3{bottom:202.200000px;}
.y48{bottom:208.800000px;}
.y3e{bottom:215.250000px;}
.y2{bottom:222.900000px;}
.y46{bottom:229.500000px;}
.y3d{bottom:242.850000px;}
.y44{bottom:250.200000px;}
.y38{bottom:256.200000px;}
.y43{bottom:270.900000px;}
.y37{bottom:276.900000px;}
.y42{bottom:291.600000px;}
.y36{bottom:297.600000px;}
.y29{bottom:312.300000px;}
.y35{bottom:318.300000px;}
.y75{bottom:322.500000px;}
.y28{bottom:333.000000px;}
.y34{bottom:339.000000px;}
.y74{bottom:343.200000px;}
.y27{bottom:353.700000px;}
.y33{bottom:359.700000px;}
.y26{bottom:374.400000px;}
.y5b{bottom:379.350000px;}
.y32{bottom:380.400000px;}
.y25{bottom:395.100000px;}
.y5a{bottom:400.050000px;}
.y31{bottom:401.100000px;}
.y24{bottom:415.800000px;}
.y59{bottom:420.750000px;}
.y30{bottom:421.800000px;}
.y23{bottom:436.500000px;}
.y58{bottom:441.450000px;}
.y3c{bottom:457.200000px;}
.y57{bottom:462.150000px;}
.y2f{bottom:463.200000px;}
.y22{bottom:477.900000px;}
.y56{bottom:482.850000px;}
.y77{bottom:494.700000px;}
.y21{bottom:498.600000px;}
.y55{bottom:503.550000px;}
.y20{bottom:519.300000px;}
.y53{bottom:522.900000px;}
.y1f{bottom:540.000000px;}
.y52{bottom:543.600000px;}
.y1e{bottom:560.700000px;}
.y51{bottom:564.300000px;}
.y76{bottom:575.400000px;}
.y1d{bottom:581.400000px;}
.y50{bottom:585.000000px;}
.y1c{bottom:602.100000px;}
.y4f{bottom:605.700000px;}
.y71{bottom:622.200000px;}
.y1b{bottom:622.800000px;}
.y4e{bottom:626.400000px;}
.y70{bottom:642.900000px;}
.y2e{bottom:643.500000px;}
.y4d{bottom:647.100000px;}
.y6f{bottom:663.600000px;}
.y1a{bottom:664.200000px;}
.y4c{bottom:667.800000px;}
.y6e{bottom:684.300000px;}
.y19{bottom:684.900000px;}
.y4b{bottom:688.500000px;}
.y6d{bottom:705.000000px;}
.y18{bottom:705.600000px;}
.y6c{bottom:725.700000px;}
.y17{bottom:726.300000px;}
.y6b{bottom:746.400000px;}
.y16{bottom:747.000000px;}
.y6a{bottom:767.100000px;}
.y15{bottom:767.700000px;}
.y14{bottom:788.400000px;}
.y69{bottom:808.500000px;}
.y2d{bottom:809.100000px;}
.y13{bottom:829.800000px;}
.y68{bottom:849.900000px;}
.y12{bottom:850.500000px;}
.y67{bottom:870.600000px;}
.y11{bottom:871.200000px;}
.y66{bottom:891.300000px;}
.y10{bottom:891.900000px;}
.y65{bottom:912.000000px;}
.y2c{bottom:912.600000px;}
.y64{bottom:932.700000px;}
.yf{bottom:933.300000px;}
.y63{bottom:953.400000px;}
.ye{bottom:954.000000px;}
.yd{bottom:974.700000px;}
.y62{bottom:994.800000px;}
.yc{bottom:995.400000px;}
.y61{bottom:1015.500000px;}
.yb{bottom:1016.100000px;}
.y60{bottom:1036.200000px;}
.y2b{bottom:1036.800000px;}
.y5f{bottom:1056.900000px;}
.ya{bottom:1057.500000px;}
.y5e{bottom:1077.600000px;}
.y9{bottom:1078.200000px;}
.y5d{bottom:1098.300000px;}
.y8{bottom:1098.900000px;}
.y5c{bottom:1119.000000px;}
.y7{bottom:1119.600000px;}
.y2a{bottom:1140.300000px;}
.y6{bottom:1161.000000px;}
.h5{height:36.052734px;}
.h2{height:61.769531px;}
.h3{height:61.804688px;}
.h6{height:63.632227px;}
.h4{height:63.652734px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:85.650000px;}
.x5{left:138.450000px;}
.x6{left:191.550000px;}
.x4{left:200.400000px;}
.x3{left:284.700000px;}
.x2{left:385.200000px;}
.x9{left:544.650000px;}
.xa{left:644.700000px;}
.xc{left:649.200000px;}
.xb{left:663.300000px;}
.x8{left:790.200000px;}
.x7{left:799.200000px;}
@media print{
.v2{vertical-align:-24.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.405333pt;}
.ws1{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-9.333333pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-188.245333pt;}
._14{margin-left:-182.229333pt;}
._4{margin-left:-177.344000pt;}
._32{margin-left:-168.661333pt;}
._16{margin-left:-164.970667pt;}
._11{margin-left:-140.757333pt;}
._30{margin-left:-132.885333pt;}
._f{margin-left:-131.413333pt;}
._2d{margin-left:-125.952000pt;}
._d{margin-left:-122.282667pt;}
._34{margin-left:-121.045333pt;}
._38{margin-left:-118.869333pt;}
._36{margin-left:-109.312000pt;}
._21{margin-left:-107.477333pt;}
._1b{margin-left:-103.530667pt;}
._b{margin-left:-101.589333pt;}
._27{margin-left:-81.536000pt;}
._18{margin-left:-69.098667pt;}
._24{margin-left:-63.488000pt;}
._3b{margin-left:-43.648000pt;}
._2c{margin-left:-36.736000pt;}
._a{margin-left:-32.725333pt;}
._26{margin-left:-15.146667pt;}
._13{margin-left:-9.152000pt;}
._46{margin-left:-7.232000pt;}
._2{margin-left:-6.336000pt;}
._1a{margin-left:-4.928000pt;}
._0{margin-left:-3.904000pt;}
._1d{margin-left:-2.410667pt;}
._1{margin-left:-0.896000pt;}
._3{width:1.152000pt;}
._6{width:2.133333pt;}
._20{width:3.456000pt;}
._2b{width:4.544000pt;}
._3c{width:5.589333pt;}
._9{width:6.485333pt;}
._3d{width:7.594667pt;}
._3e{width:8.960000pt;}
._3f{width:10.176000pt;}
._3a{width:11.264000pt;}
._41{width:12.160000pt;}
._42{width:13.056000pt;}
._43{width:14.080000pt;}
._44{width:15.040000pt;}
._45{width:16.896000pt;}
._40{width:17.877333pt;}
._47{width:29.546667pt;}
._25{width:31.936000pt;}
._19{width:37.824000pt;}
._28{width:49.536000pt;}
._c{width:70.336000pt;}
._1c{width:71.936000pt;}
._22{width:76.224000pt;}
._37{width:77.248000pt;}
._39{width:87.936000pt;}
._35{width:89.536000pt;}
._e{width:91.136000pt;}
._2e{width:94.336000pt;}
._10{width:100.224000pt;}
._31{width:101.824000pt;}
._12{width:109.248000pt;}
._1e{width:125.333333pt;}
._17{width:133.824000pt;}
._33{width:137.024000pt;}
._5{width:146.048000pt;}
._15{width:150.848000pt;}
._8{width:157.248000pt;}
._2f{width:173.333333pt;}
._23{width:186.133333pt;}
._1f{width:202.133333pt;}
._2a{width:346.133333pt;}
._29{width:451.434667pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y45{bottom:79.066667pt;}
.y3b{bottom:80.933333pt;}
.y73{bottom:81.066667pt;}
.y3a{bottom:99.333333pt;}
.y47{bottom:105.466667pt;}
.y72{bottom:105.600000pt;}
.y41{bottom:117.733333pt;}
.y39{bottom:123.866667pt;}
.y5{bottom:124.266667pt;}
.y54{bottom:130.400000pt;}
.y40{bottom:142.266667pt;}
.y4a{bottom:148.800000pt;}
.y4{bottom:152.000000pt;}
.y49{bottom:167.200000pt;}
.y3f{bottom:172.933333pt;}
.y3{bottom:179.733333pt;}
.y48{bottom:185.600000pt;}
.y3e{bottom:191.333333pt;}
.y2{bottom:198.133333pt;}
.y46{bottom:204.000000pt;}
.y3d{bottom:215.866667pt;}
.y44{bottom:222.400000pt;}
.y38{bottom:227.733333pt;}
.y43{bottom:240.800000pt;}
.y37{bottom:246.133333pt;}
.y42{bottom:259.200000pt;}
.y36{bottom:264.533333pt;}
.y29{bottom:277.600000pt;}
.y35{bottom:282.933333pt;}
.y75{bottom:286.666667pt;}
.y28{bottom:296.000000pt;}
.y34{bottom:301.333333pt;}
.y74{bottom:305.066667pt;}
.y27{bottom:314.400000pt;}
.y33{bottom:319.733333pt;}
.y26{bottom:332.800000pt;}
.y5b{bottom:337.200000pt;}
.y32{bottom:338.133333pt;}
.y25{bottom:351.200000pt;}
.y5a{bottom:355.600000pt;}
.y31{bottom:356.533333pt;}
.y24{bottom:369.600000pt;}
.y59{bottom:374.000000pt;}
.y30{bottom:374.933333pt;}
.y23{bottom:388.000000pt;}
.y58{bottom:392.400000pt;}
.y3c{bottom:406.400000pt;}
.y57{bottom:410.800000pt;}
.y2f{bottom:411.733333pt;}
.y22{bottom:424.800000pt;}
.y56{bottom:429.200000pt;}
.y77{bottom:439.733333pt;}
.y21{bottom:443.200000pt;}
.y55{bottom:447.600000pt;}
.y20{bottom:461.600000pt;}
.y53{bottom:464.800000pt;}
.y1f{bottom:480.000000pt;}
.y52{bottom:483.200000pt;}
.y1e{bottom:498.400000pt;}
.y51{bottom:501.600000pt;}
.y76{bottom:511.466667pt;}
.y1d{bottom:516.800000pt;}
.y50{bottom:520.000000pt;}
.y1c{bottom:535.200000pt;}
.y4f{bottom:538.400000pt;}
.y71{bottom:553.066667pt;}
.y1b{bottom:553.600000pt;}
.y4e{bottom:556.800000pt;}
.y70{bottom:571.466667pt;}
.y2e{bottom:572.000000pt;}
.y4d{bottom:575.200000pt;}
.y6f{bottom:589.866667pt;}
.y1a{bottom:590.400000pt;}
.y4c{bottom:593.600000pt;}
.y6e{bottom:608.266667pt;}
.y19{bottom:608.800000pt;}
.y4b{bottom:612.000000pt;}
.y6d{bottom:626.666667pt;}
.y18{bottom:627.200000pt;}
.y6c{bottom:645.066667pt;}
.y17{bottom:645.600000pt;}
.y6b{bottom:663.466667pt;}
.y16{bottom:664.000000pt;}
.y6a{bottom:681.866667pt;}
.y15{bottom:682.400000pt;}
.y14{bottom:700.800000pt;}
.y69{bottom:718.666667pt;}
.y2d{bottom:719.200000pt;}
.y13{bottom:737.600000pt;}
.y68{bottom:755.466667pt;}
.y12{bottom:756.000000pt;}
.y67{bottom:773.866667pt;}
.y11{bottom:774.400000pt;}
.y66{bottom:792.266667pt;}
.y10{bottom:792.800000pt;}
.y65{bottom:810.666667pt;}
.y2c{bottom:811.200000pt;}
.y64{bottom:829.066667pt;}
.yf{bottom:829.600000pt;}
.y63{bottom:847.466667pt;}
.ye{bottom:848.000000pt;}
.yd{bottom:866.400000pt;}
.y62{bottom:884.266667pt;}
.yc{bottom:884.800000pt;}
.y61{bottom:902.666667pt;}
.yb{bottom:903.200000pt;}
.y60{bottom:921.066667pt;}
.y2b{bottom:921.600000pt;}
.y5f{bottom:939.466667pt;}
.ya{bottom:940.000000pt;}
.y5e{bottom:957.866667pt;}
.y9{bottom:958.400000pt;}
.y5d{bottom:976.266667pt;}
.y8{bottom:976.800000pt;}
.y5c{bottom:994.666667pt;}
.y7{bottom:995.200000pt;}
.y2a{bottom:1013.600000pt;}
.y6{bottom:1032.000000pt;}
.h5{height:32.046875pt;}
.h2{height:54.906250pt;}
.h3{height:54.937500pt;}
.h6{height:56.561979pt;}
.h4{height:56.580208pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:76.133333pt;}
.x5{left:123.066667pt;}
.x6{left:170.266667pt;}
.x4{left:178.133333pt;}
.x3{left:253.066667pt;}
.x2{left:342.400000pt;}
.x9{left:484.133333pt;}
.xa{left:573.066667pt;}
.xc{left:577.066667pt;}
.xb{left:589.600000pt;}
.x8{left:702.400000pt;}
.x7{left:710.400000pt;}
}




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