
    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_57067b11e61246c6e987fdef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_475a8d89d4780b596bbb68e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_720d554556c78deca53abf03.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.305280px;}
.ls0{letter-spacing:38.099520px;}
.ls3{letter-spacing:178.149600px;}
.ls2{letter-spacing:178.200000px;}
.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;}
}
.ws1a{word-spacing:-30.064032px;}
.ws5{word-spacing:-30.024000px;}
.ws3a{word-spacing:-20.016000px;}
.ws19{word-spacing:-18.815040px;}
.ws16{word-spacing:-1.513193px;}
.ws39{word-spacing:-0.899437px;}
.ws9{word-spacing:-0.792000px;}
.ws2f{word-spacing:-0.144000px;}
.ws2a{word-spacing:0.000000px;}
.ws8{word-spacing:0.094952px;}
.ws17{word-spacing:0.343296px;}
.ws18{word-spacing:0.529920px;}
.ws2e{word-spacing:1.185516px;}
.ws15{word-spacing:2.376000px;}
.ws2b{word-spacing:3.240000px;}
.ws13{word-spacing:3.444600px;}
.ws1b{word-spacing:4.248680px;}
.ws7{word-spacing:5.940000px;}
.ws6{word-spacing:6.011973px;}
.ws35{word-spacing:8.280000px;}
.ws36{word-spacing:8.315648px;}
.ws30{word-spacing:8.387157px;}
.ws33{word-spacing:8.529915px;}
.ws34{word-spacing:8.712000px;}
.ws32{word-spacing:8.856281px;}
.ws31{word-spacing:8.892047px;}
.wse{word-spacing:10.007977px;}
.ws37{word-spacing:10.656000px;}
.ws12{word-spacing:11.196000px;}
.ws29{word-spacing:12.816000px;}
.ws2c{word-spacing:13.319877px;}
.ws14{word-spacing:14.903976px;}
.ws4{word-spacing:17.027391px;}
.wsd{word-spacing:17.136000px;}
.ws21{word-spacing:18.431789px;}
.ws20{word-spacing:19.152000px;}
.wsa{word-spacing:20.376000px;}
.wsb{word-spacing:21.718875px;}
.wsc{word-spacing:22.032000px;}
.ws1c{word-spacing:22.067838px;}
.ws1{word-spacing:22.104000px;}
.ws38{word-spacing:22.248000px;}
.ws28{word-spacing:28.296797px;}
.ws26{word-spacing:30.888164px;}
.ws2d{word-spacing:32.075661px;}
.ws2{word-spacing:32.796000px;}
.ws24{word-spacing:37.116000px;}
.ws11{word-spacing:41.472000px;}
.wsf{word-spacing:42.012114px;}
.ws10{word-spacing:42.443977px;}
.ws3{word-spacing:47.448000px;}
.ws0{word-spacing:53.567309px;}
.ws23{word-spacing:85.479558px;}
.ws1d{word-spacing:109.583579px;}
.ws22{word-spacing:119.627648px;}
.ws25{word-spacing:127.150926px;}
.ws1e{word-spacing:131.291578px;}
.ws27{word-spacing:191.339063px;}
.ws1f{word-spacing:281.016000px;}
._1{margin-left:-2.440386px;}
._0{margin-left:-1.002109px;}
._2{width:1.104277px;}
._11{width:2.268205px;}
._12{width:3.551119px;}
._19{width:28.878184px;}
._10{width:30.905509px;}
._9{width:32.989038px;}
._e{width:35.023200px;}
._3{width:36.803987px;}
._8{width:38.830992px;}
._d{width:42.238846px;}
._18{width:44.502332px;}
._f{width:46.439424px;}
._b{width:48.303509px;}
._15{width:50.076211px;}
._a{width:51.856200px;}
._6{width:53.261509px;}
._13{width:54.996442px;}
._17{width:62.417781px;}
._c{width:73.457280px;}
._7{width:78.604956px;}
._5{width:84.869215px;}
._4{width:86.041888px;}
._14{width:141.120421px;}
._16{width:158.221074px;}
.fc3{color:rgb(165,165,165);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(231,230,230);}
.fs6{font-size:66.240000px;}
.fs5{font-size:67.680000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs1{font-size:136.080000px;}
.fs4{font-size:181.440000px;}
.fs3{font-size:181.584000px;}
.fs0{font-size:318.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:89.244150px;}
.y1d{bottom:98.748000px;}
.y35{bottom:121.644150px;}
.y1c{bottom:138.888300px;}
.y34{bottom:154.050000px;}
.y1b{bottom:159.225000px;}
.y33{bottom:186.450000px;}
.y1a{bottom:194.145000px;}
.y19{bottom:214.485000px;}
.y32{bottom:218.850000px;}
.y18{bottom:255.345000px;}
.y17{bottom:275.685000px;}
.y31{bottom:295.740000px;}
.y16{bottom:310.650000px;}
.y15{bottom:330.990000px;}
.y3c{bottom:383.145000px;}
.y21{bottom:386.670000px;}
.y1e{bottom:393.945000px;}
.y3b{bottom:424.545000px;}
.y20{bottom:428.070000px;}
.y3d{bottom:473.940000px;}
.y3a{bottom:496.335000px;}
.y39{bottom:528.735000px;}
.y1f{bottom:541.905000px;}
.y38{bottom:561.135000px;}
.y37{bottom:593.535000px;}
.y12{bottom:615.810000px;}
.y11{bottom:648.255000px;}
.y30{bottom:676.725000px;}
.y10{bottom:680.655000px;}
.y2f{bottom:709.125000px;}
.yf{bottom:713.055000px;}
.y2e{bottom:741.525000px;}
.ye{bottom:745.455000px;}
.y2d{bottom:773.925000px;}
.yd{bottom:777.855000px;}
.y2c{bottom:806.325000px;}
.yc{bottom:810.255000px;}
.y3e{bottom:826.410000px;}
.y2b{bottom:838.725000px;}
.yb{bottom:842.655000px;}
.y2a{bottom:871.125000px;}
.ya{bottom:875.055000px;}
.y29{bottom:903.570000px;}
.y28{bottom:935.970000px;}
.y9{bottom:939.855000px;}
.y27{bottom:968.370000px;}
.y8{bottom:972.285000px;}
.y26{bottom:1000.770000px;}
.y7{bottom:1004.685000px;}
.y25{bottom:1033.170000px;}
.y6{bottom:1037.085000px;}
.y24{bottom:1065.570000px;}
.y5{bottom:1069.485000px;}
.y23{bottom:1097.970000px;}
.y4{bottom:1101.885000px;}
.y22{bottom:1130.370000px;}
.y3{bottom:1134.285000px;}
.y14{bottom:1198.005000px;}
.y13{bottom:1198.335000px;}
.y2{bottom:1328.400000px;}
.y1{bottom:1424.490000px;}
.h8{height:49.305938px;}
.ha{height:52.453125px;}
.h5{height:78.626953px;}
.h4{height:78.679688px;}
.h9{height:78.784594px;}
.h3{height:99.136406px;}
.h7{height:132.093281px;}
.h6{height:132.198117px;}
.h2{height:231.842813px;}
.h0{height:1530.720000px;}
.h1{height:1530.750000px;}
.w1{width:2721.000000px;}
.w0{width:2721.240000px;}
.x0{left:0.000000px;}
.x1{left:50.976000px;}
.x2{left:57.924000px;}
.x3{left:60.768150px;}
.xc{left:65.592150px;}
.xe{left:288.075000px;}
.x8{left:531.150000px;}
.xb{left:577.770000px;}
.x5{left:586.080000px;}
.x9{left:675.330000px;}
.x6{left:1380.630000px;}
.xd{left:1389.930000px;}
.x4{left:1793.085000px;}
.xf{left:1882.470000px;}
.x7{left:1900.800000px;}
.xa{left:2243.085000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.271360pt;}
.ls0{letter-spacing:33.866240pt;}
.ls3{letter-spacing:158.355200pt;}
.ls2{letter-spacing:158.400000pt;}
.ws1a{word-spacing:-26.723584pt;}
.ws5{word-spacing:-26.688000pt;}
.ws3a{word-spacing:-17.792000pt;}
.ws19{word-spacing:-16.724480pt;}
.ws16{word-spacing:-1.345060pt;}
.ws39{word-spacing:-0.799500pt;}
.ws9{word-spacing:-0.704000pt;}
.ws2f{word-spacing:-0.128000pt;}
.ws2a{word-spacing:0.000000pt;}
.ws8{word-spacing:0.084402pt;}
.ws17{word-spacing:0.305152pt;}
.ws18{word-spacing:0.471040pt;}
.ws2e{word-spacing:1.053792pt;}
.ws15{word-spacing:2.112000pt;}
.ws2b{word-spacing:2.880000pt;}
.ws13{word-spacing:3.061867pt;}
.ws1b{word-spacing:3.776604pt;}
.ws7{word-spacing:5.280000pt;}
.ws6{word-spacing:5.343976pt;}
.ws35{word-spacing:7.360000pt;}
.ws36{word-spacing:7.391687pt;}
.ws30{word-spacing:7.455250pt;}
.ws33{word-spacing:7.582146pt;}
.ws34{word-spacing:7.744000pt;}
.ws32{word-spacing:7.872250pt;}
.ws31{word-spacing:7.904042pt;}
.wse{word-spacing:8.895980pt;}
.ws37{word-spacing:9.472000pt;}
.ws12{word-spacing:9.952000pt;}
.ws29{word-spacing:11.392000pt;}
.ws2c{word-spacing:11.839891pt;}
.ws14{word-spacing:13.247979pt;}
.ws4{word-spacing:15.135459pt;}
.wsd{word-spacing:15.232000pt;}
.ws21{word-spacing:16.383813pt;}
.ws20{word-spacing:17.024000pt;}
.wsa{word-spacing:18.112000pt;}
.wsb{word-spacing:19.305666pt;}
.wsc{word-spacing:19.584000pt;}
.ws1c{word-spacing:19.615856pt;}
.ws1{word-spacing:19.648000pt;}
.ws38{word-spacing:19.776000pt;}
.ws28{word-spacing:25.152708pt;}
.ws26{word-spacing:27.456146pt;}
.ws2d{word-spacing:28.511699pt;}
.ws2{word-spacing:29.152000pt;}
.ws24{word-spacing:32.992000pt;}
.ws11{word-spacing:36.864000pt;}
.wsf{word-spacing:37.344102pt;}
.ws10{word-spacing:37.727980pt;}
.ws3{word-spacing:42.176000pt;}
.ws0{word-spacing:47.615386pt;}
.ws23{word-spacing:75.981830pt;}
.ws1d{word-spacing:97.407626pt;}
.ws22{word-spacing:106.335687pt;}
.ws25{word-spacing:113.023046pt;}
.ws1e{word-spacing:116.703625pt;}
.ws27{word-spacing:170.079167pt;}
.ws1f{word-spacing:249.792000pt;}
._1{margin-left:-2.169232pt;}
._0{margin-left:-0.890764pt;}
._2{width:0.981579pt;}
._11{width:2.016182pt;}
._12{width:3.156551pt;}
._19{width:25.669497pt;}
._10{width:27.471564pt;}
._9{width:29.323590pt;}
._e{width:31.131733pt;}
._3{width:32.714655pt;}
._8{width:34.516437pt;}
._d{width:37.545641pt;}
._18{width:39.557628pt;}
._f{width:41.279488pt;}
._b{width:42.936453pt;}
._15{width:44.512187pt;}
._a{width:46.094400pt;}
._6{width:47.343564pt;}
._13{width:48.885726pt;}
._17{width:55.482472pt;}
._c{width:65.295360pt;}
._7{width:69.871072pt;}
._5{width:75.439302pt;}
._4{width:76.481678pt;}
._14{width:125.440374pt;}
._16{width:140.640954pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:60.160000pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs1{font-size:120.960000pt;}
.fs4{font-size:161.280000pt;}
.fs3{font-size:161.408000pt;}
.fs0{font-size:282.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:79.328133pt;}
.y1d{bottom:87.776000pt;}
.y35{bottom:108.128133pt;}
.y1c{bottom:123.456267pt;}
.y34{bottom:136.933333pt;}
.y1b{bottom:141.533333pt;}
.y33{bottom:165.733333pt;}
.y1a{bottom:172.573333pt;}
.y19{bottom:190.653333pt;}
.y32{bottom:194.533333pt;}
.y18{bottom:226.973333pt;}
.y17{bottom:245.053333pt;}
.y31{bottom:262.880000pt;}
.y16{bottom:276.133333pt;}
.y15{bottom:294.213333pt;}
.y3c{bottom:340.573333pt;}
.y21{bottom:343.706667pt;}
.y1e{bottom:350.173333pt;}
.y3b{bottom:377.373333pt;}
.y20{bottom:380.506667pt;}
.y3d{bottom:421.280000pt;}
.y3a{bottom:441.186667pt;}
.y39{bottom:469.986667pt;}
.y1f{bottom:481.693333pt;}
.y38{bottom:498.786667pt;}
.y37{bottom:527.586667pt;}
.y12{bottom:547.386667pt;}
.y11{bottom:576.226667pt;}
.y30{bottom:601.533333pt;}
.y10{bottom:605.026667pt;}
.y2f{bottom:630.333333pt;}
.yf{bottom:633.826667pt;}
.y2e{bottom:659.133333pt;}
.ye{bottom:662.626667pt;}
.y2d{bottom:687.933333pt;}
.yd{bottom:691.426667pt;}
.y2c{bottom:716.733333pt;}
.yc{bottom:720.226667pt;}
.y3e{bottom:734.586667pt;}
.y2b{bottom:745.533333pt;}
.yb{bottom:749.026667pt;}
.y2a{bottom:774.333333pt;}
.ya{bottom:777.826667pt;}
.y29{bottom:803.173333pt;}
.y28{bottom:831.973333pt;}
.y9{bottom:835.426667pt;}
.y27{bottom:860.773333pt;}
.y8{bottom:864.253333pt;}
.y26{bottom:889.573333pt;}
.y7{bottom:893.053333pt;}
.y25{bottom:918.373333pt;}
.y6{bottom:921.853333pt;}
.y24{bottom:947.173333pt;}
.y5{bottom:950.653333pt;}
.y23{bottom:975.973333pt;}
.y4{bottom:979.453333pt;}
.y22{bottom:1004.773333pt;}
.y3{bottom:1008.253333pt;}
.y14{bottom:1064.893333pt;}
.y13{bottom:1065.186667pt;}
.y2{bottom:1180.800000pt;}
.y1{bottom:1266.213333pt;}
.h8{height:43.827500pt;}
.ha{height:46.625000pt;}
.h5{height:69.890625pt;}
.h4{height:69.937500pt;}
.h9{height:70.030750pt;}
.h3{height:88.121250pt;}
.h7{height:117.416250pt;}
.h6{height:117.509438pt;}
.h2{height:206.082500pt;}
.h0{height:1360.640000pt;}
.h1{height:1360.666667pt;}
.w1{width:2418.666667pt;}
.w0{width:2418.880000pt;}
.x0{left:0.000000pt;}
.x1{left:45.312000pt;}
.x2{left:51.488000pt;}
.x3{left:54.016133pt;}
.xc{left:58.304133pt;}
.xe{left:256.066667pt;}
.x8{left:472.133333pt;}
.xb{left:513.573333pt;}
.x5{left:520.960000pt;}
.x9{left:600.293333pt;}
.x6{left:1227.226667pt;}
.xd{left:1235.493333pt;}
.x4{left:1593.853333pt;}
.xf{left:1673.306667pt;}
.x7{left:1689.600000pt;}
.xa{left:1993.853333pt;}
}




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