
    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_a960292fc046a8dcafb0d79f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060059;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_79c612ec78ebf60b23f93b1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.060059;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_5c142ee1de04d0d3c467042d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_4b96317f244fdd3b118d224d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_6f6224421dd878fe640def5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_7d7d41a9aab1dd8db2a9db03.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_7bd3b883e8c5bc94a699aa43.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f23e878e7c98f9cc4eacb730.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3d907d7f86300fdd501fba0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_cf5b54b838ee9f69dcdff9c4.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;}
.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:1.440000px;}
.v2{vertical-align:24.480000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.ls1b{letter-spacing:1.440000px;}
.ls1a{letter-spacing:1.560000px;}
.lsb{letter-spacing:2.880000px;}
.ls1{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.320000px;}
.ls14{letter-spacing:9.360000px;}
.ls17{letter-spacing:13.680000px;}
.ls15{letter-spacing:15.120000px;}
.ls9{letter-spacing:17.280000px;}
.lse{letter-spacing:18.900000px;}
.ls3{letter-spacing:20.160000px;}
.ls2{letter-spacing:23.760000px;}
.ls16{letter-spacing:30.240000px;}
.ls13{letter-spacing:33.840000px;}
.ls0{letter-spacing:35.280000px;}
.ls19{letter-spacing:36.000000px;}
.ls18{letter-spacing:37.440000px;}
.lsa{letter-spacing:41.040000px;}
.ls1e{letter-spacing:54.144000px;}
.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:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.280000px;}
.ws4{word-spacing:0.000000px;}
._2c{margin-left:-13.260000px;}
._31{margin-left:-11.790000px;}
._2f{margin-left:-9.660000px;}
._34{margin-left:-7.586400px;}
._30{margin-left:-6.243600px;}
._3{margin-left:-4.644000px;}
._1{margin-left:-3.570000px;}
._f{margin-left:-2.568000px;}
._0{margin-left:-1.566000px;}
._2{width:1.062000px;}
._5{width:2.517600px;}
._e{width:3.746400px;}
._18{width:4.752000px;}
._11{width:6.102000px;}
._10{width:7.344000px;}
._19{width:9.072000px;}
._1c{width:10.314000px;}
._15{width:12.312000px;}
._1d{width:14.256000px;}
._2b{width:15.270000px;}
._14{width:16.320000px;}
._6{width:19.704000px;}
._1a{width:20.736000px;}
._b{width:21.816000px;}
._13{width:23.016000px;}
._12{width:24.408000px;}
._1b{width:25.752000px;}
._1f{width:27.144000px;}
._7{width:29.064000px;}
._8{width:30.528000px;}
._27{width:31.950000px;}
._2a{width:33.120000px;}
._a{width:34.632000px;}
._9{width:35.688000px;}
._d{width:37.494000px;}
._c{width:38.934000px;}
._23{width:40.638000px;}
._16{width:41.832000px;}
._24{width:42.912000px;}
._28{width:43.992000px;}
._26{width:48.384000px;}
._25{width:49.536000px;}
._2e{width:52.776000px;}
._21{width:60.552000px;}
._22{width:61.632000px;}
._17{width:63.432000px;}
._32{width:64.944000px;}
._2d{width:69.696000px;}
._29{width:79.272000px;}
._20{width:85.536000px;}
._33{width:86.610000px;}
._35{width:87.870000px;}
._1e{width:89.784000px;}
._4{width:1241.976000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.536000px;}
.y7{bottom:7.416000px;}
.y9{bottom:26.640000px;}
.y8{bottom:47.700000px;}
.y5{bottom:68.040000px;}
.ya0{bottom:97.776000px;}
.y34{bottom:104.976000px;}
.y60{bottom:113.076000px;}
.y9f{bottom:121.536000px;}
.y33{bottom:128.916000px;}
.y5f{bottom:136.836000px;}
.y7b{bottom:137.376000px;}
.y9e{bottom:145.476000px;}
.y32{bottom:152.670000px;}
.y5e{bottom:160.590000px;}
.y7a{bottom:161.130000px;}
.y9d{bottom:169.230000px;}
.y31{bottom:176.430000px;}
.y5d{bottom:184.350000px;}
.y79{bottom:184.890000px;}
.y9c{bottom:192.990000px;}
.y30{bottom:200.190000px;}
.y5c{bottom:208.290000px;}
.y78{bottom:208.650000px;}
.y9b{bottom:216.750000px;}
.y2f{bottom:224.130000px;}
.y5b{bottom:232.050000px;}
.y77{bottom:232.590000px;}
.y9a{bottom:240.690000px;}
.y2e{bottom:247.890000px;}
.y5a{bottom:255.810000px;}
.y76{bottom:256.350000px;}
.y99{bottom:264.450000px;}
.y2d{bottom:271.650000px;}
.y59{bottom:279.570000px;}
.y75{bottom:280.110000px;}
.y98{bottom:288.210000px;}
.y2c{bottom:295.410000px;}
.y58{bottom:303.330000px;}
.y74{bottom:303.870000px;}
.y97{bottom:311.970000px;}
.y2b{bottom:319.350000px;}
.y57{bottom:327.270000px;}
.y73{bottom:327.630000px;}
.y96{bottom:335.910000px;}
.y2a{bottom:343.155000px;}
.y56{bottom:351.075000px;}
.y72{bottom:351.615000px;}
.y95{bottom:359.715000px;}
.y29{bottom:366.915000px;}
.y55{bottom:374.835000px;}
.y71{bottom:375.375000px;}
.y94{bottom:383.475000px;}
.y28{bottom:390.675000px;}
.y54{bottom:398.595000px;}
.y70{bottom:399.135000px;}
.y93{bottom:407.235000px;}
.y27{bottom:414.615000px;}
.y53{bottom:422.535000px;}
.y6f{bottom:422.895000px;}
.y92{bottom:431.175000px;}
.y26{bottom:438.375000px;}
.y52{bottom:446.295000px;}
.y6e{bottom:446.835000px;}
.y91{bottom:454.935000px;}
.y25{bottom:462.135000px;}
.y51{bottom:470.055000px;}
.y6d{bottom:470.595000px;}
.y90{bottom:478.695000px;}
.y24{bottom:485.895000px;}
.y50{bottom:493.815000px;}
.y6c{bottom:494.355000px;}
.y8f{bottom:502.455000px;}
.y23{bottom:509.835000px;}
.y4f{bottom:517.755000px;}
.y6b{bottom:518.115000px;}
.y8e{bottom:526.395000px;}
.y22{bottom:533.595000px;}
.y4e{bottom:541.515000px;}
.y6a{bottom:542.055000px;}
.y8d{bottom:550.155000px;}
.y21{bottom:557.355000px;}
.y4d{bottom:565.275000px;}
.y69{bottom:565.815000px;}
.y8c{bottom:573.915000px;}
.y20{bottom:581.115000px;}
.y4c{bottom:589.035000px;}
.y68{bottom:589.575000px;}
.y8b{bottom:597.675000px;}
.y1f{bottom:605.085000px;}
.y4b{bottom:613.005000px;}
.y67{bottom:613.365000px;}
.y8a{bottom:621.465000px;}
.y1e{bottom:628.845000px;}
.y4a{bottom:636.765000px;}
.y66{bottom:637.305000px;}
.y89{bottom:645.405000px;}
.y1d{bottom:652.605000px;}
.y49{bottom:660.525000px;}
.y65{bottom:661.065000px;}
.y88{bottom:669.165000px;}
.y1c{bottom:676.365000px;}
.y48{bottom:684.285000px;}
.y64{bottom:684.825000px;}
.y87{bottom:692.925000px;}
.y1b{bottom:700.125000px;}
.y47{bottom:708.225000px;}
.y63{bottom:708.585000px;}
.y86{bottom:716.685000px;}
.y1a{bottom:724.065000px;}
.y46{bottom:731.985000px;}
.y62{bottom:732.525000px;}
.y85{bottom:740.625000px;}
.y19{bottom:747.825000px;}
.y61{bottom:752.325000px;}
.y45{bottom:755.745000px;}
.y84{bottom:764.385000px;}
.y18{bottom:771.585000px;}
.y44{bottom:779.505000px;}
.y83{bottom:788.145000px;}
.y17{bottom:795.345000px;}
.y43{bottom:803.265000px;}
.y82{bottom:811.905000px;}
.y16{bottom:819.285000px;}
.y42{bottom:827.205000px;}
.y81{bottom:835.845000px;}
.y15{bottom:843.045000px;}
.y41{bottom:850.965000px;}
.y80{bottom:859.605000px;}
.y14{bottom:866.805000px;}
.y40{bottom:874.770000px;}
.y7f{bottom:883.410000px;}
.y13{bottom:890.610000px;}
.y3f{bottom:898.530000px;}
.y7e{bottom:907.170000px;}
.y12{bottom:914.550000px;}
.y3e{bottom:922.470000px;}
.y7d{bottom:931.110000px;}
.y11{bottom:938.310000px;}
.y3d{bottom:946.230000px;}
.y7c{bottom:950.910000px;}
.y10{bottom:962.070000px;}
.y3c{bottom:969.990000px;}
.yf{bottom:985.470000px;}
.y3b{bottom:993.750000px;}
.ye{bottom:1009.770000px;}
.y3a{bottom:1017.690000px;}
.yd{bottom:1035.330000px;}
.y39{bottom:1041.450000px;}
.y38{bottom:1065.210000px;}
.yc{bottom:1067.010000px;}
.y37{bottom:1088.970000px;}
.yb{bottom:1098.870000px;}
.y36{bottom:1112.910000px;}
.ya{bottom:1130.550000px;}
.y35{bottom:1136.670000px;}
.y4{bottom:1157.220000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1192.320000px;}
.y1{bottom:1207.800000px;}
.h5{height:24.156000px;}
.h2{height:46.696289px;}
.h7{height:50.484375px;}
.h3{height:51.677227px;}
.hb{height:51.996094px;}
.hd{height:52.417969px;}
.ha{height:52.628906px;}
.h4{height:54.000000px;}
.hc{height:58.304531px;}
.h6{height:59.066719px;}
.h9{height:62.261719px;}
.h8{height:82.808086px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:133.596000px;}
.w3{width:287.130000px;}
.w5{width:301.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:53.280000px;}
.x4{left:95.795987px;}
.x1{left:121.715987px;}
.xa{left:122.975987px;}
.x15{left:127.835987px;}
.x13{left:138.275987px;}
.xb{left:141.695987px;}
.x5{left:143.634000px;}
.x10{left:148.895987px;}
.x2{left:150.149987px;}
.x9{left:173.369987px;}
.xf{left:295.814987px;}
.xc{left:305.534987px;}
.xe{left:380.594987px;}
.x6{left:383.295000px;}
.x3{left:402.554987px;}
.xd{left:446.474987px;}
.x11{left:467.744987px;}
.x8{left:517.605000px;}
.x12{left:752.729987px;}
.x14{left:778.829987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.v2{vertical-align:21.760000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.386667pt;}
.lsb{letter-spacing:2.560000pt;}
.ls1{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls14{letter-spacing:8.320000pt;}
.ls17{letter-spacing:12.160000pt;}
.ls15{letter-spacing:13.440000pt;}
.ls9{letter-spacing:15.360000pt;}
.lse{letter-spacing:16.800000pt;}
.ls3{letter-spacing:17.920000pt;}
.ls2{letter-spacing:21.120000pt;}
.ls16{letter-spacing:26.880000pt;}
.ls13{letter-spacing:30.080000pt;}
.ls0{letter-spacing:31.360000pt;}
.ls19{letter-spacing:32.000000pt;}
.ls18{letter-spacing:33.280000pt;}
.lsa{letter-spacing:36.480000pt;}
.ls1e{letter-spacing:48.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws4{word-spacing:0.000000pt;}
._2c{margin-left:-11.786667pt;}
._31{margin-left:-10.480000pt;}
._2f{margin-left:-8.586667pt;}
._34{margin-left:-6.743467pt;}
._30{margin-left:-5.549867pt;}
._3{margin-left:-4.128000pt;}
._1{margin-left:-3.173333pt;}
._f{margin-left:-2.282667pt;}
._0{margin-left:-1.392000pt;}
._2{width:0.944000pt;}
._5{width:2.237867pt;}
._e{width:3.330133pt;}
._18{width:4.224000pt;}
._11{width:5.424000pt;}
._10{width:6.528000pt;}
._19{width:8.064000pt;}
._1c{width:9.168000pt;}
._15{width:10.944000pt;}
._1d{width:12.672000pt;}
._2b{width:13.573333pt;}
._14{width:14.506667pt;}
._6{width:17.514667pt;}
._1a{width:18.432000pt;}
._b{width:19.392000pt;}
._13{width:20.458667pt;}
._12{width:21.696000pt;}
._1b{width:22.890667pt;}
._1f{width:24.128000pt;}
._7{width:25.834667pt;}
._8{width:27.136000pt;}
._27{width:28.400000pt;}
._2a{width:29.440000pt;}
._a{width:30.784000pt;}
._9{width:31.722667pt;}
._d{width:33.328000pt;}
._c{width:34.608000pt;}
._23{width:36.122667pt;}
._16{width:37.184000pt;}
._24{width:38.144000pt;}
._28{width:39.104000pt;}
._26{width:43.008000pt;}
._25{width:44.032000pt;}
._2e{width:46.912000pt;}
._21{width:53.824000pt;}
._22{width:54.784000pt;}
._17{width:56.384000pt;}
._32{width:57.728000pt;}
._2d{width:61.952000pt;}
._29{width:70.464000pt;}
._20{width:76.032000pt;}
._33{width:76.986667pt;}
._35{width:78.106667pt;}
._1e{width:79.808000pt;}
._4{width:1103.978667pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.032000pt;}
.y7{bottom:6.592000pt;}
.y9{bottom:23.680000pt;}
.y8{bottom:42.400000pt;}
.y5{bottom:60.480000pt;}
.ya0{bottom:86.912000pt;}
.y34{bottom:93.312000pt;}
.y60{bottom:100.512000pt;}
.y9f{bottom:108.032000pt;}
.y33{bottom:114.592000pt;}
.y5f{bottom:121.632000pt;}
.y7b{bottom:122.112000pt;}
.y9e{bottom:129.312000pt;}
.y32{bottom:135.706667pt;}
.y5e{bottom:142.746667pt;}
.y7a{bottom:143.226667pt;}
.y9d{bottom:150.426667pt;}
.y31{bottom:156.826667pt;}
.y5d{bottom:163.866667pt;}
.y79{bottom:164.346667pt;}
.y9c{bottom:171.546667pt;}
.y30{bottom:177.946667pt;}
.y5c{bottom:185.146667pt;}
.y78{bottom:185.466667pt;}
.y9b{bottom:192.666667pt;}
.y2f{bottom:199.226667pt;}
.y5b{bottom:206.266667pt;}
.y77{bottom:206.746667pt;}
.y9a{bottom:213.946667pt;}
.y2e{bottom:220.346667pt;}
.y5a{bottom:227.386667pt;}
.y76{bottom:227.866667pt;}
.y99{bottom:235.066667pt;}
.y2d{bottom:241.466667pt;}
.y59{bottom:248.506667pt;}
.y75{bottom:248.986667pt;}
.y98{bottom:256.186667pt;}
.y2c{bottom:262.586667pt;}
.y58{bottom:269.626667pt;}
.y74{bottom:270.106667pt;}
.y97{bottom:277.306667pt;}
.y2b{bottom:283.866667pt;}
.y57{bottom:290.906667pt;}
.y73{bottom:291.226667pt;}
.y96{bottom:298.586667pt;}
.y2a{bottom:305.026667pt;}
.y56{bottom:312.066667pt;}
.y72{bottom:312.546667pt;}
.y95{bottom:319.746667pt;}
.y29{bottom:326.146667pt;}
.y55{bottom:333.186667pt;}
.y71{bottom:333.666667pt;}
.y94{bottom:340.866667pt;}
.y28{bottom:347.266667pt;}
.y54{bottom:354.306667pt;}
.y70{bottom:354.786667pt;}
.y93{bottom:361.986667pt;}
.y27{bottom:368.546667pt;}
.y53{bottom:375.586667pt;}
.y6f{bottom:375.906667pt;}
.y92{bottom:383.266667pt;}
.y26{bottom:389.666667pt;}
.y52{bottom:396.706667pt;}
.y6e{bottom:397.186667pt;}
.y91{bottom:404.386667pt;}
.y25{bottom:410.786667pt;}
.y51{bottom:417.826667pt;}
.y6d{bottom:418.306667pt;}
.y90{bottom:425.506667pt;}
.y24{bottom:431.906667pt;}
.y50{bottom:438.946667pt;}
.y6c{bottom:439.426667pt;}
.y8f{bottom:446.626667pt;}
.y23{bottom:453.186667pt;}
.y4f{bottom:460.226667pt;}
.y6b{bottom:460.546667pt;}
.y8e{bottom:467.906667pt;}
.y22{bottom:474.306667pt;}
.y4e{bottom:481.346667pt;}
.y6a{bottom:481.826667pt;}
.y8d{bottom:489.026667pt;}
.y21{bottom:495.426667pt;}
.y4d{bottom:502.466667pt;}
.y69{bottom:502.946667pt;}
.y8c{bottom:510.146667pt;}
.y20{bottom:516.546667pt;}
.y4c{bottom:523.586667pt;}
.y68{bottom:524.066667pt;}
.y8b{bottom:531.266667pt;}
.y1f{bottom:537.853333pt;}
.y4b{bottom:544.893333pt;}
.y67{bottom:545.213333pt;}
.y8a{bottom:552.413333pt;}
.y1e{bottom:558.973333pt;}
.y4a{bottom:566.013333pt;}
.y66{bottom:566.493333pt;}
.y89{bottom:573.693333pt;}
.y1d{bottom:580.093333pt;}
.y49{bottom:587.133333pt;}
.y65{bottom:587.613333pt;}
.y88{bottom:594.813333pt;}
.y1c{bottom:601.213333pt;}
.y48{bottom:608.253333pt;}
.y64{bottom:608.733333pt;}
.y87{bottom:615.933333pt;}
.y1b{bottom:622.333333pt;}
.y47{bottom:629.533333pt;}
.y63{bottom:629.853333pt;}
.y86{bottom:637.053333pt;}
.y1a{bottom:643.613333pt;}
.y46{bottom:650.653333pt;}
.y62{bottom:651.133333pt;}
.y85{bottom:658.333333pt;}
.y19{bottom:664.733333pt;}
.y61{bottom:668.733333pt;}
.y45{bottom:671.773333pt;}
.y84{bottom:679.453333pt;}
.y18{bottom:685.853333pt;}
.y44{bottom:692.893333pt;}
.y83{bottom:700.573333pt;}
.y17{bottom:706.973333pt;}
.y43{bottom:714.013333pt;}
.y82{bottom:721.693333pt;}
.y16{bottom:728.253333pt;}
.y42{bottom:735.293333pt;}
.y81{bottom:742.973333pt;}
.y15{bottom:749.373333pt;}
.y41{bottom:756.413333pt;}
.y80{bottom:764.093333pt;}
.y14{bottom:770.493333pt;}
.y40{bottom:777.573333pt;}
.y7f{bottom:785.253333pt;}
.y13{bottom:791.653333pt;}
.y3f{bottom:798.693333pt;}
.y7e{bottom:806.373333pt;}
.y12{bottom:812.933333pt;}
.y3e{bottom:819.973333pt;}
.y7d{bottom:827.653333pt;}
.y11{bottom:834.053333pt;}
.y3d{bottom:841.093333pt;}
.y7c{bottom:845.253333pt;}
.y10{bottom:855.173333pt;}
.y3c{bottom:862.213333pt;}
.yf{bottom:875.973333pt;}
.y3b{bottom:883.333333pt;}
.ye{bottom:897.573333pt;}
.y3a{bottom:904.613333pt;}
.yd{bottom:920.293333pt;}
.y39{bottom:925.733333pt;}
.y38{bottom:946.853333pt;}
.yc{bottom:948.453333pt;}
.y37{bottom:967.973333pt;}
.yb{bottom:976.773333pt;}
.y36{bottom:989.253333pt;}
.ya{bottom:1004.933333pt;}
.y35{bottom:1010.373333pt;}
.y4{bottom:1028.640000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1059.840000pt;}
.y1{bottom:1073.600000pt;}
.h5{height:21.472000pt;}
.h2{height:41.507812pt;}
.h7{height:44.875000pt;}
.h3{height:45.935313pt;}
.hb{height:46.218750pt;}
.hd{height:46.593750pt;}
.ha{height:46.781250pt;}
.h4{height:48.000000pt;}
.hc{height:51.826250pt;}
.h6{height:52.503750pt;}
.h9{height:55.343750pt;}
.h8{height:73.607188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:118.752000pt;}
.w3{width:255.226667pt;}
.w5{width:267.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:47.360000pt;}
.x4{left:85.151988pt;}
.x1{left:108.191988pt;}
.xa{left:109.311988pt;}
.x15{left:113.631988pt;}
.x13{left:122.911988pt;}
.xb{left:125.951988pt;}
.x5{left:127.674667pt;}
.x10{left:132.351988pt;}
.x2{left:133.466655pt;}
.x9{left:154.106655pt;}
.xf{left:262.946655pt;}
.xc{left:271.586655pt;}
.xe{left:338.306655pt;}
.x6{left:340.706667pt;}
.x3{left:357.826655pt;}
.xd{left:396.866655pt;}
.x11{left:415.773322pt;}
.x8{left:460.093333pt;}
.x12{left:669.093322pt;}
.x14{left:692.293322pt;}
}




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