
    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_97f1089b23bcf20307b167c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_ec2e156a7f62dadf564bd01a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_fc59c8a1dd7b0df8dafb9ca7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_2f60990ab963d1f835e4bfa9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_e60354f660baf650c45ce1dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_590beda6957e5a6fe564414f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_ecc15e845e953dbe8ba7df13.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936523;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;}
.ls0{letter-spacing:0.000000px;}
.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:-124.796100px;}
.ws6{word-spacing:-109.199532px;}
.ws1{word-spacing:-43.677504px;}
.ws3{word-spacing:-41.697164px;}
.ws2{word-spacing:-38.997348px;}
.ws4{word-spacing:-38.356828px;}
.ws5{word-spacing:-33.352661px;}
.ws8{word-spacing:-25.095894px;}
.wsa{word-spacing:0.000000px;}
.ws7{word-spacing:1092.000906px;}
.ws9{word-spacing:1346.760318px;}
._3{margin-left:-47.008195px;}
._4{margin-left:-45.797869px;}
._0{margin-left:-23.980675px;}
._1{margin-left:-7.723825px;}
._5{margin-left:-5.076863px;}
._2{margin-left:-1.041799px;}
._7{width:1427.311713px;}
._8{width:2194.606212px;}
._6{width:2418.258256px;}
._9{width:3050.382012px;}
.fc2{color:rgb(61,63,67);}
.fc1{color:rgb(227,146,47);}
.fc3{color:transparent;}
.fc0{color:rgb(6,5,4);}
.fsf{font-size:90.273000px;}
.fs9{font-size:107.958600px;}
.fs6{font-size:119.973600px;}
.fs8{font-size:131.989200px;}
.fs5{font-size:137.974200px;}
.fse{font-size:143.965200px;}
.fs1{font-size:144.004800px;}
.fsd{font-size:149.965200px;}
.fs4{font-size:149.989800px;}
.fs7{font-size:155.974800px;}
.fs3{font-size:167.990400px;}
.fs2{font-size:180.005400px;}
.fsb{font-size:239.992800px;}
.fsa{font-size:419.998200px;}
.fs0{font-size:479.985000px;}
.fsc{font-size:1200.006000px;}
.y0{bottom:0.000000px;}
.y48{bottom:8.346000px;}
.y23{bottom:21.375000px;}
.y20{bottom:22.500000px;}
.y2c{bottom:23.625000px;}
.y33{bottom:23.626500px;}
.y2a{bottom:24.750000px;}
.y2f{bottom:25.791000px;}
.y15{bottom:30.375000px;}
.y8{bottom:37.125000px;}
.y16{bottom:39.390000px;}
.yd{bottom:42.750000px;}
.y1c{bottom:42.765000px;}
.yb{bottom:43.785000px;}
.y28{bottom:43.875000px;}
.y45{bottom:44.190300px;}
.y19{bottom:46.125000px;}
.yf{bottom:47.250000px;}
.y5{bottom:55.126500px;}
.y35{bottom:57.375000px;}
.y31{bottom:57.376500px;}
.y2e{bottom:68.542500px;}
.y1f{bottom:69.750000px;}
.y12{bottom:74.251500px;}
.y47{bottom:74.347800px;}
.y14{bottom:77.640000px;}
.y36{bottom:79.002000px;}
.ya{bottom:86.535000px;}
.y7{bottom:87.765000px;}
.yc{bottom:90.000000px;}
.y1b{bottom:90.015000px;}
.y27{bottom:91.125000px;}
.y11{bottom:115.878000px;}
.y1e{bottom:117.000000px;}
.y46{bottom:126.349200px;}
.y4a{bottom:143.002800px;}
.y4b{bottom:144.702600px;}
.y49{bottom:197.094000px;}
.y38{bottom:828.748500px;}
.y41{bottom:919.687500px;}
.y2d{bottom:1052.715000px;}
.y22{bottom:1082.094000px;}
.y29{bottom:1215.559500px;}
.y30{bottom:1286.352000px;}
.y32{bottom:1286.475000px;}
.y10{bottom:1319.725500px;}
.y21{bottom:1344.852000px;}
.y4{bottom:1359.097500px;}
.y2b{bottom:1384.890000px;}
.y34{bottom:1587.765000px;}
.y13{bottom:1759.380000px;}
.y9{bottom:1760.895000px;}
.y6{bottom:1762.500000px;}
.y25{bottom:1975.995000px;}
.y26{bottom:1976.145000px;}
.ye{bottom:1976.730000px;}
.y1a{bottom:2012.760000px;}
.y17{bottom:2174.070000px;}
.y24{bottom:2178.225000px;}
.y1d{bottom:2252.685000px;}
.y18{bottom:2413.800000px;}
.y44{bottom:2626.080000px;}
.y3d{bottom:2631.705000px;}
.y43{bottom:2696.955000px;}
.y3c{bottom:2700.330000px;}
.y42{bottom:2767.830000px;}
.y3b{bottom:2768.955000px;}
.y3a{bottom:2838.705000px;}
.y39{bottom:2909.580000px;}
.y37{bottom:3002.400000px;}
.y40{bottom:3006.330000px;}
.y3f{bottom:3123.345000px;}
.y3{bottom:4171.395000px;}
.y2{bottom:4303.020000px;}
.y1{bottom:4434.660000px;}
.y3e{bottom:4619.415000px;}
.h21{height:65.412662px;}
.h17{height:67.502400px;}
.h11{height:68.627400px;}
.h14{height:70.877400px;}
.h19{height:80.968950px;}
.h10{height:86.933995px;}
.h15{height:95.640612px;}
.hd{height:99.977399px;}
.h18{height:100.128000px;}
.h16{height:100.128450px;}
.h20{height:104.318534px;}
.h3{height:104.347228px;}
.h1e{height:108.666190px;}
.h1f{height:108.668590px;}
.hb{height:108.684015px;}
.h8{height:114.762703px;}
.h12{height:119.342047px;}
.he{height:123.754050px;}
.h9{height:127.129050px;}
.h7{height:128.535623px;}
.h2{height:135.004050px;}
.h5{height:137.728741px;}
.hc{height:140.629650px;}
.h1d{height:160.559700px;}
.h4{height:160.881000px;}
.h6{height:164.256000px;}
.h13{height:167.631000px;}
.hf{height:172.131000px;}
.h1b{height:173.901033px;}
.ha{height:213.756000px;}
.h1a{height:319.100195px;}
.h1{height:367.254148px;}
.h1c{height:918.168653px;}
.h0{height:5055.750000px;}
.wd{width:201.381000px;}
.w2{width:245.257500px;}
.wc{width:265.509000px;}
.w8{width:295.884000px;}
.we{width:297.009000px;}
.w3{width:321.760500px;}
.w4{width:324.010500px;}
.wb{width:405.013500px;}
.w6{width:492.765000px;}
.w9{width:497.266500px;}
.w5{width:500.640000px;}
.wa{width:534.391500px;}
.w7{width:617.644500px;}
.wf{width:1637.280000px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x33{left:12.586500px;}
.x29{left:22.635000px;}
.x16{left:26.130000px;}
.xb{left:29.304000px;}
.xe{left:38.115000px;}
.x1a{left:39.660000px;}
.x17{left:41.310000px;}
.x1c{left:49.785000px;}
.x10{left:51.240000px;}
.x8{left:54.231000px;}
.x13{left:61.080000px;}
.x2b{left:63.135000px;}
.x7{left:68.065500px;}
.x31{left:70.156500px;}
.x27{left:72.255000px;}
.xa{left:75.378000px;}
.x5{left:83.674500px;}
.x15{left:89.655000px;}
.x28{left:99.315000px;}
.x12{left:101.715000px;}
.x24{left:108.675000px;}
.x19{left:113.775000px;}
.x26{left:121.695000px;}
.xd{left:123.195000px;}
.x2c{left:132.135000px;}
.x3b{left:152.640000px;}
.x3a{left:176.587500px;}
.x21{left:192.276000px;}
.x20{left:268.180500px;}
.x1e{left:270.501000px;}
.x6{left:300.784500px;}
.x3c{left:357.324000px;}
.x39{left:436.612500px;}
.x37{left:456.316500px;}
.x3f{left:523.441500px;}
.x40{left:639.681000px;}
.x30{left:780.744000px;}
.x1d{left:870.246000px;}
.x1f{left:873.025500px;}
.x2{left:973.219500px;}
.x9{left:1020.888000px;}
.x4{left:1056.160500px;}
.x1{left:1099.170000px;}
.x3e{left:1117.462500px;}
.x32{left:1307.505000px;}
.x3{left:1481.137500px;}
.xc{left:1516.080000px;}
.x22{left:1556.340000px;}
.x2d{left:1573.095000px;}
.x41{left:1599.390000px;}
.x3d{left:1682.700000px;}
.x23{left:1687.395000px;}
.x2a{left:1986.825000px;}
.x14{left:2076.345000px;}
.x2e{left:2222.445000px;}
.x38{left:2357.910000px;}
.x18{left:2615.175000px;}
.x1b{left:2619.090000px;}
.x11{left:2703.465000px;}
.x34{left:2717.220000px;}
.x36{left:2811.315000px;}
.x35{left:2970.900000px;}
.x25{left:3157.725000px;}
.xf{left:3163.320000px;}
.x2f{left:3177.030000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-110.929867pt;}
.ws6{word-spacing:-97.066251pt;}
.ws1{word-spacing:-38.824448pt;}
.ws3{word-spacing:-37.064146pt;}
.ws2{word-spacing:-34.664309pt;}
.ws4{word-spacing:-34.094958pt;}
.ws5{word-spacing:-29.646810pt;}
.ws8{word-spacing:-22.307461pt;}
.wsa{word-spacing:0.000000pt;}
.ws7{word-spacing:970.667472pt;}
.ws9{word-spacing:1197.120283pt;}
._3{margin-left:-41.785062pt;}
._4{margin-left:-40.709217pt;}
._0{margin-left:-21.316155pt;}
._1{margin-left:-6.865622pt;}
._5{margin-left:-4.512767pt;}
._2{margin-left:-0.926043pt;}
._7{width:1268.721522pt;}
._8{width:1950.761077pt;}
._6{width:2149.562895pt;}
._9{width:2711.450677pt;}
.fsf{font-size:80.242667pt;}
.fs9{font-size:95.963200pt;}
.fs6{font-size:106.643200pt;}
.fs8{font-size:117.323733pt;}
.fs5{font-size:122.643733pt;}
.fse{font-size:127.969067pt;}
.fs1{font-size:128.004267pt;}
.fsd{font-size:133.302400pt;}
.fs4{font-size:133.324267pt;}
.fs7{font-size:138.644267pt;}
.fs3{font-size:149.324800pt;}
.fs2{font-size:160.004800pt;}
.fsb{font-size:213.326933pt;}
.fsa{font-size:373.331733pt;}
.fs0{font-size:426.653333pt;}
.fsc{font-size:1066.672000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:7.418667pt;}
.y23{bottom:19.000000pt;}
.y20{bottom:20.000000pt;}
.y2c{bottom:21.000000pt;}
.y33{bottom:21.001333pt;}
.y2a{bottom:22.000000pt;}
.y2f{bottom:22.925333pt;}
.y15{bottom:27.000000pt;}
.y8{bottom:33.000000pt;}
.y16{bottom:35.013333pt;}
.yd{bottom:38.000000pt;}
.y1c{bottom:38.013333pt;}
.yb{bottom:38.920000pt;}
.y28{bottom:39.000000pt;}
.y45{bottom:39.280267pt;}
.y19{bottom:41.000000pt;}
.yf{bottom:42.000000pt;}
.y5{bottom:49.001333pt;}
.y35{bottom:51.000000pt;}
.y31{bottom:51.001333pt;}
.y2e{bottom:60.926667pt;}
.y1f{bottom:62.000000pt;}
.y12{bottom:66.001333pt;}
.y47{bottom:66.086933pt;}
.y14{bottom:69.013333pt;}
.y36{bottom:70.224000pt;}
.ya{bottom:76.920000pt;}
.y7{bottom:78.013333pt;}
.yc{bottom:80.000000pt;}
.y1b{bottom:80.013333pt;}
.y27{bottom:81.000000pt;}
.y11{bottom:103.002667pt;}
.y1e{bottom:104.000000pt;}
.y46{bottom:112.310400pt;}
.y4a{bottom:127.113600pt;}
.y4b{bottom:128.624533pt;}
.y49{bottom:175.194667pt;}
.y38{bottom:736.665333pt;}
.y41{bottom:817.500000pt;}
.y2d{bottom:935.746667pt;}
.y22{bottom:961.861333pt;}
.y29{bottom:1080.497333pt;}
.y30{bottom:1143.424000pt;}
.y32{bottom:1143.533333pt;}
.y10{bottom:1173.089333pt;}
.y21{bottom:1195.424000pt;}
.y4{bottom:1208.086667pt;}
.y2b{bottom:1231.013333pt;}
.y34{bottom:1411.346667pt;}
.y13{bottom:1563.893333pt;}
.y9{bottom:1565.240000pt;}
.y6{bottom:1566.666667pt;}
.y25{bottom:1756.440000pt;}
.y26{bottom:1756.573333pt;}
.ye{bottom:1757.093333pt;}
.y1a{bottom:1789.120000pt;}
.y17{bottom:1932.506667pt;}
.y24{bottom:1936.200000pt;}
.y1d{bottom:2002.386667pt;}
.y18{bottom:2145.600000pt;}
.y44{bottom:2334.293333pt;}
.y3d{bottom:2339.293333pt;}
.y43{bottom:2397.293333pt;}
.y3c{bottom:2400.293333pt;}
.y42{bottom:2460.293333pt;}
.y3b{bottom:2461.293333pt;}
.y3a{bottom:2523.293333pt;}
.y39{bottom:2586.293333pt;}
.y37{bottom:2668.800000pt;}
.y40{bottom:2672.293333pt;}
.y3f{bottom:2776.306667pt;}
.y3{bottom:3707.906667pt;}
.y2{bottom:3824.906667pt;}
.y1{bottom:3941.920000pt;}
.y3e{bottom:4106.146667pt;}
.h21{height:58.144589pt;}
.h17{height:60.002133pt;}
.h11{height:61.002133pt;}
.h14{height:63.002133pt;}
.h19{height:71.972400pt;}
.h10{height:77.274662pt;}
.h15{height:85.013877pt;}
.hd{height:88.868799pt;}
.h18{height:89.002667pt;}
.h16{height:89.003067pt;}
.h20{height:92.727585pt;}
.h3{height:92.753092pt;}
.h1e{height:96.592169pt;}
.h1f{height:96.594302pt;}
.hb{height:96.608014pt;}
.h8{height:102.011292pt;}
.h12{height:106.081819pt;}
.he{height:110.003600pt;}
.h9{height:113.003600pt;}
.h7{height:114.253887pt;}
.h2{height:120.003600pt;}
.h5{height:122.425548pt;}
.hc{height:125.004133pt;}
.h1d{height:142.719733pt;}
.h4{height:143.005333pt;}
.h6{height:146.005333pt;}
.h13{height:149.005333pt;}
.hf{height:153.005333pt;}
.h1b{height:154.578696pt;}
.ha{height:190.005333pt;}
.h1a{height:283.644618pt;}
.h1{height:326.448132pt;}
.h1c{height:816.149914pt;}
.h0{height:4494.000000pt;}
.wd{width:179.005333pt;}
.w2{width:218.006667pt;}
.wc{width:236.008000pt;}
.w8{width:263.008000pt;}
.we{width:264.008000pt;}
.w3{width:286.009333pt;}
.w4{width:288.009333pt;}
.wb{width:360.012000pt;}
.w6{width:438.013333pt;}
.w9{width:442.014667pt;}
.w5{width:445.013333pt;}
.wa{width:475.014667pt;}
.w7{width:549.017333pt;}
.wf{width:1455.360000pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x33{left:11.188000pt;}
.x29{left:20.120000pt;}
.x16{left:23.226667pt;}
.xb{left:26.048000pt;}
.xe{left:33.880000pt;}
.x1a{left:35.253333pt;}
.x17{left:36.720000pt;}
.x1c{left:44.253333pt;}
.x10{left:45.546667pt;}
.x8{left:48.205333pt;}
.x13{left:54.293333pt;}
.x2b{left:56.120000pt;}
.x7{left:60.502667pt;}
.x31{left:62.361333pt;}
.x27{left:64.226667pt;}
.xa{left:67.002667pt;}
.x5{left:74.377333pt;}
.x15{left:79.693333pt;}
.x28{left:88.280000pt;}
.x12{left:90.413333pt;}
.x24{left:96.600000pt;}
.x19{left:101.133333pt;}
.x26{left:108.173333pt;}
.xd{left:109.506667pt;}
.x2c{left:117.453333pt;}
.x3b{left:135.680000pt;}
.x3a{left:156.966667pt;}
.x21{left:170.912000pt;}
.x20{left:238.382667pt;}
.x1e{left:240.445333pt;}
.x6{left:267.364000pt;}
.x3c{left:317.621333pt;}
.x39{left:388.100000pt;}
.x37{left:405.614667pt;}
.x3f{left:465.281333pt;}
.x40{left:568.605333pt;}
.x30{left:693.994667pt;}
.x1d{left:773.552000pt;}
.x1f{left:776.022667pt;}
.x2{left:865.084000pt;}
.x9{left:907.456000pt;}
.x4{left:938.809333pt;}
.x1{left:977.040000pt;}
.x3e{left:993.300000pt;}
.x32{left:1162.226667pt;}
.x3{left:1316.566667pt;}
.xc{left:1347.626667pt;}
.x22{left:1383.413333pt;}
.x2d{left:1398.306667pt;}
.x41{left:1421.680000pt;}
.x3d{left:1495.733333pt;}
.x23{left:1499.906667pt;}
.x2a{left:1766.066667pt;}
.x14{left:1845.640000pt;}
.x2e{left:1975.506667pt;}
.x38{left:2095.920000pt;}
.x18{left:2324.600000pt;}
.x1b{left:2328.080000pt;}
.x11{left:2403.080000pt;}
.x34{left:2415.306667pt;}
.x36{left:2498.946667pt;}
.x35{left:2640.800000pt;}
.x25{left:2806.866667pt;}
.xf{left:2811.840000pt;}
.x2f{left:2824.026667pt;}
}




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