
    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_e3c7d77981e6496cd1cefdaa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_0bda99c75a5cd077b98be2a1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_686436cbc5a205c8d734fcca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fc2115e4bf68228a6e0df243.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_aa084f409f7e4c60241d30cb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ac34c9c7a4f3e93b4e4e0119.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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_b97e7a169fa356126b612b8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_7c621617fdce4d46b037efc6.woff2')format("woff");}.ff8{font-family:ff8;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);}
.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);}
.va{vertical-align:-96.480000px;}
.v8{vertical-align:-30.960000px;}
.v5{vertical-align:-26.640000px;}
.v6{vertical-align:-17.280000px;}
.vd{vertical-align:-15.840000px;}
.v3{vertical-align:-14.400000px;}
.vc{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.880000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:33.240000px;}
.v4{vertical-align:41.040000px;}
.v7{vertical-align:48.240000px;}
.v9{vertical-align:64.980000px;}
.lsa{letter-spacing:-1.656000px;}
.lsc{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.140400px;}
.ls1d{letter-spacing:0.149760px;}
.lsf{letter-spacing:0.320400px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.234080px;}
.lse{letter-spacing:1.771200px;}
.ls13{letter-spacing:2.834640px;}
.ls14{letter-spacing:4.415760px;}
.ls5{letter-spacing:4.637520px;}
.ls11{letter-spacing:5.826960px;}
.ls19{letter-spacing:8.548560px;}
.ls8{letter-spacing:14.121840px;}
.ls0{letter-spacing:21.221280px;}
.ls7{letter-spacing:22.752720px;}
.ls10{letter-spacing:23.360400px;}
.ls16{letter-spacing:28.146960px;}
.ls6{letter-spacing:28.866960px;}
.ls18{letter-spacing:35.908560px;}
.ls4{letter-spacing:37.757520px;}
.ls1b{letter-spacing:63.677520px;}
.ls17{letter-spacing:74.226960px;}
.lsd{letter-spacing:987.276000px;}
.ls15{letter-spacing:1066.476000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.420000px;}
.ws6{word-spacing:-18.532800px;}
.ws5{word-spacing:-18.504000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.280000px;}
.ws1{word-spacing:-16.344000px;}
.ws4{word-spacing:-15.840000px;}
.ws7{word-spacing:-13.147200px;}
.ws3{word-spacing:-11.246400px;}
.wsc{word-spacing:-10.612800px;}
.ws9{word-spacing:0.000000px;}
.wsa{word-spacing:6.332400px;}
.wse{word-spacing:6.675120px;}
.wsb{word-spacing:9.131760px;}
.wsd{word-spacing:20.230560px;}
._14{margin-left:-19.530000px;}
._11{margin-left:-16.692000px;}
._1f{margin-left:-15.480000px;}
._15{margin-left:-14.304240px;}
._12{margin-left:-13.016880px;}
._1a{margin-left:-11.258880px;}
._1b{margin-left:-9.153840px;}
._1e{margin-left:-2.196000px;}
._0{margin-left:-1.080000px;}
._1{width:1.260000px;}
._e{width:2.640000px;}
._f{width:3.672000px;}
._b{width:4.896000px;}
._6{width:6.408000px;}
._7{width:7.452000px;}
._8{width:8.484000px;}
._1c{width:9.516000px;}
._10{width:11.520000px;}
._4{width:13.296000px;}
._5{width:14.544000px;}
._19{width:16.056000px;}
._18{width:17.904000px;}
._d{width:19.128000px;}
._c{width:20.232000px;}
._21{width:21.672000px;}
._a{width:23.208000px;}
._9{width:24.384000px;}
._13{width:26.064000px;}
._1d{width:32.232000px;}
._3{width:33.528000px;}
._2{width:34.608000px;}
._22{width:35.724000px;}
._16{width:37.296000px;}
._17{width:38.304000px;}
._20{width:114.024000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:0.180000px;}
.y50{bottom:3.960000px;}
.y45{bottom:7.380000px;}
.y4a{bottom:8.460000px;}
.y55{bottom:9.360000px;}
.y4c{bottom:12.240000px;}
.y49{bottom:12.780000px;}
.y44{bottom:14.220000px;}
.y46{bottom:15.840000px;}
.y43{bottom:16.200000px;}
.y4d{bottom:19.080000px;}
.y47{bottom:22.500000px;}
.y4f{bottom:24.660000px;}
.y53{bottom:24.690000px;}
.y51{bottom:25.740000px;}
.y3{bottom:58.320000px;}
.y2{bottom:78.516000px;}
.y68{bottom:120.996000px;}
.y31{bottom:136.836000px;}
.y67{bottom:141.696000px;}
.y30{bottom:157.530000px;}
.y66{bottom:162.750000px;}
.y2f{bottom:178.230000px;}
.y65{bottom:183.450000px;}
.y2e{bottom:198.930000px;}
.y64{bottom:204.150000px;}
.y2d{bottom:219.630000px;}
.y63{bottom:225.390000px;}
.y2c{bottom:240.330000px;}
.y62{bottom:248.970000px;}
.y2b{bottom:261.570000px;}
.y61{bottom:269.670000px;}
.y2a{bottom:281.190000px;}
.y60{bottom:290.370000px;}
.y28{bottom:294.150000px;}
.y27{bottom:308.190000px;}
.y5f{bottom:311.070000px;}
.y5e{bottom:331.815000px;}
.y29{bottom:339.375000px;}
.y5d{bottom:352.515000px;}
.y26{bottom:353.955000px;}
.y5c{bottom:373.215000px;}
.y25{bottom:374.655000px;}
.y5b{bottom:393.915000px;}
.y24{bottom:395.355000px;}
.y5a{bottom:414.615000px;}
.y23{bottom:416.055000px;}
.y86{bottom:418.035000px;}
.y59{bottom:435.855000px;}
.y22{bottom:436.755000px;}
.y85{bottom:438.735000px;}
.y21{bottom:457.995000px;}
.y58{bottom:459.435000px;}
.y57{bottom:476.895000px;}
.y84{bottom:480.135000px;}
.y20{bottom:481.575000px;}
.y56{bottom:498.315000px;}
.y83{bottom:500.835000px;}
.y1f{bottom:502.275000px;}
.y54{bottom:519.915000px;}
.y82{bottom:521.535000px;}
.y1e{bottom:522.975000px;}
.y81{bottom:542.235000px;}
.y1d{bottom:543.675000px;}
.y52{bottom:546.915000px;}
.y1c{bottom:560.595000px;}
.y80{bottom:562.935000px;}
.y1b{bottom:567.435000px;}
.y7f{bottom:583.665000px;}
.y4e{bottom:589.065000px;}
.y1a{bottom:590.145000px;}
.y7e{bottom:604.365000px;}
.y19{bottom:611.205000px;}
.y7d{bottom:625.065000px;}
.y48{bottom:631.185000px;}
.y18{bottom:632.625000px;}
.y7c{bottom:645.765000px;}
.y17{bottom:656.205000px;}
.y42{bottom:661.425000px;}
.y7b{bottom:666.465000px;}
.y16{bottom:676.905000px;}
.y7a{bottom:687.165000px;}
.y15{bottom:697.605000px;}
.y79{bottom:707.865000px;}
.y41{bottom:709.485000px;}
.y14{bottom:718.305000px;}
.y78{bottom:728.565000px;}
.y13{bottom:738.825000px;}
.y40{bottom:740.445000px;}
.y77{bottom:749.265000px;}
.y12{bottom:759.525000px;}
.y3f{bottom:761.145000px;}
.y76{bottom:769.965000px;}
.y11{bottom:780.225000px;}
.y3e{bottom:781.845000px;}
.y75{bottom:790.665000px;}
.y10{bottom:800.925000px;}
.y3d{bottom:811.365000px;}
.yf{bottom:821.670000px;}
.y3c{bottom:827.610000px;}
.y74{bottom:832.110000px;}
.ye{bottom:842.370000px;}
.y3b{bottom:848.310000px;}
.y73{bottom:852.810000px;}
.yd{bottom:863.070000px;}
.y3a{bottom:869.550000px;}
.y72{bottom:873.510000px;}
.yc{bottom:883.770000px;}
.y39{bottom:893.130000px;}
.y71{bottom:894.210000px;}
.yb{bottom:904.470000px;}
.y38{bottom:913.830000px;}
.y70{bottom:914.910000px;}
.ya{bottom:925.170000px;}
.y37{bottom:934.530000px;}
.y6f{bottom:935.610000px;}
.y9{bottom:945.870000px;}
.y36{bottom:955.230000px;}
.y6e{bottom:956.310000px;}
.y8{bottom:966.570000px;}
.y6d{bottom:977.010000px;}
.y7{bottom:987.270000px;}
.y6c{bottom:997.710000px;}
.y35{bottom:1000.770000px;}
.y6{bottom:1008.690000px;}
.y6b{bottom:1018.410000px;}
.y34{bottom:1021.470000px;}
.y5{bottom:1033.170000px;}
.y6a{bottom:1039.110000px;}
.y33{bottom:1042.530000px;}
.y4{bottom:1058.910000px;}
.y69{bottom:1060.350000px;}
.y32{bottom:1063.230000px;}
.y1{bottom:1118.340000px;}
.h1a{height:20.700000px;}
.h19{height:26.100000px;}
.h14{height:29.520000px;}
.h11{height:32.940000px;}
.h17{height:41.400000px;}
.h18{height:41.436000px;}
.h13{height:63.400781px;}
.h1{height:65.884219px;}
.h2{height:67.824844px;}
.h1b{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.hf{height:74.116406px;}
.hc{height:74.953125px;}
.h10{height:82.676953px;}
.h4{height:84.898125px;}
.h7{height:87.695156px;}
.h8{height:89.296875px;}
.hb{height:90.040781px;}
.h3{height:90.703125px;}
.h12{height:96.520781px;}
.h9{height:96.640781px;}
.h15{height:100.868906px;}
.h16{height:103.784062px;}
.he{height:104.477344px;}
.ha{height:116.656875px;}
.hd{height:168.737344px;}
.h0{height:1188.000000px;}
.w2{width:147.600000px;}
.w4{width:263.910000px;}
.w3{width:289.515000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:7.560000px;}
.x1{left:108.035986px;}
.x12{left:115.236000px;}
.x18{left:119.025000px;}
.xb{left:124.955986px;}
.x3{left:153.389986px;}
.x1a{left:162.029986px;}
.x17{left:197.505000px;}
.x19{left:210.645000px;}
.x15{left:222.555000px;}
.x4{left:229.529986px;}
.x14{left:263.730000px;}
.x7{left:276.869986px;}
.x8{left:283.349986px;}
.xa{left:317.774986px;}
.x9{left:367.094986px;}
.x6{left:379.334986px;}
.xc{left:393.554986px;}
.xf{left:447.734986px;}
.xe{left:456.194986px;}
.x5{left:459.074986px;}
.xd{left:498.524986px;}
.x11{left:512.744986px;}
.x10{left:524.444986px;}
.x16{left:553.965000px;}
.x2{left:753.269986px;}
@media print{
.va{vertical-align:-85.760000pt;}
.v8{vertical-align:-27.520000pt;}
.v5{vertical-align:-23.680000pt;}
.v6{vertical-align:-15.360000pt;}
.vd{vertical-align:-14.080000pt;}
.v3{vertical-align:-12.800000pt;}
.vc{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.560000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:29.546667pt;}
.v4{vertical-align:36.480000pt;}
.v7{vertical-align:42.880000pt;}
.v9{vertical-align:57.760000pt;}
.lsa{letter-spacing:-1.472000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.124800pt;}
.ls1d{letter-spacing:0.133120pt;}
.lsf{letter-spacing:0.284800pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.096960pt;}
.lse{letter-spacing:1.574400pt;}
.ls13{letter-spacing:2.519680pt;}
.ls14{letter-spacing:3.925120pt;}
.ls5{letter-spacing:4.122240pt;}
.ls11{letter-spacing:5.179520pt;}
.ls19{letter-spacing:7.598720pt;}
.ls8{letter-spacing:12.552747pt;}
.ls0{letter-spacing:18.863360pt;}
.ls7{letter-spacing:20.224640pt;}
.ls10{letter-spacing:20.764800pt;}
.ls16{letter-spacing:25.019520pt;}
.ls6{letter-spacing:25.659520pt;}
.ls18{letter-spacing:31.918720pt;}
.ls4{letter-spacing:33.562240pt;}
.ls1b{letter-spacing:56.602240pt;}
.ls17{letter-spacing:65.979520pt;}
.lsd{letter-spacing:877.578667pt;}
.ls15{letter-spacing:947.978667pt;}
.ws2{word-spacing:-19.040000pt;}
.ws6{word-spacing:-16.473600pt;}
.ws5{word-spacing:-16.448000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.360000pt;}
.ws1{word-spacing:-14.528000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws7{word-spacing:-11.686400pt;}
.ws3{word-spacing:-9.996800pt;}
.wsc{word-spacing:-9.433600pt;}
.ws9{word-spacing:0.000000pt;}
.wsa{word-spacing:5.628800pt;}
.wse{word-spacing:5.933440pt;}
.wsb{word-spacing:8.117120pt;}
.wsd{word-spacing:17.982720pt;}
._14{margin-left:-17.360000pt;}
._11{margin-left:-14.837333pt;}
._1f{margin-left:-13.760000pt;}
._15{margin-left:-12.714880pt;}
._12{margin-left:-11.570560pt;}
._1a{margin-left:-10.007893pt;}
._1b{margin-left:-8.136747pt;}
._1e{margin-left:-1.952000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.120000pt;}
._e{width:2.346667pt;}
._f{width:3.264000pt;}
._b{width:4.352000pt;}
._6{width:5.696000pt;}
._7{width:6.624000pt;}
._8{width:7.541333pt;}
._1c{width:8.458667pt;}
._10{width:10.240000pt;}
._4{width:11.818667pt;}
._5{width:12.928000pt;}
._19{width:14.272000pt;}
._18{width:15.914667pt;}
._d{width:17.002667pt;}
._c{width:17.984000pt;}
._21{width:19.264000pt;}
._a{width:20.629333pt;}
._9{width:21.674667pt;}
._13{width:23.168000pt;}
._1d{width:28.650667pt;}
._3{width:29.802667pt;}
._2{width:30.762667pt;}
._22{width:31.754667pt;}
._16{width:33.152000pt;}
._17{width:34.048000pt;}
._20{width:101.354667pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.160000pt;}
.y50{bottom:3.520000pt;}
.y45{bottom:6.560000pt;}
.y4a{bottom:7.520000pt;}
.y55{bottom:8.320000pt;}
.y4c{bottom:10.880000pt;}
.y49{bottom:11.360000pt;}
.y44{bottom:12.640000pt;}
.y46{bottom:14.080000pt;}
.y43{bottom:14.400000pt;}
.y4d{bottom:16.960000pt;}
.y47{bottom:20.000000pt;}
.y4f{bottom:21.920000pt;}
.y53{bottom:21.946667pt;}
.y51{bottom:22.880000pt;}
.y3{bottom:51.840000pt;}
.y2{bottom:69.792000pt;}
.y68{bottom:107.552000pt;}
.y31{bottom:121.632000pt;}
.y67{bottom:125.952000pt;}
.y30{bottom:140.026667pt;}
.y66{bottom:144.666667pt;}
.y2f{bottom:158.426667pt;}
.y65{bottom:163.066667pt;}
.y2e{bottom:176.826667pt;}
.y64{bottom:181.466667pt;}
.y2d{bottom:195.226667pt;}
.y63{bottom:200.346667pt;}
.y2c{bottom:213.626667pt;}
.y62{bottom:221.306667pt;}
.y2b{bottom:232.506667pt;}
.y61{bottom:239.706667pt;}
.y2a{bottom:249.946667pt;}
.y60{bottom:258.106667pt;}
.y28{bottom:261.466667pt;}
.y27{bottom:273.946667pt;}
.y5f{bottom:276.506667pt;}
.y5e{bottom:294.946667pt;}
.y29{bottom:301.666667pt;}
.y5d{bottom:313.346667pt;}
.y26{bottom:314.626667pt;}
.y5c{bottom:331.746667pt;}
.y25{bottom:333.026667pt;}
.y5b{bottom:350.146667pt;}
.y24{bottom:351.426667pt;}
.y5a{bottom:368.546667pt;}
.y23{bottom:369.826667pt;}
.y86{bottom:371.586667pt;}
.y59{bottom:387.426667pt;}
.y22{bottom:388.226667pt;}
.y85{bottom:389.986667pt;}
.y21{bottom:407.106667pt;}
.y58{bottom:408.386667pt;}
.y57{bottom:423.906667pt;}
.y84{bottom:426.786667pt;}
.y20{bottom:428.066667pt;}
.y56{bottom:442.946667pt;}
.y83{bottom:445.186667pt;}
.y1f{bottom:446.466667pt;}
.y54{bottom:462.146667pt;}
.y82{bottom:463.586667pt;}
.y1e{bottom:464.866667pt;}
.y81{bottom:481.986667pt;}
.y1d{bottom:483.266667pt;}
.y52{bottom:486.146667pt;}
.y1c{bottom:498.306667pt;}
.y80{bottom:500.386667pt;}
.y1b{bottom:504.386667pt;}
.y7f{bottom:518.813333pt;}
.y4e{bottom:523.613333pt;}
.y1a{bottom:524.573333pt;}
.y7e{bottom:537.213333pt;}
.y19{bottom:543.293333pt;}
.y7d{bottom:555.613333pt;}
.y48{bottom:561.053333pt;}
.y18{bottom:562.333333pt;}
.y7c{bottom:574.013333pt;}
.y17{bottom:583.293333pt;}
.y42{bottom:587.933333pt;}
.y7b{bottom:592.413333pt;}
.y16{bottom:601.693333pt;}
.y7a{bottom:610.813333pt;}
.y15{bottom:620.093333pt;}
.y79{bottom:629.213333pt;}
.y41{bottom:630.653333pt;}
.y14{bottom:638.493333pt;}
.y78{bottom:647.613333pt;}
.y13{bottom:656.733333pt;}
.y40{bottom:658.173333pt;}
.y77{bottom:666.013333pt;}
.y12{bottom:675.133333pt;}
.y3f{bottom:676.573333pt;}
.y76{bottom:684.413333pt;}
.y11{bottom:693.533333pt;}
.y3e{bottom:694.973333pt;}
.y75{bottom:702.813333pt;}
.y10{bottom:711.933333pt;}
.y3d{bottom:721.213333pt;}
.yf{bottom:730.373333pt;}
.y3c{bottom:735.653333pt;}
.y74{bottom:739.653333pt;}
.ye{bottom:748.773333pt;}
.y3b{bottom:754.053333pt;}
.y73{bottom:758.053333pt;}
.yd{bottom:767.173333pt;}
.y3a{bottom:772.933333pt;}
.y72{bottom:776.453333pt;}
.yc{bottom:785.573333pt;}
.y39{bottom:793.893333pt;}
.y71{bottom:794.853333pt;}
.yb{bottom:803.973333pt;}
.y38{bottom:812.293333pt;}
.y70{bottom:813.253333pt;}
.ya{bottom:822.373333pt;}
.y37{bottom:830.693333pt;}
.y6f{bottom:831.653333pt;}
.y9{bottom:840.773333pt;}
.y36{bottom:849.093333pt;}
.y6e{bottom:850.053333pt;}
.y8{bottom:859.173333pt;}
.y6d{bottom:868.453333pt;}
.y7{bottom:877.573333pt;}
.y6c{bottom:886.853333pt;}
.y35{bottom:889.573333pt;}
.y6{bottom:896.613333pt;}
.y6b{bottom:905.253333pt;}
.y34{bottom:907.973333pt;}
.y5{bottom:918.373333pt;}
.y6a{bottom:923.653333pt;}
.y33{bottom:926.693333pt;}
.y4{bottom:941.253333pt;}
.y69{bottom:942.533333pt;}
.y32{bottom:945.093333pt;}
.y1{bottom:994.080000pt;}
.h1a{height:18.400000pt;}
.h19{height:23.200000pt;}
.h14{height:26.240000pt;}
.h11{height:29.280000pt;}
.h17{height:36.800000pt;}
.h18{height:36.832000pt;}
.h13{height:56.356250pt;}
.h1{height:58.563750pt;}
.h2{height:60.288750pt;}
.h1b{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.hf{height:65.881250pt;}
.hc{height:66.625000pt;}
.h10{height:73.490625pt;}
.h4{height:75.465000pt;}
.h7{height:77.951250pt;}
.h8{height:79.375000pt;}
.hb{height:80.036250pt;}
.h3{height:80.625000pt;}
.h12{height:85.796250pt;}
.h9{height:85.902917pt;}
.h15{height:89.661250pt;}
.h16{height:92.252500pt;}
.he{height:92.868750pt;}
.ha{height:103.695000pt;}
.hd{height:149.988750pt;}
.h0{height:1056.000000pt;}
.w2{width:131.200000pt;}
.w4{width:234.586667pt;}
.w3{width:257.346667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.720000pt;}
.x1{left:96.031988pt;}
.x12{left:102.432000pt;}
.x18{left:105.800000pt;}
.xb{left:111.071988pt;}
.x3{left:136.346655pt;}
.x1a{left:144.026655pt;}
.x17{left:175.560000pt;}
.x19{left:187.240000pt;}
.x15{left:197.826667pt;}
.x4{left:204.026655pt;}
.x14{left:234.426667pt;}
.x7{left:246.106655pt;}
.x8{left:251.866655pt;}
.xa{left:282.466655pt;}
.x9{left:326.306655pt;}
.x6{left:337.186655pt;}
.xc{left:349.826655pt;}
.xf{left:397.986655pt;}
.xe{left:405.506655pt;}
.x5{left:408.066655pt;}
.xd{left:443.133321pt;}
.x11{left:455.773321pt;}
.x10{left:466.173321pt;}
.x16{left:492.413333pt;}
.x2{left:669.573321pt;}
}




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