
    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_038aacf72f8eaaadcdca65db.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_a0ee5ed42593cea9a59ff559.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_77d8ee48d6ad53fe4f478b75.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a25c5172876581f6cfb01d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5a3ae47a1401a1a58faa710e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_703fdf9643eb0dc4bf35d7eb.woff2')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_ce0866c8dea15c9deaead8c9.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v3{vertical-align:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.120000px;}
.v1{vertical-align:29.880000px;}
.v2{vertical-align:33.120000px;}
.ls13{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.342000px;}
.ls8{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.027360px;}
.ls14{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.021960px;}
.ls3{letter-spacing:0.090000px;}
.lse{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.300000px;}
.ls12{letter-spacing:25.308000px;}
.ls11{letter-spacing:52.308000px;}
.ls4{letter-spacing:97.380000px;}
.ls0{letter-spacing:1585.950000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.650000px;}
.wsa{word-spacing:-16.470000px;}
.ws9{word-spacing:-16.290000px;}
.ws4{word-spacing:-14.220000px;}
.ws3{word-spacing:-14.192640px;}
.wsb{word-spacing:-13.644000px;}
.wse{word-spacing:-13.626000px;}
.wsd{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.392000px;}
.ws10{word-spacing:-13.140000px;}
.ws5{word-spacing:-10.530000px;}
.ws6{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-1.080000px;}
._0{width:1.110240px;}
._7{width:2.646000px;}
._8{width:4.266000px;}
._c{width:5.309520px;}
._e{width:6.372000px;}
._d{width:7.398000px;}
._f{width:8.982000px;}
._10{width:10.086000px;}
._4{width:11.556000px;}
._b{width:13.770000px;}
._14{width:16.470000px;}
._13{width:17.550000px;}
._15{width:18.630000px;}
._12{width:22.248000px;}
._11{width:23.382000px;}
._5{width:48.180000px;}
._9{width:103.770000px;}
._6{width:199.530000px;}
._2{width:817.050000px;}
._a{width:1549.410000px;}
._1{width:1867.290000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,113,187);}
.fc1{color:rgb(23,111,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs7{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.000000px;}
.fs6{font-size:83.880000px;}
.y33{bottom:-17.370000px;}
.y0{bottom:0.000000px;}
.y32{bottom:1.440000px;}
.y2e{bottom:5.038500px;}
.y2d{bottom:38.641500px;}
.y2{bottom:58.260000px;}
.y30{bottom:61.860000px;}
.y1{bottom:77.250000px;}
.y60{bottom:90.120000px;}
.y8d{bottom:91.380000px;}
.y5f{bottom:113.430000px;}
.y2c{bottom:115.140000px;}
.y8c{bottom:118.560000px;}
.y5e{bottom:136.740000px;}
.y8b{bottom:141.870000px;}
.y2b{bottom:143.850000px;}
.y5d{bottom:159.960000px;}
.y8a{bottom:165.180000px;}
.yae{bottom:184.260000px;}
.y2a{bottom:184.440000px;}
.y5c{bottom:186.870000px;}
.y89{bottom:188.490000px;}
.y29{bottom:208.110000px;}
.yad{bottom:211.440000px;}
.y88{bottom:211.710000px;}
.y5b{bottom:214.320000px;}
.y28{bottom:231.330000px;}
.y87{bottom:235.020000px;}
.y5a{bottom:237.630000px;}
.yac{bottom:238.620000px;}
.y27{bottom:254.640000px;}
.y86{bottom:258.240000px;}
.y59{bottom:260.850000px;}
.yab{bottom:265.800000px;}
.y26{bottom:277.950000px;}
.y85{bottom:285.150000px;}
.y58{bottom:288.120000px;}
.yaa{bottom:292.980000px;}
.y25{bottom:301.260000px;}
.y57{bottom:311.430000px;}
.y84{bottom:312.690000px;}
.ya9{bottom:320.160000px;}
.y24{bottom:324.480000px;}
.y56{bottom:334.650000px;}
.y83{bottom:335.910000px;}
.ya8{bottom:347.340000px;}
.y23{bottom:347.790000px;}
.y55{bottom:357.960000px;}
.y82{bottom:362.820000px;}
.y22{bottom:371.100000px;}
.ya7{bottom:374.520000px;}
.y54{bottom:381.270000px;}
.y81{bottom:390.360000px;}
.y21{bottom:394.140000px;}
.ya6{bottom:401.700000px;}
.y53{bottom:404.490000px;}
.y80{bottom:413.580000px;}
.y20{bottom:418.170000px;}
.ya5{bottom:428.970000px;}
.y52{bottom:431.400000px;}
.y7f{bottom:436.890000px;}
.y1f{bottom:445.800000px;}
.ya4{bottom:456.150000px;}
.y51{bottom:458.940000px;}
.y7e{bottom:460.200000px;}
.y1e{bottom:469.110000px;}
.y50{bottom:482.190000px;}
.ya3{bottom:483.360000px;}
.y7d{bottom:483.540000px;}
.y1d{bottom:492.450000px;}
.y4f{bottom:505.500000px;}
.y7c{bottom:506.760000px;}
.ya2{bottom:510.540000px;}
.y1c{bottom:517.740000px;}
.y4e{bottom:528.810000px;}
.y7b{bottom:530.070000px;}
.ya1{bottom:537.720000px;}
.y1b{bottom:544.200000px;}
.y4d{bottom:552.030000px;}
.y7a{bottom:553.380000px;}
.ya0{bottom:564.900000px;}
.y1a{bottom:567.420000px;}
.y79{bottom:576.600000px;}
.y4c{bottom:578.940000px;}
.y19{bottom:590.730000px;}
.y9f{bottom:591.810000px;}
.y78{bottom:603.510000px;}
.y4b{bottom:606.480000px;}
.y9e{bottom:619.260000px;}
.y18{bottom:620.070000px;}
.y4a{bottom:629.700000px;}
.y77{bottom:631.050000px;}
.y17{bottom:643.380000px;}
.y9d{bottom:646.170000px;}
.y49{bottom:653.010000px;}
.y76{bottom:654.270000px;}
.y16{bottom:666.600000px;}
.y9c{bottom:673.710000px;}
.y48{bottom:676.320000px;}
.y75{bottom:677.580000px;}
.y15{bottom:689.910000px;}
.y9b{bottom:696.930000px;}
.y47{bottom:699.630000px;}
.y74{bottom:700.890000px;}
.y14{bottom:709.170000px;}
.y9a{bottom:719.970000px;}
.y46{bottom:722.850000px;}
.y73{bottom:724.200000px;}
.y13{bottom:737.700000px;}
.y45{bottom:746.070000px;}
.y99{bottom:747.150000px;}
.y72{bottom:747.420000px;}
.y12{bottom:766.140000px;}
.y71{bottom:770.730000px;}
.y44{bottom:773.340000px;}
.y98{bottom:774.600000px;}
.y70{bottom:793.950000px;}
.y11{bottom:794.580000px;}
.y43{bottom:796.650000px;}
.y97{bottom:801.780000px;}
.y42{bottom:819.960000px;}
.y6f{bottom:820.860000px;}
.y96{bottom:825.090000px;}
.y10{bottom:826.620000px;}
.y41{bottom:843.180000px;}
.y6e{bottom:848.400000px;}
.yf{bottom:862.890000px;}
.y40{bottom:870.090000px;}
.y6d{bottom:871.710000px;}
.y3f{bottom:892.500000px;}
.y6c{bottom:894.930000px;}
.ye{bottom:897.000000px;}
.y3e{bottom:915.270000px;}
.y6b{bottom:918.240000px;}
.y95{bottom:921.840000px;}
.yd{bottom:929.670000px;}
.y6a{bottom:941.550000px;}
.y3d{bottom:944.160000px;}
.y94{bottom:949.290000px;}
.y9{bottom:963.330000px;}
.yc{bottom:964.680000px;}
.y69{bottom:964.770000px;}
.y3c{bottom:967.470000px;}
.y93{bottom:972.600000px;}
.yb{bottom:989.160000px;}
.y3b{bottom:990.690000px;}
.y68{bottom:991.680000px;}
.y92{bottom:995.910000px;}
.y8{bottom:998.250000px;}
.ya{bottom:1012.140000px;}
.y3a{bottom:1013.940000px;}
.y67{bottom:1019.250000px;}
.y7{bottom:1036.980000px;}
.y39{bottom:1041.210000px;}
.y66{bottom:1042.470000px;}
.y38{bottom:1064.520000px;}
.y6{bottom:1064.880000px;}
.y65{bottom:1065.780000px;}
.y37{bottom:1087.830000px;}
.y91{bottom:1089.000000px;}
.y64{bottom:1089.090000px;}
.y5{bottom:1094.670000px;}
.y36{bottom:1111.050000px;}
.y63{bottom:1112.310000px;}
.y90{bottom:1115.910000px;}
.y4{bottom:1124.370000px;}
.y35{bottom:1139.130000px;}
.y62{bottom:1139.220000px;}
.y8f{bottom:1143.450000px;}
.y3{bottom:1156.500000px;}
.y34{bottom:1165.050000px;}
.y61{bottom:1166.670000px;}
.y8e{bottom:1166.760000px;}
.y2f{bottom:1193.670000px;}
.y31{bottom:1194.750000px;}
.h15{height:16.740000px;}
.h13{height:21.238500px;}
.hf{height:35.314453px;}
.h17{height:46.991602px;}
.h7{height:48.254063px;}
.h10{height:52.971680px;}
.h16{height:52.998047px;}
.h12{height:54.421875px;}
.h19{height:55.503491px;}
.h9{height:55.796836px;}
.h8{height:57.324375px;}
.ha{height:58.975137px;}
.h14{height:59.004492px;}
.h18{height:60.401250px;}
.h4{height:60.589687px;}
.h11{height:64.625449px;}
.h2{height:64.657617px;}
.h5{height:66.394687px;}
.hb{height:70.664062px;}
.he{height:72.329062px;}
.h3{height:72.562500px;}
.hd{height:80.111602px;}
.h6{height:81.632812px;}
.hc{height:84.535312px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:24.750000px;}
.w3{width:340.710000px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x14{left:4.500000px;}
.x16{left:10.800000px;}
.x2{left:37.530000px;}
.xe{left:47.250000px;}
.x12{left:54.000000px;}
.xc{left:76.410000px;}
.x1c{left:81.000000px;}
.xf{left:84.060000px;}
.x7{left:244.110000px;}
.x3{left:270.030000px;}
.x6{left:290.550000px;}
.xd{left:336.360000px;}
.x1b{left:369.780000px;}
.x1a{left:376.530000px;}
.x10{left:381.390000px;}
.x18{left:388.860000px;}
.x11{left:401.640000px;}
.x19{left:406.410000px;}
.x13{left:434.040000px;}
.x1{left:438.810000px;}
.x17{left:448.890000px;}
.x4{left:450.420000px;}
.xb{left:452.310000px;}
.xa{left:506.400000px;}
.x15{left:523.230000px;}
.x9{left:527.460000px;}
.x8{left:671.940000px;}
.x5{left:856.650000px;}
@media print{
.v3{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.440000pt;}
.v1{vertical-align:26.560000pt;}
.v2{vertical-align:29.440000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls8{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.024320pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.019520pt;}
.ls3{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls12{letter-spacing:22.496000pt;}
.ls11{letter-spacing:46.496000pt;}
.ls4{letter-spacing:86.560000pt;}
.ls0{letter-spacing:1409.733333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.800000pt;}
.wsa{word-spacing:-14.640000pt;}
.ws9{word-spacing:-14.480000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.615680pt;}
.wsb{word-spacing:-12.128000pt;}
.wse{word-spacing:-12.112000pt;}
.wsd{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.904000pt;}
.ws10{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.360000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-0.960000pt;}
._0{width:0.986880pt;}
._7{width:2.352000pt;}
._8{width:3.792000pt;}
._c{width:4.719573pt;}
._e{width:5.664000pt;}
._d{width:6.576000pt;}
._f{width:7.984000pt;}
._10{width:8.965333pt;}
._4{width:10.272000pt;}
._b{width:12.240000pt;}
._14{width:14.640000pt;}
._13{width:15.600000pt;}
._15{width:16.560000pt;}
._12{width:19.776000pt;}
._11{width:20.784000pt;}
._5{width:42.826667pt;}
._9{width:92.240000pt;}
._6{width:177.360000pt;}
._2{width:726.266667pt;}
._a{width:1377.253333pt;}
._1{width:1659.813333pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.000000pt;}
.fs6{font-size:74.560000pt;}
.y33{bottom:-15.440000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:1.280000pt;}
.y2e{bottom:4.478667pt;}
.y2d{bottom:34.348000pt;}
.y2{bottom:51.786667pt;}
.y30{bottom:54.986667pt;}
.y1{bottom:68.666667pt;}
.y60{bottom:80.106667pt;}
.y8d{bottom:81.226667pt;}
.y5f{bottom:100.826667pt;}
.y2c{bottom:102.346667pt;}
.y8c{bottom:105.386667pt;}
.y5e{bottom:121.546667pt;}
.y8b{bottom:126.106667pt;}
.y2b{bottom:127.866667pt;}
.y5d{bottom:142.186667pt;}
.y8a{bottom:146.826667pt;}
.yae{bottom:163.786667pt;}
.y2a{bottom:163.946667pt;}
.y5c{bottom:166.106667pt;}
.y89{bottom:167.546667pt;}
.y29{bottom:184.986667pt;}
.yad{bottom:187.946667pt;}
.y88{bottom:188.186667pt;}
.y5b{bottom:190.506667pt;}
.y28{bottom:205.626667pt;}
.y87{bottom:208.906667pt;}
.y5a{bottom:211.226667pt;}
.yac{bottom:212.106667pt;}
.y27{bottom:226.346667pt;}
.y86{bottom:229.546667pt;}
.y59{bottom:231.866667pt;}
.yab{bottom:236.266667pt;}
.y26{bottom:247.066667pt;}
.y85{bottom:253.466667pt;}
.y58{bottom:256.106667pt;}
.yaa{bottom:260.426667pt;}
.y25{bottom:267.786667pt;}
.y57{bottom:276.826667pt;}
.y84{bottom:277.946667pt;}
.ya9{bottom:284.586667pt;}
.y24{bottom:288.426667pt;}
.y56{bottom:297.466667pt;}
.y83{bottom:298.586667pt;}
.ya8{bottom:308.746667pt;}
.y23{bottom:309.146667pt;}
.y55{bottom:318.186667pt;}
.y82{bottom:322.506667pt;}
.y22{bottom:329.866667pt;}
.ya7{bottom:332.906667pt;}
.y54{bottom:338.906667pt;}
.y81{bottom:346.986667pt;}
.y21{bottom:350.346667pt;}
.ya6{bottom:357.066667pt;}
.y53{bottom:359.546667pt;}
.y80{bottom:367.626667pt;}
.y20{bottom:371.706667pt;}
.ya5{bottom:381.306667pt;}
.y52{bottom:383.466667pt;}
.y7f{bottom:388.346667pt;}
.y1f{bottom:396.266667pt;}
.ya4{bottom:405.466667pt;}
.y51{bottom:407.946667pt;}
.y7e{bottom:409.066667pt;}
.y1e{bottom:416.986667pt;}
.y50{bottom:428.613333pt;}
.ya3{bottom:429.653333pt;}
.y7d{bottom:429.813333pt;}
.y1d{bottom:437.733333pt;}
.y4f{bottom:449.333333pt;}
.y7c{bottom:450.453333pt;}
.ya2{bottom:453.813333pt;}
.y1c{bottom:460.213333pt;}
.y4e{bottom:470.053333pt;}
.y7b{bottom:471.173333pt;}
.ya1{bottom:477.973333pt;}
.y1b{bottom:483.733333pt;}
.y4d{bottom:490.693333pt;}
.y7a{bottom:491.893333pt;}
.ya0{bottom:502.133333pt;}
.y1a{bottom:504.373333pt;}
.y79{bottom:512.533333pt;}
.y4c{bottom:514.613333pt;}
.y19{bottom:525.093333pt;}
.y9f{bottom:526.053333pt;}
.y78{bottom:536.453333pt;}
.y4b{bottom:539.093333pt;}
.y9e{bottom:550.453333pt;}
.y18{bottom:551.173333pt;}
.y4a{bottom:559.733333pt;}
.y77{bottom:560.933333pt;}
.y17{bottom:571.893333pt;}
.y9d{bottom:574.373333pt;}
.y49{bottom:580.453333pt;}
.y76{bottom:581.573333pt;}
.y16{bottom:592.533333pt;}
.y9c{bottom:598.853333pt;}
.y48{bottom:601.173333pt;}
.y75{bottom:602.293333pt;}
.y15{bottom:613.253333pt;}
.y9b{bottom:619.493333pt;}
.y47{bottom:621.893333pt;}
.y74{bottom:623.013333pt;}
.y14{bottom:630.373333pt;}
.y9a{bottom:639.973333pt;}
.y46{bottom:642.533333pt;}
.y73{bottom:643.733333pt;}
.y13{bottom:655.733333pt;}
.y45{bottom:663.173333pt;}
.y99{bottom:664.133333pt;}
.y72{bottom:664.373333pt;}
.y12{bottom:681.013333pt;}
.y71{bottom:685.093333pt;}
.y44{bottom:687.413333pt;}
.y98{bottom:688.533333pt;}
.y70{bottom:705.733333pt;}
.y11{bottom:706.293333pt;}
.y43{bottom:708.133333pt;}
.y97{bottom:712.693333pt;}
.y42{bottom:728.853333pt;}
.y6f{bottom:729.653333pt;}
.y96{bottom:733.413333pt;}
.y10{bottom:734.773333pt;}
.y41{bottom:749.493333pt;}
.y6e{bottom:754.133333pt;}
.yf{bottom:767.013333pt;}
.y40{bottom:773.413333pt;}
.y6d{bottom:774.853333pt;}
.y3f{bottom:793.333333pt;}
.y6c{bottom:795.493333pt;}
.ye{bottom:797.333333pt;}
.y3e{bottom:813.573333pt;}
.y6b{bottom:816.213333pt;}
.y95{bottom:819.413333pt;}
.yd{bottom:826.373333pt;}
.y6a{bottom:836.933333pt;}
.y3d{bottom:839.253333pt;}
.y94{bottom:843.813333pt;}
.y9{bottom:856.293333pt;}
.yc{bottom:857.493333pt;}
.y69{bottom:857.573333pt;}
.y3c{bottom:859.973333pt;}
.y93{bottom:864.533333pt;}
.yb{bottom:879.253333pt;}
.y3b{bottom:880.613333pt;}
.y68{bottom:881.493333pt;}
.y92{bottom:885.253333pt;}
.y8{bottom:887.333333pt;}
.ya{bottom:899.680000pt;}
.y3a{bottom:901.280000pt;}
.y67{bottom:906.000000pt;}
.y7{bottom:921.760000pt;}
.y39{bottom:925.520000pt;}
.y66{bottom:926.640000pt;}
.y38{bottom:946.240000pt;}
.y6{bottom:946.560000pt;}
.y65{bottom:947.360000pt;}
.y37{bottom:966.960000pt;}
.y91{bottom:968.000000pt;}
.y64{bottom:968.080000pt;}
.y5{bottom:973.040000pt;}
.y36{bottom:987.600000pt;}
.y63{bottom:988.720000pt;}
.y90{bottom:991.920000pt;}
.y4{bottom:999.440000pt;}
.y35{bottom:1012.560000pt;}
.y62{bottom:1012.640000pt;}
.y8f{bottom:1016.400000pt;}
.y3{bottom:1028.000000pt;}
.y34{bottom:1035.600000pt;}
.y61{bottom:1037.040000pt;}
.y8e{bottom:1037.120000pt;}
.y2f{bottom:1061.040000pt;}
.y31{bottom:1062.000000pt;}
.h15{height:14.880000pt;}
.h13{height:18.878667pt;}
.hf{height:31.390625pt;}
.h17{height:41.770312pt;}
.h7{height:42.892500pt;}
.h10{height:47.085938pt;}
.h16{height:47.109375pt;}
.h12{height:48.375000pt;}
.h19{height:49.336436pt;}
.h9{height:49.597187pt;}
.h8{height:50.955000pt;}
.ha{height:52.422344pt;}
.h14{height:52.448437pt;}
.h18{height:53.690000pt;}
.h4{height:53.857500pt;}
.h11{height:57.444844pt;}
.h2{height:57.473437pt;}
.h5{height:59.017500pt;}
.hb{height:62.812500pt;}
.he{height:64.292500pt;}
.h3{height:64.500000pt;}
.hd{height:71.210313pt;}
.h6{height:72.562500pt;}
.hc{height:75.142500pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:22.000000pt;}
.w3{width:302.853333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x14{left:4.000000pt;}
.x16{left:9.600000pt;}
.x2{left:33.360000pt;}
.xe{left:42.000000pt;}
.x12{left:48.000000pt;}
.xc{left:67.920000pt;}
.x1c{left:72.000000pt;}
.xf{left:74.720000pt;}
.x7{left:216.986667pt;}
.x3{left:240.026667pt;}
.x6{left:258.266667pt;}
.xd{left:298.986667pt;}
.x1b{left:328.693333pt;}
.x1a{left:334.693333pt;}
.x10{left:339.013333pt;}
.x18{left:345.653333pt;}
.x11{left:357.013333pt;}
.x19{left:361.253333pt;}
.x13{left:385.813333pt;}
.x1{left:390.053333pt;}
.x17{left:399.013333pt;}
.x4{left:400.373333pt;}
.xb{left:402.053333pt;}
.xa{left:450.133333pt;}
.x15{left:465.093333pt;}
.x9{left:468.853333pt;}
.x8{left:597.280000pt;}
.x5{left:761.466667pt;}
}




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