
    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_a61d74b5e0966a663473b8e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_3e3b66160822ccdaa6905b31.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_611246bfdc6299d58a1e85b0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a4aed05a491150d4c6fa3ede.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_db88e94ad7a18a1a8faedb0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_75f52acb0801d4f81e406968.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_0b64110c0a81557733bfd4b8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_70405d11d8b02d6b9faa07ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_b01d6a064fe5f7b314af4320.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.091073px;}
.ls5{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.015120px;}
.ls0{letter-spacing:0.215033px;}
.ls6{letter-spacing:2.160000px;}
.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:-18.671671px;}
.ws1{word-spacing:-18.365566px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws3{word-spacing:-13.447440px;}
.ws2{word-spacing:-13.229520px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-5.328000px;}
._13{margin-left:-4.248000px;}
._c{margin-left:-2.520000px;}
._1{margin-left:-1.157760px;}
._0{width:1.434240px;}
._d{width:2.687040px;}
._7{width:4.032000px;}
._5{width:5.693760px;}
._4{width:6.696000px;}
._3{width:8.400000px;}
._f{width:9.509760px;}
._6{width:10.512000px;}
._8{width:11.520000px;}
._9{width:13.379520px;}
._12{width:14.760000px;}
._e{width:16.272000px;}
._a{width:19.008000px;}
._b{width:20.021760px;}
._15{width:21.605760px;}
._17{width:23.256000px;}
._18{width:24.276000px;}
._1a{width:25.416000px;}
._1b{width:26.579520px;}
._14{width:27.648000px;}
._1c{width:29.160000px;}
._1d{width:30.257280px;}
._16{width:34.992000px;}
._10{width:37.008000px;}
._11{width:38.280000px;}
._2{width:1499.025840px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:31.896000px;}
.y9{bottom:51.516000px;}
.y28{bottom:117.216000px;}
.y5b{bottom:129.276000px;}
.y43{bottom:141.156000px;}
.y5f{bottom:142.236000px;}
.y27{bottom:148.356000px;}
.y58{bottom:153.210000px;}
.y5a{bottom:160.230000px;}
.y42{bottom:172.290000px;}
.y35{bottom:179.310000px;}
.y57{bottom:184.350000px;}
.y26{bottom:191.370000px;}
.y41{bottom:203.250000px;}
.y5e{bottom:211.890000px;}
.y56{bottom:215.310000px;}
.y25{bottom:222.330000px;}
.y5d{bottom:232.590000px;}
.y40{bottom:234.390000px;}
.y55{bottom:246.450000px;}
.y5c{bottom:253.290000px;}
.y24{bottom:253.470000px;}
.y3f{bottom:265.350000px;}
.y54{bottom:277.410000px;}
.y23{bottom:284.475000px;}
.y3e{bottom:296.535000px;}
.y53{bottom:308.595000px;}
.y22{bottom:315.615000px;}
.y3d{bottom:327.495000px;}
.y52{bottom:339.555000px;}
.y21{bottom:346.575000px;}
.y3c{bottom:358.635000px;}
.y51{bottom:370.515000px;}
.y20{bottom:377.715000px;}
.y3b{bottom:389.595000px;}
.y50{bottom:401.655000px;}
.y1f{bottom:408.675000px;}
.y3a{bottom:420.735000px;}
.y4f{bottom:432.615000px;}
.y1e{bottom:439.815000px;}
.y34{bottom:451.695000px;}
.y4e{bottom:463.755000px;}
.y1d{bottom:470.775000px;}
.y33{bottom:482.835000px;}
.y4d{bottom:494.715000px;}
.y1c{bottom:501.915000px;}
.y32{bottom:513.795000px;}
.y4c{bottom:525.855000px;}
.y1b{bottom:544.935000px;}
.y4b{bottom:556.815000px;}
.y1a{bottom:575.925000px;}
.y39{bottom:587.985000px;}
.y19{bottom:607.065000px;}
.y38{bottom:618.945000px;}
.y18{bottom:638.025000px;}
.y37{bottom:650.085000px;}
.y17{bottom:669.165000px;}
.y36{bottom:681.045000px;}
.y16{bottom:700.125000px;}
.y31{bottom:712.185000px;}
.y4a{bottom:724.065000px;}
.y15{bottom:731.265000px;}
.y30{bottom:743.145000px;}
.y49{bottom:755.205000px;}
.y14{bottom:762.225000px;}
.y2f{bottom:774.285000px;}
.y48{bottom:786.165000px;}
.y13{bottom:793.365000px;}
.y2e{bottom:805.245000px;}
.y47{bottom:817.305000px;}
.y12{bottom:836.385000px;}
.y46{bottom:848.310000px;}
.y11{bottom:867.390000px;}
.y45{bottom:879.450000px;}
.y10{bottom:898.530000px;}
.y44{bottom:910.410000px;}
.yf{bottom:929.490000px;}
.y2d{bottom:941.550000px;}
.ye{bottom:960.630000px;}
.y2c{bottom:972.510000px;}
.y59{bottom:991.590000px;}
.yd{bottom:1003.290000px;}
.y2b{bottom:1003.650000px;}
.yc{bottom:1034.250000px;}
.y2a{bottom:1034.610000px;}
.yb{bottom:1065.390000px;}
.y29{bottom:1065.750000px;}
.y8{bottom:1106.070000px;}
.y7{bottom:1119.930000px;}
.y6{bottom:1133.640000px;}
.y5{bottom:1147.500000px;}
.y4{bottom:1161.720000px;}
.y3{bottom:1179.720000px;}
.y2{bottom:1197.900000px;}
.y1{bottom:1215.900000px;}
.h4{height:48.616875px;}
.h2{height:48.905156px;}
.h5{height:50.312812px;}
.h3{height:51.550046px;}
.h6{height:59.439023px;}
.ha{height:64.546875px;}
.h7{height:65.884219px;}
.hb{height:70.628906px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:31.860000px;}
.x6{left:127.656000px;}
.x7{left:180.750000px;}
.x2{left:337.575000px;}
.x1{left:340.455000px;}
.xa{left:572.325000px;}
.x9{left:616.965000px;}
.x8{left:630.825000px;}
.x3{left:675.690000px;}
.x5{left:764.070000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.080953pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013440pt;}
.ls0{letter-spacing:0.191140pt;}
.ls6{letter-spacing:1.920000pt;}
.ws0{word-spacing:-16.597041pt;}
.ws1{word-spacing:-16.324948pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws3{word-spacing:-11.953280pt;}
.ws2{word-spacing:-11.759573pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-4.736000pt;}
._13{margin-left:-3.776000pt;}
._c{margin-left:-2.240000pt;}
._1{margin-left:-1.029120pt;}
._0{width:1.274880pt;}
._d{width:2.388480pt;}
._7{width:3.584000pt;}
._5{width:5.061120pt;}
._4{width:5.952000pt;}
._3{width:7.466667pt;}
._f{width:8.453120pt;}
._6{width:9.344000pt;}
._8{width:10.240000pt;}
._9{width:11.892907pt;}
._12{width:13.120000pt;}
._e{width:14.464000pt;}
._a{width:16.896000pt;}
._b{width:17.797120pt;}
._15{width:19.205120pt;}
._17{width:20.672000pt;}
._18{width:21.578667pt;}
._1a{width:22.592000pt;}
._1b{width:23.626240pt;}
._14{width:24.576000pt;}
._1c{width:25.920000pt;}
._1d{width:26.895360pt;}
._16{width:31.104000pt;}
._10{width:32.896000pt;}
._11{width:34.026667pt;}
._2{width:1332.467413pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:28.352000pt;}
.y9{bottom:45.792000pt;}
.y28{bottom:104.192000pt;}
.y5b{bottom:114.912000pt;}
.y43{bottom:125.472000pt;}
.y5f{bottom:126.432000pt;}
.y27{bottom:131.872000pt;}
.y58{bottom:136.186667pt;}
.y5a{bottom:142.426667pt;}
.y42{bottom:153.146667pt;}
.y35{bottom:159.386667pt;}
.y57{bottom:163.866667pt;}
.y26{bottom:170.106667pt;}
.y41{bottom:180.666667pt;}
.y5e{bottom:188.346667pt;}
.y56{bottom:191.386667pt;}
.y25{bottom:197.626667pt;}
.y5d{bottom:206.746667pt;}
.y40{bottom:208.346667pt;}
.y55{bottom:219.066667pt;}
.y5c{bottom:225.146667pt;}
.y24{bottom:225.306667pt;}
.y3f{bottom:235.866667pt;}
.y54{bottom:246.586667pt;}
.y23{bottom:252.866667pt;}
.y3e{bottom:263.586667pt;}
.y53{bottom:274.306667pt;}
.y22{bottom:280.546667pt;}
.y3d{bottom:291.106667pt;}
.y52{bottom:301.826667pt;}
.y21{bottom:308.066667pt;}
.y3c{bottom:318.786667pt;}
.y51{bottom:329.346667pt;}
.y20{bottom:335.746667pt;}
.y3b{bottom:346.306667pt;}
.y50{bottom:357.026667pt;}
.y1f{bottom:363.266667pt;}
.y3a{bottom:373.986667pt;}
.y4f{bottom:384.546667pt;}
.y1e{bottom:390.946667pt;}
.y34{bottom:401.506667pt;}
.y4e{bottom:412.226667pt;}
.y1d{bottom:418.466667pt;}
.y33{bottom:429.186667pt;}
.y4d{bottom:439.746667pt;}
.y1c{bottom:446.146667pt;}
.y32{bottom:456.706667pt;}
.y4c{bottom:467.426667pt;}
.y1b{bottom:484.386667pt;}
.y4b{bottom:494.946667pt;}
.y1a{bottom:511.933333pt;}
.y39{bottom:522.653333pt;}
.y19{bottom:539.613333pt;}
.y38{bottom:550.173333pt;}
.y18{bottom:567.133333pt;}
.y37{bottom:577.853333pt;}
.y17{bottom:594.813333pt;}
.y36{bottom:605.373333pt;}
.y16{bottom:622.333333pt;}
.y31{bottom:633.053333pt;}
.y4a{bottom:643.613333pt;}
.y15{bottom:650.013333pt;}
.y30{bottom:660.573333pt;}
.y49{bottom:671.293333pt;}
.y14{bottom:677.533333pt;}
.y2f{bottom:688.253333pt;}
.y48{bottom:698.813333pt;}
.y13{bottom:705.213333pt;}
.y2e{bottom:715.773333pt;}
.y47{bottom:726.493333pt;}
.y12{bottom:743.453333pt;}
.y46{bottom:754.053333pt;}
.y11{bottom:771.013333pt;}
.y45{bottom:781.733333pt;}
.y10{bottom:798.693333pt;}
.y44{bottom:809.253333pt;}
.yf{bottom:826.213333pt;}
.y2d{bottom:836.933333pt;}
.ye{bottom:853.893333pt;}
.y2c{bottom:864.453333pt;}
.y59{bottom:881.413333pt;}
.yd{bottom:891.813333pt;}
.y2b{bottom:892.133333pt;}
.yc{bottom:919.333333pt;}
.y2a{bottom:919.653333pt;}
.yb{bottom:947.013333pt;}
.y29{bottom:947.333333pt;}
.y8{bottom:983.173333pt;}
.y7{bottom:995.493333pt;}
.y6{bottom:1007.680000pt;}
.y5{bottom:1020.000000pt;}
.y4{bottom:1032.640000pt;}
.y3{bottom:1048.640000pt;}
.y2{bottom:1064.800000pt;}
.y1{bottom:1080.800000pt;}
.h4{height:43.215000pt;}
.h2{height:43.471250pt;}
.h5{height:44.722500pt;}
.h3{height:45.822263pt;}
.h6{height:52.834688pt;}
.ha{height:57.375000pt;}
.h7{height:58.563750pt;}
.hb{height:62.781250pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:28.320000pt;}
.x6{left:113.472000pt;}
.x7{left:160.666667pt;}
.x2{left:300.066667pt;}
.x1{left:302.626667pt;}
.xa{left:508.733333pt;}
.x9{left:548.413333pt;}
.x8{left:560.733333pt;}
.x3{left:600.613333pt;}
.x5{left:679.173333pt;}
}




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