
    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_c1e6975ccfe5b473259d12d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_22bb7f852e17c1f0e2e491e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_3910b57c17e1e941e42e60ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_a7dee0bbfe9fc39efadf4414.woff2')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_496ff61cafba531e0afe9654.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_3bfd3e17ee5b2c4b23d7e807.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_6e331edfdcb9bbd23d7a5231.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d53c48233453d6730930cdd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_35c0c1bf4d8fb0f03b3bd6ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;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_ee67cfde71cdcaad010207f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_16f26577568b427001c92b3d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c005dd87a8b0fd58d602553e.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.322800px;}
.ls5{letter-spacing:-0.229800px;}
.ls3{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.085200px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.059040px;}
.lsb{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.187200px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.720000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.737200px;}
.ws3{word-spacing:-19.038240px;}
.ws4{word-spacing:-18.808440px;}
.ws7{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-11.119680px;}
._4{margin-left:-4.633200px;}
._2{margin-left:-3.215040px;}
._1{margin-left:-1.347840px;}
._0{width:1.080000px;}
._6{width:2.304000px;}
._7{width:3.744000px;}
._5{width:5.448000px;}
._11{width:6.912000px;}
._10{width:7.920000px;}
._1a{width:9.051840px;}
._1d{width:10.152000px;}
._a{width:12.024000px;}
._b{width:13.824000px;}
._25{width:14.872320px;}
._19{width:16.035840px;}
._1f{width:19.275840px;}
._8{width:20.520000px;}
._9{width:21.744000px;}
._f{width:22.752000px;}
._e{width:23.832000px;}
._20{width:24.984000px;}
._2e{width:25.992000px;}
._14{width:28.512000px;}
._13{width:29.715840px;}
._1e{width:31.824000px;}
._29{width:33.408000px;}
._22{width:34.416000px;}
._17{width:35.928000px;}
._16{width:37.512000px;}
._1c{width:38.848320px;}
._1b{width:39.867840px;}
._12{width:41.472000px;}
._27{width:44.208000px;}
._24{width:45.720000px;}
._23{width:47.736000px;}
._28{width:50.091840px;}
._21{width:51.439680px;}
._c{width:52.776000px;}
._d{width:54.411840px;}
._2a{width:55.872000px;}
._2c{width:56.880000px;}
._15{width:57.888000px;}
._26{width:66.216000px;}
._2b{width:67.371840px;}
._18{width:106.128000px;}
._2d{width:140.523840px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:18.000000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:47.880000px;}
.y55{bottom:62.460000px;}
.y2f{bottom:72.000000px;}
.yd2{bottom:89.820000px;}
.ycf{bottom:90.180000px;}
.y2e{bottom:95.760000px;}
.ya3{bottom:103.320000px;}
.yce{bottom:113.940000px;}
.y8a{bottom:114.480000px;}
.y52{bottom:114.660000px;}
.yb6{bottom:115.740000px;}
.y2d{bottom:122.220000px;}
.ya2{bottom:127.260000px;}
.y7a{bottom:129.240000px;}
.y51{bottom:135.900000px;}
.yd1{bottom:137.340000px;}
.ycd{bottom:137.700000px;}
.y89{bottom:138.240000px;}
.yb5{bottom:139.680000px;}
.y2c{bottom:146.160000px;}
.ya1{bottom:151.020000px;}
.y79{bottom:153.180000px;}
.ycc{bottom:161.460000px;}
.y88{bottom:162.180000px;}
.yb4{bottom:163.440000px;}
.y2b{bottom:169.920000px;}
.ya0{bottom:174.780000px;}
.y78{bottom:176.970000px;}
.y50{bottom:178.380000px;}
.ycb{bottom:185.430000px;}
.y87{bottom:185.970000px;}
.yb3{bottom:187.230000px;}
.y2a{bottom:193.680000px;}
.y9f{bottom:198.570000px;}
.y4f{bottom:199.800000px;}
.y77{bottom:200.730000px;}
.yca{bottom:209.190000px;}
.y86{bottom:209.730000px;}
.yb2{bottom:210.990000px;}
.y29{bottom:217.440000px;}
.y9e{bottom:222.330000px;}
.y76{bottom:224.490000px;}
.y4e{bottom:225.360000px;}
.yc9{bottom:232.950000px;}
.y85{bottom:233.490000px;}
.yb1{bottom:234.930000px;}
.y28{bottom:241.410000px;}
.y9d{bottom:246.270000px;}
.y75{bottom:248.430000px;}
.yc8{bottom:256.710000px;}
.y84{bottom:257.430000px;}
.yb0{bottom:258.690000px;}
.y27{bottom:265.170000px;}
.y4d{bottom:267.870000px;}
.y9c{bottom:270.030000px;}
.y74{bottom:272.190000px;}
.yc7{bottom:280.650000px;}
.y83{bottom:281.190000px;}
.yaf{bottom:282.450000px;}
.y26{bottom:288.930000px;}
.y4c{bottom:289.290000px;}
.y9b{bottom:293.790000px;}
.y73{bottom:295.950000px;}
.yc6{bottom:304.410000px;}
.y82{bottom:304.950000px;}
.yae{bottom:306.210000px;}
.y25{bottom:312.690000px;}
.y4b{bottom:314.850000px;}
.y9a{bottom:317.550000px;}
.y72{bottom:319.710000px;}
.y81{bottom:324.570000px;}
.yc5{bottom:328.170000px;}
.yad{bottom:330.150000px;}
.y24{bottom:336.630000px;}
.y4a{bottom:341.490000px;}
.y71{bottom:343.650000px;}
.yc4{bottom:351.930000px;}
.yac{bottom:353.910000px;}
.y23{bottom:360.390000px;}
.y99{bottom:365.250000px;}
.y70{bottom:367.410000px;}
.y49{bottom:370.830000px;}
.yc3{bottom:375.870000px;}
.yab{bottom:377.310000px;}
.y22{bottom:384.150000px;}
.y98{bottom:384.870000px;}
.y6f{bottom:391.170000px;}
.yc2{bottom:399.630000px;}
.y48{bottom:399.990000px;}
.yaa{bottom:401.070000px;}
.y21{bottom:407.910000px;}
.y6e{bottom:414.930000px;}
.yc1{bottom:423.435000px;}
.ya9{bottom:425.055000px;}
.y47{bottom:429.330000px;}
.y20{bottom:431.850000px;}
.y6d{bottom:438.735000px;}
.yc0{bottom:447.195000px;}
.ya8{bottom:449.175000px;}
.y1f{bottom:455.610000px;}
.y6c{bottom:458.355000px;}
.y46{bottom:458.670000px;}
.ybf{bottom:471.135000px;}
.ya7{bottom:472.935000px;}
.y1e{bottom:479.415000px;}
.y45{bottom:481.395000px;}
.ybe{bottom:494.895000px;}
.ya6{bottom:496.695000px;}
.y1d{bottom:503.175000px;}
.y80{bottom:518.655000px;}
.ya5{bottom:520.635000px;}
.y1c{bottom:527.115000px;}
.ya4{bottom:540.075000px;}
.y7f{bottom:542.415000px;}
.y1b{bottom:550.875000px;}
.y7e{bottom:566.355000px;}
.y1a{bottom:574.635000px;}
.y7d{bottom:590.115000px;}
.y19{bottom:598.395000px;}
.y97{bottom:606.135000px;}
.y7c{bottom:613.875000px;}
.y18{bottom:622.335000px;}
.y96{bottom:629.895000px;}
.y7b{bottom:637.635000px;}
.y17{bottom:646.095000px;}
.y95{bottom:653.835000px;}
.y44{bottom:654.555000px;}
.y6b{bottom:661.425000px;}
.y16{bottom:669.855000px;}
.y94{bottom:677.625000px;}
.y43{bottom:683.715000px;}
.y6a{bottom:685.365000px;}
.y15{bottom:693.645000px;}
.y93{bottom:701.385000px;}
.y69{bottom:709.125000px;}
.y42{bottom:711.645000px;}
.y14{bottom:717.405000px;}
.y92{bottom:725.145000px;}
.y68{bottom:732.885000px;}
.y41{bottom:735.405000px;}
.y13{bottom:741.345000px;}
.y91{bottom:749.085000px;}
.y67{bottom:756.645000px;}
.y40{bottom:759.885000px;}
.y12{bottom:765.105000px;}
.y90{bottom:772.845000px;}
.y66{bottom:780.585000px;}
.y3f{bottom:784.005000px;}
.y11{bottom:788.865000px;}
.y8f{bottom:796.605000px;}
.y65{bottom:804.345000px;}
.y3e{bottom:807.765000px;}
.y10{bottom:812.625000px;}
.y8e{bottom:820.365000px;}
.y64{bottom:828.105000px;}
.y3d{bottom:832.965000px;}
.yf{bottom:836.565000px;}
.y8d{bottom:844.305000px;}
.y63{bottom:851.865000px;}
.ye{bottom:860.325000px;}
.y3c{bottom:860.685000px;}
.y8c{bottom:868.065000px;}
.y62{bottom:875.805000px;}
.yd{bottom:884.085000px;}
.y8b{bottom:887.685000px;}
.y3b{bottom:888.225000px;}
.y61{bottom:899.565000px;}
.yc{bottom:907.845000px;}
.y3a{bottom:915.765000px;}
.y60{bottom:923.370000px;}
.yb{bottom:931.830000px;}
.y39{bottom:943.710000px;}
.y5f{bottom:947.130000px;}
.ya{bottom:955.590000px;}
.yd0{bottom:970.710000px;}
.y5e{bottom:971.070000px;}
.y38{bottom:974.670000px;}
.y9{bottom:979.350000px;}
.y5d{bottom:994.830000px;}
.y8{bottom:1003.110000px;}
.y37{bottom:1007.070000px;}
.ybd{bottom:1018.590000px;}
.y5c{bottom:1024.530000px;}
.y7{bottom:1027.050000px;}
.y36{bottom:1040.010000px;}
.y5b{bottom:1041.990000px;}
.ybc{bottom:1042.350000px;}
.y6{bottom:1050.810000px;}
.y5a{bottom:1065.930000px;}
.ybb{bottom:1066.290000px;}
.y35{bottom:1071.330000px;}
.y5{bottom:1074.570000px;}
.y59{bottom:1089.690000px;}
.yba{bottom:1090.050000px;}
.y34{bottom:1096.890000px;}
.y4{bottom:1098.330000px;}
.y58{bottom:1113.450000px;}
.yb9{bottom:1113.810000px;}
.y3{bottom:1122.270000px;}
.y33{bottom:1122.630000px;}
.y57{bottom:1137.210000px;}
.yb8{bottom:1137.570000px;}
.y2{bottom:1146.030000px;}
.y32{bottom:1147.470000px;}
.y56{bottom:1161.180000px;}
.yb7{bottom:1161.540000px;}
.y31{bottom:1169.460000px;}
.y1{bottom:1169.820000px;}
.y54{bottom:1184.580000px;}
.y53{bottom:1198.980000px;}
.h12{height:47.321367px;}
.he{height:48.616875px;}
.hc{height:63.632461px;}
.h4{height:65.884219px;}
.h10{height:70.628906px;}
.h13{height:70.664062px;}
.h11{height:71.081367px;}
.hf{height:71.324297px;}
.h2{height:72.562500px;}
.h5{height:73.722656px;}
.ha{height:82.676953px;}
.h3{height:84.898125px;}
.h6{height:86.255508px;}
.h9{height:93.983203px;}
.hb{height:95.245664px;}
.h8{height:108.843750px;}
.h7{height:110.583984px;}
.hd{height:1262.879970px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w5{width:892.980000px;}
.w3{width:892.980015px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059957px;}
.w0{width:894.059970px;}
.x0{left:0.000000px;}
.x12{left:126.035987px;}
.x1d{left:127.655987px;}
.x2{left:137.915987px;}
.x27{left:142.055987px;}
.x19{left:148.895987px;}
.x1f{left:150.869987px;}
.x20{left:153.029987px;}
.x13{left:158.069987px;}
.xb{left:179.309987px;}
.x15{left:191.729987px;}
.xa{left:197.309987px;}
.x4{left:198.389987px;}
.x6{left:212.069987px;}
.xc{left:219.449987px;}
.x10{left:257.609987px;}
.xf{left:281.774987px;}
.x17{left:292.394987px;}
.x9{left:294.374987px;}
.x8{left:298.514987px;}
.x1a{left:328.034987px;}
.x7{left:345.854987px;}
.x1c{left:348.014987px;}
.x5{left:350.894987px;}
.xd{left:356.654987px;}
.x14{left:396.614987px;}
.x1b{left:398.594987px;}
.x3{left:409.034987px;}
.x16{left:443.414987px;}
.x28{left:447.554987px;}
.x1{left:456.224987px;}
.x11{left:472.244987px;}
.x18{left:478.514987px;}
.x1e{left:480.854987px;}
.x21{left:499.964987px;}
.x2a{left:503.924987px;}
.x23{left:506.804987px;}
.x24{left:520.304987px;}
.x2f{left:526.964987px;}
.x2b{left:533.984987px;}
.xe{left:543.884987px;}
.x25{left:610.844987px;}
.x2c{left:619.844987px;}
.x2d{left:621.644987px;}
.x2e{left:622.724987px;}
.x26{left:844.349987px;}
.x29{left:862.709987px;}
.x22{left:874.619987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.286933pt;}
.ls5{letter-spacing:-0.204267pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.052480pt;}
.lsb{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.640000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.433067pt;}
.ws3{word-spacing:-16.922880pt;}
.ws4{word-spacing:-16.718613pt;}
.ws7{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-9.884160pt;}
._4{margin-left:-4.118400pt;}
._2{margin-left:-2.857813pt;}
._1{margin-left:-1.198080pt;}
._0{width:0.960000pt;}
._6{width:2.048000pt;}
._7{width:3.328000pt;}
._5{width:4.842667pt;}
._11{width:6.144000pt;}
._10{width:7.040000pt;}
._1a{width:8.046080pt;}
._1d{width:9.024000pt;}
._a{width:10.688000pt;}
._b{width:12.288000pt;}
._25{width:13.219840pt;}
._19{width:14.254080pt;}
._1f{width:17.134080pt;}
._8{width:18.240000pt;}
._9{width:19.328000pt;}
._f{width:20.224000pt;}
._e{width:21.184000pt;}
._20{width:22.208000pt;}
._2e{width:23.104000pt;}
._14{width:25.344000pt;}
._13{width:26.414080pt;}
._1e{width:28.288000pt;}
._29{width:29.696000pt;}
._22{width:30.592000pt;}
._17{width:31.936000pt;}
._16{width:33.344000pt;}
._1c{width:34.531840pt;}
._1b{width:35.438080pt;}
._12{width:36.864000pt;}
._27{width:39.296000pt;}
._24{width:40.640000pt;}
._23{width:42.432000pt;}
._28{width:44.526080pt;}
._21{width:45.724160pt;}
._c{width:46.912000pt;}
._d{width:48.366080pt;}
._2a{width:49.664000pt;}
._2c{width:50.560000pt;}
._15{width:51.456000pt;}
._26{width:58.858667pt;}
._2b{width:59.886080pt;}
._18{width:94.336000pt;}
._2d{width:124.910080pt;}
.fs6{font-size:16.000000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:42.560000pt;}
.y55{bottom:55.520000pt;}
.y2f{bottom:64.000000pt;}
.yd2{bottom:79.840000pt;}
.ycf{bottom:80.160000pt;}
.y2e{bottom:85.120000pt;}
.ya3{bottom:91.840000pt;}
.yce{bottom:101.280000pt;}
.y8a{bottom:101.760000pt;}
.y52{bottom:101.920000pt;}
.yb6{bottom:102.880000pt;}
.y2d{bottom:108.640000pt;}
.ya2{bottom:113.120000pt;}
.y7a{bottom:114.880000pt;}
.y51{bottom:120.800000pt;}
.yd1{bottom:122.080000pt;}
.ycd{bottom:122.400000pt;}
.y89{bottom:122.880000pt;}
.yb5{bottom:124.160000pt;}
.y2c{bottom:129.920000pt;}
.ya1{bottom:134.240000pt;}
.y79{bottom:136.160000pt;}
.ycc{bottom:143.520000pt;}
.y88{bottom:144.160000pt;}
.yb4{bottom:145.280000pt;}
.y2b{bottom:151.040000pt;}
.ya0{bottom:155.360000pt;}
.y78{bottom:157.306667pt;}
.y50{bottom:158.560000pt;}
.ycb{bottom:164.826667pt;}
.y87{bottom:165.306667pt;}
.yb3{bottom:166.426667pt;}
.y2a{bottom:172.160000pt;}
.y9f{bottom:176.506667pt;}
.y4f{bottom:177.600000pt;}
.y77{bottom:178.426667pt;}
.yca{bottom:185.946667pt;}
.y86{bottom:186.426667pt;}
.yb2{bottom:187.546667pt;}
.y29{bottom:193.280000pt;}
.y9e{bottom:197.626667pt;}
.y76{bottom:199.546667pt;}
.y4e{bottom:200.320000pt;}
.yc9{bottom:207.066667pt;}
.y85{bottom:207.546667pt;}
.yb1{bottom:208.826667pt;}
.y28{bottom:214.586667pt;}
.y9d{bottom:218.906667pt;}
.y75{bottom:220.826667pt;}
.yc8{bottom:228.186667pt;}
.y84{bottom:228.826667pt;}
.yb0{bottom:229.946667pt;}
.y27{bottom:235.706667pt;}
.y4d{bottom:238.106667pt;}
.y9c{bottom:240.026667pt;}
.y74{bottom:241.946667pt;}
.yc7{bottom:249.466667pt;}
.y83{bottom:249.946667pt;}
.yaf{bottom:251.066667pt;}
.y26{bottom:256.826667pt;}
.y4c{bottom:257.146667pt;}
.y9b{bottom:261.146667pt;}
.y73{bottom:263.066667pt;}
.yc6{bottom:270.586667pt;}
.y82{bottom:271.066667pt;}
.yae{bottom:272.186667pt;}
.y25{bottom:277.946667pt;}
.y4b{bottom:279.866667pt;}
.y9a{bottom:282.266667pt;}
.y72{bottom:284.186667pt;}
.y81{bottom:288.506667pt;}
.yc5{bottom:291.706667pt;}
.yad{bottom:293.466667pt;}
.y24{bottom:299.226667pt;}
.y4a{bottom:303.546667pt;}
.y71{bottom:305.466667pt;}
.yc4{bottom:312.826667pt;}
.yac{bottom:314.586667pt;}
.y23{bottom:320.346667pt;}
.y99{bottom:324.666667pt;}
.y70{bottom:326.586667pt;}
.y49{bottom:329.626667pt;}
.yc3{bottom:334.106667pt;}
.yab{bottom:335.386667pt;}
.y22{bottom:341.466667pt;}
.y98{bottom:342.106667pt;}
.y6f{bottom:347.706667pt;}
.yc2{bottom:355.226667pt;}
.y48{bottom:355.546667pt;}
.yaa{bottom:356.506667pt;}
.y21{bottom:362.586667pt;}
.y6e{bottom:368.826667pt;}
.yc1{bottom:376.386667pt;}
.ya9{bottom:377.826667pt;}
.y47{bottom:381.626667pt;}
.y20{bottom:383.866667pt;}
.y6d{bottom:389.986667pt;}
.yc0{bottom:397.506667pt;}
.ya8{bottom:399.266667pt;}
.y1f{bottom:404.986667pt;}
.y6c{bottom:407.426667pt;}
.y46{bottom:407.706667pt;}
.ybf{bottom:418.786667pt;}
.ya7{bottom:420.386667pt;}
.y1e{bottom:426.146667pt;}
.y45{bottom:427.906667pt;}
.ybe{bottom:439.906667pt;}
.ya6{bottom:441.506667pt;}
.y1d{bottom:447.266667pt;}
.y80{bottom:461.026667pt;}
.ya5{bottom:462.786667pt;}
.y1c{bottom:468.546667pt;}
.ya4{bottom:480.066667pt;}
.y7f{bottom:482.146667pt;}
.y1b{bottom:489.666667pt;}
.y7e{bottom:503.426667pt;}
.y1a{bottom:510.786667pt;}
.y7d{bottom:524.546667pt;}
.y19{bottom:531.906667pt;}
.y97{bottom:538.786667pt;}
.y7c{bottom:545.666667pt;}
.y18{bottom:553.186667pt;}
.y96{bottom:559.906667pt;}
.y7b{bottom:566.786667pt;}
.y17{bottom:574.306667pt;}
.y95{bottom:581.186667pt;}
.y44{bottom:581.826667pt;}
.y6b{bottom:587.933333pt;}
.y16{bottom:595.426667pt;}
.y94{bottom:602.333333pt;}
.y43{bottom:607.746667pt;}
.y6a{bottom:609.213333pt;}
.y15{bottom:616.573333pt;}
.y93{bottom:623.453333pt;}
.y69{bottom:630.333333pt;}
.y42{bottom:632.573333pt;}
.y14{bottom:637.693333pt;}
.y92{bottom:644.573333pt;}
.y68{bottom:651.453333pt;}
.y41{bottom:653.693333pt;}
.y13{bottom:658.973333pt;}
.y91{bottom:665.853333pt;}
.y67{bottom:672.573333pt;}
.y40{bottom:675.453333pt;}
.y12{bottom:680.093333pt;}
.y90{bottom:686.973333pt;}
.y66{bottom:693.853333pt;}
.y3f{bottom:696.893333pt;}
.y11{bottom:701.213333pt;}
.y8f{bottom:708.093333pt;}
.y65{bottom:714.973333pt;}
.y3e{bottom:718.013333pt;}
.y10{bottom:722.333333pt;}
.y8e{bottom:729.213333pt;}
.y64{bottom:736.093333pt;}
.y3d{bottom:740.413333pt;}
.yf{bottom:743.613333pt;}
.y8d{bottom:750.493333pt;}
.y63{bottom:757.213333pt;}
.ye{bottom:764.733333pt;}
.y3c{bottom:765.053333pt;}
.y8c{bottom:771.613333pt;}
.y62{bottom:778.493333pt;}
.yd{bottom:785.853333pt;}
.y8b{bottom:789.053333pt;}
.y3b{bottom:789.533333pt;}
.y61{bottom:799.613333pt;}
.yc{bottom:806.973333pt;}
.y3a{bottom:814.013333pt;}
.y60{bottom:820.773333pt;}
.yb{bottom:828.293333pt;}
.y39{bottom:838.853333pt;}
.y5f{bottom:841.893333pt;}
.ya{bottom:849.413333pt;}
.yd0{bottom:862.853333pt;}
.y5e{bottom:863.173333pt;}
.y38{bottom:866.373333pt;}
.y9{bottom:870.533333pt;}
.y5d{bottom:884.293333pt;}
.y8{bottom:891.653333pt;}
.y37{bottom:895.173333pt;}
.ybd{bottom:905.413333pt;}
.y5c{bottom:910.693333pt;}
.y7{bottom:912.933333pt;}
.y36{bottom:924.453333pt;}
.y5b{bottom:926.213333pt;}
.ybc{bottom:926.533333pt;}
.y6{bottom:934.053333pt;}
.y5a{bottom:947.493333pt;}
.ybb{bottom:947.813333pt;}
.y35{bottom:952.293333pt;}
.y5{bottom:955.173333pt;}
.y59{bottom:968.613333pt;}
.yba{bottom:968.933333pt;}
.y34{bottom:975.013333pt;}
.y4{bottom:976.293333pt;}
.y58{bottom:989.733333pt;}
.yb9{bottom:990.053333pt;}
.y3{bottom:997.573333pt;}
.y33{bottom:997.893333pt;}
.y57{bottom:1010.853333pt;}
.yb8{bottom:1011.173333pt;}
.y2{bottom:1018.693333pt;}
.y32{bottom:1019.973333pt;}
.y56{bottom:1032.160000pt;}
.yb7{bottom:1032.480000pt;}
.y31{bottom:1039.520000pt;}
.y1{bottom:1039.840000pt;}
.y54{bottom:1052.960000pt;}
.y53{bottom:1065.760000pt;}
.h12{height:42.063437pt;}
.he{height:43.215000pt;}
.hc{height:56.562187pt;}
.h4{height:58.563750pt;}
.h10{height:62.781250pt;}
.h13{height:62.812500pt;}
.h11{height:63.183438pt;}
.hf{height:63.399375pt;}
.h2{height:64.500000pt;}
.h5{height:65.531250pt;}
.ha{height:73.490625pt;}
.h3{height:75.465000pt;}
.h6{height:76.671562pt;}
.h9{height:83.540625pt;}
.hb{height:84.662813pt;}
.h8{height:96.750000pt;}
.h7{height:98.296875pt;}
.hd{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w5{width:793.760000pt;}
.w3{width:793.760013pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719961pt;}
.w0{width:794.719973pt;}
.x0{left:0.000000pt;}
.x12{left:112.031988pt;}
.x1d{left:113.471988pt;}
.x2{left:122.591988pt;}
.x27{left:126.271988pt;}
.x19{left:132.351988pt;}
.x1f{left:134.106655pt;}
.x20{left:136.026655pt;}
.x13{left:140.506655pt;}
.xb{left:159.386655pt;}
.x15{left:170.426655pt;}
.xa{left:175.386655pt;}
.x4{left:176.346655pt;}
.x6{left:188.506655pt;}
.xc{left:195.066655pt;}
.x10{left:228.986655pt;}
.xf{left:250.466655pt;}
.x17{left:259.906655pt;}
.x9{left:261.666655pt;}
.x8{left:265.346655pt;}
.x1a{left:291.586655pt;}
.x7{left:307.426655pt;}
.x1c{left:309.346655pt;}
.x5{left:311.906655pt;}
.xd{left:317.026655pt;}
.x14{left:352.546655pt;}
.x1b{left:354.306655pt;}
.x3{left:363.586655pt;}
.x16{left:394.146655pt;}
.x28{left:397.826655pt;}
.x1{left:405.533321pt;}
.x11{left:419.773321pt;}
.x18{left:425.346655pt;}
.x1e{left:427.426655pt;}
.x21{left:444.413322pt;}
.x2a{left:447.933322pt;}
.x23{left:450.493322pt;}
.x24{left:462.493322pt;}
.x2f{left:468.413322pt;}
.x2b{left:474.653322pt;}
.xe{left:483.453321pt;}
.x25{left:542.973322pt;}
.x2c{left:550.973322pt;}
.x2d{left:552.573322pt;}
.x2e{left:553.533322pt;}
.x26{left:750.533322pt;}
.x29{left:766.853322pt;}
.x22{left:777.439988pt;}
}




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