
    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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_9968e768887fcc9bd62b0b23.woff')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_c53aba278ac448c4ba8046c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_7d70abf977b296673764e709.woff')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_0b96d7db18701687ecd8f1e2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932617;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_cf745efdce1d48aa9da78d82.woff')format("woff");}.ff6{font-family:ff6;line-height:1.008301;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_8bb2387e87aa21f0c586cb0d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.008301;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_a50a9803b762ca251fb633f6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_db62fd95f68793831e6b2548.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_542303f3c3ee47484dcacb3d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.010254;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:ffb;src:url('chunks/assets/font_414f8da77572f758e323a49b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a391d63cf6cbb1a92a9d1f31.woff')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.lsf{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.555600px;}
.lsa{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.374400px;}
.ls5{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.152400px;}
.ls8{letter-spacing:0.164400px;}
.ls2{letter-spacing:0.172800px;}
.lsd{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.305400px;}
.lsc{letter-spacing:6.785280px;}
.lse{letter-spacing:24.480000px;}
.lsb{letter-spacing:39.881280px;}
.ls0{letter-spacing:89.561280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-23.212800px;}
.ws1{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.724400px;}
.ws4{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.450800px;}
.ws9{word-spacing:-16.145400px;}
.ws8{word-spacing:-16.004400px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.347840px;}
._1{width:1.351440px;}
._e{width:2.990160px;}
._d{width:4.411440px;}
._12{width:6.448320px;}
._3{width:8.243040px;}
._2{width:9.472320px;}
._4{width:10.646400px;}
._10{width:11.808960px;}
._9{width:13.006080px;}
._8{width:14.241600px;}
._a{width:15.456960px;}
._11{width:17.686080px;}
._f{width:19.077120px;}
._7{width:20.689920px;}
._6{width:21.792960px;}
._18{width:22.898880px;}
._16{width:24.045120px;}
._1b{width:25.966080px;}
._21{width:26.971200px;}
._17{width:27.999360px;}
._5{width:29.145600px;}
._14{width:30.271680px;}
._20{width:31.337280px;}
._15{width:32.391360px;}
._1f{width:33.782400px;}
._1c{width:35.239680px;}
._1d{width:36.299520px;}
._13{width:37.912320px;}
._1e{width:43.079040px;}
._b{width:44.447040px;}
._c{width:45.840480px;}
._25{width:51.799680px;}
._24{width:52.948800px;}
._29{width:54.515520px;}
._1a{width:57.568320px;}
._19{width:59.086080px;}
._26{width:63.060480px;}
._23{width:65.180160px;}
._22{width:67.452480px;}
._27{width:99.823680px;}
._28{width:101.466720px;}
._2a{width:143.002080px;}
._2b{width:144.058080px;}
.fc2{color:rgb(40,51,61);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:58.680000px;}
.y5{bottom:80.640000px;}
.y94{bottom:115.380000px;}
.y2f{bottom:127.260000px;}
.yc0{bottom:129.600000px;}
.y93{bottom:135.900000px;}
.y2e{bottom:147.780000px;}
.yc8{bottom:149.400000px;}
.yb8{bottom:149.940000px;}
.y69{bottom:152.100000px;}
.y92{bottom:156.420000px;}
.y2d{bottom:168.300000px;}
.yc7{bottom:169.920000px;}
.yb7{bottom:170.460000px;}
.y68{bottom:172.620000px;}
.y91{bottom:176.940000px;}
.y2c{bottom:188.490000px;}
.yc6{bottom:190.470000px;}
.yb6{bottom:191.010000px;}
.y67{bottom:193.170000px;}
.y90{bottom:197.490000px;}
.y2b{bottom:208.830000px;}
.y74{bottom:210.270000px;}
.yc5{bottom:210.990000px;}
.yb5{bottom:211.530000px;}
.y66{bottom:213.690000px;}
.y8f{bottom:218.010000px;}
.y2a{bottom:229.350000px;}
.y73{bottom:230.790000px;}
.yc4{bottom:231.510000px;}
.yb4{bottom:232.050000px;}
.y65{bottom:234.210000px;}
.yba{bottom:238.350000px;}
.y8e{bottom:238.530000px;}
.y29{bottom:249.510000px;}
.y72{bottom:251.310000px;}
.yc3{bottom:252.030000px;}
.yb3{bottom:252.570000px;}
.y64{bottom:254.730000px;}
.y8d{bottom:258.870000px;}
.y28{bottom:269.490000px;}
.y71{bottom:271.830000px;}
.yc2{bottom:272.370000px;}
.yb2{bottom:273.090000px;}
.y63{bottom:275.250000px;}
.y8c{bottom:279.390000px;}
.y27{bottom:289.470000px;}
.y70{bottom:292.350000px;}
.y50{bottom:292.890000px;}
.yb1{bottom:293.610000px;}
.y62{bottom:295.770000px;}
.y8b{bottom:299.910000px;}
.y26{bottom:309.450000px;}
.y6f{bottom:312.870000px;}
.y4f{bottom:313.410000px;}
.yb0{bottom:314.130000px;}
.y61{bottom:316.290000px;}
.y8a{bottom:320.430000px;}
.y25{bottom:329.790000px;}
.y6e{bottom:333.390000px;}
.y4e{bottom:333.930000px;}
.yaf{bottom:334.110000px;}
.ybf{bottom:334.650000px;}
.y60{bottom:336.810000px;}
.y89{bottom:340.950000px;}
.y24{bottom:349.590000px;}
.y6d{bottom:353.910000px;}
.y4d{bottom:354.450000px;}
.ybe{bottom:355.170000px;}
.y5f{bottom:357.150000px;}
.y88{bottom:361.470000px;}
.y23{bottom:369.570000px;}
.y6c{bottom:374.430000px;}
.y4c{bottom:374.970000px;}
.ybd{bottom:375.510000px;}
.y5e{bottom:377.670000px;}
.y87{bottom:381.990000px;}
.y22{bottom:389.370000px;}
.y6b{bottom:394.950000px;}
.y4b{bottom:395.490000px;}
.ybc{bottom:395.670000px;}
.y5d{bottom:398.190000px;}
.y86{bottom:402.510000px;}
.y21{bottom:409.395000px;}
.y6a{bottom:415.335000px;}
.y4a{bottom:415.515000px;}
.yae{bottom:416.055000px;}
.y5c{bottom:418.755000px;}
.y85{bottom:423.075000px;}
.y20{bottom:429.195000px;}
.y49{bottom:435.855000px;}
.yad{bottom:436.575000px;}
.y5b{bottom:439.275000px;}
.y84{bottom:443.595000px;}
.y1f{bottom:449.175000px;}
.y48{bottom:456.375000px;}
.yac{bottom:457.095000px;}
.y5a{bottom:459.795000px;}
.y83{bottom:464.115000px;}
.y1e{bottom:468.975000px;}
.y47{bottom:476.895000px;}
.yab{bottom:477.615000px;}
.y59{bottom:480.315000px;}
.y82{bottom:484.455000px;}
.y1d{bottom:488.955000px;}
.y46{bottom:497.415000px;}
.yaa{bottom:498.135000px;}
.yb9{bottom:499.575000px;}
.y58{bottom:500.835000px;}
.y81{bottom:504.975000px;}
.y1c{bottom:508.755000px;}
.y45{bottom:517.935000px;}
.ya9{bottom:518.475000px;}
.y57{bottom:521.355000px;}
.y80{bottom:525.495000px;}
.y1b{bottom:528.735000px;}
.y44{bottom:538.455000px;}
.ya8{bottom:538.995000px;}
.y56{bottom:541.875000px;}
.y7f{bottom:546.015000px;}
.y1a{bottom:548.535000px;}
.y43{bottom:558.975000px;}
.ya7{bottom:559.515000px;}
.y55{bottom:562.395000px;}
.y7e{bottom:566.535000px;}
.y19{bottom:568.515000px;}
.y42{bottom:579.495000px;}
.ya6{bottom:580.035000px;}
.y7d{bottom:587.055000px;}
.y18{bottom:588.315000px;}
.y54{bottom:596.235000px;}
.y41{bottom:600.015000px;}
.ya5{bottom:600.555000px;}
.y7c{bottom:607.575000px;}
.y17{bottom:608.295000px;}
.y53{bottom:616.215000px;}
.y40{bottom:620.535000px;}
.ya4{bottom:621.075000px;}
.y16{bottom:628.095000px;}
.y52{bottom:636.765000px;}
.y3f{bottom:641.085000px;}
.ya3{bottom:641.625000px;}
.y15{bottom:648.105000px;}
.y7b{bottom:648.645000px;}
.y51{bottom:651.885000px;}
.y3e{bottom:661.425000px;}
.ya2{bottom:662.145000px;}
.y14{bottom:667.905000px;}
.y7a{bottom:668.625000px;}
.y3d{bottom:681.945000px;}
.ya1{bottom:682.665000px;}
.y13{bottom:687.885000px;}
.y79{bottom:688.965000px;}
.y3c{bottom:702.465000px;}
.ya0{bottom:703.185000px;}
.y12{bottom:707.685000px;}
.y78{bottom:709.485000px;}
.y3b{bottom:722.985000px;}
.yc1{bottom:723.165000px;}
.y9f{bottom:723.705000px;}
.y11{bottom:727.665000px;}
.y77{bottom:730.005000px;}
.y3a{bottom:743.505000px;}
.y9e{bottom:744.045000px;}
.y10{bottom:747.465000px;}
.y76{bottom:750.525000px;}
.y39{bottom:764.025000px;}
.y9d{bottom:764.565000px;}
.y75{bottom:766.185000px;}
.yf{bottom:767.625000px;}
.y38{bottom:784.545000px;}
.y9c{bottom:785.085000px;}
.ye{bottom:791.565000px;}
.y37{bottom:805.065000px;}
.y9b{bottom:805.605000px;}
.yd{bottom:811.545000px;}
.y36{bottom:825.585000px;}
.y9a{bottom:826.125000px;}
.yc{bottom:831.525000px;}
.y35{bottom:846.105000px;}
.y99{bottom:846.645000px;}
.yb{bottom:851.325000px;}
.y34{bottom:866.670000px;}
.ybb{bottom:866.850000px;}
.y98{bottom:867.210000px;}
.ya{bottom:871.350000px;}
.y33{bottom:887.010000px;}
.y97{bottom:887.730000px;}
.y9{bottom:899.970000px;}
.y32{bottom:907.530000px;}
.y96{bottom:908.250000px;}
.y31{bottom:928.050000px;}
.y95{bottom:928.770000px;}
.y8{bottom:928.950000px;}
.y30{bottom:948.570000px;}
.y7{bottom:948.750000px;}
.y4{bottom:969.090000px;}
.y3{bottom:992.850000px;}
.y2{bottom:1018.950000px;}
.y1{bottom:1038.390000px;}
.h8{height:48.062812px;}
.h5{height:48.127500px;}
.h4{height:48.224531px;}
.h6{height:48.353906px;}
.h3{height:62.028281px;}
.h9{height:68.084282px;}
.h7{height:68.956875px;}
.h1{height:71.613281px;}
.h2{height:84.898125px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:105.156000px;}
.x6{left:108.036000px;}
.x14{left:111.636000px;}
.xf{left:118.116000px;}
.xd{left:124.416000px;}
.xe{left:135.036000px;}
.x17{left:162.030000px;}
.x7{left:174.630000px;}
.x2{left:195.510000px;}
.x3{left:203.790000px;}
.x11{left:265.710000px;}
.x16{left:270.075000px;}
.x13{left:281.955000px;}
.xb{left:367.635000px;}
.xa{left:385.995000px;}
.x8{left:387.075000px;}
.x9{left:407.955000px;}
.xc{left:427.035000px;}
.x4{left:459.105000px;}
.x1{left:556.125000px;}
.x12{left:621.330000px;}
.x10{left:663.450000px;}
.x15{left:773.970000px;}
.x5{left:785.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.493867pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.332800pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.135467pt;}
.ls8{letter-spacing:0.146133pt;}
.ls2{letter-spacing:0.153600pt;}
.lsd{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.271467pt;}
.lsc{letter-spacing:6.031360pt;}
.lse{letter-spacing:21.760000pt;}
.lsb{letter-spacing:35.450027pt;}
.ls0{letter-spacing:79.610027pt;}
.ws0{word-spacing:-20.633600pt;}
.ws1{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.866133pt;}
.ws4{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.622933pt;}
.ws9{word-spacing:-14.351467pt;}
.ws8{word-spacing:-14.226133pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.201280pt;}
._e{width:2.657920pt;}
._d{width:3.921280pt;}
._12{width:5.731840pt;}
._3{width:7.327147pt;}
._2{width:8.419840pt;}
._4{width:9.463467pt;}
._10{width:10.496853pt;}
._9{width:11.560960pt;}
._8{width:12.659200pt;}
._a{width:13.739520pt;}
._11{width:15.720960pt;}
._f{width:16.957440pt;}
._7{width:18.391040pt;}
._6{width:19.371520pt;}
._18{width:20.354560pt;}
._16{width:21.373440pt;}
._1b{width:23.080960pt;}
._21{width:23.974400pt;}
._17{width:24.888320pt;}
._5{width:25.907200pt;}
._14{width:26.908160pt;}
._20{width:27.855360pt;}
._15{width:28.792320pt;}
._1f{width:30.028800pt;}
._1c{width:31.324160pt;}
._1d{width:32.266240pt;}
._13{width:33.699840pt;}
._1e{width:38.292480pt;}
._b{width:39.508480pt;}
._c{width:40.747093pt;}
._25{width:46.044160pt;}
._24{width:47.065600pt;}
._29{width:48.458240pt;}
._1a{width:51.171840pt;}
._19{width:52.520960pt;}
._26{width:56.053760pt;}
._23{width:57.937920pt;}
._22{width:59.957760pt;}
._27{width:88.732160pt;}
._28{width:90.192640pt;}
._2a{width:127.112960pt;}
._2b{width:128.051627pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:52.160000pt;}
.y5{bottom:71.680000pt;}
.y94{bottom:102.560000pt;}
.y2f{bottom:113.120000pt;}
.yc0{bottom:115.200000pt;}
.y93{bottom:120.800000pt;}
.y2e{bottom:131.360000pt;}
.yc8{bottom:132.800000pt;}
.yb8{bottom:133.280000pt;}
.y69{bottom:135.200000pt;}
.y92{bottom:139.040000pt;}
.y2d{bottom:149.600000pt;}
.yc7{bottom:151.040000pt;}
.yb7{bottom:151.520000pt;}
.y68{bottom:153.440000pt;}
.y91{bottom:157.280000pt;}
.y2c{bottom:167.546667pt;}
.yc6{bottom:169.306667pt;}
.yb6{bottom:169.786667pt;}
.y67{bottom:171.706667pt;}
.y90{bottom:175.546667pt;}
.y2b{bottom:185.626667pt;}
.y74{bottom:186.906667pt;}
.yc5{bottom:187.546667pt;}
.yb5{bottom:188.026667pt;}
.y66{bottom:189.946667pt;}
.y8f{bottom:193.786667pt;}
.y2a{bottom:203.866667pt;}
.y73{bottom:205.146667pt;}
.yc4{bottom:205.786667pt;}
.yb4{bottom:206.266667pt;}
.y65{bottom:208.186667pt;}
.yba{bottom:211.866667pt;}
.y8e{bottom:212.026667pt;}
.y29{bottom:221.786667pt;}
.y72{bottom:223.386667pt;}
.yc3{bottom:224.026667pt;}
.yb3{bottom:224.506667pt;}
.y64{bottom:226.426667pt;}
.y8d{bottom:230.106667pt;}
.y28{bottom:239.546667pt;}
.y71{bottom:241.626667pt;}
.yc2{bottom:242.106667pt;}
.yb2{bottom:242.746667pt;}
.y63{bottom:244.666667pt;}
.y8c{bottom:248.346667pt;}
.y27{bottom:257.306667pt;}
.y70{bottom:259.866667pt;}
.y50{bottom:260.346667pt;}
.yb1{bottom:260.986667pt;}
.y62{bottom:262.906667pt;}
.y8b{bottom:266.586667pt;}
.y26{bottom:275.066667pt;}
.y6f{bottom:278.106667pt;}
.y4f{bottom:278.586667pt;}
.yb0{bottom:279.226667pt;}
.y61{bottom:281.146667pt;}
.y8a{bottom:284.826667pt;}
.y25{bottom:293.146667pt;}
.y6e{bottom:296.346667pt;}
.y4e{bottom:296.826667pt;}
.yaf{bottom:296.986667pt;}
.ybf{bottom:297.466667pt;}
.y60{bottom:299.386667pt;}
.y89{bottom:303.066667pt;}
.y24{bottom:310.746667pt;}
.y6d{bottom:314.586667pt;}
.y4d{bottom:315.066667pt;}
.ybe{bottom:315.706667pt;}
.y5f{bottom:317.466667pt;}
.y88{bottom:321.306667pt;}
.y23{bottom:328.506667pt;}
.y6c{bottom:332.826667pt;}
.y4c{bottom:333.306667pt;}
.ybd{bottom:333.786667pt;}
.y5e{bottom:335.706667pt;}
.y87{bottom:339.546667pt;}
.y22{bottom:346.106667pt;}
.y6b{bottom:351.066667pt;}
.y4b{bottom:351.546667pt;}
.ybc{bottom:351.706667pt;}
.y5d{bottom:353.946667pt;}
.y86{bottom:357.786667pt;}
.y21{bottom:363.906667pt;}
.y6a{bottom:369.186667pt;}
.y4a{bottom:369.346667pt;}
.yae{bottom:369.826667pt;}
.y5c{bottom:372.226667pt;}
.y85{bottom:376.066667pt;}
.y20{bottom:381.506667pt;}
.y49{bottom:387.426667pt;}
.yad{bottom:388.066667pt;}
.y5b{bottom:390.466667pt;}
.y84{bottom:394.306667pt;}
.y1f{bottom:399.266667pt;}
.y48{bottom:405.666667pt;}
.yac{bottom:406.306667pt;}
.y5a{bottom:408.706667pt;}
.y83{bottom:412.546667pt;}
.y1e{bottom:416.866667pt;}
.y47{bottom:423.906667pt;}
.yab{bottom:424.546667pt;}
.y59{bottom:426.946667pt;}
.y82{bottom:430.626667pt;}
.y1d{bottom:434.626667pt;}
.y46{bottom:442.146667pt;}
.yaa{bottom:442.786667pt;}
.yb9{bottom:444.066667pt;}
.y58{bottom:445.186667pt;}
.y81{bottom:448.866667pt;}
.y1c{bottom:452.226667pt;}
.y45{bottom:460.386667pt;}
.ya9{bottom:460.866667pt;}
.y57{bottom:463.426667pt;}
.y80{bottom:467.106667pt;}
.y1b{bottom:469.986667pt;}
.y44{bottom:478.626667pt;}
.ya8{bottom:479.106667pt;}
.y56{bottom:481.666667pt;}
.y7f{bottom:485.346667pt;}
.y1a{bottom:487.586667pt;}
.y43{bottom:496.866667pt;}
.ya7{bottom:497.346667pt;}
.y55{bottom:499.906667pt;}
.y7e{bottom:503.586667pt;}
.y19{bottom:505.346667pt;}
.y42{bottom:515.106667pt;}
.ya6{bottom:515.586667pt;}
.y7d{bottom:521.826667pt;}
.y18{bottom:522.946667pt;}
.y54{bottom:529.986667pt;}
.y41{bottom:533.346667pt;}
.ya5{bottom:533.826667pt;}
.y7c{bottom:540.066667pt;}
.y17{bottom:540.706667pt;}
.y53{bottom:547.746667pt;}
.y40{bottom:551.586667pt;}
.ya4{bottom:552.066667pt;}
.y16{bottom:558.306667pt;}
.y52{bottom:566.013333pt;}
.y3f{bottom:569.853333pt;}
.ya3{bottom:570.333333pt;}
.y15{bottom:576.093333pt;}
.y7b{bottom:576.573333pt;}
.y51{bottom:579.453333pt;}
.y3e{bottom:587.933333pt;}
.ya2{bottom:588.573333pt;}
.y14{bottom:593.693333pt;}
.y7a{bottom:594.333333pt;}
.y3d{bottom:606.173333pt;}
.ya1{bottom:606.813333pt;}
.y13{bottom:611.453333pt;}
.y79{bottom:612.413333pt;}
.y3c{bottom:624.413333pt;}
.ya0{bottom:625.053333pt;}
.y12{bottom:629.053333pt;}
.y78{bottom:630.653333pt;}
.y3b{bottom:642.653333pt;}
.yc1{bottom:642.813333pt;}
.y9f{bottom:643.293333pt;}
.y11{bottom:646.813333pt;}
.y77{bottom:648.893333pt;}
.y3a{bottom:660.893333pt;}
.y9e{bottom:661.373333pt;}
.y10{bottom:664.413333pt;}
.y76{bottom:667.133333pt;}
.y39{bottom:679.133333pt;}
.y9d{bottom:679.613333pt;}
.y75{bottom:681.053333pt;}
.yf{bottom:682.333333pt;}
.y38{bottom:697.373333pt;}
.y9c{bottom:697.853333pt;}
.ye{bottom:703.613333pt;}
.y37{bottom:715.613333pt;}
.y9b{bottom:716.093333pt;}
.yd{bottom:721.373333pt;}
.y36{bottom:733.853333pt;}
.y9a{bottom:734.333333pt;}
.yc{bottom:739.133333pt;}
.y35{bottom:752.093333pt;}
.y99{bottom:752.573333pt;}
.yb{bottom:756.733333pt;}
.y34{bottom:770.373333pt;}
.ybb{bottom:770.533333pt;}
.y98{bottom:770.853333pt;}
.ya{bottom:774.533333pt;}
.y33{bottom:788.453333pt;}
.y97{bottom:789.093333pt;}
.y9{bottom:799.973333pt;}
.y32{bottom:806.693333pt;}
.y96{bottom:807.333333pt;}
.y31{bottom:824.933333pt;}
.y95{bottom:825.573333pt;}
.y8{bottom:825.733333pt;}
.y30{bottom:843.173333pt;}
.y7{bottom:843.333333pt;}
.y4{bottom:861.413333pt;}
.y3{bottom:882.533333pt;}
.y2{bottom:905.733333pt;}
.y1{bottom:923.013333pt;}
.h8{height:42.722500pt;}
.h5{height:42.780000pt;}
.h4{height:42.866250pt;}
.h6{height:42.981250pt;}
.h3{height:55.136250pt;}
.h9{height:60.519362pt;}
.h7{height:61.295000pt;}
.h1{height:63.656250pt;}
.h2{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:93.472000pt;}
.x6{left:96.032000pt;}
.x14{left:99.232000pt;}
.xf{left:104.992000pt;}
.xd{left:110.592000pt;}
.xe{left:120.032000pt;}
.x17{left:144.026667pt;}
.x7{left:155.226667pt;}
.x2{left:173.786667pt;}
.x3{left:181.146667pt;}
.x11{left:236.186667pt;}
.x16{left:240.066667pt;}
.x13{left:250.626667pt;}
.xb{left:326.786667pt;}
.xa{left:343.106667pt;}
.x8{left:344.066667pt;}
.x9{left:362.626667pt;}
.xc{left:379.586667pt;}
.x4{left:408.093333pt;}
.x1{left:494.333333pt;}
.x12{left:552.293333pt;}
.x10{left:589.733333pt;}
.x15{left:687.973333pt;}
.x5{left:698.053333pt;}
}




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