
    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_ce60ef3ea6f28f3d4d1499a6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a3c94e94ec78c9c0a7d1d3dc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c8d609044baac5ee82a8b96d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f3f23bb21bec936341e95181.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5fcb9c066897c01702ba86da.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0298a592267f6447aebcb616.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_50fcdba0e12a2ae9d733d569.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9e044b1a4d0db609980f7db9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b6ae1f500f2fea64a5e8300a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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:ffb;src:url('chunks/assets/font_986504c1547756ad3e53f1e6.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.108000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:52.668000px;}
.ls5{letter-spacing:74.988000px;}
.ls4{letter-spacing:75.132000px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws6{word-spacing:-19.457280px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.284000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._d{width:3.402000px;}
._c{width:4.860000px;}
._7{width:6.642000px;}
._5{width:7.905840px;}
._6{width:9.558000px;}
._10{width:10.848480px;}
._e{width:12.150000px;}
._3{width:15.282000px;}
._4{width:16.462320px;}
._8{width:17.820000px;}
._14{width:19.499040px;}
._9{width:20.898000px;}
._a{width:21.953520px;}
._b{width:23.922000px;}
._11{width:25.380000px;}
._12{width:26.514000px;}
._15{width:28.188000px;}
._16{width:29.700000px;}
._19{width:30.880320px;}
._13{width:32.400000px;}
._f{width:34.074000px;}
._1c{width:36.558000px;}
._1d{width:37.954320px;}
._17{width:39.150000px;}
._1b{width:43.092000px;}
._1f{width:44.982000px;}
._20{width:45.995280px;}
._1e{width:47.003040px;}
._18{width:50.112000px;}
._1a{width:272.459520px;}
._2{width:2903.467200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y35{bottom:-7.815000px;}
.yaa{bottom:-3.420000px;}
.yac{bottom:-3.240000px;}
.y43{bottom:-1.770000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y49{bottom:6.990000px;}
.y9b{bottom:9.705000px;}
.ya7{bottom:9.720000px;}
.y9d{bottom:10.065000px;}
.ya0{bottom:10.080000px;}
.ya3{bottom:10.260000px;}
.y99{bottom:18.705000px;}
.ya1{bottom:18.900000px;}
.y8{bottom:22.500000px;}
.y9a{bottom:27.525000px;}
.y9f{bottom:27.900000px;}
.y7{bottom:41.040000px;}
.y41{bottom:46.830000px;}
.y6{bottom:56.880000px;}
.y31{bottom:60.585000px;}
.y1e{bottom:89.640000px;}
.y3e{bottom:95.655000px;}
.yd3{bottom:97.380000px;}
.y2b{bottom:97.560000px;}
.ya4{bottom:106.920000px;}
.y1d{bottom:107.460000px;}
.yd2{bottom:115.380000px;}
.y3d{bottom:115.455000px;}
.y2a{bottom:124.380000px;}
.y1c{bottom:125.460000px;}
.ya2{bottom:133.380000px;}
.y3c{bottom:135.255000px;}
.yd1{bottom:142.200000px;}
.y29{bottom:142.380000px;}
.y1b{bottom:143.280000px;}
.y2d{bottom:144.870000px;}
.y3b{bottom:155.055000px;}
.yd0{bottom:160.020000px;}
.y28{bottom:160.200000px;}
.y1a{bottom:161.100000px;}
.y9e{bottom:166.680000px;}
.y3a{bottom:175.035000px;}
.y27{bottom:178.020000px;}
.ycf{bottom:186.840000px;}
.y19{bottom:187.920000px;}
.y26{bottom:195.840000px;}
.yce{bottom:204.660000px;}
.y18{bottom:205.770000px;}
.y25{bottom:213.690000px;}
.y9c{bottom:217.305000px;}
.y17{bottom:223.590000px;}
.y38{bottom:223.635000px;}
.y24{bottom:231.510000px;}
.y16{bottom:241.590000px;}
.y37{bottom:243.435000px;}
.y23{bottom:249.510000px;}
.y98{bottom:250.245000px;}
.y15{bottom:259.410000px;}
.y22{bottom:267.330000px;}
.ycd{bottom:276.330000px;}
.y14{bottom:277.230000px;}
.y21{bottom:285.150000px;}
.ycc{bottom:294.150000px;}
.y13{bottom:295.050000px;}
.y20{bottom:302.970000px;}
.y97{bottom:304.950000px;}
.y12{bottom:314.850000px;}
.y1f{bottom:320.790000px;}
.ycb{bottom:322.950000px;}
.y76{bottom:332.310000px;}
.y96{bottom:341.130000px;}
.y75{bottom:350.130000px;}
.y11{bottom:350.490000px;}
.yca{bottom:355.710000px;}
.y74{bottom:367.950000px;}
.y36{bottom:368.640000px;}
.yc9{bottom:373.710000px;}
.y73{bottom:385.770000px;}
.yc8{bottom:391.530000px;}
.y95{bottom:394.410000px;}
.y42{bottom:395.670000px;}
.yc7{bottom:409.350000px;}
.y72{bottom:412.590000px;}
.y40{bottom:415.470000px;}
.y94{bottom:421.590000px;}
.yc6{bottom:427.170000px;}
.y71{bottom:439.410000px;}
.y3f{bottom:444.450000px;}
.yc5{bottom:445.035000px;}
.y70{bottom:457.455000px;}
.yc4{bottom:463.035000px;}
.y6f{bottom:475.275000px;}
.yc3{bottom:480.855000px;}
.y6e{bottom:493.095000px;}
.yc2{bottom:498.675000px;}
.y93{bottom:510.915000px;}
.yc1{bottom:516.495000px;}
.y6d{bottom:519.915000px;}
.y92{bottom:528.375000px;}
.yc0{bottom:534.315000px;}
.y6c{bottom:537.735000px;}
.ybf{bottom:554.115000px;}
.y6b{bottom:555.735000px;}
.y39{bottom:572.475000px;}
.y6a{bottom:573.555000px;}
.ybe{bottom:587.055000px;}
.y91{bottom:591.375000px;}
.y69{bottom:600.375000px;}
.ybd{bottom:604.875000px;}
.y90{bottom:609.195000px;}
.y68{bottom:618.195000px;}
.ybc{bottom:622.695000px;}
.y8f{bottom:627.015000px;}
.y67{bottom:636.015000px;}
.ybb{bottom:640.515000px;}
.y8e{bottom:644.835000px;}
.y10{bottom:647.895000px;}
.y66{bottom:653.835000px;}
.y8d{bottom:662.475000px;}
.yba{bottom:667.335000px;}
.yd8{bottom:670.395000px;}
.y65{bottom:671.835000px;}
.yb9{bottom:685.365000px;}
.yf{bottom:689.145000px;}
.y8c{bottom:689.685000px;}
.yd7{bottom:690.045000px;}
.y64{bottom:698.685000px;}
.yb8{bottom:703.185000px;}
.ye{bottom:704.805000px;}
.y8b{bottom:707.505000px;}
.y34{bottom:711.180000px;}
.yd6{bottom:712.005000px;}
.y63{bottom:716.505000px;}
.yb7{bottom:721.005000px;}
.y8a{bottom:725.325000px;}
.yd5{bottom:729.825000px;}
.y33{bottom:731.265000px;}
.y62{bottom:734.325000px;}
.y30{bottom:735.120000px;}
.yb6{bottom:738.825000px;}
.y89{bottom:743.145000px;}
.yd4{bottom:747.645000px;}
.y61{bottom:752.145000px;}
.yb5{bottom:756.645000px;}
.yd{bottom:760.965000px;}
.y88{bottom:761.145000px;}
.y60{bottom:770.145000px;}
.yb4{bottom:774.465000px;}
.y87{bottom:778.965000px;}
.y32{bottom:785.265000px;}
.y5f{bottom:787.965000px;}
.yb3{bottom:792.465000px;}
.y86{bottom:796.785000px;}
.y85{bottom:814.245000px;}
.y5e{bottom:814.785000px;}
.yc{bottom:815.145000px;}
.yb2{bottom:818.565000px;}
.y5d{bottom:832.605000px;}
.y2f{bottom:837.285000px;}
.y84{bottom:841.425000px;}
.y5c{bottom:850.425000px;}
.yb1{bottom:851.325000px;}
.y83{bottom:859.245000px;}
.y5b{bottom:868.245000px;}
.y82{bottom:877.245000px;}
.yb0{bottom:884.265000px;}
.y5a{bottom:886.245000px;}
.y81{bottom:895.065000px;}
.y2e{bottom:896.505000px;}
.y59{bottom:904.065000px;}
.y80{bottom:912.930000px;}
.yaf{bottom:917.070000px;}
.y58{bottom:921.930000px;}
.yb{bottom:934.350000px;}
.y57{bottom:939.750000px;}
.y2c{bottom:941.400000px;}
.yae{bottom:950.010000px;}
.y48{bottom:955.800000px;}
.y56{bottom:957.570000px;}
.y7f{bottom:975.570000px;}
.yad{bottom:982.770000px;}
.y55{bottom:984.570000px;}
.y47{bottom:989.430000px;}
.y7e{bottom:993.390000px;}
.y54{bottom:1002.390000px;}
.y7d{bottom:1011.210000px;}
.y46{bottom:1015.710000px;}
.y53{bottom:1020.210000px;}
.y7c{bottom:1029.030000px;}
.y52{bottom:1038.030000px;}
.y45{bottom:1041.990000px;}
.yab{bottom:1048.470000px;}
.y51{bottom:1055.850000px;}
.y44{bottom:1068.450000px;}
.y7b{bottom:1073.670000px;}
.ya9{bottom:1081.410000px;}
.y50{bottom:1082.670000px;}
.y7a{bottom:1091.670000px;}
.y4f{bottom:1100.670000px;}
.ya{bottom:1107.690000px;}
.y79{bottom:1109.490000px;}
.ya8{bottom:1114.170000px;}
.y4e{bottom:1118.490000px;}
.y78{bottom:1127.310000px;}
.y4d{bottom:1136.310000px;}
.y77{bottom:1145.130000px;}
.ya6{bottom:1147.140000px;}
.y4c{bottom:1154.160000px;}
.y4b{bottom:1171.980000px;}
.ya5{bottom:1189.440000px;}
.y4a{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h1b{height:26.805000px;}
.h1e{height:26.820000px;}
.h20{height:26.856000px;}
.h1f{height:27.000000px;}
.h1d{height:27.175500px;}
.hc{height:37.705078px;}
.h12{height:44.100000px;}
.h1a{height:44.625000px;}
.h1c{height:44.676000px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.h19{height:54.421875px;}
.h17{height:55.503491px;}
.h8{height:55.825312px;}
.h18{height:56.214844px;}
.h14{height:58.621992px;}
.h11{height:58.651172px;}
.h15{height:60.226875px;}
.h6{height:65.010937px;}
.hf{height:66.757500px;}
.h21{height:70.664062px;}
.h10{height:74.160000px;}
.hb{height:78.367500px;}
.he{height:84.898125px;}
.h16{height:132.480000px;}
.hd{height:160.380000px;}
.h13{height:266.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:20.340000px;}
.w2{width:85.320000px;}
.wb{width:119.196000px;}
.wa{width:121.356000px;}
.we{width:137.196000px;}
.wf{width:140.976000px;}
.w9{width:153.925500px;}
.wd{width:180.025500px;}
.w10{width:292.740000px;}
.wc{width:368.160000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:774.540000px;}
.w4{width:783.360000px;}
.w6{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xd{left:10.800000px;}
.x24{left:13.320000px;}
.x32{left:38.385000px;}
.x30{left:40.365000px;}
.x29{left:41.445000px;}
.x25{left:46.260000px;}
.x22{left:50.071500px;}
.x10{left:51.660000px;}
.x5{left:54.000000px;}
.x2e{left:58.170000px;}
.x21{left:59.584500px;}
.x13{left:61.200000px;}
.x2b{left:63.750000px;}
.x12{left:65.160000px;}
.x14{left:72.000000px;}
.x1c{left:81.000000px;}
.x2d{left:89.310000px;}
.x1{left:100.080000px;}
.x1d{left:108.036000px;}
.x15{left:110.550000px;}
.x31{left:139.530000px;}
.x2f{left:142.950000px;}
.xe{left:144.036000px;}
.x27{left:151.770000px;}
.x6{left:161.670000px;}
.xa{left:174.090000px;}
.x1b{left:177.915000px;}
.x1a{left:198.360000px;}
.x23{left:217.290000px;}
.x28{left:249.150000px;}
.x18{left:256.890000px;}
.x16{left:265.575000px;}
.x11{left:290.055000px;}
.x20{left:310.755000px;}
.x19{left:324.435000px;}
.x26{left:342.435000px;}
.x7{left:356.655000px;}
.x17{left:358.635000px;}
.x3{left:367.920000px;}
.x2a{left:390.135000px;}
.xf{left:399.135000px;}
.xc{left:465.945000px;}
.x4{left:468.900000px;}
.x1e{left:492.945000px;}
.x1f{left:519.945000px;}
.x2c{left:534.900000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:46.816000pt;}
.ls5{letter-spacing:66.656000pt;}
.ls4{letter-spacing:66.784000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.808000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._d{width:3.024000pt;}
._c{width:4.320000pt;}
._7{width:5.904000pt;}
._5{width:7.027413pt;}
._6{width:8.496000pt;}
._10{width:9.643093pt;}
._e{width:10.800000pt;}
._3{width:13.584000pt;}
._4{width:14.633173pt;}
._8{width:15.840000pt;}
._14{width:17.332480pt;}
._9{width:18.576000pt;}
._a{width:19.514240pt;}
._b{width:21.264000pt;}
._11{width:22.560000pt;}
._12{width:23.568000pt;}
._15{width:25.056000pt;}
._16{width:26.400000pt;}
._19{width:27.449173pt;}
._13{width:28.800000pt;}
._f{width:30.288000pt;}
._1c{width:32.496000pt;}
._1d{width:33.737173pt;}
._17{width:34.800000pt;}
._1b{width:38.304000pt;}
._1f{width:39.984000pt;}
._20{width:40.884693pt;}
._1e{width:41.780480pt;}
._18{width:44.544000pt;}
._1a{width:242.186240pt;}
._2{width:2580.859733pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y35{bottom:-6.946667pt;}
.yaa{bottom:-3.040000pt;}
.yac{bottom:-2.880000pt;}
.y43{bottom:-1.573333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y49{bottom:6.213333pt;}
.y9b{bottom:8.626667pt;}
.ya7{bottom:8.640000pt;}
.y9d{bottom:8.946667pt;}
.ya0{bottom:8.960000pt;}
.ya3{bottom:9.120000pt;}
.y99{bottom:16.626667pt;}
.ya1{bottom:16.800000pt;}
.y8{bottom:20.000000pt;}
.y9a{bottom:24.466667pt;}
.y9f{bottom:24.800000pt;}
.y7{bottom:36.480000pt;}
.y41{bottom:41.626667pt;}
.y6{bottom:50.560000pt;}
.y31{bottom:53.853333pt;}
.y1e{bottom:79.680000pt;}
.y3e{bottom:85.026667pt;}
.yd3{bottom:86.560000pt;}
.y2b{bottom:86.720000pt;}
.ya4{bottom:95.040000pt;}
.y1d{bottom:95.520000pt;}
.yd2{bottom:102.560000pt;}
.y3d{bottom:102.626667pt;}
.y2a{bottom:110.560000pt;}
.y1c{bottom:111.520000pt;}
.ya2{bottom:118.560000pt;}
.y3c{bottom:120.226667pt;}
.yd1{bottom:126.400000pt;}
.y29{bottom:126.560000pt;}
.y1b{bottom:127.360000pt;}
.y2d{bottom:128.773333pt;}
.y3b{bottom:137.826667pt;}
.yd0{bottom:142.240000pt;}
.y28{bottom:142.400000pt;}
.y1a{bottom:143.200000pt;}
.y9e{bottom:148.160000pt;}
.y3a{bottom:155.586667pt;}
.y27{bottom:158.240000pt;}
.ycf{bottom:166.080000pt;}
.y19{bottom:167.040000pt;}
.y26{bottom:174.080000pt;}
.yce{bottom:181.920000pt;}
.y18{bottom:182.906667pt;}
.y25{bottom:189.946667pt;}
.y9c{bottom:193.160000pt;}
.y17{bottom:198.746667pt;}
.y38{bottom:198.786667pt;}
.y24{bottom:205.786667pt;}
.y16{bottom:214.746667pt;}
.y37{bottom:216.386667pt;}
.y23{bottom:221.786667pt;}
.y98{bottom:222.440000pt;}
.y15{bottom:230.586667pt;}
.y22{bottom:237.626667pt;}
.ycd{bottom:245.626667pt;}
.y14{bottom:246.426667pt;}
.y21{bottom:253.466667pt;}
.ycc{bottom:261.466667pt;}
.y13{bottom:262.266667pt;}
.y20{bottom:269.306667pt;}
.y97{bottom:271.066667pt;}
.y12{bottom:279.866667pt;}
.y1f{bottom:285.146667pt;}
.ycb{bottom:287.066667pt;}
.y76{bottom:295.386667pt;}
.y96{bottom:303.226667pt;}
.y75{bottom:311.226667pt;}
.y11{bottom:311.546667pt;}
.yca{bottom:316.186667pt;}
.y74{bottom:327.066667pt;}
.y36{bottom:327.680000pt;}
.yc9{bottom:332.186667pt;}
.y73{bottom:342.906667pt;}
.yc8{bottom:348.026667pt;}
.y95{bottom:350.586667pt;}
.y42{bottom:351.706667pt;}
.yc7{bottom:363.866667pt;}
.y72{bottom:366.746667pt;}
.y40{bottom:369.306667pt;}
.y94{bottom:374.746667pt;}
.yc6{bottom:379.706667pt;}
.y71{bottom:390.586667pt;}
.y3f{bottom:395.066667pt;}
.yc5{bottom:395.586667pt;}
.y70{bottom:406.626667pt;}
.yc4{bottom:411.586667pt;}
.y6f{bottom:422.466667pt;}
.yc3{bottom:427.426667pt;}
.y6e{bottom:438.306667pt;}
.yc2{bottom:443.266667pt;}
.y93{bottom:454.146667pt;}
.yc1{bottom:459.106667pt;}
.y6d{bottom:462.146667pt;}
.y92{bottom:469.666667pt;}
.yc0{bottom:474.946667pt;}
.y6c{bottom:477.986667pt;}
.ybf{bottom:492.546667pt;}
.y6b{bottom:493.986667pt;}
.y39{bottom:508.866667pt;}
.y6a{bottom:509.826667pt;}
.ybe{bottom:521.826667pt;}
.y91{bottom:525.666667pt;}
.y69{bottom:533.666667pt;}
.ybd{bottom:537.666667pt;}
.y90{bottom:541.506667pt;}
.y68{bottom:549.506667pt;}
.ybc{bottom:553.506667pt;}
.y8f{bottom:557.346667pt;}
.y67{bottom:565.346667pt;}
.ybb{bottom:569.346667pt;}
.y8e{bottom:573.186667pt;}
.y10{bottom:575.906667pt;}
.y66{bottom:581.186667pt;}
.y8d{bottom:588.866667pt;}
.yba{bottom:593.186667pt;}
.yd8{bottom:595.906667pt;}
.y65{bottom:597.186667pt;}
.yb9{bottom:609.213333pt;}
.yf{bottom:612.573333pt;}
.y8c{bottom:613.053333pt;}
.yd7{bottom:613.373333pt;}
.y64{bottom:621.053333pt;}
.yb8{bottom:625.053333pt;}
.ye{bottom:626.493333pt;}
.y8b{bottom:628.893333pt;}
.y34{bottom:632.160000pt;}
.yd6{bottom:632.893333pt;}
.y63{bottom:636.893333pt;}
.yb7{bottom:640.893333pt;}
.y8a{bottom:644.733333pt;}
.yd5{bottom:648.733333pt;}
.y33{bottom:650.013333pt;}
.y62{bottom:652.733333pt;}
.y30{bottom:653.440000pt;}
.yb6{bottom:656.733333pt;}
.y89{bottom:660.573333pt;}
.yd4{bottom:664.573333pt;}
.y61{bottom:668.573333pt;}
.yb5{bottom:672.573333pt;}
.yd{bottom:676.413333pt;}
.y88{bottom:676.573333pt;}
.y60{bottom:684.573333pt;}
.yb4{bottom:688.413333pt;}
.y87{bottom:692.413333pt;}
.y32{bottom:698.013333pt;}
.y5f{bottom:700.413333pt;}
.yb3{bottom:704.413333pt;}
.y86{bottom:708.253333pt;}
.y85{bottom:723.773333pt;}
.y5e{bottom:724.253333pt;}
.yc{bottom:724.573333pt;}
.yb2{bottom:727.613333pt;}
.y5d{bottom:740.093333pt;}
.y2f{bottom:744.253333pt;}
.y84{bottom:747.933333pt;}
.y5c{bottom:755.933333pt;}
.yb1{bottom:756.733333pt;}
.y83{bottom:763.773333pt;}
.y5b{bottom:771.773333pt;}
.y82{bottom:779.773333pt;}
.yb0{bottom:786.013333pt;}
.y5a{bottom:787.773333pt;}
.y81{bottom:795.613333pt;}
.y2e{bottom:796.893333pt;}
.y59{bottom:803.613333pt;}
.y80{bottom:811.493333pt;}
.yaf{bottom:815.173333pt;}
.y58{bottom:819.493333pt;}
.yb{bottom:830.533333pt;}
.y57{bottom:835.333333pt;}
.y2c{bottom:836.800000pt;}
.yae{bottom:844.453333pt;}
.y48{bottom:849.600000pt;}
.y56{bottom:851.173333pt;}
.y7f{bottom:867.173333pt;}
.yad{bottom:873.573333pt;}
.y55{bottom:875.173333pt;}
.y47{bottom:879.493333pt;}
.y7e{bottom:883.013333pt;}
.y54{bottom:891.013333pt;}
.y7d{bottom:898.853333pt;}
.y46{bottom:902.853333pt;}
.y53{bottom:906.853333pt;}
.y7c{bottom:914.693333pt;}
.y52{bottom:922.693333pt;}
.y45{bottom:926.213333pt;}
.yab{bottom:931.973333pt;}
.y51{bottom:938.533333pt;}
.y44{bottom:949.733333pt;}
.y7b{bottom:954.373333pt;}
.ya9{bottom:961.253333pt;}
.y50{bottom:962.373333pt;}
.y7a{bottom:970.373333pt;}
.y4f{bottom:978.373333pt;}
.ya{bottom:984.613333pt;}
.y79{bottom:986.213333pt;}
.ya8{bottom:990.373333pt;}
.y4e{bottom:994.213333pt;}
.y78{bottom:1002.053333pt;}
.y4d{bottom:1010.053333pt;}
.y77{bottom:1017.893333pt;}
.ya6{bottom:1019.680000pt;}
.y4c{bottom:1025.920000pt;}
.y4b{bottom:1041.760000pt;}
.ya5{bottom:1057.280000pt;}
.y4a{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h1b{height:23.826667pt;}
.h1e{height:23.840000pt;}
.h20{height:23.872000pt;}
.h1f{height:24.000000pt;}
.h1d{height:24.156000pt;}
.hc{height:33.515625pt;}
.h12{height:39.200000pt;}
.h1a{height:39.666667pt;}
.h1c{height:39.712000pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.h19{height:48.375000pt;}
.h17{height:49.336436pt;}
.h8{height:49.622500pt;}
.h18{height:49.968750pt;}
.h14{height:52.108438pt;}
.h11{height:52.134375pt;}
.h15{height:53.535000pt;}
.h6{height:57.787500pt;}
.hf{height:59.340000pt;}
.h21{height:62.812500pt;}
.h10{height:65.920000pt;}
.hb{height:69.660000pt;}
.he{height:75.465000pt;}
.h16{height:117.760000pt;}
.hd{height:142.560000pt;}
.h13{height:236.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:18.080000pt;}
.w2{width:75.840000pt;}
.wb{width:105.952000pt;}
.wa{width:107.872000pt;}
.we{width:121.952000pt;}
.wf{width:125.312000pt;}
.w9{width:136.822667pt;}
.wd{width:160.022667pt;}
.w10{width:260.213333pt;}
.wc{width:327.253333pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:688.480000pt;}
.w4{width:696.320000pt;}
.w6{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xd{left:9.600000pt;}
.x24{left:11.840000pt;}
.x32{left:34.120000pt;}
.x30{left:35.880000pt;}
.x29{left:36.840000pt;}
.x25{left:41.120000pt;}
.x22{left:44.508000pt;}
.x10{left:45.920000pt;}
.x5{left:48.000000pt;}
.x2e{left:51.706667pt;}
.x21{left:52.964000pt;}
.x13{left:54.400000pt;}
.x2b{left:56.666667pt;}
.x12{left:57.920000pt;}
.x14{left:64.000000pt;}
.x1c{left:72.000000pt;}
.x2d{left:79.386667pt;}
.x1{left:88.960000pt;}
.x1d{left:96.032000pt;}
.x15{left:98.266667pt;}
.x31{left:124.026667pt;}
.x2f{left:127.066667pt;}
.xe{left:128.032000pt;}
.x27{left:134.906667pt;}
.x6{left:143.706667pt;}
.xa{left:154.746667pt;}
.x1b{left:158.146667pt;}
.x1a{left:176.320000pt;}
.x23{left:193.146667pt;}
.x28{left:221.466667pt;}
.x18{left:228.346667pt;}
.x16{left:236.066667pt;}
.x11{left:257.826667pt;}
.x20{left:276.226667pt;}
.x19{left:288.386667pt;}
.x26{left:304.386667pt;}
.x7{left:317.026667pt;}
.x17{left:318.786667pt;}
.x3{left:327.040000pt;}
.x2a{left:346.786667pt;}
.xf{left:354.786667pt;}
.xc{left:414.173333pt;}
.x4{left:416.800000pt;}
.x1e{left:438.173333pt;}
.x1f{left:462.173333pt;}
.x2c{left:475.466667pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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