
    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_4230583ba94f6de2f9241d89.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_76fe82cef40665d10efc78e2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a413afc8b1909e2a4851bf65.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bc9dbd4322e524834654a36e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ac34ea9f902d19a96e368d01.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d2cda5d1b2cf01735a848a1b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a0130c23dd614c282dfe9854.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.208200px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.153360px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.189600px;}
.lsa{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.511800px;}
.lsb{letter-spacing:16.506720px;}
.ls8{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-6.178800px;}
._e{margin-left:-4.636800px;}
._15{margin-left:-3.371760px;}
._c{margin-left:-2.185920px;}
._b{margin-left:-1.026000px;}
._4{width:1.254960px;}
._13{width:2.280960px;}
._11{width:3.286800px;}
._12{width:4.322880px;}
._f{width:5.649840px;}
._10{width:6.816240px;}
._14{width:8.408880px;}
._3{width:9.540000px;}
._18{width:10.658880px;}
._1{width:12.420000px;}
._17{width:13.584720px;}
._16{width:16.121280px;}
._1b{width:17.480880px;}
._1d{width:18.554400px;}
._1c{width:20.054160px;}
._29{width:21.111120px;}
._19{width:22.111200px;}
._1a{width:23.281200px;}
._27{width:24.511680px;}
._2d{width:26.114400px;}
._24{width:27.429840px;}
._25{width:28.540080px;}
._2a{width:29.691360px;}
._21{width:30.965760px;}
._22{width:32.270400px;}
._23{width:33.832800px;}
._26{width:34.959600px;}
._2b{width:36.334080px;}
._2c{width:37.350000px;}
._2f{width:38.425680px;}
._2e{width:39.441600px;}
._30{width:41.234400px;}
._28{width:43.146720px;}
._31{width:44.162640px;}
._20{width:53.544960px;}
._1f{width:54.799920px;}
._1e{width:64.361520px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc6{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y25{bottom:5.760000px;}
.y27{bottom:5.940000px;}
.y10{bottom:7.020000px;}
.y1a{bottom:8.820000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y24{bottom:25.560000px;}
.y11{bottom:36.720000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y23{bottom:45.360000px;}
.yf{bottom:52.380000px;}
.y6{bottom:63.180000px;}
.y22{bottom:65.340000px;}
.yb{bottom:73.110000px;}
.y43{bottom:82.476000px;}
.ya5{bottom:83.556000px;}
.y50{bottom:84.276000px;}
.y5{bottom:84.450000px;}
.y21{bottom:85.140000px;}
.ycf{bottom:90.756000px;}
.ya{bottom:92.370000px;}
.y86{bottom:94.356000px;}
.y42{bottom:102.276000px;}
.ya4{bottom:103.356000px;}
.y4f{bottom:104.076000px;}
.y20{bottom:104.940000px;}
.y4{bottom:106.950000px;}
.y9{bottom:110.190000px;}
.yce{bottom:110.556000px;}
.y85{bottom:114.336000px;}
.y41{bottom:122.076000px;}
.ya3{bottom:123.336000px;}
.y4e{bottom:123.876000px;}
.y1f{bottom:124.740000px;}
.y3{bottom:126.750000px;}
.ycd{bottom:130.356000px;}
.y84{bottom:134.136000px;}
.y40{bottom:141.876000px;}
.ya2{bottom:143.136000px;}
.y1e{bottom:144.540000px;}
.ycc{bottom:150.330000px;}
.y4d{bottom:152.850000px;}
.y83{bottom:153.930000px;}
.y3f{bottom:161.850000px;}
.ya1{bottom:162.930000px;}
.y1d{bottom:164.520000px;}
.ycb{bottom:170.130000px;}
.y4c{bottom:172.650000px;}
.y82{bottom:173.730000px;}
.y3e{bottom:181.650000px;}
.ya0{bottom:182.730000px;}
.y1c{bottom:184.320000px;}
.yca{bottom:189.930000px;}
.y4b{bottom:192.450000px;}
.y3d{bottom:201.450000px;}
.y81{bottom:202.530000px;}
.yc9{bottom:209.730000px;}
.y4a{bottom:212.250000px;}
.y3c{bottom:221.250000px;}
.y80{bottom:222.510000px;}
.yc8{bottom:229.530000px;}
.y49{bottom:232.050000px;}
.y3b{bottom:241.050000px;}
.y7f{bottom:242.310000px;}
.yc7{bottom:249.510000px;}
.y48{bottom:252.030000px;}
.y3a{bottom:261.030000px;}
.y7e{bottom:262.110000px;}
.yc6{bottom:269.310000px;}
.y47{bottom:271.830000px;}
.y39{bottom:280.830000px;}
.y7d{bottom:281.910000px;}
.yc5{bottom:289.110000px;}
.y46{bottom:291.630000px;}
.y38{bottom:300.630000px;}
.y7c{bottom:301.710000px;}
.yc4{bottom:308.910000px;}
.y45{bottom:311.430000px;}
.y37{bottom:320.430000px;}
.y7b{bottom:321.690000px;}
.yc3{bottom:328.710000px;}
.y44{bottom:331.230000px;}
.y36{bottom:340.275000px;}
.y7a{bottom:341.535000px;}
.yc2{bottom:348.735000px;}
.y35{bottom:360.255000px;}
.y79{bottom:361.335000px;}
.yc1{bottom:368.535000px;}
.y34{bottom:380.055000px;}
.y9f{bottom:381.135000px;}
.yc0{bottom:388.335000px;}
.y78{bottom:390.135000px;}
.y33{bottom:399.855000px;}
.y9e{bottom:400.935000px;}
.ybf{bottom:408.135000px;}
.y77{bottom:409.935000px;}
.y32{bottom:419.655000px;}
.y9d{bottom:420.915000px;}
.ybe{bottom:427.935000px;}
.y76{bottom:429.915000px;}
.y31{bottom:439.455000px;}
.y9c{bottom:440.715000px;}
.ybd{bottom:447.915000px;}
.y75{bottom:449.715000px;}
.y30{bottom:459.435000px;}
.y9b{bottom:460.515000px;}
.ybc{bottom:467.715000px;}
.y74{bottom:469.515000px;}
.y2f{bottom:479.235000px;}
.y9a{bottom:480.315000px;}
.ybb{bottom:487.515000px;}
.y73{bottom:489.315000px;}
.y2e{bottom:499.035000px;}
.y99{bottom:500.115000px;}
.yba{bottom:507.315000px;}
.y72{bottom:509.115000px;}
.y2d{bottom:518.835000px;}
.y98{bottom:520.095000px;}
.yb9{bottom:527.115000px;}
.y71{bottom:529.095000px;}
.y2c{bottom:538.635000px;}
.y97{bottom:539.895000px;}
.yb8{bottom:547.095000px;}
.y70{bottom:548.895000px;}
.y2b{bottom:558.615000px;}
.y96{bottom:559.695000px;}
.yb7{bottom:566.895000px;}
.y6f{bottom:568.695000px;}
.y2a{bottom:578.415000px;}
.y95{bottom:579.495000px;}
.yb6{bottom:586.695000px;}
.y6e{bottom:588.495000px;}
.y29{bottom:598.215000px;}
.y94{bottom:599.295000px;}
.yb5{bottom:606.525000px;}
.y6d{bottom:608.325000px;}
.y28{bottom:618.045000px;}
.yb4{bottom:626.325000px;}
.y6c{bottom:628.305000px;}
.y26{bottom:632.805000px;}
.yb3{bottom:646.305000px;}
.y6b{bottom:648.105000px;}
.y1b{bottom:653.505000px;}
.yb2{bottom:666.105000px;}
.y6a{bottom:667.905000px;}
.yb1{bottom:685.905000px;}
.y69{bottom:687.705000px;}
.yb0{bottom:705.705000px;}
.y93{bottom:707.505000px;}
.y68{bottom:716.505000px;}
.yaf{bottom:725.505000px;}
.y92{bottom:727.485000px;}
.y67{bottom:736.485000px;}
.yae{bottom:745.485000px;}
.y91{bottom:747.285000px;}
.y66{bottom:756.285000px;}
.yad{bottom:765.285000px;}
.y90{bottom:767.085000px;}
.y65{bottom:776.085000px;}
.yac{bottom:785.085000px;}
.y8f{bottom:786.885000px;}
.y64{bottom:795.885000px;}
.yab{bottom:804.885000px;}
.y8e{bottom:806.685000px;}
.y63{bottom:815.685000px;}
.yaa{bottom:824.685000px;}
.y8d{bottom:826.665000px;}
.y62{bottom:835.665000px;}
.ya9{bottom:844.665000px;}
.y8c{bottom:846.465000px;}
.y19{bottom:852.585000px;}
.y61{bottom:855.465000px;}
.ya8{bottom:864.465000px;}
.y60{bottom:875.310000px;}
.y18{bottom:881.970000px;}
.ya7{bottom:884.310000px;}
.y5f{bottom:895.110000px;}
.y17{bottom:901.950000px;}
.ya6{bottom:904.110000px;}
.y8b{bottom:914.910000px;}
.y5e{bottom:923.910000px;}
.y16{bottom:926.970000px;}
.y8a{bottom:934.890000px;}
.y15{bottom:942.090000px;}
.y5d{bottom:943.890000px;}
.y89{bottom:954.690000px;}
.y14{bottom:963.330000px;}
.y5c{bottom:963.690000px;}
.y88{bottom:974.490000px;}
.y5b{bottom:983.490000px;}
.y13{bottom:986.910000px;}
.y87{bottom:994.290000px;}
.y5a{bottom:1003.290000px;}
.y12{bottom:1018.590000px;}
.y59{bottom:1023.090000px;}
.y58{bottom:1043.070000px;}
.ye{bottom:1045.410000px;}
.y57{bottom:1062.870000px;}
.y1{bottom:1067.730000px;}
.y56{bottom:1082.670000px;}
.y55{bottom:1102.470000px;}
.y54{bottom:1122.270000px;}
.y53{bottom:1142.280000px;}
.y52{bottom:1171.620000px;}
.y51{bottom:1193.400000px;}
.h3{height:2.825156px;}
.h10{height:19.980000px;}
.ha{height:22.356000px;}
.he{height:22.896000px;}
.hd{height:38.158594px;}
.h11{height:47.901094px;}
.h8{height:52.998047px;}
.h13{height:58.621992px;}
.h6{height:58.651172px;}
.h4{height:60.226875px;}
.h14{height:61.423863px;}
.h12{height:65.010937px;}
.h9{height:65.884219px;}
.hb{height:66.757500px;}
.h7{height:70.664062px;}
.h5{height:72.562500px;}
.hc{height:96.508125px;}
.h2{height:140.796000px;}
.hf{height:198.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.776000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.270000px;}
.w3{width:464.865000px;}
.w9{width:585.465000px;}
.w7{width:731.625000px;}
.wa{width:777.750000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.600000px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.x10{left:87.299987px;}
.xc{left:107.496000px;}
.x7{left:133.605000px;}
.x2{left:160.050000px;}
.x3{left:221.070000px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.x11{left:333.614987px;}
.xf{left:473.504987px;}
.x12{left:500.504987px;}
.x13{left:527.504987px;}
.x8{left:685.950000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.136320pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.168533pt;}
.lsa{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.454933pt;}
.lsb{letter-spacing:14.672640pt;}
.ls8{letter-spacing:40.912640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-5.492267pt;}
._e{margin-left:-4.121600pt;}
._15{margin-left:-2.997120pt;}
._c{margin-left:-1.943040pt;}
._b{margin-left:-0.912000pt;}
._4{width:1.115520pt;}
._13{width:2.027520pt;}
._11{width:2.921600pt;}
._12{width:3.842560pt;}
._f{width:5.022080pt;}
._10{width:6.058880pt;}
._14{width:7.474560pt;}
._3{width:8.480000pt;}
._18{width:9.474560pt;}
._1{width:11.040000pt;}
._17{width:12.075307pt;}
._16{width:14.330027pt;}
._1b{width:15.538560pt;}
._1d{width:16.492800pt;}
._1c{width:17.825920pt;}
._29{width:18.765440pt;}
._19{width:19.654400pt;}
._1a{width:20.694400pt;}
._27{width:21.788160pt;}
._2d{width:23.212800pt;}
._24{width:24.382080pt;}
._25{width:25.368960pt;}
._2a{width:26.392320pt;}
._21{width:27.525120pt;}
._22{width:28.684800pt;}
._23{width:30.073600pt;}
._26{width:31.075200pt;}
._2b{width:32.296960pt;}
._2c{width:33.200000pt;}
._2f{width:34.156160pt;}
._2e{width:35.059200pt;}
._30{width:36.652800pt;}
._28{width:38.352640pt;}
._31{width:39.255680pt;}
._20{width:47.595520pt;}
._1f{width:48.711040pt;}
._1e{width:57.210240pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y25{bottom:5.120000pt;}
.y27{bottom:5.280000pt;}
.y10{bottom:6.240000pt;}
.y1a{bottom:7.840000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y24{bottom:22.720000pt;}
.y11{bottom:32.640000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y23{bottom:40.320000pt;}
.yf{bottom:46.560000pt;}
.y6{bottom:56.160000pt;}
.y22{bottom:58.080000pt;}
.yb{bottom:64.986667pt;}
.y43{bottom:73.312000pt;}
.ya5{bottom:74.272000pt;}
.y50{bottom:74.912000pt;}
.y5{bottom:75.066667pt;}
.y21{bottom:75.680000pt;}
.ycf{bottom:80.672000pt;}
.ya{bottom:82.106667pt;}
.y86{bottom:83.872000pt;}
.y42{bottom:90.912000pt;}
.ya4{bottom:91.872000pt;}
.y4f{bottom:92.512000pt;}
.y20{bottom:93.280000pt;}
.y4{bottom:95.066667pt;}
.y9{bottom:97.946667pt;}
.yce{bottom:98.272000pt;}
.y85{bottom:101.632000pt;}
.y41{bottom:108.512000pt;}
.ya3{bottom:109.632000pt;}
.y4e{bottom:110.112000pt;}
.y1f{bottom:110.880000pt;}
.y3{bottom:112.666667pt;}
.ycd{bottom:115.872000pt;}
.y84{bottom:119.232000pt;}
.y40{bottom:126.112000pt;}
.ya2{bottom:127.232000pt;}
.y1e{bottom:128.480000pt;}
.ycc{bottom:133.626667pt;}
.y4d{bottom:135.866667pt;}
.y83{bottom:136.826667pt;}
.y3f{bottom:143.866667pt;}
.ya1{bottom:144.826667pt;}
.y1d{bottom:146.240000pt;}
.ycb{bottom:151.226667pt;}
.y4c{bottom:153.466667pt;}
.y82{bottom:154.426667pt;}
.y3e{bottom:161.466667pt;}
.ya0{bottom:162.426667pt;}
.y1c{bottom:163.840000pt;}
.yca{bottom:168.826667pt;}
.y4b{bottom:171.066667pt;}
.y3d{bottom:179.066667pt;}
.y81{bottom:180.026667pt;}
.yc9{bottom:186.426667pt;}
.y4a{bottom:188.666667pt;}
.y3c{bottom:196.666667pt;}
.y80{bottom:197.786667pt;}
.yc8{bottom:204.026667pt;}
.y49{bottom:206.266667pt;}
.y3b{bottom:214.266667pt;}
.y7f{bottom:215.386667pt;}
.yc7{bottom:221.786667pt;}
.y48{bottom:224.026667pt;}
.y3a{bottom:232.026667pt;}
.y7e{bottom:232.986667pt;}
.yc6{bottom:239.386667pt;}
.y47{bottom:241.626667pt;}
.y39{bottom:249.626667pt;}
.y7d{bottom:250.586667pt;}
.yc5{bottom:256.986667pt;}
.y46{bottom:259.226667pt;}
.y38{bottom:267.226667pt;}
.y7c{bottom:268.186667pt;}
.yc4{bottom:274.586667pt;}
.y45{bottom:276.826667pt;}
.y37{bottom:284.826667pt;}
.y7b{bottom:285.946667pt;}
.yc3{bottom:292.186667pt;}
.y44{bottom:294.426667pt;}
.y36{bottom:302.466667pt;}
.y7a{bottom:303.586667pt;}
.yc2{bottom:309.986667pt;}
.y35{bottom:320.226667pt;}
.y79{bottom:321.186667pt;}
.yc1{bottom:327.586667pt;}
.y34{bottom:337.826667pt;}
.y9f{bottom:338.786667pt;}
.yc0{bottom:345.186667pt;}
.y78{bottom:346.786667pt;}
.y33{bottom:355.426667pt;}
.y9e{bottom:356.386667pt;}
.ybf{bottom:362.786667pt;}
.y77{bottom:364.386667pt;}
.y32{bottom:373.026667pt;}
.y9d{bottom:374.146667pt;}
.ybe{bottom:380.386667pt;}
.y76{bottom:382.146667pt;}
.y31{bottom:390.626667pt;}
.y9c{bottom:391.746667pt;}
.ybd{bottom:398.146667pt;}
.y75{bottom:399.746667pt;}
.y30{bottom:408.386667pt;}
.y9b{bottom:409.346667pt;}
.ybc{bottom:415.746667pt;}
.y74{bottom:417.346667pt;}
.y2f{bottom:425.986667pt;}
.y9a{bottom:426.946667pt;}
.ybb{bottom:433.346667pt;}
.y73{bottom:434.946667pt;}
.y2e{bottom:443.586667pt;}
.y99{bottom:444.546667pt;}
.yba{bottom:450.946667pt;}
.y72{bottom:452.546667pt;}
.y2d{bottom:461.186667pt;}
.y98{bottom:462.306667pt;}
.yb9{bottom:468.546667pt;}
.y71{bottom:470.306667pt;}
.y2c{bottom:478.786667pt;}
.y97{bottom:479.906667pt;}
.yb8{bottom:486.306667pt;}
.y70{bottom:487.906667pt;}
.y2b{bottom:496.546667pt;}
.y96{bottom:497.506667pt;}
.yb7{bottom:503.906667pt;}
.y6f{bottom:505.506667pt;}
.y2a{bottom:514.146667pt;}
.y95{bottom:515.106667pt;}
.yb6{bottom:521.506667pt;}
.y6e{bottom:523.106667pt;}
.y29{bottom:531.746667pt;}
.y94{bottom:532.706667pt;}
.yb5{bottom:539.133333pt;}
.y6d{bottom:540.733333pt;}
.y28{bottom:549.373333pt;}
.yb4{bottom:556.733333pt;}
.y6c{bottom:558.493333pt;}
.y26{bottom:562.493333pt;}
.yb3{bottom:574.493333pt;}
.y6b{bottom:576.093333pt;}
.y1b{bottom:580.893333pt;}
.yb2{bottom:592.093333pt;}
.y6a{bottom:593.693333pt;}
.yb1{bottom:609.693333pt;}
.y69{bottom:611.293333pt;}
.yb0{bottom:627.293333pt;}
.y93{bottom:628.893333pt;}
.y68{bottom:636.893333pt;}
.yaf{bottom:644.893333pt;}
.y92{bottom:646.653333pt;}
.y67{bottom:654.653333pt;}
.yae{bottom:662.653333pt;}
.y91{bottom:664.253333pt;}
.y66{bottom:672.253333pt;}
.yad{bottom:680.253333pt;}
.y90{bottom:681.853333pt;}
.y65{bottom:689.853333pt;}
.yac{bottom:697.853333pt;}
.y8f{bottom:699.453333pt;}
.y64{bottom:707.453333pt;}
.yab{bottom:715.453333pt;}
.y8e{bottom:717.053333pt;}
.y63{bottom:725.053333pt;}
.yaa{bottom:733.053333pt;}
.y8d{bottom:734.813333pt;}
.y62{bottom:742.813333pt;}
.ya9{bottom:750.813333pt;}
.y8c{bottom:752.413333pt;}
.y19{bottom:757.853333pt;}
.y61{bottom:760.413333pt;}
.ya8{bottom:768.413333pt;}
.y60{bottom:778.053333pt;}
.y18{bottom:783.973333pt;}
.ya7{bottom:786.053333pt;}
.y5f{bottom:795.653333pt;}
.y17{bottom:801.733333pt;}
.ya6{bottom:803.653333pt;}
.y8b{bottom:813.253333pt;}
.y5e{bottom:821.253333pt;}
.y16{bottom:823.973333pt;}
.y8a{bottom:831.013333pt;}
.y15{bottom:837.413333pt;}
.y5d{bottom:839.013333pt;}
.y89{bottom:848.613333pt;}
.y14{bottom:856.293333pt;}
.y5c{bottom:856.613333pt;}
.y88{bottom:866.213333pt;}
.y5b{bottom:874.213333pt;}
.y13{bottom:877.253333pt;}
.y87{bottom:883.813333pt;}
.y5a{bottom:891.813333pt;}
.y12{bottom:905.413333pt;}
.y59{bottom:909.413333pt;}
.y58{bottom:927.173333pt;}
.ye{bottom:929.253333pt;}
.y57{bottom:944.773333pt;}
.y1{bottom:949.093333pt;}
.y56{bottom:962.373333pt;}
.y55{bottom:979.973333pt;}
.y54{bottom:997.573333pt;}
.y53{bottom:1015.360000pt;}
.y52{bottom:1041.440000pt;}
.y51{bottom:1060.800000pt;}
.h3{height:2.511250pt;}
.h10{height:17.760000pt;}
.ha{height:19.872000pt;}
.he{height:20.352000pt;}
.hd{height:33.918750pt;}
.h11{height:42.578750pt;}
.h8{height:47.109375pt;}
.h13{height:52.108438pt;}
.h6{height:52.134375pt;}
.h4{height:53.535000pt;}
.h14{height:54.598989pt;}
.h12{height:57.787500pt;}
.h9{height:58.563750pt;}
.hb{height:59.340000pt;}
.h7{height:62.812500pt;}
.h5{height:64.500000pt;}
.hc{height:85.785000pt;}
.h2{height:125.152000pt;}
.hf{height:176.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.912000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.906667pt;}
.w3{width:413.213333pt;}
.w9{width:520.413333pt;}
.w7{width:650.333333pt;}
.wa{width:691.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.200000pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.x10{left:77.599988pt;}
.xc{left:95.552000pt;}
.x7{left:118.760000pt;}
.x2{left:142.266667pt;}
.x3{left:196.506667pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.x11{left:296.546655pt;}
.xf{left:420.893322pt;}
.x12{left:444.893322pt;}
.x13{left:468.893322pt;}
.x8{left:609.733333pt;}
}




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