
    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_a0f28dedc0d40f19ec92efa7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9ed96e6f71f8c7e265258b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f78edd35dc1e858adbe28203.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_237a732d2d847ffb632d65ef.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_4d45334c500c3cd2be26fe0f.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_2137545c75ad496431f9fc12.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_b4b088a15e4a5889ebe26be1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5e5bc8254923522b49353bd4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a514d436fc481803da1c1f35.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls11{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.192000px;}
.ls5{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.440000px;}
.ls12{letter-spacing:18.144000px;}
.lse{letter-spacing:40.986720px;}
.ls10{letter-spacing:54.144000px;}
.lsf{letter-spacing:87.066720px;}
.lsc{letter-spacing:135.504000px;}
.lsd{letter-spacing:139.104000px;}
.ls8{letter-spacing:165.546720px;}
.lsb{letter-spacing:169.146720px;}
.ls7{letter-spacing:181.584000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws4{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-4.320000px;}
._3{margin-left:-2.929920px;}
._0{margin-left:-1.126080px;}
._1{width:1.398000px;}
._16{width:2.472000px;}
._2{width:3.499440px;}
._10{width:5.472000px;}
._11{width:6.552000px;}
._f{width:8.064000px;}
._4{width:10.080000px;}
._9{width:11.160000px;}
._1c{width:12.168000px;}
._7{width:13.196160px;}
._6{width:14.400000px;}
._a{width:16.272000px;}
._8{width:19.428000px;}
._26{width:20.462400px;}
._27{width:21.596400px;}
._28{width:22.721280px;}
._29{width:24.768000px;}
._c{width:25.848000px;}
._13{width:27.500160px;}
._b{width:28.560000px;}
._d{width:29.568000px;}
._e{width:31.008000px;}
._19{width:32.667120px;}
._18{width:33.732480px;}
._17{width:35.472000px;}
._2b{width:36.841920px;}
._2a{width:37.894080px;}
._12{width:41.710080px;}
._2c{width:42.907680px;}
._14{width:47.664000px;}
._15{width:48.960000px;}
._22{width:62.856000px;}
._23{width:64.744080px;}
._2e{width:66.073920px;}
._2d{width:67.702080px;}
._24{width:82.008000px;}
._1d{width:94.510080px;}
._1e{width:108.792000px;}
._21{width:154.728000px;}
._25{width:170.064000px;}
._20{width:181.126080px;}
._1f{width:194.374080px;}
._1a{width:198.694080px;}
._1b{width:310.078080px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y66{bottom:7.020000px;}
.y9a{bottom:7.200000px;}
.y6f{bottom:7.380000px;}
.y6b{bottom:7.560000px;}
.y8c{bottom:7.605000px;}
.y6{bottom:10.620000px;}
.y7{bottom:11.340000px;}
.y93{bottom:30.774000px;}
.y6d{bottom:30.780000px;}
.y96{bottom:30.810000px;}
.y71{bottom:30.960000px;}
.y94{bottom:31.134000px;}
.y6e{bottom:31.140000px;}
.y97{bottom:31.170000px;}
.y6a{bottom:31.320000px;}
.y68{bottom:54.750000px;}
.y69{bottom:55.110000px;}
.y8{bottom:57.420000px;}
.y5{bottom:73.836000px;}
.y5f{bottom:107.856000px;}
.y65{bottom:123.516000px;}
.yaf{bottom:127.116000px;}
.y5e{bottom:131.616000px;}
.y92{bottom:136.836000px;}
.yae{bottom:150.870000px;}
.y32{bottom:151.410000px;}
.y64{bottom:155.010000px;}
.y5d{bottom:155.370000px;}
.yad{bottom:174.810000px;}
.y31{bottom:175.170000px;}
.y63{bottom:178.950000px;}
.y5c{bottom:179.310000px;}
.y91{bottom:185.070000px;}
.yac{bottom:198.570000px;}
.y30{bottom:198.930000px;}
.y62{bottom:202.710000px;}
.y5b{bottom:203.070000px;}
.yab{bottom:222.330000px;}
.y2f{bottom:222.690000px;}
.y5a{bottom:226.830000px;}
.y90{bottom:240.510000px;}
.yaa{bottom:246.090000px;}
.y2e{bottom:246.630000px;}
.y59{bottom:250.590000px;}
.y8f{bottom:264.270000px;}
.ya9{bottom:269.850000px;}
.y2d{bottom:270.390000px;}
.y58{bottom:274.350000px;}
.y8e{bottom:281.730000px;}
.ya8{bottom:293.790000px;}
.y2c{bottom:294.150000px;}
.y57{bottom:298.290000px;}
.y8d{bottom:306.390000px;}
.ya7{bottom:317.550000px;}
.y2b{bottom:317.910000px;}
.y56{bottom:322.050000px;}
.y8b{bottom:330.870000px;}
.ya6{bottom:341.355000px;}
.y2a{bottom:341.895000px;}
.y55{bottom:345.855000px;}
.y8a{bottom:355.575000px;}
.ya5{bottom:365.115000px;}
.y29{bottom:365.655000px;}
.y54{bottom:369.615000px;}
.y89{bottom:380.055000px;}
.ya4{bottom:389.055000px;}
.y28{bottom:389.415000px;}
.y53{bottom:393.555000px;}
.y88{bottom:404.715000px;}
.y27{bottom:412.815000px;}
.y52{bottom:417.315000px;}
.y87{bottom:436.215000px;}
.ya3{bottom:436.575000px;}
.y26{bottom:436.755000px;}
.y51{bottom:441.075000px;}
.y86{bottom:459.975000px;}
.ya2{bottom:460.335000px;}
.y50{bottom:464.835000px;}
.y25{bottom:472.755000px;}
.ya1{bottom:483.915000px;}
.y85{bottom:484.275000px;}
.y4f{bottom:488.775000px;}
.y24{bottom:496.695000px;}
.y84{bottom:508.035000px;}
.y4e{bottom:512.535000px;}
.y23{bottom:520.455000px;}
.y83{bottom:531.435000px;}
.ya0{bottom:531.795000px;}
.y4d{bottom:536.295000px;}
.y22{bottom:544.215000px;}
.y82{bottom:555.555000px;}
.y4c{bottom:560.055000px;}
.y21{bottom:567.975000px;}
.y81{bottom:579.495000px;}
.y4b{bottom:583.995000px;}
.y20{bottom:591.915000px;}
.y80{bottom:603.255000px;}
.y4a{bottom:607.785000px;}
.y1f{bottom:615.705000px;}
.y7f{bottom:627.045000px;}
.y49{bottom:631.545000px;}
.y1e{bottom:639.465000px;}
.y7e{bottom:650.805000px;}
.y48{bottom:655.305000px;}
.y1d{bottom:663.225000px;}
.y7d{bottom:674.745000px;}
.y47{bottom:679.245000px;}
.y1c{bottom:687.165000px;}
.y7c{bottom:698.505000px;}
.y46{bottom:703.005000px;}
.y1b{bottom:710.925000px;}
.y7b{bottom:722.265000px;}
.yb1{bottom:726.405000px;}
.y45{bottom:726.765000px;}
.y1a{bottom:734.685000px;}
.y7a{bottom:746.025000px;}
.yb0{bottom:750.165000px;}
.y44{bottom:750.525000px;}
.y19{bottom:758.445000px;}
.y79{bottom:769.965000px;}
.y43{bottom:774.465000px;}
.y18{bottom:782.385000px;}
.y78{bottom:793.725000px;}
.y42{bottom:798.225000px;}
.y17{bottom:806.145000px;}
.y77{bottom:817.485000px;}
.y41{bottom:821.985000px;}
.y16{bottom:829.905000px;}
.y76{bottom:841.245000px;}
.y40{bottom:845.385000px;}
.y61{bottom:845.745000px;}
.y15{bottom:853.665000px;}
.y75{bottom:865.005000px;}
.y3f{bottom:869.505000px;}
.y14{bottom:877.650000px;}
.y74{bottom:888.630000px;}
.y9f{bottom:888.990000px;}
.y3e{bottom:893.490000px;}
.y13{bottom:901.410000px;}
.y73{bottom:906.090000px;}
.y9e{bottom:912.750000px;}
.y3d{bottom:917.250000px;}
.y12{bottom:925.170000px;}
.y9d{bottom:936.150000px;}
.y3c{bottom:941.010000px;}
.y11{bottom:948.570000px;}
.y9c{bottom:953.610000px;}
.y72{bottom:954.510000px;}
.y3b{bottom:964.770000px;}
.y10{bottom:972.510000px;}
.y9b{bottom:978.270000px;}
.y3a{bottom:988.350000px;}
.y60{bottom:988.710000px;}
.yf{bottom:996.630000px;}
.y70{bottom:1002.750000px;}
.y39{bottom:1012.470000px;}
.ye{bottom:1020.390000px;}
.y99{bottom:1026.510000px;}
.y38{bottom:1036.230000px;}
.yd{bottom:1043.790000px;}
.y6c{bottom:1051.170000px;}
.y37{bottom:1059.990000px;}
.yc{bottom:1067.550000px;}
.y98{bottom:1074.930000px;}
.y36{bottom:1083.930000px;}
.yb{bottom:1097.430000px;}
.y67{bottom:1099.410000px;}
.y35{bottom:1107.690000px;}
.ya{bottom:1117.590000px;}
.y95{bottom:1123.350000px;}
.y34{bottom:1131.450000px;}
.y9{bottom:1149.300000px;}
.y33{bottom:1155.240000px;}
.y4{bottom:1195.020000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.140000px;}
.hd{height:23.760000px;}
.h12{height:23.940000px;}
.h11{height:23.976000px;}
.h5{height:27.000000px;}
.hf{height:47.520000px;}
.h13{height:47.556000px;}
.h10{height:47.700000px;}
.h9{height:48.616875px;}
.h7{height:50.229844px;}
.h4{height:54.421875px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.he{height:71.496000px;}
.h2{height:72.562500px;}
.hc{height:74.004654px;}
.ha{height:74.704922px;}
.h8{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.we{width:110.340000px;}
.wa{width:129.600000px;}
.wf{width:154.650000px;}
.wc{width:159.690000px;}
.wd{width:168.150000px;}
.wb{width:169.410000px;}
.w8{width:184.350000px;}
.w9{width:199.650000px;}
.w6{width:225.210000px;}
.w10{width:228.090000px;}
.w7{width:235.470000px;}
.w5{width:298.650000px;}
.w3{width:298.830000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x15{left:9.720000px;}
.x8{left:43.560000px;}
.x5{left:95.796000px;}
.xe{left:99.035987px;}
.x19{left:106.955987px;}
.xa{left:113.435987px;}
.x1f{left:114.696000px;}
.x1b{left:116.316000px;}
.x14{left:123.336000px;}
.x22{left:127.835987px;}
.x12{left:138.275987px;}
.xb{left:139.715987px;}
.x11{left:148.895987px;}
.x3{left:190.649987px;}
.x13{left:202.889987px;}
.x1e{left:224.309987px;}
.xf{left:256.349987px;}
.x20{left:283.755000px;}
.x6{left:290.739000px;}
.x1c{left:316.695000px;}
.x10{left:322.274987px;}
.x2{left:333.254987px;}
.x4{left:342.614987px;}
.x16{left:349.275000px;}
.xd{left:351.434987px;}
.x1a{left:354.314987px;}
.x7{left:394.635000px;}
.xc{left:446.474987px;}
.x9{left:498.705000px;}
.x21{left:550.365000px;}
.x17{left:585.465000px;}
.x1d{left:617.145000px;}
.x1{left:797.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.170667pt;}
.ls5{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls12{letter-spacing:16.128000pt;}
.lse{letter-spacing:36.432640pt;}
.ls10{letter-spacing:48.128000pt;}
.lsf{letter-spacing:77.392640pt;}
.lsc{letter-spacing:120.448000pt;}
.lsd{letter-spacing:123.648000pt;}
.ls8{letter-spacing:147.152640pt;}
.lsb{letter-spacing:150.352640pt;}
.ls7{letter-spacing:161.408000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws4{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-3.840000pt;}
._3{margin-left:-2.604373pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.242667pt;}
._16{width:2.197333pt;}
._2{width:3.110613pt;}
._10{width:4.864000pt;}
._11{width:5.824000pt;}
._f{width:7.168000pt;}
._4{width:8.960000pt;}
._9{width:9.920000pt;}
._1c{width:10.816000pt;}
._7{width:11.729920pt;}
._6{width:12.800000pt;}
._a{width:14.464000pt;}
._8{width:17.269333pt;}
._26{width:18.188800pt;}
._27{width:19.196800pt;}
._28{width:20.196693pt;}
._29{width:22.016000pt;}
._c{width:22.976000pt;}
._13{width:24.444587pt;}
._b{width:25.386667pt;}
._d{width:26.282667pt;}
._e{width:27.562667pt;}
._19{width:29.037440pt;}
._18{width:29.984427pt;}
._17{width:31.530667pt;}
._2b{width:32.748373pt;}
._2a{width:33.683627pt;}
._12{width:37.075627pt;}
._2c{width:38.140160pt;}
._14{width:42.368000pt;}
._15{width:43.520000pt;}
._22{width:55.872000pt;}
._23{width:57.550293pt;}
._2e{width:58.732373pt;}
._2d{width:60.179627pt;}
._24{width:72.896000pt;}
._1d{width:84.008960pt;}
._1e{width:96.704000pt;}
._21{width:137.536000pt;}
._25{width:151.168000pt;}
._20{width:161.000960pt;}
._1f{width:172.776960pt;}
._1a{width:176.616960pt;}
._1b{width:275.624960pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:6.240000pt;}
.y9a{bottom:6.400000pt;}
.y6f{bottom:6.560000pt;}
.y6b{bottom:6.720000pt;}
.y8c{bottom:6.760000pt;}
.y6{bottom:9.440000pt;}
.y7{bottom:10.080000pt;}
.y93{bottom:27.354667pt;}
.y6d{bottom:27.360000pt;}
.y96{bottom:27.386667pt;}
.y71{bottom:27.520000pt;}
.y94{bottom:27.674667pt;}
.y6e{bottom:27.680000pt;}
.y97{bottom:27.706667pt;}
.y6a{bottom:27.840000pt;}
.y68{bottom:48.666667pt;}
.y69{bottom:48.986667pt;}
.y8{bottom:51.040000pt;}
.y5{bottom:65.632000pt;}
.y5f{bottom:95.872000pt;}
.y65{bottom:109.792000pt;}
.yaf{bottom:112.992000pt;}
.y5e{bottom:116.992000pt;}
.y92{bottom:121.632000pt;}
.yae{bottom:134.106667pt;}
.y32{bottom:134.586667pt;}
.y64{bottom:137.786667pt;}
.y5d{bottom:138.106667pt;}
.yad{bottom:155.386667pt;}
.y31{bottom:155.706667pt;}
.y63{bottom:159.066667pt;}
.y5c{bottom:159.386667pt;}
.y91{bottom:164.506667pt;}
.yac{bottom:176.506667pt;}
.y30{bottom:176.826667pt;}
.y62{bottom:180.186667pt;}
.y5b{bottom:180.506667pt;}
.yab{bottom:197.626667pt;}
.y2f{bottom:197.946667pt;}
.y5a{bottom:201.626667pt;}
.y90{bottom:213.786667pt;}
.yaa{bottom:218.746667pt;}
.y2e{bottom:219.226667pt;}
.y59{bottom:222.746667pt;}
.y8f{bottom:234.906667pt;}
.ya9{bottom:239.866667pt;}
.y2d{bottom:240.346667pt;}
.y58{bottom:243.866667pt;}
.y8e{bottom:250.426667pt;}
.ya8{bottom:261.146667pt;}
.y2c{bottom:261.466667pt;}
.y57{bottom:265.146667pt;}
.y8d{bottom:272.346667pt;}
.ya7{bottom:282.266667pt;}
.y2b{bottom:282.586667pt;}
.y56{bottom:286.266667pt;}
.y8b{bottom:294.106667pt;}
.ya6{bottom:303.426667pt;}
.y2a{bottom:303.906667pt;}
.y55{bottom:307.426667pt;}
.y8a{bottom:316.066667pt;}
.ya5{bottom:324.546667pt;}
.y29{bottom:325.026667pt;}
.y54{bottom:328.546667pt;}
.y89{bottom:337.826667pt;}
.ya4{bottom:345.826667pt;}
.y28{bottom:346.146667pt;}
.y53{bottom:349.826667pt;}
.y88{bottom:359.746667pt;}
.y27{bottom:366.946667pt;}
.y52{bottom:370.946667pt;}
.y87{bottom:387.746667pt;}
.ya3{bottom:388.066667pt;}
.y26{bottom:388.226667pt;}
.y51{bottom:392.066667pt;}
.y86{bottom:408.866667pt;}
.ya2{bottom:409.186667pt;}
.y50{bottom:413.186667pt;}
.y25{bottom:420.226667pt;}
.ya1{bottom:430.146667pt;}
.y85{bottom:430.466667pt;}
.y4f{bottom:434.466667pt;}
.y24{bottom:441.506667pt;}
.y84{bottom:451.586667pt;}
.y4e{bottom:455.586667pt;}
.y23{bottom:462.626667pt;}
.y83{bottom:472.386667pt;}
.ya0{bottom:472.706667pt;}
.y4d{bottom:476.706667pt;}
.y22{bottom:483.746667pt;}
.y82{bottom:493.826667pt;}
.y4c{bottom:497.826667pt;}
.y21{bottom:504.866667pt;}
.y81{bottom:515.106667pt;}
.y4b{bottom:519.106667pt;}
.y20{bottom:526.146667pt;}
.y80{bottom:536.226667pt;}
.y4a{bottom:540.253333pt;}
.y1f{bottom:547.293333pt;}
.y7f{bottom:557.373333pt;}
.y49{bottom:561.373333pt;}
.y1e{bottom:568.413333pt;}
.y7e{bottom:578.493333pt;}
.y48{bottom:582.493333pt;}
.y1d{bottom:589.533333pt;}
.y7d{bottom:599.773333pt;}
.y47{bottom:603.773333pt;}
.y1c{bottom:610.813333pt;}
.y7c{bottom:620.893333pt;}
.y46{bottom:624.893333pt;}
.y1b{bottom:631.933333pt;}
.y7b{bottom:642.013333pt;}
.yb1{bottom:645.693333pt;}
.y45{bottom:646.013333pt;}
.y1a{bottom:653.053333pt;}
.y7a{bottom:663.133333pt;}
.yb0{bottom:666.813333pt;}
.y44{bottom:667.133333pt;}
.y19{bottom:674.173333pt;}
.y79{bottom:684.413333pt;}
.y43{bottom:688.413333pt;}
.y18{bottom:695.453333pt;}
.y78{bottom:705.533333pt;}
.y42{bottom:709.533333pt;}
.y17{bottom:716.573333pt;}
.y77{bottom:726.653333pt;}
.y41{bottom:730.653333pt;}
.y16{bottom:737.693333pt;}
.y76{bottom:747.773333pt;}
.y40{bottom:751.453333pt;}
.y61{bottom:751.773333pt;}
.y15{bottom:758.813333pt;}
.y75{bottom:768.893333pt;}
.y3f{bottom:772.893333pt;}
.y14{bottom:780.133333pt;}
.y74{bottom:789.893333pt;}
.y9f{bottom:790.213333pt;}
.y3e{bottom:794.213333pt;}
.y13{bottom:801.253333pt;}
.y73{bottom:805.413333pt;}
.y9e{bottom:811.333333pt;}
.y3d{bottom:815.333333pt;}
.y12{bottom:822.373333pt;}
.y9d{bottom:832.133333pt;}
.y3c{bottom:836.453333pt;}
.y11{bottom:843.173333pt;}
.y9c{bottom:847.653333pt;}
.y72{bottom:848.453333pt;}
.y3b{bottom:857.573333pt;}
.y10{bottom:864.453333pt;}
.y9b{bottom:869.573333pt;}
.y3a{bottom:878.533333pt;}
.y60{bottom:878.853333pt;}
.yf{bottom:885.893333pt;}
.y70{bottom:891.333333pt;}
.y39{bottom:899.973333pt;}
.ye{bottom:907.013333pt;}
.y99{bottom:912.453333pt;}
.y38{bottom:921.093333pt;}
.yd{bottom:927.813333pt;}
.y6c{bottom:934.373333pt;}
.y37{bottom:942.213333pt;}
.yc{bottom:948.933333pt;}
.y98{bottom:955.493333pt;}
.y36{bottom:963.493333pt;}
.yb{bottom:975.493333pt;}
.y67{bottom:977.253333pt;}
.y35{bottom:984.613333pt;}
.ya{bottom:993.413333pt;}
.y95{bottom:998.533333pt;}
.y34{bottom:1005.733333pt;}
.y9{bottom:1021.600000pt;}
.y33{bottom:1026.880000pt;}
.y4{bottom:1062.240000pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.680000pt;}
.hd{height:21.120000pt;}
.h12{height:21.280000pt;}
.h11{height:21.312000pt;}
.h5{height:24.000000pt;}
.hf{height:42.240000pt;}
.h13{height:42.272000pt;}
.h10{height:42.400000pt;}
.h9{height:43.215000pt;}
.h7{height:44.648750pt;}
.h4{height:48.375000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.he{height:63.552000pt;}
.h2{height:64.500000pt;}
.hc{height:65.781915pt;}
.ha{height:66.404375pt;}
.h8{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.we{width:98.080000pt;}
.wa{width:115.200000pt;}
.wf{width:137.466667pt;}
.wc{width:141.946667pt;}
.wd{width:149.466667pt;}
.wb{width:150.586667pt;}
.w8{width:163.866667pt;}
.w9{width:177.466667pt;}
.w6{width:200.186667pt;}
.w10{width:202.746667pt;}
.w7{width:209.306667pt;}
.w5{width:265.466667pt;}
.w3{width:265.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x15{left:8.640000pt;}
.x8{left:38.720000pt;}
.x5{left:85.152000pt;}
.xe{left:88.031988pt;}
.x19{left:95.071988pt;}
.xa{left:100.831988pt;}
.x1f{left:101.952000pt;}
.x1b{left:103.392000pt;}
.x14{left:109.632000pt;}
.x22{left:113.631988pt;}
.x12{left:122.911988pt;}
.xb{left:124.191988pt;}
.x11{left:132.351988pt;}
.x3{left:169.466655pt;}
.x13{left:180.346655pt;}
.x1e{left:199.386655pt;}
.xf{left:227.866655pt;}
.x20{left:252.226667pt;}
.x6{left:258.434667pt;}
.x1c{left:281.506667pt;}
.x10{left:286.466655pt;}
.x2{left:296.226655pt;}
.x4{left:304.546655pt;}
.x16{left:310.466667pt;}
.xd{left:312.386655pt;}
.x1a{left:314.946655pt;}
.x7{left:350.786667pt;}
.xc{left:396.866655pt;}
.x9{left:443.293333pt;}
.x21{left:489.213333pt;}
.x17{left:520.413333pt;}
.x1d{left:548.573333pt;}
.x1{left:708.773322pt;}
}




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