
    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_25e6e7c3a1976bd49eb7b7bc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b2acdd9676b6cd5f5bc1939b.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_0c8b0afff4a79e7b7d392811.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d1fe548c734b194486450811.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_93cf2cdbe4c812a8ed3b146d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.701172;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_ec09fb12dab4a35da8a5f328.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_3cd20f28d5f08b5a879213b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_16c89de845d7e2311701a163.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691406;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_a8b0f8e6c40d62c2ba73667d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-82.800000px;}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls24{letter-spacing:-2.160000px;}
.ls1e{letter-spacing:-1.512000px;}
.lse{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.774000px;}
.ls16{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.206400px;}
.ls1f{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.792000px;}
.ls23{letter-spacing:1.440000px;}
.ls1d{letter-spacing:3.060000px;}
.ls8{letter-spacing:4.320000px;}
.ls7{letter-spacing:4.500000px;}
.lsc{letter-spacing:5.940000px;}
.ls6{letter-spacing:6.480000px;}
.ls13{letter-spacing:6.660000px;}
.ls9{letter-spacing:9.540000px;}
.lsa{letter-spacing:10.080000px;}
.ls18{letter-spacing:37.440000px;}
.ls26{letter-spacing:64.224000px;}
.ls17{letter-spacing:194.376000px;}
.ls25{letter-spacing:491.916000px;}
.ls2{letter-spacing:658.956000px;}
.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;}
}
.ws10{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.208000px;}
.wsc{word-spacing:-16.488000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.wse{word-spacing:-14.733600px;}
.ws3{word-spacing:-12.329400px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-2.363520px;}
._8{margin-left:-1.263600px;}
._0{width:1.105920px;}
._b{width:3.096000px;}
._c{width:4.392000px;}
._d{width:5.590080px;}
._e{width:6.689760px;}
._f{width:7.992000px;}
._10{width:9.000000px;}
._11{width:10.173840px;}
._1a{width:11.400240px;}
._9{width:12.432000px;}
._a{width:13.680000px;}
._23{width:15.024000px;}
._27{width:16.294800px;}
._21{width:17.652000px;}
._18{width:19.119600px;}
._16{width:20.160000px;}
._17{width:21.574080px;}
._12{width:23.616000px;}
._13{width:24.708000px;}
._1e{width:26.400000px;}
._1f{width:27.984000px;}
._25{width:28.987200px;}
._24{width:30.060000px;}
._1c{width:31.752000px;}
._1d{width:32.780160px;}
._14{width:33.840000px;}
._15{width:35.007360px;}
._19{width:36.687600px;}
._26{width:37.760400px;}
._22{width:38.919600px;}
._28{width:41.688000px;}
._2b{width:43.056000px;}
._2c{width:46.815600px;}
._29{width:48.528000px;}
._2a{width:49.680000px;}
._2{width:168.060000px;}
._1{width:172.392240px;}
._1b{width:194.376000px;}
._6{width:304.020000px;}
._4{width:407.225040px;}
._7{width:738.360000px;}
._3{width:838.440000px;}
._5{width:954.696480px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:109.800000px;}
.yce{bottom:111.240000px;}
.y30{bottom:119.340000px;}
.y69{bottom:127.080000px;}
.yd5{bottom:127.440000px;}
.ycd{bottom:132.300000px;}
.ycc{bottom:139.140000px;}
.y2f{bottom:140.040000px;}
.y68{bottom:144.360000px;}
.yd4{bottom:148.140000px;}
.ycb{bottom:149.580000px;}
.y67{bottom:151.200000px;}
.y2e{bottom:160.740000px;}
.y66{bottom:161.640000px;}
.yca{bottom:166.680000px;}
.y9b{bottom:168.480000px;}
.yd3{bottom:168.840000px;}
.y65{bottom:178.920000px;}
.y2d{bottom:181.440000px;}
.yc9{bottom:183.960000px;}
.yd2{bottom:189.540000px;}
.y64{bottom:196.200000px;}
.yc8{bottom:201.240000px;}
.y2c{bottom:202.140000px;}
.y9a{bottom:203.040000px;}
.yd1{bottom:210.240000px;}
.y99{bottom:213.300000px;}
.y63{bottom:213.660000px;}
.yc7{bottom:218.520000px;}
.yab{bottom:220.140000px;}
.y62{bottom:220.500000px;}
.y2b{bottom:222.840000px;}
.y98{bottom:230.580000px;}
.yd0{bottom:230.940000px;}
.y61{bottom:232.380000px;}
.yc6{bottom:235.800000px;}
.yc5{bottom:242.640000px;}
.y2a{bottom:243.540000px;}
.yaa{bottom:247.890000px;}
.y97{bottom:248.610000px;}
.y60{bottom:249.690000px;}
.ycf{bottom:251.670000px;}
.yc4{bottom:252.930000px;}
.y29{bottom:264.270000px;}
.ya9{bottom:265.170000px;}
.y5f{bottom:267.150000px;}
.yc3{bottom:270.210000px;}
.y96{bottom:272.370000px;}
.y5e{bottom:273.990000px;}
.ya8{bottom:282.450000px;}
.y28{bottom:284.970000px;}
.y5d{bottom:285.870000px;}
.yc2{bottom:287.490000px;}
.y94{bottom:293.070000px;}
.ya7{bottom:299.550000px;}
.y95{bottom:301.350000px;}
.y5c{bottom:303.330000px;}
.yc1{bottom:304.770000px;}
.y27{bottom:305.310000px;}
.y5b{bottom:310.170000px;}
.y93{bottom:313.770000px;}
.ya6{bottom:316.830000px;}
.yc0{bottom:322.050000px;}
.y5a{bottom:322.770000px;}
.y26{bottom:326.010000px;}
.ya5{bottom:334.110000px;}
.y92{bottom:334.470000px;}
.ybf{bottom:339.330000px;}
.y25{bottom:347.070000px;}
.ya4{bottom:351.390000px;}
.y91{bottom:355.170000px;}
.ybe{bottom:356.430000px;}
.ybd{bottom:363.270000px;}
.y58{bottom:365.610000px;}
.y24{bottom:367.770000px;}
.ya3{bottom:368.670000px;}
.ybc{bottom:373.710000px;}
.y59{bottom:373.890000px;}
.y90{bottom:375.870000px;}
.ya2{bottom:385.950000px;}
.y57{bottom:386.310000px;}
.y23{bottom:388.470000px;}
.ybb{bottom:390.990000px;}
.y8f{bottom:396.570000px;}
.ya1{bottom:403.050000px;}
.y56{bottom:407.010000px;}
.yba{bottom:408.270000px;}
.y22{bottom:409.170000px;}
.yb9{bottom:415.110000px;}
.y8e{bottom:417.270000px;}
.ya0{bottom:420.330000px;}
.yb8{bottom:425.550000px;}
.y9f{bottom:427.170000px;}
.y55{bottom:427.710000px;}
.y21{bottom:429.870000px;}
.y8d{bottom:437.970000px;}
.y9e{bottom:438.330000px;}
.yb7{bottom:443.550000px;}
.y54{bottom:448.410000px;}
.y20{bottom:450.570000px;}
.y8c{bottom:458.670000px;}
.yb6{bottom:463.530000px;}
.y53{bottom:469.110000px;}
.y1f{bottom:471.270000px;}
.y8b{bottom:479.415000px;}
.yb5{bottom:480.675000px;}
.y52{bottom:489.855000px;}
.y1e{bottom:492.015000px;}
.yb4{bottom:497.955000px;}
.y8a{bottom:500.115000px;}
.y51{bottom:510.555000px;}
.y1d{bottom:512.355000px;}
.yb3{bottom:515.235000px;}
.y89{bottom:520.815000px;}
.yb2{bottom:522.075000px;}
.y50{bottom:531.255000px;}
.yb1{bottom:533.235000px;}
.y1c{bottom:533.415000px;}
.y88{bottom:541.515000px;}
.y4f{bottom:551.955000px;}
.y1b{bottom:554.115000px;}
.y87{bottom:562.215000px;}
.y4e{bottom:572.655000px;}
.y1a{bottom:574.815000px;}
.y86{bottom:582.915000px;}
.yb0{bottom:591.195000px;}
.y4c{bottom:593.355000px;}
.y19{bottom:595.515000px;}
.y4d{bottom:601.635000px;}
.y85{bottom:603.615000px;}
.y4b{bottom:614.055000px;}
.y18{bottom:616.215000px;}
.y84{bottom:624.315000px;}
.y4a{bottom:634.755000px;}
.y17{bottom:636.915000px;}
.y83{bottom:645.015000px;}
.y48{bottom:655.455000px;}
.y16{bottom:657.615000px;}
.y49{bottom:663.735000px;}
.y82{bottom:665.715000px;}
.y47{bottom:676.155000px;}
.y15{bottom:678.315000px;}
.y81{bottom:686.415000px;}
.y46{bottom:696.855000px;}
.y14{bottom:699.045000px;}
.y80{bottom:707.145000px;}
.y45{bottom:717.585000px;}
.y13{bottom:719.745000px;}
.y7f{bottom:727.845000px;}
.y44{bottom:738.285000px;}
.y12{bottom:740.445000px;}
.y7e{bottom:748.545000px;}
.y42{bottom:758.985000px;}
.y11{bottom:765.645000px;}
.y43{bottom:767.265000px;}
.y7d{bottom:769.245000px;}
.y41{bottom:779.685000px;}
.y7c{bottom:789.945000px;}
.y10{bottom:790.845000px;}
.y40{bottom:800.385000px;}
.y7b{bottom:810.645000px;}
.yf{bottom:816.045000px;}
.y3f{bottom:821.085000px;}
.y7a{bottom:831.345000px;}
.ye{bottom:836.745000px;}
.yaf{bottom:839.625000px;}
.y3e{bottom:841.785000px;}
.y79{bottom:852.045000px;}
.yd{bottom:857.445000px;}
.y3d{bottom:862.485000px;}
.y78{bottom:872.745000px;}
.yc{bottom:878.145000px;}
.yae{bottom:881.025000px;}
.y3c{bottom:883.185000px;}
.y77{bottom:893.445000px;}
.y3b{bottom:903.885000px;}
.y76{bottom:914.145000px;}
.yb{bottom:919.185000px;}
.y9d{bottom:922.425000px;}
.y3a{bottom:924.630000px;}
.y74{bottom:934.890000px;}
.y75{bottom:943.170000px;}
.ya{bottom:944.430000px;}
.y39{bottom:945.330000px;}
.y73{bottom:955.590000px;}
.yad{bottom:963.870000px;}
.y38{bottom:966.030000px;}
.y9{bottom:970.170000px;}
.y72{bottom:976.290000px;}
.y37{bottom:986.730000px;}
.y71{bottom:996.990000px;}
.y8{bottom:998.790000px;}
.y36{bottom:1007.250000px;}
.y70{bottom:1017.690000px;}
.y7{bottom:1027.410000px;}
.y35{bottom:1027.950000px;}
.y6f{bottom:1038.390000px;}
.y34{bottom:1048.650000px;}
.y6{bottom:1056.210000px;}
.y6e{bottom:1059.090000px;}
.y33{bottom:1069.710000px;}
.y6d{bottom:1079.790000px;}
.y5{bottom:1084.830000px;}
.y9c{bottom:1088.070000px;}
.y32{bottom:1093.830000px;}
.y6c{bottom:1100.490000px;}
.y4{bottom:1113.450000px;}
.y31{bottom:1117.950000px;}
.y6b{bottom:1121.190000px;}
.yac{bottom:1129.470000px;}
.y3{bottom:1161.540000px;}
.y2{bottom:1179.000000px;}
.y1{bottom:1196.280000px;}
.ha{height:38.158594px;}
.h9{height:47.344922px;}
.hf{height:49.535156px;}
.hc{height:58.621992px;}
.h2{height:58.651172px;}
.hd{height:60.226875px;}
.h7{height:64.546875px;}
.hb{height:65.010937px;}
.he{height:70.628906px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h6{height:80.464922px;}
.h3{height:84.898125px;}
.h8{height:1262.873940px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x14{left:132.516000px;}
.x27{left:137.376000px;}
.xa{left:148.896000px;}
.x4{left:153.030000px;}
.x28{left:170.130000px;}
.x22{left:184.530000px;}
.xd{left:185.610000px;}
.x6{left:188.310000px;}
.xe{left:191.730000px;}
.x20{left:194.610000px;}
.x23{left:196.770000px;}
.x7{left:205.590000px;}
.x21{left:206.850000px;}
.x11{left:274.395000px;}
.x12{left:280.515000px;}
.x29{left:282.135000px;}
.x8{left:291.135000px;}
.x1f{left:292.935000px;}
.xf{left:346.215000px;}
.x15{left:350.175000px;}
.x10{left:352.335000px;}
.x16{left:356.295000px;}
.x13{left:364.935000px;}
.x3{left:385.455000px;}
.x5{left:386.715000px;}
.x25{left:405.075000px;}
.x9{left:414.105000px;}
.x26{left:417.345000px;}
.x1e{left:420.225000px;}
.x24{left:424.005000px;}
.xb{left:437.145000px;}
.xc{left:443.265000px;}
.x2{left:446.505000px;}
.x17{left:557.745000px;}
.x18{left:563.865000px;}
.x1a{left:569.130000px;}
.x1b{left:575.250000px;}
.x1c{left:755.100000px;}
.x1d{left:761.220000px;}
.x19{left:786.780000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls24{letter-spacing:-1.920000pt;}
.ls1e{letter-spacing:-1.344000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.688000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.704000pt;}
.ls23{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:2.720000pt;}
.ls8{letter-spacing:3.840000pt;}
.ls7{letter-spacing:4.000000pt;}
.lsc{letter-spacing:5.280000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls13{letter-spacing:5.920000pt;}
.ls9{letter-spacing:8.480000pt;}
.lsa{letter-spacing:8.960000pt;}
.ls18{letter-spacing:33.280000pt;}
.ls26{letter-spacing:57.088000pt;}
.ls17{letter-spacing:172.778667pt;}
.ls25{letter-spacing:437.258667pt;}
.ls2{letter-spacing:585.738667pt;}
.ws10{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.296000pt;}
.wsc{word-spacing:-14.656000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.096533pt;}
.ws3{word-spacing:-10.959467pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-2.100907pt;}
._8{margin-left:-1.123200pt;}
._0{width:0.983040pt;}
._b{width:2.752000pt;}
._c{width:3.904000pt;}
._d{width:4.968960pt;}
._e{width:5.946453pt;}
._f{width:7.104000pt;}
._10{width:8.000000pt;}
._11{width:9.043413pt;}
._1a{width:10.133547pt;}
._9{width:11.050667pt;}
._a{width:12.160000pt;}
._23{width:13.354667pt;}
._27{width:14.484267pt;}
._21{width:15.690667pt;}
._18{width:16.995200pt;}
._16{width:17.920000pt;}
._17{width:19.176960pt;}
._12{width:20.992000pt;}
._13{width:21.962667pt;}
._1e{width:23.466667pt;}
._1f{width:24.874667pt;}
._25{width:25.766400pt;}
._24{width:26.720000pt;}
._1c{width:28.224000pt;}
._1d{width:29.137920pt;}
._14{width:30.080000pt;}
._15{width:31.117653pt;}
._19{width:32.611200pt;}
._26{width:33.564800pt;}
._22{width:34.595200pt;}
._28{width:37.056000pt;}
._2b{width:38.272000pt;}
._2c{width:41.613867pt;}
._29{width:43.136000pt;}
._2a{width:44.160000pt;}
._2{width:149.386667pt;}
._1{width:153.237547pt;}
._1b{width:172.778667pt;}
._6{width:270.240000pt;}
._4{width:361.977813pt;}
._7{width:656.320000pt;}
._3{width:745.280000pt;}
._5{width:848.619093pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:97.600000pt;}
.yce{bottom:98.880000pt;}
.y30{bottom:106.080000pt;}
.y69{bottom:112.960000pt;}
.yd5{bottom:113.280000pt;}
.ycd{bottom:117.600000pt;}
.ycc{bottom:123.680000pt;}
.y2f{bottom:124.480000pt;}
.y68{bottom:128.320000pt;}
.yd4{bottom:131.680000pt;}
.ycb{bottom:132.960000pt;}
.y67{bottom:134.400000pt;}
.y2e{bottom:142.880000pt;}
.y66{bottom:143.680000pt;}
.yca{bottom:148.160000pt;}
.y9b{bottom:149.760000pt;}
.yd3{bottom:150.080000pt;}
.y65{bottom:159.040000pt;}
.y2d{bottom:161.280000pt;}
.yc9{bottom:163.520000pt;}
.yd2{bottom:168.480000pt;}
.y64{bottom:174.400000pt;}
.yc8{bottom:178.880000pt;}
.y2c{bottom:179.680000pt;}
.y9a{bottom:180.480000pt;}
.yd1{bottom:186.880000pt;}
.y99{bottom:189.600000pt;}
.y63{bottom:189.920000pt;}
.yc7{bottom:194.240000pt;}
.yab{bottom:195.680000pt;}
.y62{bottom:196.000000pt;}
.y2b{bottom:198.080000pt;}
.y98{bottom:204.960000pt;}
.yd0{bottom:205.280000pt;}
.y61{bottom:206.560000pt;}
.yc6{bottom:209.600000pt;}
.yc5{bottom:215.680000pt;}
.y2a{bottom:216.480000pt;}
.yaa{bottom:220.346667pt;}
.y97{bottom:220.986667pt;}
.y60{bottom:221.946667pt;}
.ycf{bottom:223.706667pt;}
.yc4{bottom:224.826667pt;}
.y29{bottom:234.906667pt;}
.ya9{bottom:235.706667pt;}
.y5f{bottom:237.466667pt;}
.yc3{bottom:240.186667pt;}
.y96{bottom:242.106667pt;}
.y5e{bottom:243.546667pt;}
.ya8{bottom:251.066667pt;}
.y28{bottom:253.306667pt;}
.y5d{bottom:254.106667pt;}
.yc2{bottom:255.546667pt;}
.y94{bottom:260.506667pt;}
.ya7{bottom:266.266667pt;}
.y95{bottom:267.866667pt;}
.y5c{bottom:269.626667pt;}
.yc1{bottom:270.906667pt;}
.y27{bottom:271.386667pt;}
.y5b{bottom:275.706667pt;}
.y93{bottom:278.906667pt;}
.ya6{bottom:281.626667pt;}
.yc0{bottom:286.266667pt;}
.y5a{bottom:286.906667pt;}
.y26{bottom:289.786667pt;}
.ya5{bottom:296.986667pt;}
.y92{bottom:297.306667pt;}
.ybf{bottom:301.626667pt;}
.y25{bottom:308.506667pt;}
.ya4{bottom:312.346667pt;}
.y91{bottom:315.706667pt;}
.ybe{bottom:316.826667pt;}
.ybd{bottom:322.906667pt;}
.y58{bottom:324.986667pt;}
.y24{bottom:326.906667pt;}
.ya3{bottom:327.706667pt;}
.ybc{bottom:332.186667pt;}
.y59{bottom:332.346667pt;}
.y90{bottom:334.106667pt;}
.ya2{bottom:343.066667pt;}
.y57{bottom:343.386667pt;}
.y23{bottom:345.306667pt;}
.ybb{bottom:347.546667pt;}
.y8f{bottom:352.506667pt;}
.ya1{bottom:358.266667pt;}
.y56{bottom:361.786667pt;}
.yba{bottom:362.906667pt;}
.y22{bottom:363.706667pt;}
.yb9{bottom:368.986667pt;}
.y8e{bottom:370.906667pt;}
.ya0{bottom:373.626667pt;}
.yb8{bottom:378.266667pt;}
.y9f{bottom:379.706667pt;}
.y55{bottom:380.186667pt;}
.y21{bottom:382.106667pt;}
.y8d{bottom:389.306667pt;}
.y9e{bottom:389.626667pt;}
.yb7{bottom:394.266667pt;}
.y54{bottom:398.586667pt;}
.y20{bottom:400.506667pt;}
.y8c{bottom:407.706667pt;}
.yb6{bottom:412.026667pt;}
.y53{bottom:416.986667pt;}
.y1f{bottom:418.906667pt;}
.y8b{bottom:426.146667pt;}
.yb5{bottom:427.266667pt;}
.y52{bottom:435.426667pt;}
.y1e{bottom:437.346667pt;}
.yb4{bottom:442.626667pt;}
.y8a{bottom:444.546667pt;}
.y51{bottom:453.826667pt;}
.y1d{bottom:455.426667pt;}
.yb3{bottom:457.986667pt;}
.y89{bottom:462.946667pt;}
.yb2{bottom:464.066667pt;}
.y50{bottom:472.226667pt;}
.yb1{bottom:473.986667pt;}
.y1c{bottom:474.146667pt;}
.y88{bottom:481.346667pt;}
.y4f{bottom:490.626667pt;}
.y1b{bottom:492.546667pt;}
.y87{bottom:499.746667pt;}
.y4e{bottom:509.026667pt;}
.y1a{bottom:510.946667pt;}
.y86{bottom:518.146667pt;}
.yb0{bottom:525.506667pt;}
.y4c{bottom:527.426667pt;}
.y19{bottom:529.346667pt;}
.y4d{bottom:534.786667pt;}
.y85{bottom:536.546667pt;}
.y4b{bottom:545.826667pt;}
.y18{bottom:547.746667pt;}
.y84{bottom:554.946667pt;}
.y4a{bottom:564.226667pt;}
.y17{bottom:566.146667pt;}
.y83{bottom:573.346667pt;}
.y48{bottom:582.626667pt;}
.y16{bottom:584.546667pt;}
.y49{bottom:589.986667pt;}
.y82{bottom:591.746667pt;}
.y47{bottom:601.026667pt;}
.y15{bottom:602.946667pt;}
.y81{bottom:610.146667pt;}
.y46{bottom:619.426667pt;}
.y14{bottom:621.373333pt;}
.y80{bottom:628.573333pt;}
.y45{bottom:637.853333pt;}
.y13{bottom:639.773333pt;}
.y7f{bottom:646.973333pt;}
.y44{bottom:656.253333pt;}
.y12{bottom:658.173333pt;}
.y7e{bottom:665.373333pt;}
.y42{bottom:674.653333pt;}
.y11{bottom:680.573333pt;}
.y43{bottom:682.013333pt;}
.y7d{bottom:683.773333pt;}
.y41{bottom:693.053333pt;}
.y7c{bottom:702.173333pt;}
.y10{bottom:702.973333pt;}
.y40{bottom:711.453333pt;}
.y7b{bottom:720.573333pt;}
.yf{bottom:725.373333pt;}
.y3f{bottom:729.853333pt;}
.y7a{bottom:738.973333pt;}
.ye{bottom:743.773333pt;}
.yaf{bottom:746.333333pt;}
.y3e{bottom:748.253333pt;}
.y79{bottom:757.373333pt;}
.yd{bottom:762.173333pt;}
.y3d{bottom:766.653333pt;}
.y78{bottom:775.773333pt;}
.yc{bottom:780.573333pt;}
.yae{bottom:783.133333pt;}
.y3c{bottom:785.053333pt;}
.y77{bottom:794.173333pt;}
.y3b{bottom:803.453333pt;}
.y76{bottom:812.573333pt;}
.yb{bottom:817.053333pt;}
.y9d{bottom:819.933333pt;}
.y3a{bottom:821.893333pt;}
.y74{bottom:831.013333pt;}
.y75{bottom:838.373333pt;}
.ya{bottom:839.493333pt;}
.y39{bottom:840.293333pt;}
.y73{bottom:849.413333pt;}
.yad{bottom:856.773333pt;}
.y38{bottom:858.693333pt;}
.y9{bottom:862.373333pt;}
.y72{bottom:867.813333pt;}
.y37{bottom:877.093333pt;}
.y71{bottom:886.213333pt;}
.y8{bottom:887.813333pt;}
.y36{bottom:895.333333pt;}
.y70{bottom:904.613333pt;}
.y7{bottom:913.253333pt;}
.y35{bottom:913.733333pt;}
.y6f{bottom:923.013333pt;}
.y34{bottom:932.133333pt;}
.y6{bottom:938.853333pt;}
.y6e{bottom:941.413333pt;}
.y33{bottom:950.853333pt;}
.y6d{bottom:959.813333pt;}
.y5{bottom:964.293333pt;}
.y9c{bottom:967.173333pt;}
.y32{bottom:972.293333pt;}
.y6c{bottom:978.213333pt;}
.y4{bottom:989.733333pt;}
.y31{bottom:993.733333pt;}
.y6b{bottom:996.613333pt;}
.yac{bottom:1003.973333pt;}
.y3{bottom:1032.480000pt;}
.y2{bottom:1048.000000pt;}
.y1{bottom:1063.360000pt;}
.ha{height:33.918750pt;}
.h9{height:42.084375pt;}
.hf{height:44.031250pt;}
.hc{height:52.108438pt;}
.h2{height:52.134375pt;}
.hd{height:53.535000pt;}
.h7{height:57.375000pt;}
.hb{height:57.787500pt;}
.he{height:62.781250pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h6{height:71.524375pt;}
.h3{height:75.465000pt;}
.h8{height:1122.554613pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x14{left:117.792000pt;}
.x27{left:122.112000pt;}
.xa{left:132.352000pt;}
.x4{left:136.026667pt;}
.x28{left:151.226667pt;}
.x22{left:164.026667pt;}
.xd{left:164.986667pt;}
.x6{left:167.386667pt;}
.xe{left:170.426667pt;}
.x20{left:172.986667pt;}
.x23{left:174.906667pt;}
.x7{left:182.746667pt;}
.x21{left:183.866667pt;}
.x11{left:243.906667pt;}
.x12{left:249.346667pt;}
.x29{left:250.786667pt;}
.x8{left:258.786667pt;}
.x1f{left:260.386667pt;}
.xf{left:307.746667pt;}
.x15{left:311.266667pt;}
.x10{left:313.186667pt;}
.x16{left:316.706667pt;}
.x13{left:324.386667pt;}
.x3{left:342.626667pt;}
.x5{left:343.746667pt;}
.x25{left:360.066667pt;}
.x9{left:368.093333pt;}
.x26{left:370.973333pt;}
.x1e{left:373.533333pt;}
.x24{left:376.893333pt;}
.xb{left:388.573333pt;}
.xc{left:394.013333pt;}
.x2{left:396.893333pt;}
.x17{left:495.773333pt;}
.x18{left:501.213333pt;}
.x1a{left:505.893333pt;}
.x1b{left:511.333333pt;}
.x1c{left:671.200000pt;}
.x1d{left:676.640000pt;}
.x19{left:699.360000pt;}
}




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