
    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_82d8b5940aef02e9aa8b4ce2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_d82177801ede3e85f3f06e82.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ecb85ea2c6e5a2c38e9fc3d9.woff')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_130318f400255a9675a1f068.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_370bb8f73a79282b9894e236.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_609a1b4075149f96e9633b70.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_13fcfa4313882759380b8925.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-97.920000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.690000px;}
.lsc{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.037440px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000001px;}
.ls7{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.421200px;}
.lse{letter-spacing:0.504000px;}
.ls1{letter-spacing:7.020000px;}
.ls8{letter-spacing:18.540000px;}
.ls0{letter-spacing:149.004000px;}
.ls9{letter-spacing:191.484000px;}
.ls2{letter-spacing:781.200000px;}
.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:-21.060000px;}
.ws9{word-spacing:-21.022560px;}
.ws4{word-spacing:-20.370000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.696000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.839800px;}
.ws7{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-5.896800px;}
._21{margin-left:-4.600800px;}
._2{margin-left:-2.948400px;}
._0{margin-left:-1.296000px;}
._1{width:1.152000px;}
._18{width:2.176560px;}
._b{width:3.285360px;}
._c{width:4.749840px;}
._f{width:6.458160px;}
._10{width:7.707840px;}
._1f{width:9.298800px;}
._1e{width:10.872000px;}
._1d{width:12.073680px;}
._3{width:14.152320px;}
._4{width:15.701040px;}
._5{width:17.687760px;}
._e{width:18.761040px;}
._d{width:19.967520px;}
._28{width:22.155120px;}
._1c{width:23.535360px;}
._25{width:25.926480px;}
._24{width:27.209520px;}
._17{width:30.021840px;}
._16{width:31.032720px;}
._a{width:32.380560px;}
._9{width:33.527520px;}
._19{width:35.304480px;}
._8{width:39.508560px;}
._2b{width:40.720320px;}
._1a{width:43.720560px;}
._15{width:45.858960px;}
._14{width:47.375280px;}
._13{width:48.467280px;}
._12{width:49.659600px;}
._7{width:54.166320px;}
._6{width:55.209600px;}
._2a{width:65.394480px;}
._29{width:66.802320px;}
._1b{width:69.076800px;}
._27{width:88.063200px;}
._26{width:89.495280px;}
._23{width:109.680480px;}
._11{width:149.004000px;}
._22{width:191.484000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(0,112,192);}
.fs4{font-size:38.880000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.600000px;}
.y6e{bottom:4.140000px;}
.y6{bottom:4.170000px;}
.y78{bottom:6.885000px;}
.y53{bottom:7.020000px;}
.y71{bottom:7.380000px;}
.y73{bottom:7.560000px;}
.y6c{bottom:8.280000px;}
.y51{bottom:9.360000px;}
.y80{bottom:10.800000px;}
.y7a{bottom:12.240000px;}
.y7e{bottom:19.440000px;}
.y7b{bottom:20.880000px;}
.y3{bottom:24.330000px;}
.y5{bottom:25.230000px;}
.y50{bottom:26.640000px;}
.y4e{bottom:27.540000px;}
.y7f{bottom:28.080000px;}
.y4c{bottom:36.000000px;}
.y4f{bottom:44.640000px;}
.y2{bottom:45.570000px;}
.y4{bottom:45.930000px;}
.y9{bottom:75.240000px;}
.y8{bottom:96.300000px;}
.y6a{bottom:118.980000px;}
.y54{bottom:138.960000px;}
.ya9{bottom:142.740000px;}
.y69{bottom:149.940000px;}
.y52{bottom:163.620000px;}
.y2f{bottom:165.600000px;}
.ya8{bottom:166.860000px;}
.y68{bottom:174.060000px;}
.y4b{bottom:188.490000px;}
.y2e{bottom:189.750000px;}
.ya7{bottom:191.550000px;}
.y67{bottom:205.050000px;}
.y2d{bottom:213.870000px;}
.ya6{bottom:216.210000px;}
.y66{bottom:229.170000px;}
.y4d{bottom:229.890000px;}
.y2c{bottom:237.990000px;}
.ya5{bottom:240.870000px;}
.y65{bottom:253.290000px;}
.y2b{bottom:262.110000px;}
.ya4{bottom:265.350000px;}
.y64{bottom:277.410000px;}
.y2a{bottom:286.410000px;}
.ya3{bottom:290.010000px;}
.y63{bottom:301.710000px;}
.y29{bottom:310.530000px;}
.ya2{bottom:314.670000px;}
.y4a{bottom:322.590000px;}
.y62{bottom:325.830000px;}
.y28{bottom:334.650000px;}
.ya1{bottom:339.330000px;}
.y49{bottom:346.710000px;}
.y61{bottom:349.950000px;}
.y27{bottom:358.410000px;}
.ya0{bottom:363.810000px;}
.y48{bottom:370.830000px;}
.y60{bottom:374.070000px;}
.y26{bottom:382.890000px;}
.y9f{bottom:388.470000px;}
.y47{bottom:394.950000px;}
.y5f{bottom:398.190000px;}
.y25{bottom:407.010000px;}
.y9e{bottom:413.130000px;}
.y46{bottom:419.070000px;}
.y24{bottom:431.175000px;}
.y5e{bottom:436.215000px;}
.y9d{bottom:437.835000px;}
.y45{bottom:443.415000px;}
.y23{bottom:455.475000px;}
.y5d{bottom:461.955000px;}
.y9c{bottom:462.495000px;}
.y44{bottom:467.535000px;}
.y22{bottom:479.595000px;}
.y9b{bottom:486.975000px;}
.y5c{bottom:488.415000px;}
.y43{bottom:491.655000px;}
.y9a{bottom:511.635000px;}
.y5b{bottom:514.515000px;}
.y42{bottom:515.775000px;}
.y21{bottom:527.835000px;}
.y99{bottom:536.295000px;}
.y41{bottom:539.535000px;}
.y5a{bottom:540.615000px;}
.y20{bottom:551.955000px;}
.y98{bottom:560.955000px;}
.y59{bottom:566.715000px;}
.y1f{bottom:576.075000px;}
.y97{bottom:585.435000px;}
.y58{bottom:592.635000px;}
.y40{bottom:600.195000px;}
.y1e{bottom:600.375000px;}
.y96{bottom:610.095000px;}
.y3f{bottom:624.315000px;}
.y1d{bottom:624.495000px;}
.y57{bottom:628.455000px;}
.y95{bottom:634.755000px;}
.y3e{bottom:648.435000px;}
.y1c{bottom:648.615000px;}
.y94{bottom:659.415000px;}
.y56{bottom:665.025000px;}
.y3d{bottom:672.405000px;}
.y1b{bottom:672.765000px;}
.y93{bottom:684.105000px;}
.y55{bottom:689.145000px;}
.y1a{bottom:696.525000px;}
.y3c{bottom:696.885000px;}
.y92{bottom:708.585000px;}
.y83{bottom:708.945000px;}
.y3b{bottom:721.005000px;}
.y19{bottom:733.065000px;}
.y91{bottom:733.245000px;}
.y82{bottom:733.785000px;}
.y3a{bottom:745.125000px;}
.y18{bottom:757.185000px;}
.y90{bottom:757.905000px;}
.y81{bottom:769.065000px;}
.y39{bottom:769.245000px;}
.y17{bottom:781.305000px;}
.y8f{bottom:782.565000px;}
.y38{bottom:793.365000px;}
.y16{bottom:805.425000px;}
.y8e{bottom:807.045000px;}
.y37{bottom:817.665000px;}
.y7d{bottom:818.925000px;}
.y15{bottom:829.725000px;}
.y8d{bottom:832.065000px;}
.y36{bottom:841.785000px;}
.y14{bottom:853.845000px;}
.y8c{bottom:863.025000px;}
.y35{bottom:865.905000px;}
.y79{bottom:868.785000px;}
.y13{bottom:877.605000px;}
.y34{bottom:890.025000px;}
.y8b{bottom:893.985000px;}
.y77{bottom:904.065000px;}
.y12{bottom:913.830000px;}
.y33{bottom:914.190000px;}
.y8a{bottom:918.150000px;}
.y76{bottom:928.770000px;}
.y11{bottom:938.310000px;}
.y89{bottom:942.270000px;}
.y75{bottom:954.510000px;}
.y10{bottom:962.430000px;}
.y88{bottom:973.230000px;}
.y74{bottom:979.350000px;}
.yf{bottom:986.730000px;}
.y87{bottom:997.350000px;}
.y72{bottom:1004.010000px;}
.ye{bottom:1010.850000px;}
.y86{bottom:1028.130000px;}
.y70{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y85{bottom:1052.430000px;}
.y6f{bottom:1055.310000px;}
.yc{bottom:1058.730000px;}
.y32{bottom:1059.090000px;}
.y84{bottom:1076.550000px;}
.y6d{bottom:1080.150000px;}
.yb{bottom:1082.850000px;}
.y31{bottom:1083.210000px;}
.y6b{bottom:1099.230000px;}
.ya{bottom:1106.970000px;}
.y30{bottom:1107.330000px;}
.y7{bottom:1130.730000px;}
.y1{bottom:1147.110000px;}
.h18{height:18.360000px;}
.h16{height:23.940000px;}
.h1d{height:23.976000px;}
.h19{height:24.120000px;}
.h13{height:24.156000px;}
.h1a{height:24.660000px;}
.h1c{height:25.020000px;}
.h1b{height:25.200000px;}
.h17{height:26.460000px;}
.h1e{height:34.380000px;}
.h12{height:40.500000px;}
.h10{height:41.580000px;}
.h11{height:42.164648px;}
.h20{height:48.960000px;}
.h1f{height:49.140000px;}
.h4{height:50.800781px;}
.h14{height:58.651172px;}
.h15{height:59.038594px;}
.hb{height:59.066719px;}
.h8{height:59.436914px;}
.hf{height:60.226875px;}
.h7{height:60.679688px;}
.h3{height:60.960938px;}
.h2{height:62.676000px;}
.hd{height:65.884219px;}
.h6{height:70.664062px;}
.h21{height:71.324297px;}
.h5{height:72.562500px;}
.ha{height:82.635820px;}
.hc{height:82.676953px;}
.he{height:82.980000px;}
.h9{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:60.516000px;}
.wb{width:86.040000px;}
.wa{width:87.156000px;}
.w9{width:88.920000px;}
.w8{width:149.796000px;}
.w7{width:173.910000px;}
.w2{width:223.095000px;}
.w6{width:241.050000px;}
.w3{width:499.215000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.136000px;}
.x20{left:15.120000px;}
.x28{left:16.914000px;}
.x1e{left:19.080000px;}
.x21{left:21.780000px;}
.x5{left:23.580000px;}
.x1f{left:24.840000px;}
.x2d{left:26.100000px;}
.x33{left:27.900000px;}
.x1c{left:28.980000px;}
.x23{left:30.420000px;}
.x31{left:32.220000px;}
.x25{left:34.200000px;}
.x32{left:36.540000px;}
.x4{left:38.880000px;}
.x1a{left:40.500000px;}
.x37{left:42.114000px;}
.x29{left:46.080000px;}
.x34{left:49.680000px;}
.x2b{left:51.660000px;}
.x2f{left:53.460000px;}
.x24{left:57.240000px;}
.x2e{left:62.814000px;}
.x2c{left:68.934000px;}
.x18{left:72.894000px;}
.x2a{left:78.834000px;}
.x30{left:82.974000px;}
.x1{left:84.960000px;}
.x36{left:91.794000px;}
.x35{left:96.654000px;}
.x7{left:105.695987px;}
.xd{left:117.035987px;}
.x11{left:127.475987px;}
.x14{left:138.095987px;}
.x17{left:147.096000px;}
.x8{left:174.449987px;}
.x15{left:241.409987px;}
.xf{left:266.429987px;}
.x3{left:308.055000px;}
.xa{left:315.434987px;}
.xc{left:324.254987px;}
.xb{left:329.114987px;}
.x6{left:336.450000px;}
.x19{left:388.875000px;}
.x10{left:392.114987px;}
.x12{left:393.374987px;}
.xe{left:399.134987px;}
.x26{left:415.334987px;}
.x9{left:446.474987px;}
.x27{left:473.504987px;}
.x22{left:476.745000px;}
.x1b{left:563.505000px;}
.x1d{left:714.030000px;}
.x16{left:739.229987px;}
.x13{left:807.989987px;}
@media print{
.v1{vertical-align:-87.040000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.613333pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000001pt;}
.ls7{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.374400pt;}
.lse{letter-spacing:0.448000pt;}
.ls1{letter-spacing:6.240000pt;}
.ls8{letter-spacing:16.480000pt;}
.ls0{letter-spacing:132.448000pt;}
.ls9{letter-spacing:170.208000pt;}
.ls2{letter-spacing:694.400000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.686720pt;}
.ws4{word-spacing:-18.106667pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.952000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.190933pt;}
.ws7{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-5.241600pt;}
._21{margin-left:-4.089600pt;}
._2{margin-left:-2.620800pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.024000pt;}
._18{width:1.934720pt;}
._b{width:2.920320pt;}
._c{width:4.222080pt;}
._f{width:5.740587pt;}
._10{width:6.851413pt;}
._1f{width:8.265600pt;}
._1e{width:9.664000pt;}
._1d{width:10.732160pt;}
._3{width:12.579840pt;}
._4{width:13.956480pt;}
._5{width:15.722453pt;}
._e{width:16.676480pt;}
._d{width:17.748907pt;}
._28{width:19.693440pt;}
._1c{width:20.920320pt;}
._25{width:23.045760pt;}
._24{width:24.186240pt;}
._17{width:26.686080pt;}
._16{width:27.584640pt;}
._a{width:28.782720pt;}
._9{width:29.802240pt;}
._19{width:31.381760pt;}
._8{width:35.118720pt;}
._2b{width:36.195840pt;}
._1a{width:38.862720pt;}
._15{width:40.763520pt;}
._14{width:42.111360pt;}
._13{width:43.082027pt;}
._12{width:44.141867pt;}
._7{width:48.147840pt;}
._6{width:49.075200pt;}
._2a{width:58.128427pt;}
._29{width:59.379840pt;}
._1b{width:61.401600pt;}
._27{width:78.278400pt;}
._26{width:79.551360pt;}
._23{width:97.493760pt;}
._11{width:132.448000pt;}
._22{width:170.208000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.200000pt;}
.y6e{bottom:3.680000pt;}
.y6{bottom:3.706667pt;}
.y78{bottom:6.120000pt;}
.y53{bottom:6.240000pt;}
.y71{bottom:6.560000pt;}
.y73{bottom:6.720000pt;}
.y6c{bottom:7.360000pt;}
.y51{bottom:8.320000pt;}
.y80{bottom:9.600000pt;}
.y7a{bottom:10.880000pt;}
.y7e{bottom:17.280000pt;}
.y7b{bottom:18.560000pt;}
.y3{bottom:21.626667pt;}
.y5{bottom:22.426667pt;}
.y50{bottom:23.680000pt;}
.y4e{bottom:24.480000pt;}
.y7f{bottom:24.960000pt;}
.y4c{bottom:32.000000pt;}
.y4f{bottom:39.680000pt;}
.y2{bottom:40.506667pt;}
.y4{bottom:40.826667pt;}
.y9{bottom:66.880000pt;}
.y8{bottom:85.600000pt;}
.y6a{bottom:105.760000pt;}
.y54{bottom:123.520000pt;}
.ya9{bottom:126.880000pt;}
.y69{bottom:133.280000pt;}
.y52{bottom:145.440000pt;}
.y2f{bottom:147.200000pt;}
.ya8{bottom:148.320000pt;}
.y68{bottom:154.720000pt;}
.y4b{bottom:167.546667pt;}
.y2e{bottom:168.666667pt;}
.ya7{bottom:170.266667pt;}
.y67{bottom:182.266667pt;}
.y2d{bottom:190.106667pt;}
.ya6{bottom:192.186667pt;}
.y66{bottom:203.706667pt;}
.y4d{bottom:204.346667pt;}
.y2c{bottom:211.546667pt;}
.ya5{bottom:214.106667pt;}
.y65{bottom:225.146667pt;}
.y2b{bottom:232.986667pt;}
.ya4{bottom:235.866667pt;}
.y64{bottom:246.586667pt;}
.y2a{bottom:254.586667pt;}
.ya3{bottom:257.786667pt;}
.y63{bottom:268.186667pt;}
.y29{bottom:276.026667pt;}
.ya2{bottom:279.706667pt;}
.y4a{bottom:286.746667pt;}
.y62{bottom:289.626667pt;}
.y28{bottom:297.466667pt;}
.ya1{bottom:301.626667pt;}
.y49{bottom:308.186667pt;}
.y61{bottom:311.066667pt;}
.y27{bottom:318.586667pt;}
.ya0{bottom:323.386667pt;}
.y48{bottom:329.626667pt;}
.y60{bottom:332.506667pt;}
.y26{bottom:340.346667pt;}
.y9f{bottom:345.306667pt;}
.y47{bottom:351.066667pt;}
.y5f{bottom:353.946667pt;}
.y25{bottom:361.786667pt;}
.y9e{bottom:367.226667pt;}
.y46{bottom:372.506667pt;}
.y24{bottom:383.266667pt;}
.y5e{bottom:387.746667pt;}
.y9d{bottom:389.186667pt;}
.y45{bottom:394.146667pt;}
.y23{bottom:404.866667pt;}
.y5d{bottom:410.626667pt;}
.y9c{bottom:411.106667pt;}
.y44{bottom:415.586667pt;}
.y22{bottom:426.306667pt;}
.y9b{bottom:432.866667pt;}
.y5c{bottom:434.146667pt;}
.y43{bottom:437.026667pt;}
.y9a{bottom:454.786667pt;}
.y5b{bottom:457.346667pt;}
.y42{bottom:458.466667pt;}
.y21{bottom:469.186667pt;}
.y99{bottom:476.706667pt;}
.y41{bottom:479.586667pt;}
.y5a{bottom:480.546667pt;}
.y20{bottom:490.626667pt;}
.y98{bottom:498.626667pt;}
.y59{bottom:503.746667pt;}
.y1f{bottom:512.066667pt;}
.y97{bottom:520.386667pt;}
.y58{bottom:526.786667pt;}
.y40{bottom:533.506667pt;}
.y1e{bottom:533.666667pt;}
.y96{bottom:542.306667pt;}
.y3f{bottom:554.946667pt;}
.y1d{bottom:555.106667pt;}
.y57{bottom:558.626667pt;}
.y95{bottom:564.226667pt;}
.y3e{bottom:576.386667pt;}
.y1c{bottom:576.546667pt;}
.y94{bottom:586.146667pt;}
.y56{bottom:591.133333pt;}
.y3d{bottom:597.693333pt;}
.y1b{bottom:598.013333pt;}
.y93{bottom:608.093333pt;}
.y55{bottom:612.573333pt;}
.y1a{bottom:619.133333pt;}
.y3c{bottom:619.453333pt;}
.y92{bottom:629.853333pt;}
.y83{bottom:630.173333pt;}
.y3b{bottom:640.893333pt;}
.y19{bottom:651.613333pt;}
.y91{bottom:651.773333pt;}
.y82{bottom:652.253333pt;}
.y3a{bottom:662.333333pt;}
.y18{bottom:673.053333pt;}
.y90{bottom:673.693333pt;}
.y81{bottom:683.613333pt;}
.y39{bottom:683.773333pt;}
.y17{bottom:694.493333pt;}
.y8f{bottom:695.613333pt;}
.y38{bottom:705.213333pt;}
.y16{bottom:715.933333pt;}
.y8e{bottom:717.373333pt;}
.y37{bottom:726.813333pt;}
.y7d{bottom:727.933333pt;}
.y15{bottom:737.533333pt;}
.y8d{bottom:739.613333pt;}
.y36{bottom:748.253333pt;}
.y14{bottom:758.973333pt;}
.y8c{bottom:767.133333pt;}
.y35{bottom:769.693333pt;}
.y79{bottom:772.253333pt;}
.y13{bottom:780.093333pt;}
.y34{bottom:791.133333pt;}
.y8b{bottom:794.653333pt;}
.y77{bottom:803.613333pt;}
.y12{bottom:812.293333pt;}
.y33{bottom:812.613333pt;}
.y8a{bottom:816.133333pt;}
.y76{bottom:825.573333pt;}
.y11{bottom:834.053333pt;}
.y89{bottom:837.573333pt;}
.y75{bottom:848.453333pt;}
.y10{bottom:855.493333pt;}
.y88{bottom:865.093333pt;}
.y74{bottom:870.533333pt;}
.yf{bottom:877.093333pt;}
.y87{bottom:886.533333pt;}
.y72{bottom:892.453333pt;}
.ye{bottom:898.533333pt;}
.y86{bottom:913.893333pt;}
.y70{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y85{bottom:935.493333pt;}
.y6f{bottom:938.053333pt;}
.yc{bottom:941.093333pt;}
.y32{bottom:941.413333pt;}
.y84{bottom:956.933333pt;}
.y6d{bottom:960.133333pt;}
.yb{bottom:962.533333pt;}
.y31{bottom:962.853333pt;}
.y6b{bottom:977.093333pt;}
.ya{bottom:983.973333pt;}
.y30{bottom:984.293333pt;}
.y7{bottom:1005.093333pt;}
.y1{bottom:1019.653333pt;}
.h18{height:16.320000pt;}
.h16{height:21.280000pt;}
.h1d{height:21.312000pt;}
.h19{height:21.440000pt;}
.h13{height:21.472000pt;}
.h1a{height:21.920000pt;}
.h1c{height:22.240000pt;}
.h1b{height:22.400000pt;}
.h17{height:23.520000pt;}
.h1e{height:30.560000pt;}
.h12{height:36.000000pt;}
.h10{height:36.960000pt;}
.h11{height:37.479688pt;}
.h20{height:43.520000pt;}
.h1f{height:43.680000pt;}
.h4{height:45.156250pt;}
.h14{height:52.134375pt;}
.h15{height:52.478750pt;}
.hb{height:52.503750pt;}
.h8{height:52.832812pt;}
.hf{height:53.535000pt;}
.h7{height:53.937500pt;}
.h3{height:54.187500pt;}
.h2{height:55.712000pt;}
.hd{height:58.563750pt;}
.h6{height:62.812500pt;}
.h21{height:63.399375pt;}
.h5{height:64.500000pt;}
.ha{height:73.454062pt;}
.hc{height:73.490625pt;}
.he{height:73.760000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:53.792000pt;}
.wb{width:76.480000pt;}
.wa{width:77.472000pt;}
.w9{width:79.040000pt;}
.w8{width:133.152000pt;}
.w7{width:154.586667pt;}
.w2{width:198.306667pt;}
.w6{width:214.266667pt;}
.w3{width:443.746667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.232000pt;}
.x20{left:13.440000pt;}
.x28{left:15.034667pt;}
.x1e{left:16.960000pt;}
.x21{left:19.360000pt;}
.x5{left:20.960000pt;}
.x1f{left:22.080000pt;}
.x2d{left:23.200000pt;}
.x33{left:24.800000pt;}
.x1c{left:25.760000pt;}
.x23{left:27.040000pt;}
.x31{left:28.640000pt;}
.x25{left:30.400000pt;}
.x32{left:32.480000pt;}
.x4{left:34.560000pt;}
.x1a{left:36.000000pt;}
.x37{left:37.434667pt;}
.x29{left:40.960000pt;}
.x34{left:44.160000pt;}
.x2b{left:45.920000pt;}
.x2f{left:47.520000pt;}
.x24{left:50.880000pt;}
.x2e{left:55.834667pt;}
.x2c{left:61.274667pt;}
.x18{left:64.794667pt;}
.x2a{left:70.074667pt;}
.x30{left:73.754667pt;}
.x1{left:75.520000pt;}
.x36{left:81.594667pt;}
.x35{left:85.914667pt;}
.x7{left:93.951988pt;}
.xd{left:104.031988pt;}
.x11{left:113.311988pt;}
.x14{left:122.751988pt;}
.x17{left:130.752000pt;}
.x8{left:155.066655pt;}
.x15{left:214.586655pt;}
.xf{left:236.826655pt;}
.x3{left:273.826667pt;}
.xa{left:280.386655pt;}
.xc{left:288.226655pt;}
.xb{left:292.546655pt;}
.x6{left:299.066667pt;}
.x19{left:345.666667pt;}
.x10{left:348.546655pt;}
.x12{left:349.666655pt;}
.xe{left:354.786655pt;}
.x26{left:369.186655pt;}
.x9{left:396.866655pt;}
.x27{left:420.893322pt;}
.x22{left:423.773333pt;}
.x1b{left:500.893333pt;}
.x1d{left:634.693333pt;}
.x16{left:657.093322pt;}
.x13{left:718.213322pt;}
}




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