
    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_e975408bc9e0bab494f18a06.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_97d2d8cdbb9e036ef5d9c5f1.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_fb596bbaee9d54e2f7044dfe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_57f0472abb49a49c11d7a5ff.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1656ac8e34c665e3fb9f4644.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4e27f09206f59e3ddc23c6f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2aec496df2120c073c71b9ff.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b1953dc91be13ab4e7b441d3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_80900cd1a2b13f7bd315867e.woff2')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_f532abd972df5824c64581fd.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.206640px;}
.lsf{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls13{letter-spacing:3.780000px;}
.ls7{letter-spacing:5.220000px;}
.ls0{letter-spacing:38.340000px;}
.ls12{letter-spacing:41.706720px;}
.ls8{letter-spacing:46.026720px;}
.ls6{letter-spacing:46.146720px;}
.ls11{letter-spacing:64.002720px;}
.lse{letter-spacing:64.026720px;}
.ls4{letter-spacing:532.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws7{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws6{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-0.059760px;}
.wsa{word-spacing:0.000000px;}
._a{margin-left:-1.201920px;}
._0{width:1.075680px;}
._1{width:2.078400px;}
._5{width:3.944160px;}
._13{width:5.557680px;}
._1d{width:6.573600px;}
._6{width:7.589520px;}
._14{width:8.844480px;}
._15{width:10.039680px;}
._7{width:11.980080px;}
._10{width:13.804560px;}
._2{width:16.434000px;}
._3{width:17.463360px;}
._1f{width:18.819840px;}
._d{width:20.019600px;}
._c{width:21.394080px;}
._4{width:22.529520px;}
._b{width:23.963760px;}
._9{width:25.158960px;}
._8{width:26.354160px;}
._16{width:27.668880px;}
._21{width:29.671680px;}
._19{width:31.015440px;}
._e{width:32.688720px;}
._f{width:33.966480px;}
._1b{width:35.019360px;}
._29{width:36.178320px;}
._2c{width:38.306160px;}
._22{width:39.620880px;}
._18{width:41.725920px;}
._17{width:43.624800px;}
._30{width:44.999280px;}
._24{width:46.314000px;}
._1e{width:47.987280px;}
._1a{width:49.302000px;}
._2f{width:50.399760px;}
._12{width:53.365680px;}
._11{width:54.381600px;}
._1c{width:56.193600px;}
._20{width:58.923360px;}
._23{width:61.433280px;}
._2b{width:64.361520px;}
._2e{width:66.820080px;}
._26{width:68.484960px;}
._28{width:71.293680px;}
._27{width:72.668160px;}
._25{width:79.421040px;}
._2a{width:100.277280px;}
._2d{width:124.610400px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.y7c{bottom:121.356000px;}
.yba{bottom:124.596000px;}
.yd3{bottom:126.396000px;}
.y32{bottom:133.956000px;}
.yad{bottom:136.476000px;}
.y7b{bottom:138.636000px;}
.yb9{bottom:141.876000px;}
.y66{bottom:143.676000px;}
.y31{bottom:149.616000px;}
.y107{bottom:150.150000px;}
.yac{bottom:153.750000px;}
.y7a{bottom:155.910000px;}
.yb8{bottom:159.150000px;}
.y65{bottom:160.950000px;}
.y30{bottom:165.630000px;}
.y106{bottom:167.430000px;}
.yab{bottom:171.030000px;}
.y79{bottom:173.190000px;}
.yb7{bottom:176.430000px;}
.y64{bottom:178.050000px;}
.yd2{bottom:179.130000px;}
.y2f{bottom:180.570000px;}
.y105{bottom:184.710000px;}
.yaa{bottom:188.310000px;}
.y78{bottom:191.550000px;}
.y2e{bottom:193.170000px;}
.yb6{bottom:193.710000px;}
.y63{bottom:195.330000px;}
.yd1{bottom:196.410000px;}
.y104{bottom:201.990000px;}
.ya9{bottom:205.590000px;}
.y77{bottom:208.830000px;}
.yb5{bottom:210.990000px;}
.y62{bottom:212.610000px;}
.yd0{bottom:213.690000px;}
.y103{bottom:219.270000px;}
.ya8{bottom:222.690000px;}
.y76{bottom:225.930000px;}
.yb4{bottom:228.090000px;}
.y61{bottom:229.890000px;}
.ycf{bottom:232.050000px;}
.y102{bottom:236.370000px;}
.ya7{bottom:239.970000px;}
.y75{bottom:243.210000px;}
.yb3{bottom:245.370000px;}
.y60{bottom:247.170000px;}
.yce{bottom:249.330000px;}
.y101{bottom:253.650000px;}
.ya6{bottom:257.250000px;}
.y74{bottom:260.490000px;}
.yb2{bottom:262.650000px;}
.y5f{bottom:264.450000px;}
.ycd{bottom:266.610000px;}
.y100{bottom:270.930000px;}
.ya5{bottom:274.530000px;}
.y73{bottom:278.850000px;}
.yb1{bottom:279.930000px;}
.y5e{bottom:281.550000px;}
.y2d{bottom:284.790000px;}
.ycc{bottom:284.970000px;}
.yff{bottom:288.255000px;}
.ya4{bottom:291.855000px;}
.y72{bottom:296.175000px;}
.yb0{bottom:297.255000px;}
.y5d{bottom:298.875000px;}
.y2c{bottom:300.675000px;}
.ycb{bottom:302.295000px;}
.yfe{bottom:305.535000px;}
.ya3{bottom:309.135000px;}
.y71{bottom:313.455000px;}
.yaf{bottom:314.535000px;}
.y5c{bottom:316.155000px;}
.y2b{bottom:317.595000px;}
.yca{bottom:319.575000px;}
.yfd{bottom:322.635000px;}
.ya2{bottom:326.235000px;}
.y70{bottom:330.555000px;}
.yae{bottom:331.635000px;}
.y2a{bottom:333.075000px;}
.y5b{bottom:333.435000px;}
.yc9{bottom:337.935000px;}
.yfc{bottom:339.915000px;}
.ya1{bottom:343.515000px;}
.y6f{bottom:347.835000px;}
.y29{bottom:348.915000px;}
.y5a{bottom:350.715000px;}
.yc8{bottom:355.215000px;}
.yfb{bottom:357.195000px;}
.y6e{bottom:365.115000px;}
.y28{bottom:366.195000px;}
.y59{bottom:367.995000px;}
.yc7{bottom:373.395000px;}
.yfa{bottom:374.475000px;}
.ya0{bottom:378.075000px;}
.y6d{bottom:382.395000px;}
.y27{bottom:383.475000px;}
.y58{bottom:385.095000px;}
.yc6{bottom:390.675000px;}
.yf9{bottom:391.755000px;}
.y9f{bottom:395.355000px;}
.y6c{bottom:399.675000px;}
.y26{bottom:400.755000px;}
.y57{bottom:402.375000px;}
.yc5{bottom:407.955000px;}
.yf8{bottom:409.035000px;}
.y9e{bottom:412.635000px;}
.y25{bottom:417.855000px;}
.y56{bottom:419.655000px;}
.yc4{bottom:425.235000px;}
.yf7{bottom:426.135000px;}
.y9d{bottom:429.735000px;}
.y24{bottom:435.135000px;}
.y55{bottom:436.935000px;}
.yf6{bottom:443.415000px;}
.yc3{bottom:443.595000px;}
.y9c{bottom:447.015000px;}
.y23{bottom:452.415000px;}
.y54{bottom:454.215000px;}
.yf5{bottom:460.695000px;}
.yc2{bottom:460.875000px;}
.y9b{bottom:464.295000px;}
.y22{bottom:469.695000px;}
.y53{bottom:471.495000px;}
.yf4{bottom:477.975000px;}
.yc1{bottom:478.155000px;}
.y9a{bottom:481.575000px;}
.y21{bottom:486.975000px;}
.y52{bottom:488.595000px;}
.yf3{bottom:495.255000px;}
.yc0{bottom:496.515000px;}
.y99{bottom:498.855000px;}
.y20{bottom:504.255000px;}
.y51{bottom:505.875000px;}
.yf2{bottom:512.535000px;}
.ybf{bottom:513.615000px;}
.y98{bottom:517.035000px;}
.y1f{bottom:521.355000px;}
.y50{bottom:523.155000px;}
.yf1{bottom:529.635000px;}
.ybe{bottom:530.895000px;}
.y97{bottom:534.315000px;}
.y1e{bottom:538.635000px;}
.y4f{bottom:540.435000px;}
.yf0{bottom:546.915000px;}
.ybd{bottom:548.205000px;}
.y96{bottom:551.625000px;}
.y1d{bottom:555.945000px;}
.y4e{bottom:557.745000px;}
.yef{bottom:564.225000px;}
.ybc{bottom:565.485000px;}
.y95{bottom:568.905000px;}
.y1c{bottom:573.225000px;}
.y4d{bottom:574.845000px;}
.ybb{bottom:579.525000px;}
.yee{bottom:581.505000px;}
.y94{bottom:586.185000px;}
.y1b{bottom:590.505000px;}
.y4c{bottom:592.125000px;}
.yed{bottom:598.785000px;}
.y93{bottom:603.465000px;}
.y1a{bottom:607.785000px;}
.y4b{bottom:609.405000px;}
.yec{bottom:616.065000px;}
.y92{bottom:620.565000px;}
.y19{bottom:624.885000px;}
.y4a{bottom:626.685000px;}
.yeb{bottom:633.165000px;}
.y91{bottom:638.925000px;}
.y6b{bottom:642.165000px;}
.y49{bottom:643.965000px;}
.yea{bottom:650.445000px;}
.y90{bottom:656.205000px;}
.y18{bottom:659.445000px;}
.ye9{bottom:667.725000px;}
.y8f{bottom:673.485000px;}
.y17{bottom:676.725000px;}
.y48{bottom:678.345000px;}
.ye8{bottom:685.005000px;}
.y8e{bottom:690.765000px;}
.y16{bottom:694.005000px;}
.y47{bottom:695.625000px;}
.ye7{bottom:702.285000px;}
.y8d{bottom:708.045000px;}
.y15{bottom:711.105000px;}
.y46{bottom:712.905000px;}
.ye6{bottom:719.385000px;}
.y8c{bottom:725.145000px;}
.y14{bottom:728.385000px;}
.y45{bottom:730.185000px;}
.ye5{bottom:736.665000px;}
.y8b{bottom:743.505000px;}
.y13{bottom:745.665000px;}
.y44{bottom:747.465000px;}
.ye4{bottom:753.945000px;}
.y8a{bottom:760.785000px;}
.y12{bottom:762.945000px;}
.y43{bottom:764.745000px;}
.ye3{bottom:771.225000px;}
.y89{bottom:778.065000px;}
.y11{bottom:780.225000px;}
.y42{bottom:781.845000px;}
.ye2{bottom:789.585000px;}
.y88{bottom:795.345000px;}
.y10{bottom:797.505000px;}
.y41{bottom:799.125000px;}
.ye1{bottom:806.910000px;}
.y87{bottom:812.490000px;}
.yf{bottom:814.650000px;}
.y40{bottom:816.450000px;}
.ye0{bottom:824.190000px;}
.y86{bottom:829.770000px;}
.ye{bottom:831.930000px;}
.y3f{bottom:833.730000px;}
.ydf{bottom:842.550000px;}
.y85{bottom:847.050000px;}
.yd{bottom:849.210000px;}
.y3e{bottom:851.010000px;}
.yde{bottom:860.910000px;}
.y84{bottom:864.330000px;}
.yc{bottom:866.490000px;}
.y3d{bottom:868.290000px;}
.ydd{bottom:879.270000px;}
.y83{bottom:882.690000px;}
.yb{bottom:883.770000px;}
.y3c{bottom:885.390000px;}
.ydc{bottom:896.550000px;}
.y82{bottom:899.970000px;}
.ya{bottom:901.050000px;}
.y3b{bottom:902.670000px;}
.ydb{bottom:913.830000px;}
.y81{bottom:917.070000px;}
.y9{bottom:918.150000px;}
.y3a{bottom:919.950000px;}
.yda{bottom:931.110000px;}
.y80{bottom:934.350000px;}
.y8{bottom:935.430000px;}
.y39{bottom:937.230000px;}
.yd9{bottom:949.470000px;}
.y7f{bottom:951.630000px;}
.y7{bottom:952.710000px;}
.y38{bottom:954.510000px;}
.yd8{bottom:966.570000px;}
.y7e{bottom:968.910000px;}
.y6{bottom:969.990000px;}
.y37{bottom:971.610000px;}
.yd7{bottom:983.850000px;}
.y7d{bottom:986.190000px;}
.y5{bottom:987.270000px;}
.y36{bottom:988.890000px;}
.yd6{bottom:1002.210000px;}
.y4{bottom:1004.550000px;}
.y35{bottom:1006.170000px;}
.yd5{bottom:1019.490000px;}
.y6a{bottom:1021.650000px;}
.y34{bottom:1023.450000px;}
.yd4{bottom:1037.850000px;}
.y3{bottom:1038.930000px;}
.y33{bottom:1040.370000px;}
.y69{bottom:1081.080000px;}
.y68{bottom:1100.880000px;}
.y67{bottom:1119.960000px;}
.h7{height:51.519375px;}
.h5{height:52.998047px;}
.h8{height:55.824609px;}
.ha{height:56.212031px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.hb{height:61.423863px;}
.h9{height:62.211094px;}
.h6{height:62.327813px;}
.h1{height:70.664062px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:100.655986px;}
.x2{left:106.415986px;}
.x12{left:117.215986px;}
.x7{left:124.595986px;}
.x3{left:126.035986px;}
.xb{left:131.075986px;}
.x1a{left:133.415986px;}
.x13{left:138.455986px;}
.x1b{left:160.409986px;}
.x8{left:163.109986px;}
.x11{left:168.689986px;}
.x9{left:222.149986px;}
.x6{left:237.989986px;}
.x4{left:245.909986px;}
.x5{left:268.769986px;}
.xa{left:319.214986px;}
.x1{left:449.174986px;}
.xd{left:479.414986px;}
.xf{left:485.174986px;}
.x16{left:489.134986px;}
.x17{left:510.944986px;}
.x19{left:512.204986px;}
.x10{left:517.244986px;}
.x15{left:525.164986px;}
.xe{left:539.204986px;}
.x18{left:584.204986px;}
.xc{left:647.564986px;}
.x14{left:839.309986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.183680pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls13{letter-spacing:3.360000pt;}
.ls7{letter-spacing:4.640000pt;}
.ls0{letter-spacing:34.080000pt;}
.ls12{letter-spacing:37.072640pt;}
.ls8{letter-spacing:40.912640pt;}
.ls6{letter-spacing:41.019307pt;}
.ls11{letter-spacing:56.891307pt;}
.lse{letter-spacing:56.912640pt;}
.ls4{letter-spacing:473.738667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws4{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-0.053120pt;}
.wsa{word-spacing:0.000000pt;}
._a{margin-left:-1.068373pt;}
._0{width:0.956160pt;}
._1{width:1.847467pt;}
._5{width:3.505920pt;}
._13{width:4.940160pt;}
._1d{width:5.843200pt;}
._6{width:6.746240pt;}
._14{width:7.861760pt;}
._15{width:8.924160pt;}
._7{width:10.648960pt;}
._10{width:12.270720pt;}
._2{width:14.608000pt;}
._3{width:15.522987pt;}
._1f{width:16.728747pt;}
._d{width:17.795200pt;}
._c{width:19.016960pt;}
._4{width:20.026240pt;}
._b{width:21.301120pt;}
._9{width:22.363520pt;}
._8{width:23.425920pt;}
._16{width:24.594560pt;}
._21{width:26.374827pt;}
._19{width:27.569280pt;}
._e{width:29.056640pt;}
._f{width:30.192427pt;}
._1b{width:31.128320pt;}
._29{width:32.158507pt;}
._2c{width:34.049920pt;}
._22{width:35.218560pt;}
._18{width:37.089707pt;}
._17{width:38.777600pt;}
._30{width:39.999360pt;}
._24{width:41.168000pt;}
._1e{width:42.655360pt;}
._1a{width:43.824000pt;}
._2f{width:44.799787pt;}
._12{width:47.436160pt;}
._11{width:48.339200pt;}
._1c{width:49.949867pt;}
._20{width:52.376320pt;}
._23{width:54.607360pt;}
._2b{width:57.210240pt;}
._2e{width:59.395627pt;}
._26{width:60.875520pt;}
._28{width:63.372160pt;}
._27{width:64.593920pt;}
._25{width:70.596480pt;}
._2a{width:89.135360pt;}
._2d{width:110.764800pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.y7c{bottom:107.872000pt;}
.yba{bottom:110.752000pt;}
.yd3{bottom:112.352000pt;}
.y32{bottom:119.072000pt;}
.yad{bottom:121.312000pt;}
.y7b{bottom:123.232000pt;}
.yb9{bottom:126.112000pt;}
.y66{bottom:127.712000pt;}
.y31{bottom:132.992000pt;}
.y107{bottom:133.466667pt;}
.yac{bottom:136.666667pt;}
.y7a{bottom:138.586667pt;}
.yb8{bottom:141.466667pt;}
.y65{bottom:143.066667pt;}
.y30{bottom:147.226667pt;}
.y106{bottom:148.826667pt;}
.yab{bottom:152.026667pt;}
.y79{bottom:153.946667pt;}
.yb7{bottom:156.826667pt;}
.y64{bottom:158.266667pt;}
.yd2{bottom:159.226667pt;}
.y2f{bottom:160.506667pt;}
.y105{bottom:164.186667pt;}
.yaa{bottom:167.386667pt;}
.y78{bottom:170.266667pt;}
.y2e{bottom:171.706667pt;}
.yb6{bottom:172.186667pt;}
.y63{bottom:173.626667pt;}
.yd1{bottom:174.586667pt;}
.y104{bottom:179.546667pt;}
.ya9{bottom:182.746667pt;}
.y77{bottom:185.626667pt;}
.yb5{bottom:187.546667pt;}
.y62{bottom:188.986667pt;}
.yd0{bottom:189.946667pt;}
.y103{bottom:194.906667pt;}
.ya8{bottom:197.946667pt;}
.y76{bottom:200.826667pt;}
.yb4{bottom:202.746667pt;}
.y61{bottom:204.346667pt;}
.ycf{bottom:206.266667pt;}
.y102{bottom:210.106667pt;}
.ya7{bottom:213.306667pt;}
.y75{bottom:216.186667pt;}
.yb3{bottom:218.106667pt;}
.y60{bottom:219.706667pt;}
.yce{bottom:221.626667pt;}
.y101{bottom:225.466667pt;}
.ya6{bottom:228.666667pt;}
.y74{bottom:231.546667pt;}
.yb2{bottom:233.466667pt;}
.y5f{bottom:235.066667pt;}
.ycd{bottom:236.986667pt;}
.y100{bottom:240.826667pt;}
.ya5{bottom:244.026667pt;}
.y73{bottom:247.866667pt;}
.yb1{bottom:248.826667pt;}
.y5e{bottom:250.266667pt;}
.y2d{bottom:253.146667pt;}
.ycc{bottom:253.306667pt;}
.yff{bottom:256.226667pt;}
.ya4{bottom:259.426667pt;}
.y72{bottom:263.266667pt;}
.yb0{bottom:264.226667pt;}
.y5d{bottom:265.666667pt;}
.y2c{bottom:267.266667pt;}
.ycb{bottom:268.706667pt;}
.yfe{bottom:271.586667pt;}
.ya3{bottom:274.786667pt;}
.y71{bottom:278.626667pt;}
.yaf{bottom:279.586667pt;}
.y5c{bottom:281.026667pt;}
.y2b{bottom:282.306667pt;}
.yca{bottom:284.066667pt;}
.yfd{bottom:286.786667pt;}
.ya2{bottom:289.986667pt;}
.y70{bottom:293.826667pt;}
.yae{bottom:294.786667pt;}
.y2a{bottom:296.066667pt;}
.y5b{bottom:296.386667pt;}
.yc9{bottom:300.386667pt;}
.yfc{bottom:302.146667pt;}
.ya1{bottom:305.346667pt;}
.y6f{bottom:309.186667pt;}
.y29{bottom:310.146667pt;}
.y5a{bottom:311.746667pt;}
.yc8{bottom:315.746667pt;}
.yfb{bottom:317.506667pt;}
.y6e{bottom:324.546667pt;}
.y28{bottom:325.506667pt;}
.y59{bottom:327.106667pt;}
.yc7{bottom:331.906667pt;}
.yfa{bottom:332.866667pt;}
.ya0{bottom:336.066667pt;}
.y6d{bottom:339.906667pt;}
.y27{bottom:340.866667pt;}
.y58{bottom:342.306667pt;}
.yc6{bottom:347.266667pt;}
.yf9{bottom:348.226667pt;}
.y9f{bottom:351.426667pt;}
.y6c{bottom:355.266667pt;}
.y26{bottom:356.226667pt;}
.y57{bottom:357.666667pt;}
.yc5{bottom:362.626667pt;}
.yf8{bottom:363.586667pt;}
.y9e{bottom:366.786667pt;}
.y25{bottom:371.426667pt;}
.y56{bottom:373.026667pt;}
.yc4{bottom:377.986667pt;}
.yf7{bottom:378.786667pt;}
.y9d{bottom:381.986667pt;}
.y24{bottom:386.786667pt;}
.y55{bottom:388.386667pt;}
.yf6{bottom:394.146667pt;}
.yc3{bottom:394.306667pt;}
.y9c{bottom:397.346667pt;}
.y23{bottom:402.146667pt;}
.y54{bottom:403.746667pt;}
.yf5{bottom:409.506667pt;}
.yc2{bottom:409.666667pt;}
.y9b{bottom:412.706667pt;}
.y22{bottom:417.506667pt;}
.y53{bottom:419.106667pt;}
.yf4{bottom:424.866667pt;}
.yc1{bottom:425.026667pt;}
.y9a{bottom:428.066667pt;}
.y21{bottom:432.866667pt;}
.y52{bottom:434.306667pt;}
.yf3{bottom:440.226667pt;}
.yc0{bottom:441.346667pt;}
.y99{bottom:443.426667pt;}
.y20{bottom:448.226667pt;}
.y51{bottom:449.666667pt;}
.yf2{bottom:455.586667pt;}
.ybf{bottom:456.546667pt;}
.y98{bottom:459.586667pt;}
.y1f{bottom:463.426667pt;}
.y50{bottom:465.026667pt;}
.yf1{bottom:470.786667pt;}
.ybe{bottom:471.906667pt;}
.y97{bottom:474.946667pt;}
.y1e{bottom:478.786667pt;}
.y4f{bottom:480.386667pt;}
.yf0{bottom:486.146667pt;}
.ybd{bottom:487.293333pt;}
.y96{bottom:490.333333pt;}
.y1d{bottom:494.173333pt;}
.y4e{bottom:495.773333pt;}
.yef{bottom:501.533333pt;}
.ybc{bottom:502.653333pt;}
.y95{bottom:505.693333pt;}
.y1c{bottom:509.533333pt;}
.y4d{bottom:510.973333pt;}
.ybb{bottom:515.133333pt;}
.yee{bottom:516.893333pt;}
.y94{bottom:521.053333pt;}
.y1b{bottom:524.893333pt;}
.y4c{bottom:526.333333pt;}
.yed{bottom:532.253333pt;}
.y93{bottom:536.413333pt;}
.y1a{bottom:540.253333pt;}
.y4b{bottom:541.693333pt;}
.yec{bottom:547.613333pt;}
.y92{bottom:551.613333pt;}
.y19{bottom:555.453333pt;}
.y4a{bottom:557.053333pt;}
.yeb{bottom:562.813333pt;}
.y91{bottom:567.933333pt;}
.y6b{bottom:570.813333pt;}
.y49{bottom:572.413333pt;}
.yea{bottom:578.173333pt;}
.y90{bottom:583.293333pt;}
.y18{bottom:586.173333pt;}
.ye9{bottom:593.533333pt;}
.y8f{bottom:598.653333pt;}
.y17{bottom:601.533333pt;}
.y48{bottom:602.973333pt;}
.ye8{bottom:608.893333pt;}
.y8e{bottom:614.013333pt;}
.y16{bottom:616.893333pt;}
.y47{bottom:618.333333pt;}
.ye7{bottom:624.253333pt;}
.y8d{bottom:629.373333pt;}
.y15{bottom:632.093333pt;}
.y46{bottom:633.693333pt;}
.ye6{bottom:639.453333pt;}
.y8c{bottom:644.573333pt;}
.y14{bottom:647.453333pt;}
.y45{bottom:649.053333pt;}
.ye5{bottom:654.813333pt;}
.y8b{bottom:660.893333pt;}
.y13{bottom:662.813333pt;}
.y44{bottom:664.413333pt;}
.ye4{bottom:670.173333pt;}
.y8a{bottom:676.253333pt;}
.y12{bottom:678.173333pt;}
.y43{bottom:679.773333pt;}
.ye3{bottom:685.533333pt;}
.y89{bottom:691.613333pt;}
.y11{bottom:693.533333pt;}
.y42{bottom:694.973333pt;}
.ye2{bottom:701.853333pt;}
.y88{bottom:706.973333pt;}
.y10{bottom:708.893333pt;}
.y41{bottom:710.333333pt;}
.ye1{bottom:717.253333pt;}
.y87{bottom:722.213333pt;}
.yf{bottom:724.133333pt;}
.y40{bottom:725.733333pt;}
.ye0{bottom:732.613333pt;}
.y86{bottom:737.573333pt;}
.ye{bottom:739.493333pt;}
.y3f{bottom:741.093333pt;}
.ydf{bottom:748.933333pt;}
.y85{bottom:752.933333pt;}
.yd{bottom:754.853333pt;}
.y3e{bottom:756.453333pt;}
.yde{bottom:765.253333pt;}
.y84{bottom:768.293333pt;}
.yc{bottom:770.213333pt;}
.y3d{bottom:771.813333pt;}
.ydd{bottom:781.573333pt;}
.y83{bottom:784.613333pt;}
.yb{bottom:785.573333pt;}
.y3c{bottom:787.013333pt;}
.ydc{bottom:796.933333pt;}
.y82{bottom:799.973333pt;}
.ya{bottom:800.933333pt;}
.y3b{bottom:802.373333pt;}
.ydb{bottom:812.293333pt;}
.y81{bottom:815.173333pt;}
.y9{bottom:816.133333pt;}
.y3a{bottom:817.733333pt;}
.yda{bottom:827.653333pt;}
.y80{bottom:830.533333pt;}
.y8{bottom:831.493333pt;}
.y39{bottom:833.093333pt;}
.yd9{bottom:843.973333pt;}
.y7f{bottom:845.893333pt;}
.y7{bottom:846.853333pt;}
.y38{bottom:848.453333pt;}
.yd8{bottom:859.173333pt;}
.y7e{bottom:861.253333pt;}
.y6{bottom:862.213333pt;}
.y37{bottom:863.653333pt;}
.yd7{bottom:874.533333pt;}
.y7d{bottom:876.613333pt;}
.y5{bottom:877.573333pt;}
.y36{bottom:879.013333pt;}
.yd6{bottom:890.853333pt;}
.y4{bottom:892.933333pt;}
.y35{bottom:894.373333pt;}
.yd5{bottom:906.213333pt;}
.y6a{bottom:908.133333pt;}
.y34{bottom:909.733333pt;}
.yd4{bottom:922.533333pt;}
.y3{bottom:923.493333pt;}
.y33{bottom:924.773333pt;}
.y69{bottom:960.960000pt;}
.y68{bottom:978.560000pt;}
.y67{bottom:995.520000pt;}
.h7{height:45.795000pt;}
.h5{height:47.109375pt;}
.h8{height:49.621875pt;}
.ha{height:49.966250pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.hb{height:54.598989pt;}
.h9{height:55.298750pt;}
.h6{height:55.402500pt;}
.h1{height:62.812500pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:89.471988pt;}
.x2{left:94.591988pt;}
.x12{left:104.191988pt;}
.x7{left:110.751988pt;}
.x3{left:112.031988pt;}
.xb{left:116.511988pt;}
.x1a{left:118.591988pt;}
.x13{left:123.071988pt;}
.x1b{left:142.586655pt;}
.x8{left:144.986655pt;}
.x11{left:149.946655pt;}
.x9{left:197.466655pt;}
.x6{left:211.546655pt;}
.x4{left:218.586655pt;}
.x5{left:238.906655pt;}
.xa{left:283.746655pt;}
.x1{left:399.266655pt;}
.xd{left:426.146655pt;}
.xf{left:431.266655pt;}
.x16{left:434.786655pt;}
.x17{left:454.173321pt;}
.x19{left:455.293321pt;}
.x10{left:459.773321pt;}
.x15{left:466.813321pt;}
.xe{left:479.293321pt;}
.x18{left:519.293321pt;}
.xc{left:575.613321pt;}
.x14{left:746.053321pt;}
}




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