
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_cb6682239b7de1fdb2cfb67c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_5beb75e81c2db4971cec08a2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_639a2243d36d4b8c79d4bdd9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1ca45ddb46ec2cc07344fea9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_edfb91a029a3284877e8060a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_0971baa83f37ce7761a22720.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_6ba6a6abb19328000f9eb113.woff2')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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.089400px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.262080px;}
.ls2{letter-spacing:0.300000px;}
.lse{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.540000px;}
.ls12{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsb{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.651200px;}
._3{width:2.808720px;}
._2{width:4.428000px;}
._9{width:6.426000px;}
._b{width:7.474800px;}
._f{width:8.921520px;}
._7{width:10.057680px;}
._5{width:11.380320px;}
._4{width:12.433680px;}
._10{width:13.784880px;}
._8{width:15.727680px;}
._6{width:17.388000px;}
._a{width:18.522000px;}
._e{width:20.056800px;}
._12{width:21.662640px;}
._14{width:22.683120px;}
._11{width:23.837040px;}
._d{width:25.704000px;}
._c{width:26.730000px;}
._13{width:28.565280px;}
._17{width:29.961840px;}
._18{width:31.250400px;}
._15{width:35.318160px;}
._16{width:491.015760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fs2{font-size:18.000000px;}
.fs7{font-size:23.760000px;}
.fsd{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsb{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y51{bottom:2.340000px;}
.y46{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y60{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y50{bottom:10.260000px;}
.y5c{bottom:19.260000px;}
.y45{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y5b{bottom:35.100000px;}
.y44{bottom:37.800000px;}
.y4f{bottom:39.960000px;}
.y3{bottom:47.910000px;}
.y4e{bottom:51.120000px;}
.y5a{bottom:54.180000px;}
.y43{bottom:55.080000px;}
.y4d{bottom:63.000000px;}
.y59{bottom:70.020000px;}
.y8{bottom:71.820000px;}
.y42{bottom:72.180000px;}
.y4c{bottom:75.990000px;}
.y58{bottom:87.330000px;}
.y4b{bottom:89.130000px;}
.y41{bottom:89.460000px;}
.y7{bottom:90.720000px;}
.y57{bottom:104.250000px;}
.y40{bottom:106.785000px;}
.y4a{bottom:111.090000px;}
.y5e{bottom:111.960000px;}
.y9a{bottom:120.780000px;}
.y56{bottom:122.070000px;}
.y3f{bottom:124.065000px;}
.y47{bottom:126.720000px;}
.y55{bottom:137.550000px;}
.y99{bottom:138.060000px;}
.y3e{bottom:141.345000px;}
.y54{bottom:153.030000px;}
.y98{bottom:155.340000px;}
.y3d{bottom:158.625000px;}
.y53{bottom:168.690000px;}
.y97{bottom:172.440000px;}
.y49{bottom:173.010000px;}
.y3c{bottom:175.545000px;}
.y48{bottom:183.630000px;}
.y52{bottom:184.170000px;}
.y96{bottom:189.720000px;}
.y3b{bottom:191.025000px;}
.y5d{bottom:200.370000px;}
.y3a{bottom:206.505000px;}
.y95{bottom:207.030000px;}
.y39{bottom:221.985000px;}
.y94{bottom:224.310000px;}
.y38{bottom:237.645000px;}
.y93{bottom:241.590000px;}
.yae{bottom:252.570000px;}
.y37{bottom:253.125000px;}
.y92{bottom:258.870000px;}
.y36{bottom:268.605000px;}
.yad{bottom:269.670000px;}
.y21{bottom:274.905000px;}
.y91{bottom:275.970000px;}
.y35{bottom:284.085000px;}
.yac{bottom:286.950000px;}
.y20{bottom:292.185000px;}
.y90{bottom:293.250000px;}
.y34{bottom:299.745000px;}
.yab{bottom:304.230000px;}
.y8f{bottom:310.530000px;}
.y33{bottom:315.225000px;}
.y1f{bottom:316.305000px;}
.yaa{bottom:321.510000px;}
.y8e{bottom:327.810000px;}
.y32{bottom:330.705000px;}
.ya9{bottom:338.790000px;}
.y13{bottom:340.410000px;}
.y1e{bottom:340.455000px;}
.y8d{bottom:345.090000px;}
.y31{bottom:346.215000px;}
.ya8{bottom:355.890000px;}
.y30{bottom:361.875000px;}
.y8c{bottom:362.190000px;}
.y1d{bottom:364.755000px;}
.ya7{bottom:373.710000px;}
.y2f{bottom:377.355000px;}
.y8b{bottom:379.470000px;}
.y1c{bottom:388.875000px;}
.ya6{bottom:391.350000px;}
.y2e{bottom:392.835000px;}
.y8a{bottom:396.750000px;}
.y2d{bottom:408.315000px;}
.ya5{bottom:408.990000px;}
.y1b{bottom:412.995000px;}
.y89{bottom:414.030000px;}
.y2c{bottom:423.975000px;}
.ya4{bottom:426.810000px;}
.y88{bottom:431.310000px;}
.y1a{bottom:437.115000px;}
.y2b{bottom:439.455000px;}
.ya3{bottom:444.495000px;}
.y87{bottom:448.635000px;}
.y2a{bottom:454.935000px;}
.y19{bottom:461.235000px;}
.ya2{bottom:462.135000px;}
.y86{bottom:465.735000px;}
.y29{bottom:470.415000px;}
.ya1{bottom:479.955000px;}
.y85{bottom:483.015000px;}
.y18{bottom:485.355000px;}
.y28{bottom:485.895000px;}
.ya0{bottom:497.595000px;}
.y84{bottom:500.295000px;}
.y27{bottom:501.555000px;}
.y17{bottom:509.475000px;}
.y9f{bottom:515.235000px;}
.y26{bottom:517.035000px;}
.y83{bottom:517.575000px;}
.y25{bottom:532.515000px;}
.y9e{bottom:533.055000px;}
.y16{bottom:533.775000px;}
.y82{bottom:534.855000px;}
.y24{bottom:547.995000px;}
.y9d{bottom:550.695000px;}
.y81{bottom:552.135000px;}
.y15{bottom:557.895000px;}
.y23{bottom:563.655000px;}
.y9c{bottom:568.335000px;}
.y80{bottom:569.235000px;}
.y22{bottom:579.180000px;}
.y14{bottom:582.060000px;}
.y9b{bottom:586.155000px;}
.y7f{bottom:586.515000px;}
.y7e{bottom:603.795000px;}
.y7d{bottom:621.075000px;}
.y7c{bottom:638.355000px;}
.y7b{bottom:655.455000px;}
.y7a{bottom:672.735000px;}
.y79{bottom:690.045000px;}
.y78{bottom:707.325000px;}
.y77{bottom:724.605000px;}
.y76{bottom:741.885000px;}
.y75{bottom:758.985000px;}
.y74{bottom:776.265000px;}
.y73{bottom:793.545000px;}
.y72{bottom:810.825000px;}
.y71{bottom:828.105000px;}
.y70{bottom:845.385000px;}
.y6f{bottom:862.485000px;}
.y6e{bottom:879.765000px;}
.y6d{bottom:897.045000px;}
.y6c{bottom:914.370000px;}
.y6b{bottom:931.650000px;}
.y12{bottom:934.710000px;}
.y11{bottom:937.410000px;}
.y6a{bottom:948.930000px;}
.y10{bottom:951.450000px;}
.y69{bottom:966.030000px;}
.yf{bottom:968.730000px;}
.ye{bottom:980.790000px;}
.y68{bottom:983.310000px;}
.y67{bottom:1000.590000px;}
.yd{bottom:1003.290000px;}
.yc{bottom:1015.350000px;}
.y66{bottom:1017.870000px;}
.yb{bottom:1033.890000px;}
.y65{bottom:1035.150000px;}
.y64{bottom:1052.250000px;}
.ya{bottom:1058.010000px;}
.y63{bottom:1069.530000px;}
.y9{bottom:1086.630000px;}
.y62{bottom:1086.810000px;}
.y5f{bottom:1089.900000px;}
.y61{bottom:1104.090000px;}
.y6{bottom:1119.390000px;}
.y1{bottom:1123.530000px;}
.he{height:4.064063px;}
.h11{height:8.851289px;}
.hd{height:17.181914px;}
.h6{height:17.903320px;}
.h18{height:21.867891px;}
.h17{height:26.033203px;}
.h1c{height:27.720000px;}
.hb{height:28.115859px;}
.h16{height:29.464453px;}
.h10{height:30.198516px;}
.h19{height:38.100586px;}
.h8{height:40.132617px;}
.h14{height:42.164648px;}
.h7{height:43.215117px;}
.h1e{height:43.506914px;}
.h12{height:43.822266px;}
.h13{height:44.507812px;}
.hc{height:45.004219px;}
.h5{height:47.901094px;}
.ha{height:48.312422px;}
.h1a{height:49.255313px;}
.h1b{height:50.229844px;}
.h9{height:59.436914px;}
.h1d{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h15{height:212.970000px;}
.hf{height:591.765000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:77.580000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w8{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:7.056000px;}
.x1b{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1f{left:18.216000px;}
.x19{left:19.656000px;}
.x18{left:22.536000px;}
.x21{left:29.196000px;}
.x17{left:31.716000px;}
.x11{left:43.776000px;}
.x20{left:47.736000px;}
.x12{left:50.796000px;}
.x10{left:54.936000px;}
.x22{left:57.096000px;}
.x1c{left:62.145000px;}
.x16{left:67.170000px;}
.x14{left:71.850000px;}
.x1{left:78.300000px;}
.x15{left:83.730000px;}
.x8{left:86.399987px;}
.x2{left:95.790000px;}
.x23{left:102.810000px;}
.x1e{left:106.770000px;}
.x25{left:113.435987px;}
.x13{left:124.590000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x1a{left:219.090000px;}
.xd{left:467.024987px;}
.xa{left:512.384987px;}
.xb{left:528.764987px;}
.xe{left:543.164987px;}
.xc{left:633.209987px;}
.x9{left:766.049987px;}
.x7{left:791.969987px;}
.xf{left:806.939987px;}
.x1d{left:815.580000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.232960pt;}
.ls2{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.480000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.467733pt;}
._3{width:2.496640pt;}
._2{width:3.936000pt;}
._9{width:5.712000pt;}
._b{width:6.644267pt;}
._f{width:7.930240pt;}
._7{width:8.940160pt;}
._5{width:10.115840pt;}
._4{width:11.052160pt;}
._10{width:12.253227pt;}
._8{width:13.980160pt;}
._6{width:15.456000pt;}
._a{width:16.464000pt;}
._e{width:17.828267pt;}
._12{width:19.255680pt;}
._14{width:20.162773pt;}
._11{width:21.188480pt;}
._d{width:22.848000pt;}
._c{width:23.760000pt;}
._13{width:25.391360pt;}
._17{width:26.632747pt;}
._18{width:27.778133pt;}
._15{width:31.393920pt;}
._16{width:436.458453pt;}
.fs8{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fs2{font-size:16.000000pt;}
.fs7{font-size:21.120000pt;}
.fsd{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsb{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:2.080000pt;}
.y46{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y60{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y50{bottom:9.120000pt;}
.y5c{bottom:17.120000pt;}
.y45{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y5b{bottom:31.200000pt;}
.y44{bottom:33.600000pt;}
.y4f{bottom:35.520000pt;}
.y3{bottom:42.586667pt;}
.y4e{bottom:45.440000pt;}
.y5a{bottom:48.160000pt;}
.y43{bottom:48.960000pt;}
.y4d{bottom:56.000000pt;}
.y59{bottom:62.240000pt;}
.y8{bottom:63.840000pt;}
.y42{bottom:64.160000pt;}
.y4c{bottom:67.546667pt;}
.y58{bottom:77.626667pt;}
.y4b{bottom:79.226667pt;}
.y41{bottom:79.520000pt;}
.y7{bottom:80.640000pt;}
.y57{bottom:92.666667pt;}
.y40{bottom:94.920000pt;}
.y4a{bottom:98.746667pt;}
.y5e{bottom:99.520000pt;}
.y9a{bottom:107.360000pt;}
.y56{bottom:108.506667pt;}
.y3f{bottom:110.280000pt;}
.y47{bottom:112.640000pt;}
.y55{bottom:122.266667pt;}
.y99{bottom:122.720000pt;}
.y3e{bottom:125.640000pt;}
.y54{bottom:136.026667pt;}
.y98{bottom:138.080000pt;}
.y3d{bottom:141.000000pt;}
.y53{bottom:149.946667pt;}
.y97{bottom:153.280000pt;}
.y49{bottom:153.786667pt;}
.y3c{bottom:156.040000pt;}
.y48{bottom:163.226667pt;}
.y52{bottom:163.706667pt;}
.y96{bottom:168.640000pt;}
.y3b{bottom:169.800000pt;}
.y5d{bottom:178.106667pt;}
.y3a{bottom:183.560000pt;}
.y95{bottom:184.026667pt;}
.y39{bottom:197.320000pt;}
.y94{bottom:199.386667pt;}
.y38{bottom:211.240000pt;}
.y93{bottom:214.746667pt;}
.yae{bottom:224.506667pt;}
.y37{bottom:225.000000pt;}
.y92{bottom:230.106667pt;}
.y36{bottom:238.760000pt;}
.yad{bottom:239.706667pt;}
.y21{bottom:244.360000pt;}
.y91{bottom:245.306667pt;}
.y35{bottom:252.520000pt;}
.yac{bottom:255.066667pt;}
.y20{bottom:259.720000pt;}
.y90{bottom:260.666667pt;}
.y34{bottom:266.440000pt;}
.yab{bottom:270.426667pt;}
.y8f{bottom:276.026667pt;}
.y33{bottom:280.200000pt;}
.y1f{bottom:281.160000pt;}
.yaa{bottom:285.786667pt;}
.y8e{bottom:291.386667pt;}
.y32{bottom:293.960000pt;}
.ya9{bottom:301.146667pt;}
.y13{bottom:302.586667pt;}
.y1e{bottom:302.626667pt;}
.y8d{bottom:306.746667pt;}
.y31{bottom:307.746667pt;}
.ya8{bottom:316.346667pt;}
.y30{bottom:321.666667pt;}
.y8c{bottom:321.946667pt;}
.y1d{bottom:324.226667pt;}
.ya7{bottom:332.186667pt;}
.y2f{bottom:335.426667pt;}
.y8b{bottom:337.306667pt;}
.y1c{bottom:345.666667pt;}
.ya6{bottom:347.866667pt;}
.y2e{bottom:349.186667pt;}
.y8a{bottom:352.666667pt;}
.y2d{bottom:362.946667pt;}
.ya5{bottom:363.546667pt;}
.y1b{bottom:367.106667pt;}
.y89{bottom:368.026667pt;}
.y2c{bottom:376.866667pt;}
.ya4{bottom:379.386667pt;}
.y88{bottom:383.386667pt;}
.y1a{bottom:388.546667pt;}
.y2b{bottom:390.626667pt;}
.ya3{bottom:395.106667pt;}
.y87{bottom:398.786667pt;}
.y2a{bottom:404.386667pt;}
.y19{bottom:409.986667pt;}
.ya2{bottom:410.786667pt;}
.y86{bottom:413.986667pt;}
.y29{bottom:418.146667pt;}
.ya1{bottom:426.626667pt;}
.y85{bottom:429.346667pt;}
.y18{bottom:431.426667pt;}
.y28{bottom:431.906667pt;}
.ya0{bottom:442.306667pt;}
.y84{bottom:444.706667pt;}
.y27{bottom:445.826667pt;}
.y17{bottom:452.866667pt;}
.y9f{bottom:457.986667pt;}
.y26{bottom:459.586667pt;}
.y83{bottom:460.066667pt;}
.y25{bottom:473.346667pt;}
.y9e{bottom:473.826667pt;}
.y16{bottom:474.466667pt;}
.y82{bottom:475.426667pt;}
.y24{bottom:487.106667pt;}
.y9d{bottom:489.506667pt;}
.y81{bottom:490.786667pt;}
.y15{bottom:495.906667pt;}
.y23{bottom:501.026667pt;}
.y9c{bottom:505.186667pt;}
.y80{bottom:505.986667pt;}
.y22{bottom:514.826667pt;}
.y14{bottom:517.386667pt;}
.y9b{bottom:521.026667pt;}
.y7f{bottom:521.346667pt;}
.y7e{bottom:536.706667pt;}
.y7d{bottom:552.066667pt;}
.y7c{bottom:567.426667pt;}
.y7b{bottom:582.626667pt;}
.y7a{bottom:597.986667pt;}
.y79{bottom:613.373333pt;}
.y78{bottom:628.733333pt;}
.y77{bottom:644.093333pt;}
.y76{bottom:659.453333pt;}
.y75{bottom:674.653333pt;}
.y74{bottom:690.013333pt;}
.y73{bottom:705.373333pt;}
.y72{bottom:720.733333pt;}
.y71{bottom:736.093333pt;}
.y70{bottom:751.453333pt;}
.y6f{bottom:766.653333pt;}
.y6e{bottom:782.013333pt;}
.y6d{bottom:797.373333pt;}
.y6c{bottom:812.773333pt;}
.y6b{bottom:828.133333pt;}
.y12{bottom:830.853333pt;}
.y11{bottom:833.253333pt;}
.y6a{bottom:843.493333pt;}
.y10{bottom:845.733333pt;}
.y69{bottom:858.693333pt;}
.yf{bottom:861.093333pt;}
.ye{bottom:871.813333pt;}
.y68{bottom:874.053333pt;}
.y67{bottom:889.413333pt;}
.yd{bottom:891.813333pt;}
.yc{bottom:902.533333pt;}
.y66{bottom:904.773333pt;}
.yb{bottom:919.013333pt;}
.y65{bottom:920.133333pt;}
.y64{bottom:935.333333pt;}
.ya{bottom:940.453333pt;}
.y63{bottom:950.693333pt;}
.y9{bottom:965.893333pt;}
.y62{bottom:966.053333pt;}
.y5f{bottom:968.800000pt;}
.y61{bottom:981.413333pt;}
.y6{bottom:995.013333pt;}
.y1{bottom:998.693333pt;}
.he{height:3.612500pt;}
.h11{height:7.867812pt;}
.hd{height:15.272812pt;}
.h6{height:15.914062pt;}
.h18{height:19.438125pt;}
.h17{height:23.140625pt;}
.h1c{height:24.640000pt;}
.hb{height:24.991875pt;}
.h16{height:26.190625pt;}
.h10{height:26.843125pt;}
.h19{height:33.867188pt;}
.h8{height:35.673437pt;}
.h14{height:37.479688pt;}
.h7{height:38.413438pt;}
.h1e{height:38.672812pt;}
.h12{height:38.953125pt;}
.h13{height:39.562500pt;}
.hc{height:40.003750pt;}
.h5{height:42.578750pt;}
.ha{height:42.944375pt;}
.h1a{height:43.782500pt;}
.h1b{height:44.648750pt;}
.h9{height:52.832812pt;}
.h1d{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h15{height:189.306667pt;}
.hf{height:526.013333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:68.960000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w8{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.272000pt;}
.x1b{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1f{left:16.192000pt;}
.x19{left:17.472000pt;}
.x18{left:20.032000pt;}
.x21{left:25.952000pt;}
.x17{left:28.192000pt;}
.x11{left:38.912000pt;}
.x20{left:42.432000pt;}
.x12{left:45.152000pt;}
.x10{left:48.832000pt;}
.x22{left:50.752000pt;}
.x1c{left:55.240000pt;}
.x16{left:59.706667pt;}
.x14{left:63.866667pt;}
.x1{left:69.600000pt;}
.x15{left:74.426667pt;}
.x8{left:76.799988pt;}
.x2{left:85.146667pt;}
.x23{left:91.386667pt;}
.x1e{left:94.906667pt;}
.x25{left:100.831988pt;}
.x13{left:110.746667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x1a{left:194.746667pt;}
.xd{left:415.133322pt;}
.xa{left:455.453322pt;}
.xb{left:470.013322pt;}
.xe{left:482.813322pt;}
.xc{left:562.853322pt;}
.x9{left:680.933322pt;}
.x7{left:703.973322pt;}
.xf{left:717.279988pt;}
.x1d{left:724.960000pt;}
}




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