
    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_8cd7b58e1de5f882971ba7cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_fe49b3de2c20ee83fdd2dbcd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_8ab61110270d82bf465d0a9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_036cea78fc4f96e4891bb97a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_6337d6ea2d933bb7b5e640f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_a538733c09543b6521b09dd6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_63a25e602cd46dc605f190ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_15ce3165cc9764ad8688ec18.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:33.960000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-2.220000px;}
._0{margin-left:-1.032000px;}
._1{width:1.068000px;}
._2{width:2.340000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:101.376000px;}
.y71{bottom:101.736000px;}
.y7b{bottom:122.076000px;}
.y70{bottom:122.436000px;}
.y2a{bottom:122.976000px;}
.y55{bottom:123.876000px;}
.y6f{bottom:143.136000px;}
.y29{bottom:143.676000px;}
.y54{bottom:144.576000px;}
.y6e{bottom:163.830000px;}
.y28{bottom:164.370000px;}
.y53{bottom:165.270000px;}
.y9d{bottom:165.810000px;}
.y7a{bottom:184.530000px;}
.y27{bottom:185.070000px;}
.y52{bottom:185.970000px;}
.y79{bottom:205.230000px;}
.y6d{bottom:205.590000px;}
.y26{bottom:205.770000px;}
.y51{bottom:206.670000px;}
.y9c{bottom:207.570000px;}
.y78{bottom:225.930000px;}
.y6c{bottom:226.290000px;}
.y25{bottom:226.470000px;}
.y50{bottom:227.370000px;}
.y9b{bottom:228.270000px;}
.y77{bottom:246.630000px;}
.y6b{bottom:246.990000px;}
.y24{bottom:247.170000px;}
.y4f{bottom:247.710000px;}
.y9a{bottom:248.970000px;}
.y76{bottom:267.330000px;}
.y6a{bottom:267.690000px;}
.y23{bottom:267.870000px;}
.y99{bottom:269.670000px;}
.y69{bottom:288.435000px;}
.y4e{bottom:289.875000px;}
.y98{bottom:290.415000px;}
.y75{bottom:308.595000px;}
.y22{bottom:309.675000px;}
.y4d{bottom:310.575000px;}
.y97{bottom:311.115000px;}
.y68{bottom:329.655000px;}
.y21{bottom:330.375000px;}
.y4c{bottom:331.275000px;}
.y96{bottom:331.815000px;}
.y74{bottom:350.715000px;}
.y20{bottom:351.075000px;}
.y4b{bottom:351.975000px;}
.y95{bottom:352.515000px;}
.y1f{bottom:371.775000px;}
.y4a{bottom:372.675000px;}
.y94{bottom:373.215000px;}
.y1e{bottom:392.475000px;}
.y49{bottom:393.375000px;}
.y93{bottom:393.915000px;}
.y1d{bottom:413.175000px;}
.y48{bottom:413.715000px;}
.y92{bottom:414.615000px;}
.y1c{bottom:433.875000px;}
.y91{bottom:435.315000px;}
.y1b{bottom:454.575000px;}
.y47{bottom:455.835000px;}
.y90{bottom:456.015000px;}
.y1a{bottom:475.275000px;}
.y46{bottom:476.535000px;}
.y8f{bottom:476.715000px;}
.y67{bottom:495.795000px;}
.y19{bottom:495.975000px;}
.y45{bottom:497.235000px;}
.y8e{bottom:497.415000px;}
.y44{bottom:517.755000px;}
.y8d{bottom:518.115000px;}
.y18{bottom:537.195000px;}
.y66{bottom:537.915000px;}
.y43{bottom:538.455000px;}
.y8c{bottom:538.815000px;}
.y65{bottom:558.645000px;}
.y42{bottom:559.185000px;}
.y8b{bottom:559.545000px;}
.y17{bottom:579.345000px;}
.y41{bottom:579.885000px;}
.y8a{bottom:580.245000px;}
.y16{bottom:600.045000px;}
.y40{bottom:600.225000px;}
.y89{bottom:600.945000px;}
.y64{bottom:620.745000px;}
.y88{bottom:621.645000px;}
.y63{bottom:641.445000px;}
.y15{bottom:641.805000px;}
.y3f{bottom:642.345000px;}
.y73{bottom:662.145000px;}
.y14{bottom:662.505000px;}
.y3e{bottom:663.045000px;}
.y62{bottom:682.845000px;}
.y13{bottom:683.205000px;}
.y3d{bottom:683.745000px;}
.y72{bottom:703.545000px;}
.y12{bottom:703.905000px;}
.y3c{bottom:704.445000px;}
.y11{bottom:724.605000px;}
.y61{bottom:724.785000px;}
.y3b{bottom:725.145000px;}
.y10{bottom:745.305000px;}
.y60{bottom:745.485000px;}
.y3a{bottom:745.845000px;}
.yf{bottom:766.005000px;}
.y39{bottom:766.185000px;}
.y87{bottom:766.545000px;}
.ye{bottom:786.705000px;}
.y5f{bottom:786.885000px;}
.y86{bottom:787.245000px;}
.yd{bottom:807.405000px;}
.y5e{bottom:807.585000px;}
.y85{bottom:807.945000px;}
.y38{bottom:808.305000px;}
.yc{bottom:828.105000px;}
.y5d{bottom:828.285000px;}
.y84{bottom:828.645000px;}
.y37{bottom:829.005000px;}
.yb{bottom:848.850000px;}
.y83{bottom:849.390000px;}
.y36{bottom:849.750000px;}
.y5c{bottom:869.730000px;}
.y35{bottom:870.450000px;}
.ya{bottom:890.070000px;}
.y82{bottom:890.610000px;}
.y34{bottom:891.150000px;}
.y33{bottom:911.850000px;}
.y9{bottom:931.830000px;}
.y5b{bottom:932.550000px;}
.y81{bottom:932.730000px;}
.y32{bottom:953.070000px;}
.y5a{bottom:953.250000px;}
.y8{bottom:973.590000px;}
.y59{bottom:973.950000px;}
.y80{bottom:974.490000px;}
.y58{bottom:994.650000px;}
.y31{bottom:995.190000px;}
.y57{bottom:1015.350000px;}
.y7{bottom:1015.530000px;}
.y7f{bottom:1015.890000px;}
.y6{bottom:1036.230000px;}
.y7e{bottom:1036.590000px;}
.y30{bottom:1036.950000px;}
.y56{bottom:1056.570000px;}
.y7d{bottom:1057.290000px;}
.y2f{bottom:1057.650000px;}
.y5{bottom:1077.630000px;}
.y2e{bottom:1078.350000px;}
.y4{bottom:1098.330000px;}
.y2d{bottom:1099.050000px;}
.y2c{bottom:1119.750000px;}
.y3{bottom:1140.120000px;}
.y2b{bottom:1140.480000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.h2{height:45.184219px;}
.h5{height:50.027344px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h6{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.236000px;}
.x4{left:122.796000px;}
.x7{left:133.236000px;}
.x8{left:160.230000px;}
.x6{left:316.515000px;}
.x5{left:339.735000px;}
.x1{left:442.335000px;}
.x3{left:446.475000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:30.186667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-1.973333pt;}
._0{margin-left:-0.917333pt;}
._1{width:0.949333pt;}
._2{width:2.080000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:90.112000pt;}
.y71{bottom:90.432000pt;}
.y7b{bottom:108.512000pt;}
.y70{bottom:108.832000pt;}
.y2a{bottom:109.312000pt;}
.y55{bottom:110.112000pt;}
.y6f{bottom:127.232000pt;}
.y29{bottom:127.712000pt;}
.y54{bottom:128.512000pt;}
.y6e{bottom:145.626667pt;}
.y28{bottom:146.106667pt;}
.y53{bottom:146.906667pt;}
.y9d{bottom:147.386667pt;}
.y7a{bottom:164.026667pt;}
.y27{bottom:164.506667pt;}
.y52{bottom:165.306667pt;}
.y79{bottom:182.426667pt;}
.y6d{bottom:182.746667pt;}
.y26{bottom:182.906667pt;}
.y51{bottom:183.706667pt;}
.y9c{bottom:184.506667pt;}
.y78{bottom:200.826667pt;}
.y6c{bottom:201.146667pt;}
.y25{bottom:201.306667pt;}
.y50{bottom:202.106667pt;}
.y9b{bottom:202.906667pt;}
.y77{bottom:219.226667pt;}
.y6b{bottom:219.546667pt;}
.y24{bottom:219.706667pt;}
.y4f{bottom:220.186667pt;}
.y9a{bottom:221.306667pt;}
.y76{bottom:237.626667pt;}
.y6a{bottom:237.946667pt;}
.y23{bottom:238.106667pt;}
.y99{bottom:239.706667pt;}
.y69{bottom:256.386667pt;}
.y4e{bottom:257.666667pt;}
.y98{bottom:258.146667pt;}
.y75{bottom:274.306667pt;}
.y22{bottom:275.266667pt;}
.y4d{bottom:276.066667pt;}
.y97{bottom:276.546667pt;}
.y68{bottom:293.026667pt;}
.y21{bottom:293.666667pt;}
.y4c{bottom:294.466667pt;}
.y96{bottom:294.946667pt;}
.y74{bottom:311.746667pt;}
.y20{bottom:312.066667pt;}
.y4b{bottom:312.866667pt;}
.y95{bottom:313.346667pt;}
.y1f{bottom:330.466667pt;}
.y4a{bottom:331.266667pt;}
.y94{bottom:331.746667pt;}
.y1e{bottom:348.866667pt;}
.y49{bottom:349.666667pt;}
.y93{bottom:350.146667pt;}
.y1d{bottom:367.266667pt;}
.y48{bottom:367.746667pt;}
.y92{bottom:368.546667pt;}
.y1c{bottom:385.666667pt;}
.y91{bottom:386.946667pt;}
.y1b{bottom:404.066667pt;}
.y47{bottom:405.186667pt;}
.y90{bottom:405.346667pt;}
.y1a{bottom:422.466667pt;}
.y46{bottom:423.586667pt;}
.y8f{bottom:423.746667pt;}
.y67{bottom:440.706667pt;}
.y19{bottom:440.866667pt;}
.y45{bottom:441.986667pt;}
.y8e{bottom:442.146667pt;}
.y44{bottom:460.226667pt;}
.y8d{bottom:460.546667pt;}
.y18{bottom:477.506667pt;}
.y66{bottom:478.146667pt;}
.y43{bottom:478.626667pt;}
.y8c{bottom:478.946667pt;}
.y65{bottom:496.573333pt;}
.y42{bottom:497.053333pt;}
.y8b{bottom:497.373333pt;}
.y17{bottom:514.973333pt;}
.y41{bottom:515.453333pt;}
.y8a{bottom:515.773333pt;}
.y16{bottom:533.373333pt;}
.y40{bottom:533.533333pt;}
.y89{bottom:534.173333pt;}
.y64{bottom:551.773333pt;}
.y88{bottom:552.573333pt;}
.y63{bottom:570.173333pt;}
.y15{bottom:570.493333pt;}
.y3f{bottom:570.973333pt;}
.y73{bottom:588.573333pt;}
.y14{bottom:588.893333pt;}
.y3e{bottom:589.373333pt;}
.y62{bottom:606.973333pt;}
.y13{bottom:607.293333pt;}
.y3d{bottom:607.773333pt;}
.y72{bottom:625.373333pt;}
.y12{bottom:625.693333pt;}
.y3c{bottom:626.173333pt;}
.y11{bottom:644.093333pt;}
.y61{bottom:644.253333pt;}
.y3b{bottom:644.573333pt;}
.y10{bottom:662.493333pt;}
.y60{bottom:662.653333pt;}
.y3a{bottom:662.973333pt;}
.yf{bottom:680.893333pt;}
.y39{bottom:681.053333pt;}
.y87{bottom:681.373333pt;}
.ye{bottom:699.293333pt;}
.y5f{bottom:699.453333pt;}
.y86{bottom:699.773333pt;}
.yd{bottom:717.693333pt;}
.y5e{bottom:717.853333pt;}
.y85{bottom:718.173333pt;}
.y38{bottom:718.493333pt;}
.yc{bottom:736.093333pt;}
.y5d{bottom:736.253333pt;}
.y84{bottom:736.573333pt;}
.y37{bottom:736.893333pt;}
.yb{bottom:754.533333pt;}
.y83{bottom:755.013333pt;}
.y36{bottom:755.333333pt;}
.y5c{bottom:773.093333pt;}
.y35{bottom:773.733333pt;}
.ya{bottom:791.173333pt;}
.y82{bottom:791.653333pt;}
.y34{bottom:792.133333pt;}
.y33{bottom:810.533333pt;}
.y9{bottom:828.293333pt;}
.y5b{bottom:828.933333pt;}
.y81{bottom:829.093333pt;}
.y32{bottom:847.173333pt;}
.y5a{bottom:847.333333pt;}
.y8{bottom:865.413333pt;}
.y59{bottom:865.733333pt;}
.y80{bottom:866.213333pt;}
.y58{bottom:884.133333pt;}
.y31{bottom:884.613333pt;}
.y57{bottom:902.533333pt;}
.y7{bottom:902.693333pt;}
.y7f{bottom:903.013333pt;}
.y6{bottom:921.093333pt;}
.y7e{bottom:921.413333pt;}
.y30{bottom:921.733333pt;}
.y56{bottom:939.173333pt;}
.y7d{bottom:939.813333pt;}
.y2f{bottom:940.133333pt;}
.y5{bottom:957.893333pt;}
.y2e{bottom:958.533333pt;}
.y4{bottom:976.293333pt;}
.y2d{bottom:976.933333pt;}
.y2c{bottom:995.333333pt;}
.y3{bottom:1013.440000pt;}
.y2b{bottom:1013.760000pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.h2{height:40.163750pt;}
.h5{height:44.468750pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h6{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.432000pt;}
.x4{left:109.152000pt;}
.x7{left:118.432000pt;}
.x8{left:142.426667pt;}
.x6{left:281.346667pt;}
.x5{left:301.986667pt;}
.x1{left:393.186667pt;}
.x3{left:396.866667pt;}
}




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