
    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_7f5f83fe385202475f12357d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_222b006af7b8d2dde79c4324.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_6e7d04ea19ed1fc246488abf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6a0c460ea2770b2dc6cd4ec0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ccd166881d9fcae3f9d2ec28.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_95eaadf6c6bc8df1334baf92.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e083e823101a7f7dde95f50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.lsf{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.139800px;}
.lse{letter-spacing:-0.126000px;}
.ls5{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.013320px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.018720px;}
.ls7{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.373200px;}
.lsb{letter-spacing:0.540000px;}
.lsd{letter-spacing:24.228000px;}
.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;}
}
.wsb{word-spacing:-27.291600px;}
.ws8{word-spacing:-15.210000px;}
.ws6{word-spacing:-15.030000px;}
.wse{word-spacing:-15.016680px;}
.ws4{word-spacing:-14.976720px;}
.ws7{word-spacing:-14.850000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.510000px;}
.wsc{word-spacing:-12.150000px;}
.ws9{word-spacing:-11.970000px;}
.wsa{word-spacing:-11.790000px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-3.462600px;}
._4{margin-left:-2.404800px;}
._1{margin-left:-1.022040px;}
._0{width:1.054080px;}
._3{width:2.211840px;}
._2{width:3.996000px;}
._6{width:5.442840px;}
._9{width:6.903360px;}
._a{width:7.963920px;}
._f{width:11.122200px;}
._10{width:12.221520px;}
._8{width:16.713360px;}
._11{width:20.142000px;}
._d{width:24.769440px;}
._e{width:26.272440px;}
._7{width:357.060000px;}
._c{width:452.958000px;}
._b{width:575.940000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y4f{bottom:4.680000px;}
.y52{bottom:4.770000px;}
.y3{bottom:73.349908px;}
.y83{bottom:128.969908px;}
.ya8{bottom:135.629908px;}
.y63{bottom:148.049908px;}
.y82{bottom:148.859908px;}
.ya7{bottom:153.539908px;}
.y41{bottom:159.209908px;}
.y81{bottom:168.659908px;}
.y62{bottom:170.819908px;}
.ya6{bottom:175.859908px;}
.y40{bottom:179.099908px;}
.y80{bottom:188.549908px;}
.y27{bottom:189.629908px;}
.ya5{bottom:193.679908px;}
.y3f{bottom:198.899908px;}
.y26{bottom:209.519908px;}
.ya4{bottom:211.589908px;}
.y7f{bottom:217.349908px;}
.y3e{bottom:218.789908px;}
.y25{bottom:229.319908px;}
.ya3{bottom:233.909908px;}
.y3d{bottom:238.589908px;}
.y24{bottom:249.119908px;}
.ya2{bottom:251.729908px;}
.y7e{bottom:255.149908px;}
.y3c{bottom:258.389908px;}
.y23{bottom:269.009908px;}
.ya1{bottom:269.639908px;}
.y7d{bottom:275.039908px;}
.y3b{bottom:278.279908px;}
.y22{bottom:288.809908px;}
.ya0{bottom:291.959908px;}
.y7c{bottom:294.839908px;}
.y3a{bottom:298.079908px;}
.y21{bottom:308.699908px;}
.y9f{bottom:309.779908px;}
.y7b{bottom:314.729908px;}
.y39{bottom:317.969908px;}
.y61{bottom:322.919908px;}
.y20{bottom:328.499908px;}
.y9e{bottom:332.189908px;}
.y7a{bottom:334.559908px;}
.y38{bottom:337.799908px;}
.y60{bottom:342.749908px;}
.y1f{bottom:348.329908px;}
.y9d{bottom:350.039908px;}
.y79{bottom:354.359908px;}
.y5f{bottom:362.549908px;}
.y37{bottom:366.599908px;}
.y9c{bottom:367.949908px;}
.y1e{bottom:368.219908px;}
.y78{bottom:374.249908px;}
.y5e{bottom:382.439908px;}
.y36{bottom:386.489908px;}
.y1d{bottom:388.019908px;}
.y9b{bottom:390.269908px;}
.y77{bottom:394.049908px;}
.y5d{bottom:402.239908px;}
.y35{bottom:406.289908px;}
.y1c{bottom:407.909908px;}
.y9a{bottom:408.089908px;}
.y76{bottom:413.939908px;}
.y5c{bottom:422.129908px;}
.y1b{bottom:427.709908px;}
.y99{bottom:430.499908px;}
.y75{bottom:433.739908px;}
.y5b{bottom:441.929908px;}
.y34{bottom:443.009908px;}
.y1a{bottom:447.509908px;}
.y98{bottom:448.319908px;}
.y74{bottom:453.539908px;}
.y5a{bottom:461.729908px;}
.y33{bottom:466.319908px;}
.y19{bottom:467.399908px;}
.y97{bottom:470.639908px;}
.y73{bottom:473.429908px;}
.y59{bottom:481.619908px;}
.y18{bottom:487.199908px;}
.y96{bottom:488.549908px;}
.y72{bottom:493.229908px;}
.y58{bottom:501.419908px;}
.y95{bottom:506.369908px;}
.y17{bottom:507.089908px;}
.y71{bottom:513.119908px;}
.y57{bottom:521.309908px;}
.y16{bottom:526.889908px;}
.y94{bottom:528.689908px;}
.y70{bottom:532.919908px;}
.y93{bottom:546.599908px;}
.y15{bottom:546.689908px;}
.y56{bottom:550.109908px;}
.y6f{bottom:552.719908px;}
.y92{bottom:568.919908px;}
.y6e{bottom:572.609908px;}
.y14{bottom:575.579908px;}
.y55{bottom:582.870000px;}
.y91{bottom:586.829908px;}
.y6d{bottom:592.409908px;}
.y54{bottom:599.520000px;}
.y90{bottom:604.649908px;}
.y6c{bottom:612.299908px;}
.y13{bottom:612.839908px;}
.y53{bottom:616.170000px;}
.y8f{bottom:626.969908px;}
.y6b{bottom:632.129908px;}
.y51{bottom:632.760000px;}
.y12{bottom:639.779908px;}
.y8e{bottom:644.909908px;}
.y50{bottom:649.410000px;}
.y6a{bottom:651.929908px;}
.y11{bottom:657.599908px;}
.y8d{bottom:662.729908px;}
.y4e{bottom:666.060000px;}
.y69{bottom:671.819908px;}
.y10{bottom:675.419908px;}
.y8c{bottom:680.549908px;}
.y68{bottom:691.619908px;}
.yf{bottom:693.329908px;}
.y4d{bottom:696.389908px;}
.y8b{bottom:707.999908px;}
.ye{bottom:711.149908px;}
.y67{bottom:711.509908px;}
.yd{bottom:728.969908px;}
.y4c{bottom:731.309908px;}
.yb3{bottom:741.029908px;}
.y32{bottom:742.109908px;}
.y8a{bottom:745.799908px;}
.yc{bottom:746.879908px;}
.y4b{bottom:751.109908px;}
.y31{bottom:761.999908px;}
.yb2{bottom:763.439908px;}
.y89{bottom:765.689908px;}
.y4a{bottom:770.999908px;}
.y30{bottom:781.799908px;}
.yb{bottom:783.239908px;}
.y88{bottom:785.489908px;}
.yb1{bottom:785.759908px;}
.y49{bottom:790.799908px;}
.y2f{bottom:801.689908px;}
.ya{bottom:803.039908px;}
.yb0{bottom:803.579908px;}
.y66{bottom:810.689908px;}
.y87{bottom:814.289908px;}
.y48{bottom:819.689908px;}
.y2e{bottom:821.489908px;}
.y9{bottom:822.929908px;}
.y65{bottom:830.489908px;}
.y47{bottom:839.489908px;}
.y2d{bottom:841.289908px;}
.yaf{bottom:843.809908px;}
.y8{bottom:847.949908px;}
.y64{bottom:850.289908px;}
.y86{bottom:852.179908px;}
.y46{bottom:859.289908px;}
.yae{bottom:861.719908px;}
.y7{bottom:867.839908px;}
.y2c{bottom:870.179908px;}
.y85{bottom:871.979908px;}
.y45{bottom:879.179908px;}
.yad{bottom:884.039908px;}
.y2b{bottom:889.979908px;}
.y44{bottom:898.979908px;}
.y84{bottom:900.869908px;}
.y6{bottom:901.049908px;}
.yac{bottom:901.859908px;}
.y2a{bottom:909.869908px;}
.y43{bottom:918.869908px;}
.yab{bottom:924.269908px;}
.y29{bottom:929.699908px;}
.y42{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.yaa{bottom:942.119908px;}
.y28{bottom:958.499908px;}
.ya9{bottom:959.939908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.he{height:15.840000px;}
.h10{height:15.870000px;}
.hf{height:15.930000px;}
.h7{height:38.139609px;}
.hd{height:48.254063px;}
.h3{height:52.998047px;}
.h11{height:53.896641px;}
.ha{height:54.421875px;}
.h12{height:56.320312px;}
.h8{height:58.975137px;}
.h9{height:59.004492px;}
.hb{height:60.589687px;}
.h4{height:65.526152px;}
.h5{height:66.394687px;}
.h6{height:66.569062px;}
.hc{height:70.664062px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w5{width:59.580000px;}
.w6{width:72.270000px;}
.w4{width:76.890000px;}
.w3{width:95.490000px;}
.w7{width:208.740000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x14{left:8.130000px;}
.x16{left:11.790000px;}
.x1c{left:18.630000px;}
.x1b{left:21.600000px;}
.x12{left:24.390000px;}
.x19{left:25.470000px;}
.x1a{left:28.470000px;}
.x18{left:35.400000px;}
.x1d{left:52.860000px;}
.x2{left:76.589989px;}
.xf{left:82.889989px;}
.x9{left:84.689989px;}
.x1{left:94.499989px;}
.x3{left:101.639989px;}
.xa{left:106.139989px;}
.xc{left:110.639989px;}
.x4{left:113.609989px;}
.x5{left:121.979989px;}
.x20{left:130.619989px;}
.x6{left:136.649989px;}
.x11{left:220.080000px;}
.x7{left:224.759989px;}
.xe{left:233.129989px;}
.x1f{left:246.539989px;}
.x10{left:267.329989px;}
.x8{left:292.529989px;}
.x13{left:315.570000px;}
.xb{left:335.399989px;}
.x15{left:392.460000px;}
.x17{left:452.040000px;}
.xd{left:492.539989px;}
.x1e{left:652.319989px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.124267pt;}
.lse{letter-spacing:-0.112000pt;}
.ls5{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.011840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.016640pt;}
.ls7{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.331733pt;}
.lsb{letter-spacing:0.480000pt;}
.lsd{letter-spacing:21.536000pt;}
.wsb{word-spacing:-24.259200pt;}
.ws8{word-spacing:-13.520000pt;}
.ws6{word-spacing:-13.360000pt;}
.wse{word-spacing:-13.348160pt;}
.ws4{word-spacing:-13.312640pt;}
.ws7{word-spacing:-13.200000pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.120000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.640000pt;}
.wsa{word-spacing:-10.480000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-3.077867pt;}
._4{margin-left:-2.137600pt;}
._1{margin-left:-0.908480pt;}
._0{width:0.936960pt;}
._3{width:1.966080pt;}
._2{width:3.552000pt;}
._6{width:4.838080pt;}
._9{width:6.136320pt;}
._a{width:7.079040pt;}
._f{width:9.886400pt;}
._10{width:10.863573pt;}
._8{width:14.856320pt;}
._11{width:17.904000pt;}
._d{width:22.017280pt;}
._e{width:23.353280pt;}
._7{width:317.386667pt;}
._c{width:402.629333pt;}
._b{width:511.946667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y4f{bottom:4.160000pt;}
.y52{bottom:4.240000pt;}
.y3{bottom:65.199919pt;}
.y83{bottom:114.639919pt;}
.ya8{bottom:120.559919pt;}
.y63{bottom:131.599919pt;}
.y82{bottom:132.319919pt;}
.ya7{bottom:136.479919pt;}
.y41{bottom:141.519919pt;}
.y81{bottom:149.919919pt;}
.y62{bottom:151.839919pt;}
.ya6{bottom:156.319919pt;}
.y40{bottom:159.199919pt;}
.y80{bottom:167.599919pt;}
.y27{bottom:168.559919pt;}
.ya5{bottom:172.159919pt;}
.y3f{bottom:176.799919pt;}
.y26{bottom:186.239919pt;}
.ya4{bottom:188.079919pt;}
.y7f{bottom:193.199919pt;}
.y3e{bottom:194.479919pt;}
.y25{bottom:203.839919pt;}
.ya3{bottom:207.919919pt;}
.y3d{bottom:212.079919pt;}
.y24{bottom:221.439919pt;}
.ya2{bottom:223.759919pt;}
.y7e{bottom:226.799919pt;}
.y3c{bottom:229.679919pt;}
.y23{bottom:239.119919pt;}
.ya1{bottom:239.679919pt;}
.y7d{bottom:244.479919pt;}
.y3b{bottom:247.359919pt;}
.y22{bottom:256.719919pt;}
.ya0{bottom:259.519919pt;}
.y7c{bottom:262.079919pt;}
.y3a{bottom:264.959919pt;}
.y21{bottom:274.399919pt;}
.y9f{bottom:275.359919pt;}
.y7b{bottom:279.759919pt;}
.y39{bottom:282.639919pt;}
.y61{bottom:287.039919pt;}
.y20{bottom:291.999919pt;}
.y9e{bottom:295.279919pt;}
.y7a{bottom:297.386585pt;}
.y38{bottom:300.266585pt;}
.y60{bottom:304.666585pt;}
.y1f{bottom:309.626585pt;}
.y9d{bottom:311.146585pt;}
.y79{bottom:314.986585pt;}
.y5f{bottom:322.266585pt;}
.y37{bottom:325.866585pt;}
.y9c{bottom:327.066585pt;}
.y1e{bottom:327.306585pt;}
.y78{bottom:332.666585pt;}
.y5e{bottom:339.946585pt;}
.y36{bottom:343.546585pt;}
.y1d{bottom:344.906585pt;}
.y9b{bottom:346.906585pt;}
.y77{bottom:350.266585pt;}
.y5d{bottom:357.546585pt;}
.y35{bottom:361.146585pt;}
.y1c{bottom:362.586585pt;}
.y9a{bottom:362.746585pt;}
.y76{bottom:367.946585pt;}
.y5c{bottom:375.226585pt;}
.y1b{bottom:380.186585pt;}
.y99{bottom:382.666585pt;}
.y75{bottom:385.546585pt;}
.y5b{bottom:392.826585pt;}
.y34{bottom:393.786585pt;}
.y1a{bottom:397.786585pt;}
.y98{bottom:398.506585pt;}
.y74{bottom:403.146585pt;}
.y5a{bottom:410.426585pt;}
.y33{bottom:414.506585pt;}
.y19{bottom:415.466585pt;}
.y97{bottom:418.346585pt;}
.y73{bottom:420.826585pt;}
.y59{bottom:428.106585pt;}
.y18{bottom:433.066585pt;}
.y96{bottom:434.266585pt;}
.y72{bottom:438.426585pt;}
.y58{bottom:445.706585pt;}
.y95{bottom:450.106585pt;}
.y17{bottom:450.746585pt;}
.y71{bottom:456.106585pt;}
.y57{bottom:463.386585pt;}
.y16{bottom:468.346585pt;}
.y94{bottom:469.946585pt;}
.y70{bottom:473.706585pt;}
.y93{bottom:485.866585pt;}
.y15{bottom:485.946585pt;}
.y56{bottom:488.986585pt;}
.y6f{bottom:491.306585pt;}
.y92{bottom:505.706585pt;}
.y6e{bottom:508.986585pt;}
.y14{bottom:511.626585pt;}
.y55{bottom:518.106667pt;}
.y91{bottom:521.626585pt;}
.y6d{bottom:526.586585pt;}
.y54{bottom:532.906667pt;}
.y90{bottom:537.466585pt;}
.y6c{bottom:544.266585pt;}
.y13{bottom:544.746585pt;}
.y53{bottom:547.706667pt;}
.y8f{bottom:557.306585pt;}
.y6b{bottom:561.893252pt;}
.y51{bottom:562.453333pt;}
.y12{bottom:568.693252pt;}
.y8e{bottom:573.253252pt;}
.y50{bottom:577.253333pt;}
.y6a{bottom:579.493252pt;}
.y11{bottom:584.533252pt;}
.y8d{bottom:589.093252pt;}
.y4e{bottom:592.053333pt;}
.y69{bottom:597.173252pt;}
.y10{bottom:600.373252pt;}
.y8c{bottom:604.933252pt;}
.y68{bottom:614.773252pt;}
.yf{bottom:616.293252pt;}
.y4d{bottom:619.013252pt;}
.y8b{bottom:629.333252pt;}
.ye{bottom:632.133252pt;}
.y67{bottom:632.453252pt;}
.yd{bottom:647.973252pt;}
.y4c{bottom:650.053252pt;}
.yb3{bottom:658.693252pt;}
.y32{bottom:659.653252pt;}
.y8a{bottom:662.933252pt;}
.yc{bottom:663.893252pt;}
.y4b{bottom:667.653252pt;}
.y31{bottom:677.333252pt;}
.yb2{bottom:678.613252pt;}
.y89{bottom:680.613252pt;}
.y4a{bottom:685.333252pt;}
.y30{bottom:694.933252pt;}
.yb{bottom:696.213252pt;}
.y88{bottom:698.213252pt;}
.yb1{bottom:698.453252pt;}
.y49{bottom:702.933252pt;}
.y2f{bottom:712.613252pt;}
.ya{bottom:713.813252pt;}
.yb0{bottom:714.293252pt;}
.y66{bottom:720.613252pt;}
.y87{bottom:723.813252pt;}
.y48{bottom:728.613252pt;}
.y2e{bottom:730.213252pt;}
.y9{bottom:731.493252pt;}
.y65{bottom:738.213252pt;}
.y47{bottom:746.213252pt;}
.y2d{bottom:747.813252pt;}
.yaf{bottom:750.053252pt;}
.y8{bottom:753.733252pt;}
.y64{bottom:755.813252pt;}
.y86{bottom:757.493252pt;}
.y46{bottom:763.813252pt;}
.yae{bottom:765.973252pt;}
.y7{bottom:771.413252pt;}
.y2c{bottom:773.493252pt;}
.y85{bottom:775.093252pt;}
.y45{bottom:781.493252pt;}
.yad{bottom:785.813252pt;}
.y2b{bottom:791.093252pt;}
.y44{bottom:799.093252pt;}
.y84{bottom:800.773252pt;}
.y6{bottom:800.933252pt;}
.yac{bottom:801.653252pt;}
.y2a{bottom:808.773252pt;}
.y43{bottom:816.773252pt;}
.yab{bottom:821.573252pt;}
.y29{bottom:826.399919pt;}
.y42{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.yaa{bottom:837.439919pt;}
.y28{bottom:851.999919pt;}
.ya9{bottom:853.279919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.he{height:14.080000pt;}
.h10{height:14.106667pt;}
.hf{height:14.160000pt;}
.h7{height:33.901875pt;}
.hd{height:42.892500pt;}
.h3{height:47.109375pt;}
.h11{height:47.908125pt;}
.ha{height:48.375000pt;}
.h12{height:50.062500pt;}
.h8{height:52.422344pt;}
.h9{height:52.448437pt;}
.hb{height:53.857500pt;}
.h4{height:58.245469pt;}
.h5{height:59.017500pt;}
.h6{height:59.172500pt;}
.hc{height:62.812500pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w5{width:52.960000pt;}
.w6{width:64.240000pt;}
.w4{width:68.346667pt;}
.w3{width:84.880000pt;}
.w7{width:185.546667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x14{left:7.226667pt;}
.x16{left:10.480000pt;}
.x1c{left:16.560000pt;}
.x1b{left:19.200000pt;}
.x12{left:21.680000pt;}
.x19{left:22.640000pt;}
.x1a{left:25.306667pt;}
.x18{left:31.466667pt;}
.x1d{left:46.986667pt;}
.x2{left:68.079990pt;}
.xf{left:73.679990pt;}
.x9{left:75.279990pt;}
.x1{left:83.999990pt;}
.x3{left:90.346657pt;}
.xa{left:94.346657pt;}
.xc{left:98.346657pt;}
.x4{left:100.986657pt;}
.x5{left:108.426657pt;}
.x20{left:116.106657pt;}
.x6{left:121.466657pt;}
.x11{left:195.626667pt;}
.x7{left:199.786657pt;}
.xe{left:207.226657pt;}
.x1f{left:219.146657pt;}
.x10{left:237.626657pt;}
.x8{left:260.026657pt;}
.x13{left:280.506667pt;}
.xb{left:298.133323pt;}
.x15{left:348.853333pt;}
.x17{left:401.813333pt;}
.xd{left:437.813323pt;}
.x1e{left:579.839990pt;}
}




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