
    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_e1cfe0c72647ce7877c1204d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ead3d859744ae0a62da54f73.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_8c7a318a0ee821c7ebad3785.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_382e1059cc26614686f0f722.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5863760ff81e5bf400d44cdf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_af4722901be455d46fe37471.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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);}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v2{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.012960px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012960px;}
.ls8{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.773280px;}
.lsc{letter-spacing:0.978000px;}
.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;}
}
.wsc{word-spacing:-59.813280px;}
.ws1{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.918000px;}
.wsb{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-9.732960px;}
.ws9{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.707040px;}
.ws5{word-spacing:0.000000px;}
._15{margin-left:-2.516160px;}
._0{margin-left:-1.008000px;}
._1{width:1.188000px;}
._2{width:2.340000px;}
._8{width:3.924000px;}
._9{width:5.172000px;}
._7{width:6.840000px;}
._6{width:7.848000px;}
._f{width:10.008000px;}
._10{width:11.244000px;}
._12{width:12.516000px;}
._d{width:13.896000px;}
._e{width:14.904000px;}
._11{width:16.032000px;}
._16{width:19.704000px;}
._3{width:23.400000px;}
._4{width:24.504000px;}
._5{width:26.424000px;}
._c{width:28.152000px;}
._13{width:31.464000px;}
._14{width:33.120000px;}
._a{width:38.304000px;}
._b{width:39.672000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.420000px;}
.y46{bottom:3.600000px;}
.y44{bottom:3.780000px;}
.y47{bottom:3.960000px;}
.y48{bottom:4.320000px;}
.y40{bottom:12.060000px;}
.y3c{bottom:12.600000px;}
.y39{bottom:17.460000px;}
.y41{bottom:20.700000px;}
.y3b{bottom:29.880000px;}
.y38{bottom:39.960000px;}
.y3a{bottom:43.380000px;}
.y2c{bottom:124.236000px;}
.y2b{bottom:144.936000px;}
.y2a{bottom:165.630000px;}
.y29{bottom:186.330000px;}
.y55{bottom:203.250000px;}
.y28{bottom:207.030000px;}
.y54{bottom:223.950000px;}
.y27{bottom:236.730000px;}
.y53{bottom:244.650000px;}
.y26{bottom:257.430000px;}
.y52{bottom:273.990000px;}
.y25{bottom:278.130000px;}
.y24{bottom:298.830000px;}
.y51{bottom:304.050000px;}
.y23{bottom:319.350000px;}
.y50{bottom:324.750000px;}
.y22{bottom:340.050000px;}
.y4f{bottom:345.450000px;}
.y21{bottom:360.795000px;}
.y4e{bottom:374.835000px;}
.y20{bottom:381.495000px;}
.y4d{bottom:404.895000px;}
.y1f{bottom:410.835000px;}
.y4c{bottom:425.595000px;}
.y1e{bottom:440.895000px;}
.y4b{bottom:446.295000px;}
.y1d{bottom:461.595000px;}
.y4a{bottom:466.995000px;}
.y1c{bottom:482.295000px;}
.y49{bottom:492.915000px;}
.y1b{bottom:502.995000px;}
.y45{bottom:519.195000px;}
.y1a{bottom:523.695000px;}
.y19{bottom:544.395000px;}
.y43{bottom:546.015000px;}
.y18{bottom:565.095000px;}
.y3f{bottom:573.015000px;}
.y17{bottom:585.795000px;}
.y16{bottom:615.165000px;}
.y3e{bottom:621.105000px;}
.y3d{bottom:638.385000px;}
.y15{bottom:645.225000px;}
.y37{bottom:660.885000px;}
.y14{bottom:665.925000px;}
.y13{bottom:686.625000px;}
.y12{bottom:707.325000px;}
.y11{bottom:728.025000px;}
.y10{bottom:748.725000px;}
.yf{bottom:769.425000px;}
.ye{bottom:790.125000px;}
.yd{bottom:810.825000px;}
.yc{bottom:831.525000px;}
.yb{bottom:852.225000px;}
.ya{bottom:881.610000px;}
.y9{bottom:911.670000px;}
.y8{bottom:941.370000px;}
.y36{bottom:953.970000px;}
.y7{bottom:971.070000px;}
.y35{bottom:974.670000px;}
.y34{bottom:995.370000px;}
.y6{bottom:1000.770000px;}
.y33{bottom:1016.070000px;}
.y5{bottom:1021.470000px;}
.y32{bottom:1036.770000px;}
.y4{bottom:1051.170000px;}
.y31{bottom:1057.470000px;}
.y30{bottom:1078.170000px;}
.y3{bottom:1089.510000px;}
.y2f{bottom:1098.870000px;}
.y2{bottom:1110.210000px;}
.y2e{bottom:1119.570000px;}
.y1{bottom:1130.910000px;}
.y2d{bottom:1140.300000px;}
.ha{height:26.280000px;}
.hb{height:26.820000px;}
.h8{height:34.560000px;}
.h7{height:58.651172px;}
.h6{height:60.226875px;}
.h9{height:66.543750px;}
.h3{height:70.628906px;}
.h4{height:70.664062px;}
.h2{height:72.562500px;}
.h5{height:279.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:16.740000px;}
.w5{width:56.736000px;}
.w6{width:57.600000px;}
.w7{width:59.220000px;}
.wb{width:65.376000px;}
.w9{width:66.960000px;}
.w8{width:66.996000px;}
.wa{width:67.680000px;}
.w4{width:75.780000px;}
.w3{width:354.990000px;}
.w2{width:367.095000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:5.940000px;}
.xa{left:8.100000px;}
.xe{left:10.800000px;}
.x1b{left:11.880000px;}
.x10{left:13.140000px;}
.x12{left:15.300000px;}
.x1e{left:17.100000px;}
.x1c{left:20.340000px;}
.x15{left:22.500000px;}
.x1d{left:24.120000px;}
.x8{left:119.556000px;}
.x7{left:127.656000px;}
.x1{left:156.630000px;}
.x4{left:158.970000px;}
.xd{left:180.030000px;}
.x2{left:210.450000px;}
.xf{left:255.810000px;}
.x5{left:266.970000px;}
.x11{left:312.555000px;}
.x3{left:335.055000px;}
.xc{left:346.905000px;}
.x9{left:358.959000px;}
.x14{left:370.155000px;}
.x6{left:385.995000px;}
.x16{left:429.375000px;}
.xb{left:486.645000px;}
.x17{left:496.365000px;}
.x18{left:563.325000px;}
.x19{left:631.005000px;}
.x1a{left:696.390000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v2{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.011520pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011520pt;}
.ls8{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.687360pt;}
.lsc{letter-spacing:0.869333pt;}
.wsc{word-spacing:-53.167360pt;}
.ws1{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.149333pt;}
.wsb{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-8.651520pt;}
.ws9{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.628480pt;}
.ws5{word-spacing:0.000000pt;}
._15{margin-left:-2.236587pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.056000pt;}
._2{width:2.080000pt;}
._8{width:3.488000pt;}
._9{width:4.597333pt;}
._7{width:6.080000pt;}
._6{width:6.976000pt;}
._f{width:8.896000pt;}
._10{width:9.994667pt;}
._12{width:11.125333pt;}
._d{width:12.352000pt;}
._e{width:13.248000pt;}
._11{width:14.250667pt;}
._16{width:17.514667pt;}
._3{width:20.800000pt;}
._4{width:21.781333pt;}
._5{width:23.488000pt;}
._c{width:25.024000pt;}
._13{width:27.968000pt;}
._14{width:29.440000pt;}
._a{width:34.048000pt;}
._b{width:35.264000pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:3.040000pt;}
.y46{bottom:3.200000pt;}
.y44{bottom:3.360000pt;}
.y47{bottom:3.520000pt;}
.y48{bottom:3.840000pt;}
.y40{bottom:10.720000pt;}
.y3c{bottom:11.200000pt;}
.y39{bottom:15.520000pt;}
.y41{bottom:18.400000pt;}
.y3b{bottom:26.560000pt;}
.y38{bottom:35.520000pt;}
.y3a{bottom:38.560000pt;}
.y2c{bottom:110.432000pt;}
.y2b{bottom:128.832000pt;}
.y2a{bottom:147.226667pt;}
.y29{bottom:165.626667pt;}
.y55{bottom:180.666667pt;}
.y28{bottom:184.026667pt;}
.y54{bottom:199.066667pt;}
.y27{bottom:210.426667pt;}
.y53{bottom:217.466667pt;}
.y26{bottom:228.826667pt;}
.y52{bottom:243.546667pt;}
.y25{bottom:247.226667pt;}
.y24{bottom:265.626667pt;}
.y51{bottom:270.266667pt;}
.y23{bottom:283.866667pt;}
.y50{bottom:288.666667pt;}
.y22{bottom:302.266667pt;}
.y4f{bottom:307.066667pt;}
.y21{bottom:320.706667pt;}
.y4e{bottom:333.186667pt;}
.y20{bottom:339.106667pt;}
.y4d{bottom:359.906667pt;}
.y1f{bottom:365.186667pt;}
.y4c{bottom:378.306667pt;}
.y1e{bottom:391.906667pt;}
.y4b{bottom:396.706667pt;}
.y1d{bottom:410.306667pt;}
.y4a{bottom:415.106667pt;}
.y1c{bottom:428.706667pt;}
.y49{bottom:438.146667pt;}
.y1b{bottom:447.106667pt;}
.y45{bottom:461.506667pt;}
.y1a{bottom:465.506667pt;}
.y19{bottom:483.906667pt;}
.y43{bottom:485.346667pt;}
.y18{bottom:502.306667pt;}
.y3f{bottom:509.346667pt;}
.y17{bottom:520.706667pt;}
.y16{bottom:546.813333pt;}
.y3e{bottom:552.093333pt;}
.y3d{bottom:567.453333pt;}
.y15{bottom:573.533333pt;}
.y37{bottom:587.453333pt;}
.y14{bottom:591.933333pt;}
.y13{bottom:610.333333pt;}
.y12{bottom:628.733333pt;}
.y11{bottom:647.133333pt;}
.y10{bottom:665.533333pt;}
.yf{bottom:683.933333pt;}
.ye{bottom:702.333333pt;}
.yd{bottom:720.733333pt;}
.yc{bottom:739.133333pt;}
.yb{bottom:757.533333pt;}
.ya{bottom:783.653333pt;}
.y9{bottom:810.373333pt;}
.y8{bottom:836.773333pt;}
.y36{bottom:847.973333pt;}
.y7{bottom:863.173333pt;}
.y35{bottom:866.373333pt;}
.y34{bottom:884.773333pt;}
.y6{bottom:889.573333pt;}
.y33{bottom:903.173333pt;}
.y5{bottom:907.973333pt;}
.y32{bottom:921.573333pt;}
.y4{bottom:934.373333pt;}
.y31{bottom:939.973333pt;}
.y30{bottom:958.373333pt;}
.y3{bottom:968.453333pt;}
.y2f{bottom:976.773333pt;}
.y2{bottom:986.853333pt;}
.y2e{bottom:995.173333pt;}
.y1{bottom:1005.253333pt;}
.y2d{bottom:1013.600000pt;}
.ha{height:23.360000pt;}
.hb{height:23.840000pt;}
.h8{height:30.720000pt;}
.h7{height:52.134375pt;}
.h6{height:53.535000pt;}
.h9{height:59.150000pt;}
.h3{height:62.781250pt;}
.h4{height:62.812500pt;}
.h2{height:64.500000pt;}
.h5{height:248.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:14.880000pt;}
.w5{width:50.432000pt;}
.w6{width:51.200000pt;}
.w7{width:52.640000pt;}
.wb{width:58.112000pt;}
.w9{width:59.520000pt;}
.w8{width:59.552000pt;}
.wa{width:60.160000pt;}
.w4{width:67.360000pt;}
.w3{width:315.546667pt;}
.w2{width:326.306667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.280000pt;}
.xa{left:7.200000pt;}
.xe{left:9.600000pt;}
.x1b{left:10.560000pt;}
.x10{left:11.680000pt;}
.x12{left:13.600000pt;}
.x1e{left:15.200000pt;}
.x1c{left:18.080000pt;}
.x15{left:20.000000pt;}
.x1d{left:21.440000pt;}
.x8{left:106.272000pt;}
.x7{left:113.472000pt;}
.x1{left:139.226667pt;}
.x4{left:141.306667pt;}
.xd{left:160.026667pt;}
.x2{left:187.066667pt;}
.xf{left:227.386667pt;}
.x5{left:237.306667pt;}
.x11{left:277.826667pt;}
.x3{left:297.826667pt;}
.xc{left:308.360000pt;}
.x9{left:319.074667pt;}
.x14{left:329.026667pt;}
.x6{left:343.106667pt;}
.x16{left:381.666667pt;}
.xb{left:432.573333pt;}
.x17{left:441.213333pt;}
.x18{left:500.733333pt;}
.x19{left:560.893333pt;}
.x1a{left:619.013333pt;}
}




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