
    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_99a0df983cc14f27bc64a084.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_b2e2092e1ee1ff345ca4ba77.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_8a5be7652e91678d0e56d113.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_b973234ed50d0e3d6bdd4095.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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:ff6;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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:ff8;src:url('chunks/assets/font_44d9b2f6886c76ca3be53ede.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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:ff9;src:url('chunks/assets/font_d5a74c40c81c9aef9c1950e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773926;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);}
.m1{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;}
.lsb{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.720000px;}
.lsa{letter-spacing:28.920000px;}
.ls5{letter-spacing:44.784000px;}
.ls7{letter-spacing:54.864000px;}
.ls4{letter-spacing:63.480000px;}
.ls0{letter-spacing:844.140000px;}
.ls8{letter-spacing:844.164000px;}
.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:-72.000000px;}
.ws6{word-spacing:-15.048000px;}
.ws4{word-spacing:-14.688000px;}
.ws2{word-spacing:-14.616000px;}
.ws0{word-spacing:-14.544000px;}
.ws7{word-spacing:-14.400000px;}
.ws5{word-spacing:-14.328000px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-7.932000px;}
._6{margin-left:-6.780000px;}
._3{margin-left:-5.688000px;}
._4{margin-left:-4.392000px;}
._2{margin-left:-2.808000px;}
._0{margin-left:-1.008000px;}
._1{width:1.008000px;}
._5{width:2.256000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(22,35,39);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:137.556000px;}
.y3a{bottom:143.676000px;}
.y1d{bottom:147.996000px;}
.y4d{bottom:149.436000px;}
.y5e{bottom:162.930000px;}
.y39{bottom:169.050000px;}
.y4c{bottom:174.990000px;}
.y1c{bottom:185.430000px;}
.y5d{bottom:188.310000px;}
.y73{bottom:200.370000px;}
.y38{bottom:206.490000px;}
.y1b{bottom:210.990000px;}
.y4b{bottom:212.430000px;}
.y5c{bottom:225.750000px;}
.y37{bottom:232.050000px;}
.y72{bottom:237.810000px;}
.y1a{bottom:248.430000px;}
.y4a{bottom:249.870000px;}
.y36{bottom:257.430000px;}
.y5b{bottom:263.190000px;}
.y19{bottom:273.810000px;}
.y87{bottom:283.035000px;}
.y49{bottom:287.355000px;}
.y71{bottom:288.795000px;}
.y35{bottom:294.915000px;}
.y5a{bottom:300.675000px;}
.y86{bottom:308.415000px;}
.y18{bottom:311.295000px;}
.y34{bottom:320.475000px;}
.y48{bottom:324.795000px;}
.y70{bottom:326.235000px;}
.y85{bottom:333.795000px;}
.y17{bottom:336.675000px;}
.y59{bottom:338.295000px;}
.y33{bottom:345.855000px;}
.y47{bottom:350.175000px;}
.y84{bottom:359.355000px;}
.y6f{bottom:363.675000px;}
.y16{bottom:374.295000px;}
.y58{bottom:375.735000px;}
.y32{bottom:383.295000px;}
.y83{bottom:384.735000px;}
.y46{bottom:387.615000px;}
.y6e{bottom:389.055000px;}
.y15{bottom:399.675000px;}
.y57{bottom:401.115000px;}
.y6d{bottom:414.615000px;}
.y31{bottom:420.735000px;}
.y82{bottom:422.175000px;}
.y45{bottom:425.055000px;}
.y14{bottom:437.115000px;}
.y56{bottom:438.555000px;}
.y6c{bottom:452.055000px;}
.y30{bottom:458.175000px;}
.y81{bottom:459.615000px;}
.y13{bottom:462.495000px;}
.y55{bottom:475.995000px;}
.y6b{bottom:489.495000px;}
.y2f{bottom:495.615000px;}
.y80{bottom:497.055000px;}
.y12{bottom:499.935000px;}
.y54{bottom:513.435000px;}
.y6a{bottom:514.875000px;}
.y44{bottom:525.495000px;}
.y2e{bottom:533.055000px;}
.y7f{bottom:534.495000px;}
.y11{bottom:537.555000px;}
.y53{bottom:550.905000px;}
.y69{bottom:552.345000px;}
.y2d{bottom:558.645000px;}
.y7e{bottom:560.085000px;}
.y43{bottom:562.965000px;}
.y10{bottom:575.025000px;}
.y2c{bottom:584.025000px;}
.y7d{bottom:585.465000px;}
.y42{bottom:588.345000px;}
.y68{bottom:589.785000px;}
.y2b{bottom:609.585000px;}
.yf{bottom:612.465000px;}
.y7c{bottom:622.905000px;}
.y41{bottom:625.785000px;}
.y67{bottom:627.225000px;}
.y2a{bottom:634.965000px;}
.ye{bottom:637.845000px;}
.y7b{bottom:648.465000px;}
.y40{bottom:651.345000px;}
.y66{bottom:652.785000px;}
.y29{bottom:660.345000px;}
.yd{bottom:663.225000px;}
.y7a{bottom:673.845000px;}
.y28{bottom:685.905000px;}
.yc{bottom:688.785000px;}
.y65{bottom:690.225000px;}
.y52{bottom:700.845000px;}
.y27{bottom:711.285000px;}
.yb{bottom:714.165000px;}
.y3f{bottom:726.225000px;}
.y64{bottom:727.665000px;}
.y26{bottom:736.845000px;}
.y51{bottom:738.285000px;}
.ya{bottom:751.605000px;}
.y25{bottom:762.225000px;}
.y63{bottom:765.105000px;}
.y79{bottom:774.285000px;}
.y50{bottom:775.725000px;}
.y3e{bottom:777.165000px;}
.y24{bottom:787.605000px;}
.y9{bottom:789.045000px;}
.y78{bottom:799.710000px;}
.y4f{bottom:801.150000px;}
.y62{bottom:802.590000px;}
.y23{bottom:813.210000px;}
.y3d{bottom:814.650000px;}
.y8{bottom:826.530000px;}
.y77{bottom:837.150000px;}
.y22{bottom:838.590000px;}
.y61{bottom:840.030000px;}
.y3c{bottom:852.090000px;}
.y76{bottom:862.530000px;}
.y7{bottom:864.150000px;}
.y60{bottom:877.470000px;}
.y75{bottom:888.090000px;}
.y21{bottom:889.530000px;}
.y6{bottom:901.590000px;}
.y74{bottom:913.470000px;}
.y20{bottom:914.910000px;}
.y3b{bottom:926.970000px;}
.y5{bottom:939.030000px;}
.y1f{bottom:952.350000px;}
.y4{bottom:964.410000px;}
.y1e{bottom:989.790000px;}
.y3{bottom:1001.850000px;}
.y2{bottom:1027.410000px;}
.y4e{bottom:1039.290000px;}
.y1{bottom:1064.880000px;}
.h2{height:62.402344px;}
.h1{height:62.507812px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:106.235986px;}
.x2{left:133.235986px;}
.x7{left:160.229986px;}
.x3{left:187.229986px;}
.x4{left:214.229986px;}
.x5{left:241.229986px;}
.x6{left:268.229986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsa{letter-spacing:25.706667pt;}
.ls5{letter-spacing:39.808000pt;}
.ls7{letter-spacing:48.768000pt;}
.ls4{letter-spacing:56.426667pt;}
.ls0{letter-spacing:750.346667pt;}
.ls8{letter-spacing:750.368000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws6{word-spacing:-13.376000pt;}
.ws4{word-spacing:-13.056000pt;}
.ws2{word-spacing:-12.992000pt;}
.ws0{word-spacing:-12.928000pt;}
.ws7{word-spacing:-12.800000pt;}
.ws5{word-spacing:-12.736000pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-7.050667pt;}
._6{margin-left:-6.026667pt;}
._3{margin-left:-5.056000pt;}
._4{margin-left:-3.904000pt;}
._2{margin-left:-2.496000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._5{width:2.005333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:122.272000pt;}
.y3a{bottom:127.712000pt;}
.y1d{bottom:131.552000pt;}
.y4d{bottom:132.832000pt;}
.y5e{bottom:144.826667pt;}
.y39{bottom:150.266667pt;}
.y4c{bottom:155.546667pt;}
.y1c{bottom:164.826667pt;}
.y5d{bottom:167.386667pt;}
.y73{bottom:178.106667pt;}
.y38{bottom:183.546667pt;}
.y1b{bottom:187.546667pt;}
.y4b{bottom:188.826667pt;}
.y5c{bottom:200.666667pt;}
.y37{bottom:206.266667pt;}
.y72{bottom:211.386667pt;}
.y1a{bottom:220.826667pt;}
.y4a{bottom:222.106667pt;}
.y36{bottom:228.826667pt;}
.y5b{bottom:233.946667pt;}
.y19{bottom:243.386667pt;}
.y87{bottom:251.586667pt;}
.y49{bottom:255.426667pt;}
.y71{bottom:256.706667pt;}
.y35{bottom:262.146667pt;}
.y5a{bottom:267.266667pt;}
.y86{bottom:274.146667pt;}
.y18{bottom:276.706667pt;}
.y34{bottom:284.866667pt;}
.y48{bottom:288.706667pt;}
.y70{bottom:289.986667pt;}
.y85{bottom:296.706667pt;}
.y17{bottom:299.266667pt;}
.y59{bottom:300.706667pt;}
.y33{bottom:307.426667pt;}
.y47{bottom:311.266667pt;}
.y84{bottom:319.426667pt;}
.y6f{bottom:323.266667pt;}
.y16{bottom:332.706667pt;}
.y58{bottom:333.986667pt;}
.y32{bottom:340.706667pt;}
.y83{bottom:341.986667pt;}
.y46{bottom:344.546667pt;}
.y6e{bottom:345.826667pt;}
.y15{bottom:355.266667pt;}
.y57{bottom:356.546667pt;}
.y6d{bottom:368.546667pt;}
.y31{bottom:373.986667pt;}
.y82{bottom:375.266667pt;}
.y45{bottom:377.826667pt;}
.y14{bottom:388.546667pt;}
.y56{bottom:389.826667pt;}
.y6c{bottom:401.826667pt;}
.y30{bottom:407.266667pt;}
.y81{bottom:408.546667pt;}
.y13{bottom:411.106667pt;}
.y55{bottom:423.106667pt;}
.y6b{bottom:435.106667pt;}
.y2f{bottom:440.546667pt;}
.y80{bottom:441.826667pt;}
.y12{bottom:444.386667pt;}
.y54{bottom:456.386667pt;}
.y6a{bottom:457.666667pt;}
.y44{bottom:467.106667pt;}
.y2e{bottom:473.826667pt;}
.y7f{bottom:475.106667pt;}
.y11{bottom:477.826667pt;}
.y53{bottom:489.693333pt;}
.y69{bottom:490.973333pt;}
.y2d{bottom:496.573333pt;}
.y7e{bottom:497.853333pt;}
.y43{bottom:500.413333pt;}
.y10{bottom:511.133333pt;}
.y2c{bottom:519.133333pt;}
.y7d{bottom:520.413333pt;}
.y42{bottom:522.973333pt;}
.y68{bottom:524.253333pt;}
.y2b{bottom:541.853333pt;}
.yf{bottom:544.413333pt;}
.y7c{bottom:553.693333pt;}
.y41{bottom:556.253333pt;}
.y67{bottom:557.533333pt;}
.y2a{bottom:564.413333pt;}
.ye{bottom:566.973333pt;}
.y7b{bottom:576.413333pt;}
.y40{bottom:578.973333pt;}
.y66{bottom:580.253333pt;}
.y29{bottom:586.973333pt;}
.yd{bottom:589.533333pt;}
.y7a{bottom:598.973333pt;}
.y28{bottom:609.693333pt;}
.yc{bottom:612.253333pt;}
.y65{bottom:613.533333pt;}
.y52{bottom:622.973333pt;}
.y27{bottom:632.253333pt;}
.yb{bottom:634.813333pt;}
.y3f{bottom:645.533333pt;}
.y64{bottom:646.813333pt;}
.y26{bottom:654.973333pt;}
.y51{bottom:656.253333pt;}
.ya{bottom:668.093333pt;}
.y25{bottom:677.533333pt;}
.y63{bottom:680.093333pt;}
.y79{bottom:688.253333pt;}
.y50{bottom:689.533333pt;}
.y3e{bottom:690.813333pt;}
.y24{bottom:700.093333pt;}
.y9{bottom:701.373333pt;}
.y78{bottom:710.853333pt;}
.y4f{bottom:712.133333pt;}
.y62{bottom:713.413333pt;}
.y23{bottom:722.853333pt;}
.y3d{bottom:724.133333pt;}
.y8{bottom:734.693333pt;}
.y77{bottom:744.133333pt;}
.y22{bottom:745.413333pt;}
.y61{bottom:746.693333pt;}
.y3c{bottom:757.413333pt;}
.y76{bottom:766.693333pt;}
.y7{bottom:768.133333pt;}
.y60{bottom:779.973333pt;}
.y75{bottom:789.413333pt;}
.y21{bottom:790.693333pt;}
.y6{bottom:801.413333pt;}
.y74{bottom:811.973333pt;}
.y20{bottom:813.253333pt;}
.y3b{bottom:823.973333pt;}
.y5{bottom:834.693333pt;}
.y1f{bottom:846.533333pt;}
.y4{bottom:857.253333pt;}
.y1e{bottom:879.813333pt;}
.y3{bottom:890.533333pt;}
.y2{bottom:913.253333pt;}
.y4e{bottom:923.813333pt;}
.y1{bottom:946.560000pt;}
.h2{height:55.468750pt;}
.h1{height:55.562500pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x2{left:118.431988pt;}
.x7{left:142.426655pt;}
.x3{left:166.426655pt;}
.x4{left:190.426655pt;}
.x5{left:214.426655pt;}
.x6{left:238.426655pt;}
}




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