
    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_e796a6a723cce7fb75c2a12e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_53c1defb958e9ff960f461be.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_e6f0708552efe89a65852fea.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_535bff9eef2d2cbb99417b23.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_22621d6a13038451df9a5578.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_8e1c799ff36830aef412ed4a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_2d3c8b03cadbd5372e5361fb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_a25407c93406904fcedae252.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.332000px;}
.ls5{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.043920px;}
.ls8{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.209520px;}
.lse{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:11.466720px;}
.lsd{letter-spacing:41.682720px;}
.lsb{letter-spacing:46.002720px;}
.ls6{letter-spacing:46.026720px;}
.lsc{letter-spacing:49.626720px;}
.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;}
}
.ws6{word-spacing:-40.381920px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-3.463680px;}
._c{margin-left:-2.221200px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._9{width:2.761680px;}
._2{width:3.960960px;}
._b{width:5.218080px;}
._a{width:6.454080px;}
._7{width:7.649280px;}
._8{width:8.873520px;}
._f{width:9.934320px;}
._d{width:10.982160px;}
._5{width:12.183360px;}
._6{width:13.310880px;}
._12{width:16.568880px;}
._10{width:17.741040px;}
._11{width:19.078800px;}
._13{width:21.155040px;}
._15{width:22.276320px;}
._14{width:23.717040px;}
._16{width:24.825600px;}
._4{width:136.056000px;}
._3{width:636.906000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:3.240000px;}
.y81{bottom:20.340000px;}
.yc8{bottom:20.514000px;}
.y77{bottom:20.520000px;}
.y7d{bottom:20.565000px;}
.yc{bottom:37.260000px;}
.yc6{bottom:37.620000px;}
.y7c{bottom:37.665000px;}
.y7a{bottom:37.800000px;}
.yb{bottom:57.060000px;}
.ya{bottom:72.576000px;}
.y114{bottom:113.796000px;}
.y75{bottom:114.336000px;}
.y9f{bottom:123.336000px;}
.y40{bottom:127.116000px;}
.yfc{bottom:129.996000px;}
.y113{bottom:131.076000px;}
.y74{bottom:131.616000px;}
.yc7{bottom:138.816000px;}
.y9e{bottom:140.616000px;}
.y3f{bottom:144.216000px;}
.yfb{bottom:147.276000px;}
.y112{bottom:148.356000px;}
.y73{bottom:148.716000px;}
.y9d{bottom:157.710000px;}
.y3e{bottom:161.490000px;}
.yfa{bottom:164.550000px;}
.y111{bottom:165.630000px;}
.y72{bottom:165.990000px;}
.yc5{bottom:174.090000px;}
.y9c{bottom:174.990000px;}
.y3d{bottom:178.770000px;}
.yf9{bottom:181.830000px;}
.y110{bottom:182.910000px;}
.y71{bottom:183.270000px;}
.y9b{bottom:192.270000px;}
.y3c{bottom:196.050000px;}
.yf8{bottom:199.110000px;}
.y10f{bottom:200.190000px;}
.y70{bottom:200.550000px;}
.y9a{bottom:209.550000px;}
.y3b{bottom:213.330000px;}
.yf7{bottom:216.210000px;}
.y10e{bottom:217.290000px;}
.y6f{bottom:217.830000px;}
.yc4{bottom:226.470000px;}
.y99{bottom:226.830000px;}
.y3a{bottom:230.610000px;}
.yf6{bottom:233.490000px;}
.y10d{bottom:234.570000px;}
.y6e{bottom:235.110000px;}
.y98{bottom:244.110000px;}
.y39{bottom:247.710000px;}
.yf5{bottom:250.770000px;}
.y10c{bottom:251.850000px;}
.y6d{bottom:252.210000px;}
.y97{bottom:261.210000px;}
.yc3{bottom:261.750000px;}
.y38{bottom:264.990000px;}
.yf4{bottom:268.050000px;}
.y10b{bottom:269.130000px;}
.y6c{bottom:269.490000px;}
.y96{bottom:278.490000px;}
.y37{bottom:282.270000px;}
.yf3{bottom:285.330000px;}
.y10a{bottom:286.410000px;}
.y6b{bottom:286.770000px;}
.y95{bottom:295.770000px;}
.y36{bottom:299.550000px;}
.yc2{bottom:300.270000px;}
.yf2{bottom:302.610000px;}
.y109{bottom:303.690000px;}
.y6a{bottom:304.050000px;}
.y94{bottom:313.050000px;}
.y35{bottom:316.830000px;}
.yc1{bottom:317.550000px;}
.yf1{bottom:319.710000px;}
.y108{bottom:320.790000px;}
.y69{bottom:321.330000px;}
.y93{bottom:330.330000px;}
.y34{bottom:333.930000px;}
.yc0{bottom:334.650000px;}
.yf0{bottom:337.035000px;}
.y107{bottom:338.115000px;}
.y68{bottom:338.475000px;}
.y92{bottom:347.475000px;}
.y33{bottom:351.255000px;}
.ybf{bottom:351.975000px;}
.yef{bottom:354.315000px;}
.y106{bottom:355.395000px;}
.y67{bottom:355.755000px;}
.y91{bottom:364.755000px;}
.y32{bottom:368.535000px;}
.ybe{bottom:369.255000px;}
.yee{bottom:371.595000px;}
.y105{bottom:372.675000px;}
.y66{bottom:373.035000px;}
.y90{bottom:382.035000px;}
.y31{bottom:385.815000px;}
.ybd{bottom:386.535000px;}
.yed{bottom:388.875000px;}
.y104{bottom:389.955000px;}
.y65{bottom:390.315000px;}
.yb1{bottom:395.535000px;}
.y8f{bottom:399.315000px;}
.y30{bottom:403.095000px;}
.ybc{bottom:403.815000px;}
.yec{bottom:405.975000px;}
.y103{bottom:407.055000px;}
.y64{bottom:407.595000px;}
.yb0{bottom:412.815000px;}
.y8e{bottom:416.595000px;}
.ybb{bottom:421.095000px;}
.y2f{bottom:422.535000px;}
.yeb{bottom:423.255000px;}
.y102{bottom:424.335000px;}
.y63{bottom:424.875000px;}
.yaf{bottom:430.095000px;}
.y8d{bottom:433.875000px;}
.yba{bottom:438.195000px;}
.y2e{bottom:439.815000px;}
.yea{bottom:440.535000px;}
.y101{bottom:441.615000px;}
.y62{bottom:441.975000px;}
.yae{bottom:447.375000px;}
.y8c{bottom:450.975000px;}
.yb9{bottom:455.475000px;}
.y2d{bottom:457.095000px;}
.ye9{bottom:457.815000px;}
.y100{bottom:458.895000px;}
.y61{bottom:459.255000px;}
.yad{bottom:464.655000px;}
.y8b{bottom:468.255000px;}
.yb8{bottom:472.755000px;}
.y2c{bottom:474.375000px;}
.ye8{bottom:475.095000px;}
.yff{bottom:476.175000px;}
.y60{bottom:476.535000px;}
.yac{bottom:481.755000px;}
.y8a{bottom:485.535000px;}
.yb7{bottom:490.035000px;}
.y2b{bottom:491.475000px;}
.ye7{bottom:492.375000px;}
.y5f{bottom:493.815000px;}
.yab{bottom:499.035000px;}
.yfe{bottom:501.915000px;}
.y89{bottom:502.815000px;}
.yb6{bottom:507.315000px;}
.y2a{bottom:508.755000px;}
.ye6{bottom:509.475000px;}
.y5e{bottom:511.095000px;}
.yfd{bottom:515.955000px;}
.yaa{bottom:516.315000px;}
.y88{bottom:520.095000px;}
.yb5{bottom:524.595000px;}
.y29{bottom:526.035000px;}
.ye5{bottom:526.755000px;}
.y5d{bottom:528.375000px;}
.ya9{bottom:533.595000px;}
.y87{bottom:537.375000px;}
.yb4{bottom:541.695000px;}
.y28{bottom:543.315000px;}
.ye4{bottom:544.035000px;}
.y5c{bottom:545.475000px;}
.ya8{bottom:547.635000px;}
.y86{bottom:554.475000px;}
.yb3{bottom:558.975000px;}
.y27{bottom:560.595000px;}
.ye3{bottom:561.315000px;}
.y5b{bottom:562.755000px;}
.y85{bottom:569.235000px;}
.yb2{bottom:573.015000px;}
.y26{bottom:577.875000px;}
.ye2{bottom:578.595000px;}
.y5a{bottom:580.035000px;}
.y25{bottom:594.975000px;}
.ye1{bottom:595.875000px;}
.ya7{bottom:596.955000px;}
.y59{bottom:597.315000px;}
.y84{bottom:604.545000px;}
.y24{bottom:612.285000px;}
.ye0{bottom:613.005000px;}
.ya6{bottom:614.265000px;}
.y58{bottom:614.625000px;}
.y23{bottom:629.565000px;}
.ydf{bottom:630.285000px;}
.ya5{bottom:631.545000px;}
.y57{bottom:631.905000px;}
.y83{bottom:639.825000px;}
.y22{bottom:646.845000px;}
.yde{bottom:647.565000px;}
.ya4{bottom:648.645000px;}
.y56{bottom:649.005000px;}
.y21{bottom:664.125000px;}
.ydd{bottom:664.845000px;}
.ya3{bottom:665.925000px;}
.y55{bottom:666.285000px;}
.y82{bottom:675.105000px;}
.y20{bottom:681.225000px;}
.ydc{bottom:682.125000px;}
.ya2{bottom:683.205000px;}
.y54{bottom:683.565000px;}
.y1f{bottom:698.505000px;}
.ydb{bottom:699.225000px;}
.ya1{bottom:700.485000px;}
.y53{bottom:700.845000px;}
.y80{bottom:710.385000px;}
.y1e{bottom:715.785000px;}
.yda{bottom:716.505000px;}
.ya0{bottom:717.945000px;}
.y52{bottom:718.125000px;}
.y1d{bottom:733.065000px;}
.yd9{bottom:733.785000px;}
.y51{bottom:735.225000px;}
.y7f{bottom:745.485000px;}
.y1c{bottom:750.345000px;}
.yd8{bottom:751.065000px;}
.y50{bottom:752.505000px;}
.y1b{bottom:767.625000px;}
.yd7{bottom:768.345000px;}
.y4f{bottom:769.785000px;}
.y1a{bottom:784.725000px;}
.yd6{bottom:785.625000px;}
.y4e{bottom:787.065000px;}
.y7e{bottom:798.045000px;}
.y19{bottom:802.005000px;}
.yd5{bottom:802.725000px;}
.y4d{bottom:804.345000px;}
.y18{bottom:819.285000px;}
.yd4{bottom:820.005000px;}
.y4c{bottom:821.625000px;}
.y17{bottom:836.565000px;}
.yd3{bottom:837.285000px;}
.y4b{bottom:838.725000px;}
.y7b{bottom:850.605000px;}
.y16{bottom:853.845000px;}
.yd2{bottom:854.565000px;}
.y4a{bottom:856.005000px;}
.y15{bottom:871.170000px;}
.yd1{bottom:871.890000px;}
.y49{bottom:873.330000px;}
.yd0{bottom:889.170000px;}
.y14{bottom:890.610000px;}
.y79{bottom:903.030000px;}
.ycf{bottom:906.270000px;}
.y48{bottom:907.890000px;}
.y13{bottom:908.250000px;}
.yce{bottom:923.550000px;}
.y47{bottom:925.170000px;}
.y12{bottom:927.330000px;}
.ycd{bottom:940.830000px;}
.y46{bottom:942.270000px;}
.y11{bottom:946.230000px;}
.y76{bottom:955.590000px;}
.ycc{bottom:958.110000px;}
.y45{bottom:959.550000px;}
.y10{bottom:965.130000px;}
.ycb{bottom:975.390000px;}
.y44{bottom:976.830000px;}
.yf{bottom:984.390000px;}
.yca{bottom:992.670000px;}
.y43{bottom:994.110000px;}
.ye{bottom:1005.090000px;}
.yc9{bottom:1007.430000px;}
.y42{bottom:1011.390000px;}
.yd{bottom:1025.790000px;}
.y41{bottom:1028.490000px;}
.y9{bottom:1047.570000px;}
.y8{bottom:1067.730000px;}
.y7{bottom:1085.010000px;}
.y6{bottom:1103.010000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1162.080000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.he{height:34.380000px;}
.hb{height:34.560000px;}
.hf{height:34.596000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h10{height:43.506914px;}
.h11{height:43.681992px;}
.h9{height:46.251562px;}
.h8{height:46.736719px;}
.ha{height:48.496641px;}
.h3{height:50.273438px;}
.h13{height:50.364141px;}
.h4{height:50.800781px;}
.h14{height:51.660000px;}
.hd{height:51.696000px;}
.hc{height:51.840000px;}
.h12{height:53.087935px;}
.h6{height:60.855469px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:93.420000px;}
.w3{width:93.780000px;}
.w8{width:110.376000px;}
.w4{width:111.276000px;}
.wf{width:125.460000px;}
.wb{width:125.820000px;}
.w12{width:174.090000px;}
.we{width:174.450000px;}
.w10{width:175.530000px;}
.wc{width:176.250000px;}
.w11{width:220.530000px;}
.wd{width:221.250000px;}
.w9{width:241.770000px;}
.w5{width:242.490000px;}
.wa{width:253.470000px;}
.w6{width:253.830000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x25{left:24.660000px;}
.x13{left:26.100000px;}
.x11{left:27.900000px;}
.x29{left:34.785000px;}
.x14{left:39.240000px;}
.x16{left:61.380000px;}
.x18{left:70.200000px;}
.x2{left:108.035987px;}
.x8{left:123.155987px;}
.x1{left:128.015987px;}
.x10{left:131.975987px;}
.x22{left:135.035987px;}
.x20{left:148.355987px;}
.x9{left:158.609987px;}
.x1b{left:162.029987px;}
.x5{left:167.069987px;}
.x2a{left:183.989987px;}
.x1c{left:189.029987px;}
.x12{left:202.530000px;}
.x24{left:205.229987px;}
.x23{left:216.029987px;}
.x26{left:234.570000px;}
.x1a{left:250.409987px;}
.xa{left:251.669987px;}
.x15{left:313.815000px;}
.xd{left:340.454987px;}
.xf{left:356.294987px;}
.xc{left:367.094987px;}
.xe{left:378.974987px;}
.x7{left:386.354987px;}
.xb{left:391.214987px;}
.x1d{left:394.274987px;}
.x2c{left:395.714987px;}
.x2b{left:400.754987px;}
.x1e{left:403.634987px;}
.x27{left:410.835000px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x4{left:518.504987px;}
.x17{left:556.305000px;}
.x1f{left:602.924987px;}
.x28{left:632.085000px;}
.x21{left:810.149987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.184000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.039040pt;}
.ls8{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.186240pt;}
.lse{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:10.192640pt;}
.lsd{letter-spacing:37.051307pt;}
.lsb{letter-spacing:40.891307pt;}
.ls6{letter-spacing:40.912640pt;}
.lsc{letter-spacing:44.112640pt;}
.ws6{word-spacing:-35.895040pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-3.078827pt;}
._c{margin-left:-1.974400pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._9{width:2.454827pt;}
._2{width:3.520853pt;}
._b{width:4.638293pt;}
._a{width:5.736960pt;}
._7{width:6.799360pt;}
._8{width:7.887573pt;}
._f{width:8.830507pt;}
._d{width:9.761920pt;}
._5{width:10.829653pt;}
._6{width:11.831893pt;}
._12{width:14.727893pt;}
._10{width:15.769813pt;}
._11{width:16.958933pt;}
._13{width:18.804480pt;}
._15{width:19.801173pt;}
._14{width:21.081813pt;}
._16{width:22.067200pt;}
._4{width:120.938667pt;}
._3{width:566.138667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.880000pt;}
.y81{bottom:18.080000pt;}
.yc8{bottom:18.234667pt;}
.y77{bottom:18.240000pt;}
.y7d{bottom:18.280000pt;}
.yc{bottom:33.120000pt;}
.yc6{bottom:33.440000pt;}
.y7c{bottom:33.480000pt;}
.y7a{bottom:33.600000pt;}
.yb{bottom:50.720000pt;}
.ya{bottom:64.512000pt;}
.y114{bottom:101.152000pt;}
.y75{bottom:101.632000pt;}
.y9f{bottom:109.632000pt;}
.y40{bottom:112.992000pt;}
.yfc{bottom:115.552000pt;}
.y113{bottom:116.512000pt;}
.y74{bottom:116.992000pt;}
.yc7{bottom:123.392000pt;}
.y9e{bottom:124.992000pt;}
.y3f{bottom:128.192000pt;}
.yfb{bottom:130.912000pt;}
.y112{bottom:131.872000pt;}
.y73{bottom:132.192000pt;}
.y9d{bottom:140.186667pt;}
.y3e{bottom:143.546667pt;}
.yfa{bottom:146.266667pt;}
.y111{bottom:147.226667pt;}
.y72{bottom:147.546667pt;}
.yc5{bottom:154.746667pt;}
.y9c{bottom:155.546667pt;}
.y3d{bottom:158.906667pt;}
.yf9{bottom:161.626667pt;}
.y110{bottom:162.586667pt;}
.y71{bottom:162.906667pt;}
.y9b{bottom:170.906667pt;}
.y3c{bottom:174.266667pt;}
.yf8{bottom:176.986667pt;}
.y10f{bottom:177.946667pt;}
.y70{bottom:178.266667pt;}
.y9a{bottom:186.266667pt;}
.y3b{bottom:189.626667pt;}
.yf7{bottom:192.186667pt;}
.y10e{bottom:193.146667pt;}
.y6f{bottom:193.626667pt;}
.yc4{bottom:201.306667pt;}
.y99{bottom:201.626667pt;}
.y3a{bottom:204.986667pt;}
.yf6{bottom:207.546667pt;}
.y10d{bottom:208.506667pt;}
.y6e{bottom:208.986667pt;}
.y98{bottom:216.986667pt;}
.y39{bottom:220.186667pt;}
.yf5{bottom:222.906667pt;}
.y10c{bottom:223.866667pt;}
.y6d{bottom:224.186667pt;}
.y97{bottom:232.186667pt;}
.yc3{bottom:232.666667pt;}
.y38{bottom:235.546667pt;}
.yf4{bottom:238.266667pt;}
.y10b{bottom:239.226667pt;}
.y6c{bottom:239.546667pt;}
.y96{bottom:247.546667pt;}
.y37{bottom:250.906667pt;}
.yf3{bottom:253.626667pt;}
.y10a{bottom:254.586667pt;}
.y6b{bottom:254.906667pt;}
.y95{bottom:262.906667pt;}
.y36{bottom:266.266667pt;}
.yc2{bottom:266.906667pt;}
.yf2{bottom:268.986667pt;}
.y109{bottom:269.946667pt;}
.y6a{bottom:270.266667pt;}
.y94{bottom:278.266667pt;}
.y35{bottom:281.626667pt;}
.yc1{bottom:282.266667pt;}
.yf1{bottom:284.186667pt;}
.y108{bottom:285.146667pt;}
.y69{bottom:285.626667pt;}
.y93{bottom:293.626667pt;}
.y34{bottom:296.826667pt;}
.yc0{bottom:297.466667pt;}
.yf0{bottom:299.586667pt;}
.y107{bottom:300.546667pt;}
.y68{bottom:300.866667pt;}
.y92{bottom:308.866667pt;}
.y33{bottom:312.226667pt;}
.ybf{bottom:312.866667pt;}
.yef{bottom:314.946667pt;}
.y106{bottom:315.906667pt;}
.y67{bottom:316.226667pt;}
.y91{bottom:324.226667pt;}
.y32{bottom:327.586667pt;}
.ybe{bottom:328.226667pt;}
.yee{bottom:330.306667pt;}
.y105{bottom:331.266667pt;}
.y66{bottom:331.586667pt;}
.y90{bottom:339.586667pt;}
.y31{bottom:342.946667pt;}
.ybd{bottom:343.586667pt;}
.yed{bottom:345.666667pt;}
.y104{bottom:346.626667pt;}
.y65{bottom:346.946667pt;}
.yb1{bottom:351.586667pt;}
.y8f{bottom:354.946667pt;}
.y30{bottom:358.306667pt;}
.ybc{bottom:358.946667pt;}
.yec{bottom:360.866667pt;}
.y103{bottom:361.826667pt;}
.y64{bottom:362.306667pt;}
.yb0{bottom:366.946667pt;}
.y8e{bottom:370.306667pt;}
.ybb{bottom:374.306667pt;}
.y2f{bottom:375.586667pt;}
.yeb{bottom:376.226667pt;}
.y102{bottom:377.186667pt;}
.y63{bottom:377.666667pt;}
.yaf{bottom:382.306667pt;}
.y8d{bottom:385.666667pt;}
.yba{bottom:389.506667pt;}
.y2e{bottom:390.946667pt;}
.yea{bottom:391.586667pt;}
.y101{bottom:392.546667pt;}
.y62{bottom:392.866667pt;}
.yae{bottom:397.666667pt;}
.y8c{bottom:400.866667pt;}
.yb9{bottom:404.866667pt;}
.y2d{bottom:406.306667pt;}
.ye9{bottom:406.946667pt;}
.y100{bottom:407.906667pt;}
.y61{bottom:408.226667pt;}
.yad{bottom:413.026667pt;}
.y8b{bottom:416.226667pt;}
.yb8{bottom:420.226667pt;}
.y2c{bottom:421.666667pt;}
.ye8{bottom:422.306667pt;}
.yff{bottom:423.266667pt;}
.y60{bottom:423.586667pt;}
.yac{bottom:428.226667pt;}
.y8a{bottom:431.586667pt;}
.yb7{bottom:435.586667pt;}
.y2b{bottom:436.866667pt;}
.ye7{bottom:437.666667pt;}
.y5f{bottom:438.946667pt;}
.yab{bottom:443.586667pt;}
.yfe{bottom:446.146667pt;}
.y89{bottom:446.946667pt;}
.yb6{bottom:450.946667pt;}
.y2a{bottom:452.226667pt;}
.ye6{bottom:452.866667pt;}
.y5e{bottom:454.306667pt;}
.yfd{bottom:458.626667pt;}
.yaa{bottom:458.946667pt;}
.y88{bottom:462.306667pt;}
.yb5{bottom:466.306667pt;}
.y29{bottom:467.586667pt;}
.ye5{bottom:468.226667pt;}
.y5d{bottom:469.666667pt;}
.ya9{bottom:474.306667pt;}
.y87{bottom:477.666667pt;}
.yb4{bottom:481.506667pt;}
.y28{bottom:482.946667pt;}
.ye4{bottom:483.586667pt;}
.y5c{bottom:484.866667pt;}
.ya8{bottom:486.786667pt;}
.y86{bottom:492.866667pt;}
.yb3{bottom:496.866667pt;}
.y27{bottom:498.306667pt;}
.ye3{bottom:498.946667pt;}
.y5b{bottom:500.226667pt;}
.y85{bottom:505.986667pt;}
.yb2{bottom:509.346667pt;}
.y26{bottom:513.666667pt;}
.ye2{bottom:514.306667pt;}
.y5a{bottom:515.586667pt;}
.y25{bottom:528.866667pt;}
.ye1{bottom:529.666667pt;}
.ya7{bottom:530.626667pt;}
.y59{bottom:530.946667pt;}
.y84{bottom:537.373333pt;}
.y24{bottom:544.253333pt;}
.ye0{bottom:544.893333pt;}
.ya6{bottom:546.013333pt;}
.y58{bottom:546.333333pt;}
.y23{bottom:559.613333pt;}
.ydf{bottom:560.253333pt;}
.ya5{bottom:561.373333pt;}
.y57{bottom:561.693333pt;}
.y83{bottom:568.733333pt;}
.y22{bottom:574.973333pt;}
.yde{bottom:575.613333pt;}
.ya4{bottom:576.573333pt;}
.y56{bottom:576.893333pt;}
.y21{bottom:590.333333pt;}
.ydd{bottom:590.973333pt;}
.ya3{bottom:591.933333pt;}
.y55{bottom:592.253333pt;}
.y82{bottom:600.093333pt;}
.y20{bottom:605.533333pt;}
.ydc{bottom:606.333333pt;}
.ya2{bottom:607.293333pt;}
.y54{bottom:607.613333pt;}
.y1f{bottom:620.893333pt;}
.ydb{bottom:621.533333pt;}
.ya1{bottom:622.653333pt;}
.y53{bottom:622.973333pt;}
.y80{bottom:631.453333pt;}
.y1e{bottom:636.253333pt;}
.yda{bottom:636.893333pt;}
.ya0{bottom:638.173333pt;}
.y52{bottom:638.333333pt;}
.y1d{bottom:651.613333pt;}
.yd9{bottom:652.253333pt;}
.y51{bottom:653.533333pt;}
.y7f{bottom:662.653333pt;}
.y1c{bottom:666.973333pt;}
.yd8{bottom:667.613333pt;}
.y50{bottom:668.893333pt;}
.y1b{bottom:682.333333pt;}
.yd7{bottom:682.973333pt;}
.y4f{bottom:684.253333pt;}
.y1a{bottom:697.533333pt;}
.yd6{bottom:698.333333pt;}
.y4e{bottom:699.613333pt;}
.y7e{bottom:709.373333pt;}
.y19{bottom:712.893333pt;}
.yd5{bottom:713.533333pt;}
.y4d{bottom:714.973333pt;}
.y18{bottom:728.253333pt;}
.yd4{bottom:728.893333pt;}
.y4c{bottom:730.333333pt;}
.y17{bottom:743.613333pt;}
.yd3{bottom:744.253333pt;}
.y4b{bottom:745.533333pt;}
.y7b{bottom:756.093333pt;}
.y16{bottom:758.973333pt;}
.yd2{bottom:759.613333pt;}
.y4a{bottom:760.893333pt;}
.y15{bottom:774.373333pt;}
.yd1{bottom:775.013333pt;}
.y49{bottom:776.293333pt;}
.yd0{bottom:790.373333pt;}
.y14{bottom:791.653333pt;}
.y79{bottom:802.693333pt;}
.ycf{bottom:805.573333pt;}
.y48{bottom:807.013333pt;}
.y13{bottom:807.333333pt;}
.yce{bottom:820.933333pt;}
.y47{bottom:822.373333pt;}
.y12{bottom:824.293333pt;}
.ycd{bottom:836.293333pt;}
.y46{bottom:837.573333pt;}
.y11{bottom:841.093333pt;}
.y76{bottom:849.413333pt;}
.ycc{bottom:851.653333pt;}
.y45{bottom:852.933333pt;}
.y10{bottom:857.893333pt;}
.ycb{bottom:867.013333pt;}
.y44{bottom:868.293333pt;}
.yf{bottom:875.013333pt;}
.yca{bottom:882.373333pt;}
.y43{bottom:883.653333pt;}
.ye{bottom:893.413333pt;}
.yc9{bottom:895.493333pt;}
.y42{bottom:899.013333pt;}
.yd{bottom:911.813333pt;}
.y41{bottom:914.213333pt;}
.y9{bottom:931.173333pt;}
.y8{bottom:949.093333pt;}
.y7{bottom:964.453333pt;}
.y6{bottom:980.453333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1032.960000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.he{height:30.560000pt;}
.hb{height:30.720000pt;}
.hf{height:30.752000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h10{height:38.672812pt;}
.h11{height:38.828437pt;}
.h9{height:41.112500pt;}
.h8{height:41.543750pt;}
.ha{height:43.108125pt;}
.h3{height:44.687500pt;}
.h13{height:44.768125pt;}
.h4{height:45.156250pt;}
.h14{height:45.920000pt;}
.hd{height:45.952000pt;}
.hc{height:46.080000pt;}
.h12{height:47.189275pt;}
.h6{height:54.093750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:83.040000pt;}
.w3{width:83.360000pt;}
.w8{width:98.112000pt;}
.w4{width:98.912000pt;}
.wf{width:111.520000pt;}
.wb{width:111.840000pt;}
.w12{width:154.746667pt;}
.we{width:155.066667pt;}
.w10{width:156.026667pt;}
.wc{width:156.666667pt;}
.w11{width:196.026667pt;}
.wd{width:196.666667pt;}
.w9{width:214.906667pt;}
.w5{width:215.546667pt;}
.wa{width:225.306667pt;}
.w6{width:225.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x25{left:21.920000pt;}
.x13{left:23.200000pt;}
.x11{left:24.800000pt;}
.x29{left:30.920000pt;}
.x14{left:34.880000pt;}
.x16{left:54.560000pt;}
.x18{left:62.400000pt;}
.x2{left:96.031988pt;}
.x8{left:109.471988pt;}
.x1{left:113.791988pt;}
.x10{left:117.311988pt;}
.x22{left:120.031988pt;}
.x20{left:131.871988pt;}
.x9{left:140.986655pt;}
.x1b{left:144.026655pt;}
.x5{left:148.506655pt;}
.x2a{left:163.546655pt;}
.x1c{left:168.026655pt;}
.x12{left:180.026667pt;}
.x24{left:182.426655pt;}
.x23{left:192.026655pt;}
.x26{left:208.506667pt;}
.x1a{left:222.586655pt;}
.xa{left:223.706655pt;}
.x15{left:278.946667pt;}
.xd{left:302.626655pt;}
.xf{left:316.706655pt;}
.xc{left:326.306655pt;}
.xe{left:336.866655pt;}
.x7{left:343.426655pt;}
.xb{left:347.746655pt;}
.x1d{left:350.466655pt;}
.x2c{left:351.746655pt;}
.x2b{left:356.226655pt;}
.x1e{left:358.786655pt;}
.x27{left:365.186667pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x4{left:460.893322pt;}
.x17{left:494.493333pt;}
.x1f{left:535.933322pt;}
.x28{left:561.853333pt;}
.x21{left:720.133322pt;}
}




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