
    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_8adef3e568bb48209d5b4ecc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c8ccb2ffb4b624931dc6a1ce.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_b87e9af28ba7d296cee4dd39.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_a54e238b7e4ff4f822f2e47d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_89e02b0c067d77ae70e16bf8.woff')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_102e8d70c51f4857a1121313.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_54997201c854ec22f1369285.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f6b2cbfc9869ed99f3cca00c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.363000px;}
.lsc{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.117600px;}
.ls5{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.063600px;}
.ls7{letter-spacing:-0.057000px;}
.ls13{letter-spacing:-0.040320px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.081600px;}
.ls1{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.095040px;}
.ls10{letter-spacing:0.115800px;}
.ls19{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.275400px;}
.ls14{letter-spacing:0.319800px;}
.ls2{letter-spacing:0.374760px;}
.ls0{letter-spacing:13.347360px;}
.ls16{letter-spacing:80.846640px;}
.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;}
}
.wsc{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.535200px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.342200px;}
.ws4{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.162800px;}
.ws3{word-spacing:-13.108800px;}
.ws8{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.863400px;}
.wse{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._6{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._1{width:1.196280px;}
._3{width:2.886000px;}
._4{width:4.056598px;}
._9{width:5.333760px;}
._7{width:6.995997px;}
._2{width:8.296800px;}
._5{width:9.799199px;}
._8{width:11.723400px;}
._e{width:14.376600px;}
._a{width:15.832080px;}
._b{width:17.033040px;}
._16{width:18.163680px;}
._c{width:21.643200px;}
._d{width:22.665240px;}
._11{width:24.228360px;}
._14{width:28.376640px;}
._15{width:51.522840px;}
._12{width:53.266320px;}
._13{width:54.528840px;}
._f{width:77.194080px;}
._10{width:100.039680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y69{bottom:6.300000px;}
.y29{bottom:7.830000px;}
.y4d{bottom:7.860000px;}
.y2d{bottom:7.920000px;}
.y6c{bottom:9.270000px;}
.y68{bottom:23.940000px;}
.y6b{bottom:26.910000px;}
.y2{bottom:73.380000px;}
.y23{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y70{bottom:111.540000px;}
.y47{bottom:124.500000px;}
.y6f{bottom:125.580000px;}
.y38{bottom:127.380000px;}
.y6e{bottom:137.730000px;}
.y37{bottom:142.320000px;}
.y46{bottom:160.050000px;}
.y36{bottom:169.680000px;}
.y6d{bottom:179.670000px;}
.y45{bottom:195.600000px;}
.y35{bottom:197.040000px;}
.y44{bottom:213.240000px;}
.y21{bottom:214.140000px;}
.y6a{bottom:221.610000px;}
.y34{bottom:224.310000px;}
.y20{bottom:231.780000px;}
.y43{bottom:248.790000px;}
.y1f{bottom:249.330000px;}
.y67{bottom:266.520000px;}
.y33{bottom:273.000000px;}
.y42{bottom:281.010000px;}
.y1e{bottom:284.880000px;}
.y1d{bottom:302.520000px;}
.y32{bottom:308.640000px;}
.y1c{bottom:320.070000px;}
.y31{bottom:326.190000px;}
.y66{bottom:329.790000px;}
.y1b{bottom:346.980000px;}
.y30{bottom:361.830000px;}
.y65{bottom:364.710000px;}
.y64{bottom:378.750000px;}
.y63{bottom:390.900000px;}
.y2f{bottom:394.050000px;}
.y1a{bottom:395.310000px;}
.y8d{bottom:398.730000px;}
.y19{bottom:412.860000px;}
.y62{bottom:418.260000px;}
.y8c{bottom:425.280000px;}
.y18{bottom:430.410000px;}
.y8b{bottom:442.920000px;}
.y61{bottom:445.620000px;}
.y17{bottom:466.050000px;}
.y8a{bottom:469.470000px;}
.y60{bottom:472.920000px;}
.y16{bottom:483.630000px;}
.y89{bottom:487.050000px;}
.y15{bottom:501.270000px;}
.y88{bottom:504.690000px;}
.y14{bottom:518.820000px;}
.y5f{bottom:521.700000px;}
.y87{bottom:531.240000px;}
.y13{bottom:545.730000px;}
.y86{bottom:548.880000px;}
.y5e{bottom:556.530000px;}
.y85{bottom:566.430000px;}
.y5d{bottom:570.570000px;}
.y5c{bottom:582.810000px;}
.y41{bottom:588.210000px;}
.y84{bottom:592.980000px;}
.y12{bottom:593.970000px;}
.y40{bottom:603.150000px;}
.y5b{bottom:610.080000px;}
.y11{bottom:611.880000px;}
.y83{bottom:619.620000px;}
.y3f{bottom:630.510000px;}
.y5a{bottom:637.440000px;}
.y82{bottom:646.170000px;}
.y10{bottom:648.960000px;}
.y3e{bottom:657.780000px;}
.y59{bottom:664.800000px;}
.yf{bottom:666.510000px;}
.y81{bottom:672.810000px;}
.ye{bottom:684.060000px;}
.y3d{bottom:685.140000px;}
.y80{bottom:690.360000px;}
.yd{bottom:701.700000px;}
.y7f{bottom:707.910000px;}
.y58{bottom:713.490000px;}
.y2e{bottom:719.160000px;}
.yc{bottom:719.250000px;}
.y3c{bottom:733.830000px;}
.y2c{bottom:734.100000px;}
.y7e{bottom:734.820000px;}
.yb{bottom:736.890000px;}
.y57{bottom:749.040000px;}
.y2b{bottom:761.460000px;}
.ya{bottom:763.800000px;}
.y56{bottom:766.680000px;}
.y3b{bottom:769.470000px;}
.y7d{bottom:783.150000px;}
.y55{bottom:784.230000px;}
.y2a{bottom:788.820000px;}
.y7c{bottom:800.700000px;}
.y54{bottom:801.780000px;}
.y3a{bottom:805.020000px;}
.y9{bottom:812.040000px;}
.y28{bottom:816.180000px;}
.y7b{bottom:827.610000px;}
.y53{bottom:828.690000px;}
.y39{bottom:837.240000px;}
.y8{bottom:847.860000px;}
.y7a{bottom:864.600000px;}
.y27{bottom:864.870000px;}
.y52{bottom:877.020000px;}
.y7{bottom:883.860000px;}
.y79{bottom:891.510000px;}
.y26{bottom:891.780000px;}
.y51{bottom:894.570000px;}
.y6{bottom:919.860000px;}
.y50{bottom:927.600000px;}
.y78{bottom:928.860000px;}
.y5{bottom:937.860000px;}
.y25{bottom:940.020000px;}
.y4f{bottom:954.870000px;}
.y24{bottom:972.240000px;}
.y4{bottom:973.950000px;}
.y77{bottom:977.190000px;}
.y4e{bottom:982.230000px;}
.y76{bottom:994.740000px;}
.y4c{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y75{bottom:1012.320000px;}
.y74{bottom:1029.960000px;}
.y4b{bottom:1036.890000px;}
.y73{bottom:1056.870000px;}
.y4a{bottom:1064.250000px;}
.y49{bottom:1091.610000px;}
.y72{bottom:1105.110000px;}
.y71{bottom:1122.750000px;}
.y48{bottom:1140.300000px;}
.y22{bottom:1194.300000px;}
.h9{height:26.550000px;}
.hb{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:32.918906px;}
.h3{height:38.100586px;}
.hc{height:40.539023px;}
.hd{height:41.220000px;}
.he{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hf{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h7{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:48.960000px;}
.w5{width:54.180000px;}
.w6{width:54.210000px;}
.w4{width:54.270000px;}
.w10{width:73.620000px;}
.wf{width:122.220000px;}
.w8{width:124.020000px;}
.wb{width:127.980000px;}
.wa{width:141.390000px;}
.w9{width:151.230000px;}
.we{width:164.730000px;}
.w11{width:166.170000px;}
.w12{width:184.590000px;}
.wd{width:188.820000px;}
.w3{width:188.910000px;}
.wc{width:198.480000px;}
.w13{width:218.100000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x19{left:78.029987px;}
.x24{left:84.239987px;}
.x1f{left:87.659987px;}
.x26{left:111.239987px;}
.x1b{left:170.850000px;}
.x6{left:187.230000px;}
.x2{left:192.719987px;}
.x14{left:212.700000px;}
.x21{left:235.650000px;}
.x15{left:262.380000px;}
.x5{left:265.349987px;}
.x1a{left:289.289987px;}
.x13{left:294.329987px;}
.x20{left:299.909987px;}
.xf{left:302.339987px;}
.x11{left:303.869987px;}
.x1c{left:360.390000px;}
.x8{left:376.860000px;}
.x16{left:387.210000px;}
.x25{left:402.059987px;}
.x22{left:421.050000px;}
.x9{left:431.850000px;}
.xa{left:486.840000px;}
.x18{left:506.550000px;}
.x1d{left:525.930000px;}
.x17{left:539.160000px;}
.xb{left:541.860000px;}
.xc{left:596.760000px;}
.x23{left:639.870000px;}
.x4{left:645.809987px;}
.x1e{left:648.870000px;}
.xd{left:651.750000px;}
.x10{left:718.889987px;}
.xe{left:725.639987px;}
.x12{left:770.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.322667pt;}
.lsc{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.104533pt;}
.ls5{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.056533pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls13{letter-spacing:-0.035840pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.072533pt;}
.ls1{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.084480pt;}
.ls10{letter-spacing:0.102933pt;}
.ls19{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.244800pt;}
.ls14{letter-spacing:0.284267pt;}
.ls2{letter-spacing:0.333120pt;}
.ls0{letter-spacing:11.864320pt;}
.ls16{letter-spacing:71.863680pt;}
.wsc{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.475733pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.859733pt;}
.ws4{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.700267pt;}
.ws3{word-spacing:-11.652267pt;}
.ws8{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.434133pt;}
.wse{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._6{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.063360pt;}
._3{width:2.565334pt;}
._4{width:3.605865pt;}
._9{width:4.741120pt;}
._7{width:6.218664pt;}
._2{width:7.374934pt;}
._5{width:8.710399pt;}
._8{width:10.420800pt;}
._e{width:12.779200pt;}
._a{width:14.072960pt;}
._b{width:15.140480pt;}
._16{width:16.145493pt;}
._c{width:19.238400pt;}
._d{width:20.146880pt;}
._11{width:21.536320pt;}
._14{width:25.223680pt;}
._15{width:45.798080pt;}
._12{width:47.347840pt;}
._13{width:48.470080pt;}
._f{width:68.616960pt;}
._10{width:88.924160pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:5.600000pt;}
.y29{bottom:6.960000pt;}
.y4d{bottom:6.986667pt;}
.y2d{bottom:7.040000pt;}
.y6c{bottom:8.240000pt;}
.y68{bottom:21.280000pt;}
.y6b{bottom:23.920000pt;}
.y2{bottom:65.226667pt;}
.y23{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y70{bottom:99.146667pt;}
.y47{bottom:110.666667pt;}
.y6f{bottom:111.626667pt;}
.y38{bottom:113.226667pt;}
.y6e{bottom:122.426667pt;}
.y37{bottom:126.506667pt;}
.y46{bottom:142.266667pt;}
.y36{bottom:150.826667pt;}
.y6d{bottom:159.706667pt;}
.y45{bottom:173.866667pt;}
.y35{bottom:175.146667pt;}
.y44{bottom:189.546667pt;}
.y21{bottom:190.346667pt;}
.y6a{bottom:196.986667pt;}
.y34{bottom:199.386667pt;}
.y20{bottom:206.026667pt;}
.y43{bottom:221.146667pt;}
.y1f{bottom:221.626667pt;}
.y67{bottom:236.906667pt;}
.y33{bottom:242.666667pt;}
.y42{bottom:249.786667pt;}
.y1e{bottom:253.226667pt;}
.y1d{bottom:268.906667pt;}
.y32{bottom:274.346667pt;}
.y1c{bottom:284.506667pt;}
.y31{bottom:289.946667pt;}
.y66{bottom:293.146667pt;}
.y1b{bottom:308.426667pt;}
.y30{bottom:321.626667pt;}
.y65{bottom:324.186667pt;}
.y64{bottom:336.666667pt;}
.y63{bottom:347.466667pt;}
.y2f{bottom:350.266667pt;}
.y1a{bottom:351.386667pt;}
.y8d{bottom:354.426667pt;}
.y19{bottom:366.986667pt;}
.y62{bottom:371.786667pt;}
.y8c{bottom:378.026667pt;}
.y18{bottom:382.586667pt;}
.y8b{bottom:393.706667pt;}
.y61{bottom:396.106667pt;}
.y17{bottom:414.266667pt;}
.y8a{bottom:417.306667pt;}
.y60{bottom:420.373333pt;}
.y16{bottom:429.893333pt;}
.y89{bottom:432.933333pt;}
.y15{bottom:445.573333pt;}
.y88{bottom:448.613333pt;}
.y14{bottom:461.173333pt;}
.y5f{bottom:463.733333pt;}
.y87{bottom:472.213333pt;}
.y13{bottom:485.093333pt;}
.y86{bottom:487.893333pt;}
.y5e{bottom:494.693333pt;}
.y85{bottom:503.493333pt;}
.y5d{bottom:507.173333pt;}
.y5c{bottom:518.053333pt;}
.y41{bottom:522.853333pt;}
.y84{bottom:527.093333pt;}
.y12{bottom:527.973333pt;}
.y40{bottom:536.133333pt;}
.y5b{bottom:542.293333pt;}
.y11{bottom:543.893333pt;}
.y83{bottom:550.773333pt;}
.y3f{bottom:560.453333pt;}
.y5a{bottom:566.613333pt;}
.y82{bottom:574.373333pt;}
.y10{bottom:576.853333pt;}
.y3e{bottom:584.693333pt;}
.y59{bottom:590.933333pt;}
.yf{bottom:592.453333pt;}
.y81{bottom:598.053333pt;}
.ye{bottom:608.053333pt;}
.y3d{bottom:609.013333pt;}
.y80{bottom:613.653333pt;}
.yd{bottom:623.733333pt;}
.y7f{bottom:629.253333pt;}
.y58{bottom:634.213333pt;}
.y2e{bottom:639.253333pt;}
.yc{bottom:639.333333pt;}
.y3c{bottom:652.293333pt;}
.y2c{bottom:652.533333pt;}
.y7e{bottom:653.173333pt;}
.yb{bottom:655.013333pt;}
.y57{bottom:665.813333pt;}
.y2b{bottom:676.853333pt;}
.ya{bottom:678.933333pt;}
.y56{bottom:681.493333pt;}
.y3b{bottom:683.973333pt;}
.y7d{bottom:696.133333pt;}
.y55{bottom:697.093333pt;}
.y2a{bottom:701.173333pt;}
.y7c{bottom:711.733333pt;}
.y54{bottom:712.693333pt;}
.y3a{bottom:715.573333pt;}
.y9{bottom:721.813333pt;}
.y28{bottom:725.493333pt;}
.y7b{bottom:735.653333pt;}
.y53{bottom:736.613333pt;}
.y39{bottom:744.213333pt;}
.y8{bottom:753.653333pt;}
.y7a{bottom:768.533333pt;}
.y27{bottom:768.773333pt;}
.y52{bottom:779.573333pt;}
.y7{bottom:785.653333pt;}
.y79{bottom:792.453333pt;}
.y26{bottom:792.693333pt;}
.y51{bottom:795.173333pt;}
.y6{bottom:817.653333pt;}
.y50{bottom:824.533333pt;}
.y78{bottom:825.653333pt;}
.y5{bottom:833.653333pt;}
.y25{bottom:835.573333pt;}
.y4f{bottom:848.773333pt;}
.y24{bottom:864.213333pt;}
.y4{bottom:865.733333pt;}
.y77{bottom:868.613333pt;}
.y4e{bottom:873.093333pt;}
.y76{bottom:884.213333pt;}
.y4c{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y75{bottom:899.840000pt;}
.y74{bottom:915.520000pt;}
.y4b{bottom:921.680000pt;}
.y73{bottom:939.440000pt;}
.y4a{bottom:946.000000pt;}
.y49{bottom:970.320000pt;}
.y72{bottom:982.320000pt;}
.y71{bottom:998.000000pt;}
.y48{bottom:1013.600000pt;}
.y22{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.hb{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:29.261250pt;}
.h3{height:33.867188pt;}
.hc{height:36.034687pt;}
.hd{height:36.640000pt;}
.he{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hf{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h7{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:43.520000pt;}
.w5{width:48.160000pt;}
.w6{width:48.186667pt;}
.w4{width:48.240000pt;}
.w10{width:65.440000pt;}
.wf{width:108.640000pt;}
.w8{width:110.240000pt;}
.wb{width:113.760000pt;}
.wa{width:125.680000pt;}
.w9{width:134.426667pt;}
.we{width:146.426667pt;}
.w11{width:147.706667pt;}
.w12{width:164.080000pt;}
.wd{width:167.840000pt;}
.w3{width:167.920000pt;}
.wc{width:176.426667pt;}
.w13{width:193.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x19{left:69.359988pt;}
.x24{left:74.879988pt;}
.x1f{left:77.919988pt;}
.x26{left:98.879988pt;}
.x1b{left:151.866667pt;}
.x6{left:166.426667pt;}
.x2{left:171.306655pt;}
.x14{left:189.066667pt;}
.x21{left:209.466667pt;}
.x15{left:233.226667pt;}
.x5{left:235.866655pt;}
.x1a{left:257.146655pt;}
.x13{left:261.626655pt;}
.x20{left:266.586655pt;}
.xf{left:268.746655pt;}
.x11{left:270.106655pt;}
.x1c{left:320.346667pt;}
.x8{left:334.986667pt;}
.x16{left:344.186667pt;}
.x25{left:357.386655pt;}
.x22{left:374.266667pt;}
.x9{left:383.866667pt;}
.xa{left:432.746667pt;}
.x18{left:450.266667pt;}
.x1d{left:467.493333pt;}
.x17{left:479.253333pt;}
.xb{left:481.653333pt;}
.xc{left:530.453333pt;}
.x23{left:568.773333pt;}
.x4{left:574.053322pt;}
.x1e{left:576.773333pt;}
.xd{left:579.333333pt;}
.x10{left:639.013322pt;}
.xe{left:645.013322pt;}
.x12{left:685.013322pt;}
.x3{left:711.413322pt;}
}




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