
    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_0e18ed1df420346727c767f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_935060aae4b6f5cc6b8ec429.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3262638023e1d237a171353e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_d7231ca674f3f960dcebd6c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_b5a0c2f13ec55baf8606b644.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_85e9a0b485b7887911d71caf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_89560599384506435f81e988.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_c3fd0ac3018046277dfa690e.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);}
.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);}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.037440px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:1.440000px;}
.ls6{letter-spacing:2.880000px;}
.ls2{letter-spacing:10.080000px;}
.ls4{letter-spacing:20.880000px;}
.ls3{letter-spacing:21.600000px;}
.ls5{letter-spacing:27.360000px;}
.lsa{letter-spacing:36.000000px;}
.ls1{letter-spacing:91.416000px;}
.lsd{letter-spacing:102.384000px;}
.lsc{letter-spacing:138.384000px;}
.ls0{letter-spacing:1039.457280px;}
.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:-23.381280px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-4.752000px;}
._8{margin-left:-3.456000px;}
._12{margin-left:-2.111040px;}
._0{margin-left:-1.072320px;}
._1{width:1.164000px;}
._d{width:2.232000px;}
._27{width:3.240000px;}
._5{width:4.248000px;}
._c{width:5.752320px;}
._17{width:6.984000px;}
._16{width:8.215680px;}
._4{width:9.648000px;}
._6{width:10.800000px;}
._7{width:12.804000px;}
._13{width:13.968000px;}
._24{width:15.912000px;}
._14{width:20.152320px;}
._e{width:21.168000px;}
._f{width:22.464000px;}
._20{width:24.048000px;}
._21{width:25.356000px;}
._1c{width:26.551680px;}
._11{width:28.240320px;}
._10{width:29.640000px;}
._1a{width:34.018080px;}
._a{width:35.064000px;}
._1f{width:36.264000px;}
._1d{width:39.168000px;}
._15{width:42.120000px;}
._1e{width:50.472000px;}
._19{width:54.432000px;}
._18{width:55.584000px;}
._26{width:57.839040px;}
._25{width:58.960320px;}
._1b{width:62.064000px;}
._3{width:75.096000px;}
._23{width:79.779360px;}
._22{width:80.928000px;}
._2{width:90.936000px;}
._b{width:98.064000px;}
.fc3{color:rgb(55,65,81);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,127,172);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y9{bottom:3.780000px;}
.y7{bottom:18.000000px;}
.y5{bottom:22.500000px;}
.y8{bottom:22.680000px;}
.y4{bottom:41.400000px;}
.y36{bottom:91.980000px;}
.y35{bottom:115.740000px;}
.y4e{bottom:124.560000px;}
.y34{bottom:139.500000px;}
.y4d{bottom:148.320000px;}
.y33{bottom:163.260000px;}
.y4c{bottom:172.080000px;}
.y32{bottom:187.200000px;}
.y4b{bottom:196.050000px;}
.y31{bottom:210.990000px;}
.y4a{bottom:219.810000px;}
.y30{bottom:234.750000px;}
.y49{bottom:243.570000px;}
.y2f{bottom:258.510000px;}
.y48{bottom:267.330000px;}
.y2e{bottom:282.450000px;}
.y47{bottom:291.270000px;}
.y2d{bottom:306.210000px;}
.y46{bottom:315.030000px;}
.y2c{bottom:329.970000px;}
.y45{bottom:338.790000px;}
.y2b{bottom:353.730000px;}
.y44{bottom:362.550000px;}
.y2a{bottom:377.670000px;}
.y43{bottom:386.310000px;}
.y29{bottom:401.430000px;}
.y42{bottom:410.250000px;}
.y28{bottom:425.190000px;}
.y41{bottom:434.055000px;}
.y27{bottom:448.995000px;}
.y40{bottom:457.815000px;}
.y26{bottom:472.935000px;}
.y3f{bottom:481.575000px;}
.y25{bottom:496.695000px;}
.y3e{bottom:505.515000px;}
.y24{bottom:520.455000px;}
.y3d{bottom:529.275000px;}
.y23{bottom:544.215000px;}
.y3c{bottom:553.035000px;}
.y22{bottom:567.975000px;}
.y3b{bottom:576.795000px;}
.y21{bottom:591.915000px;}
.y3a{bottom:600.735000px;}
.y20{bottom:615.675000px;}
.y39{bottom:624.495000px;}
.y1f{bottom:639.435000px;}
.y38{bottom:648.255000px;}
.y1e{bottom:663.195000px;}
.y37{bottom:672.045000px;}
.y1d{bottom:687.165000px;}
.y1c{bottom:710.925000px;}
.y1b{bottom:734.685000px;}
.y1a{bottom:758.445000px;}
.y19{bottom:782.385000px;}
.y18{bottom:806.145000px;}
.y17{bottom:829.905000px;}
.y16{bottom:853.665000px;}
.y15{bottom:877.605000px;}
.y14{bottom:901.365000px;}
.y13{bottom:925.170000px;}
.y12{bottom:948.930000px;}
.y11{bottom:972.870000px;}
.y10{bottom:996.630000px;}
.yf{bottom:1020.390000px;}
.ye{bottom:1044.150000px;}
.yd{bottom:1067.910000px;}
.yc{bottom:1091.850000px;}
.yb{bottom:1115.610000px;}
.ya{bottom:1139.370000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1209.060000px;}
.y1{bottom:1233.180000px;}
.h4{height:37.980000px;}
.h8{height:63.457031px;}
.h3{height:65.010937px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h9{height:74.004654px;}
.h5{height:74.953125px;}
.h2{height:87.859687px;}
.h0{height:1263.420000px;}
.h1{height:1263.750000px;}
.w3{width:23.760000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:3.600000px;}
.x1{left:84.995987px;}
.x5{left:215.309987px;}
.xa{left:282.314987px;}
.x7{left:290.954987px;}
.x9{left:312.554987px;}
.x8{left:318.134987px;}
.xb{left:382.034987px;}
.x6{left:432.824987px;}
.x3{left:442.365000px;}
.x2{left:457.664987px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.033280pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls6{letter-spacing:2.560000pt;}
.ls2{letter-spacing:8.960000pt;}
.ls4{letter-spacing:18.560000pt;}
.ls3{letter-spacing:19.200000pt;}
.ls5{letter-spacing:24.320000pt;}
.lsa{letter-spacing:32.000000pt;}
.ls1{letter-spacing:81.258667pt;}
.lsd{letter-spacing:91.008000pt;}
.lsc{letter-spacing:123.008000pt;}
.ls0{letter-spacing:923.962027pt;}
.ws0{word-spacing:-20.783360pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-4.224000pt;}
._8{margin-left:-3.072000pt;}
._12{margin-left:-1.876480pt;}
._0{margin-left:-0.953173pt;}
._1{width:1.034667pt;}
._d{width:1.984000pt;}
._27{width:2.880000pt;}
._5{width:3.776000pt;}
._c{width:5.113173pt;}
._17{width:6.208000pt;}
._16{width:7.302827pt;}
._4{width:8.576000pt;}
._6{width:9.600000pt;}
._7{width:11.381333pt;}
._13{width:12.416000pt;}
._24{width:14.144000pt;}
._14{width:17.913173pt;}
._e{width:18.816000pt;}
._f{width:19.968000pt;}
._20{width:21.376000pt;}
._21{width:22.538667pt;}
._1c{width:23.601493pt;}
._11{width:25.102507pt;}
._10{width:26.346667pt;}
._1a{width:30.238293pt;}
._a{width:31.168000pt;}
._1f{width:32.234667pt;}
._1d{width:34.816000pt;}
._15{width:37.440000pt;}
._1e{width:44.864000pt;}
._19{width:48.384000pt;}
._18{width:49.408000pt;}
._26{width:51.412480pt;}
._25{width:52.409173pt;}
._1b{width:55.168000pt;}
._3{width:66.752000pt;}
._23{width:70.914987pt;}
._22{width:71.936000pt;}
._2{width:80.832000pt;}
._b{width:87.168000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y9{bottom:3.360000pt;}
.y7{bottom:16.000000pt;}
.y5{bottom:20.000000pt;}
.y8{bottom:20.160000pt;}
.y4{bottom:36.800000pt;}
.y36{bottom:81.760000pt;}
.y35{bottom:102.880000pt;}
.y4e{bottom:110.720000pt;}
.y34{bottom:124.000000pt;}
.y4d{bottom:131.840000pt;}
.y33{bottom:145.120000pt;}
.y4c{bottom:152.960000pt;}
.y32{bottom:166.400000pt;}
.y4b{bottom:174.266667pt;}
.y31{bottom:187.546667pt;}
.y4a{bottom:195.386667pt;}
.y30{bottom:208.666667pt;}
.y49{bottom:216.506667pt;}
.y2f{bottom:229.786667pt;}
.y48{bottom:237.626667pt;}
.y2e{bottom:251.066667pt;}
.y47{bottom:258.906667pt;}
.y2d{bottom:272.186667pt;}
.y46{bottom:280.026667pt;}
.y2c{bottom:293.306667pt;}
.y45{bottom:301.146667pt;}
.y2b{bottom:314.426667pt;}
.y44{bottom:322.266667pt;}
.y2a{bottom:335.706667pt;}
.y43{bottom:343.386667pt;}
.y29{bottom:356.826667pt;}
.y42{bottom:364.666667pt;}
.y28{bottom:377.946667pt;}
.y41{bottom:385.826667pt;}
.y27{bottom:399.106667pt;}
.y40{bottom:406.946667pt;}
.y26{bottom:420.386667pt;}
.y3f{bottom:428.066667pt;}
.y25{bottom:441.506667pt;}
.y3e{bottom:449.346667pt;}
.y24{bottom:462.626667pt;}
.y3d{bottom:470.466667pt;}
.y23{bottom:483.746667pt;}
.y3c{bottom:491.586667pt;}
.y22{bottom:504.866667pt;}
.y3b{bottom:512.706667pt;}
.y21{bottom:526.146667pt;}
.y3a{bottom:533.986667pt;}
.y20{bottom:547.266667pt;}
.y39{bottom:555.106667pt;}
.y1f{bottom:568.386667pt;}
.y38{bottom:576.226667pt;}
.y1e{bottom:589.506667pt;}
.y37{bottom:597.373333pt;}
.y1d{bottom:610.813333pt;}
.y1c{bottom:631.933333pt;}
.y1b{bottom:653.053333pt;}
.y1a{bottom:674.173333pt;}
.y19{bottom:695.453333pt;}
.y18{bottom:716.573333pt;}
.y17{bottom:737.693333pt;}
.y16{bottom:758.813333pt;}
.y15{bottom:780.093333pt;}
.y14{bottom:801.213333pt;}
.y13{bottom:822.373333pt;}
.y12{bottom:843.493333pt;}
.y11{bottom:864.773333pt;}
.y10{bottom:885.893333pt;}
.yf{bottom:907.013333pt;}
.ye{bottom:928.133333pt;}
.yd{bottom:949.253333pt;}
.yc{bottom:970.533333pt;}
.yb{bottom:991.653333pt;}
.ya{bottom:1012.773333pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1074.720000pt;}
.y1{bottom:1096.160000pt;}
.h4{height:33.760000pt;}
.h8{height:56.406250pt;}
.h3{height:57.787500pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h9{height:65.781915pt;}
.h5{height:66.625000pt;}
.h2{height:78.097500pt;}
.h0{height:1123.040000pt;}
.h1{height:1123.333333pt;}
.w3{width:21.120000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:3.200000pt;}
.x1{left:75.551988pt;}
.x5{left:191.386655pt;}
.xa{left:250.946655pt;}
.x7{left:258.626655pt;}
.x9{left:277.826655pt;}
.x8{left:282.786655pt;}
.xb{left:339.586655pt;}
.x6{left:384.733321pt;}
.x3{left:393.213333pt;}
.x2{left:406.813321pt;}
}




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