
    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_fea6c2a34798d48598dbf42e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3dcaa331bb80bacc72c5c911.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_bad1200ca3803f98448ffed5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5f832c3c26877dbbb85ccf14.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166504;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_78b4e161812501c4ac4432c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.166504;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_a4419b355391c9ba04a15213.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_8e71f4cfdd41597a319b6782.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_639526e2e349b1abce35cf0d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_6ab35e280aad32d486ab0b2f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.834000px;}
.lse{letter-spacing:-0.078000px;}
.ls1b{letter-spacing:-0.064800px;}
.lsf{letter-spacing:-0.058320px;}
.ls21{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.060600px;}
.ls11{letter-spacing:0.066960px;}
.ls6{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.077760px;}
.lsc{letter-spacing:0.083400px;}
.ls12{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.092880px;}
.ls14{letter-spacing:0.138000px;}
.ls9{letter-spacing:0.162000px;}
.ls22{letter-spacing:0.171120px;}
.ls0{letter-spacing:0.174000px;}
.ls19{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.195120px;}
.ls7{letter-spacing:0.198000px;}
.ls20{letter-spacing:0.209400px;}
.ls8{letter-spacing:0.272160px;}
.ls1a{letter-spacing:0.274800px;}
.ls5{letter-spacing:0.301200px;}
.ls1c{letter-spacing:0.306000px;}
.ls10{letter-spacing:0.329760px;}
.ls4{letter-spacing:0.342000px;}
.ls16{letter-spacing:0.386640px;}
.ls18{letter-spacing:0.566640px;}
.ls17{letter-spacing:40.500000px;}
.ls1d{letter-spacing:64.746720px;}
.ls15{letter-spacing:71.226720px;}
.ls2{letter-spacing:71.429760px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws1{word-spacing:-14.136240px;}
.wse{word-spacing:-13.811760px;}
.wsc{word-spacing:-13.780560px;}
.ws10{word-spacing:-13.715160px;}
.ws4{word-spacing:-13.566360px;}
.ws2{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.440960px;}
.ws3{word-spacing:-13.427760px;}
.wsa{word-spacing:-12.402000px;}
.ws11{word-spacing:-12.276000px;}
.ws8{word-spacing:-12.204000px;}
.wsf{word-spacing:-12.186000px;}
.ws0{word-spacing:-10.902240px;}
.ws9{word-spacing:-9.738960px;}
.ws7{word-spacing:-9.437760px;}
.wsb{word-spacing:0.000000px;}
._5{margin-left:-16.737840px;}
._9{margin-left:-11.346000px;}
._7{margin-left:-8.927280px;}
._8{margin-left:-7.268880px;}
._4{margin-left:-4.697280px;}
._3{margin-left:-3.019680px;}
._0{margin-left:-1.109520px;}
._6{width:1.554000px;}
._a{width:2.592480px;}
._c{width:3.791760px;}
._b{width:40.751040px;}
._2{width:86.574240px;}
._1{width:641.198400px;}
.fc7{color:rgb(35,60,67);}
.fc6{color:transparent;}
.fc5{color:rgb(7,79,106);}
.fc3{color:rgb(11,118,159);}
.fc2{color:rgb(70,120,134);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:6.660000px;}
.y23{bottom:6.705000px;}
.y3a{bottom:6.840000px;}
.y47{bottom:8.280000px;}
.y50{bottom:8.325000px;}
.y29{bottom:8.460000px;}
.y7f{bottom:8.490000px;}
.y69{bottom:8.640000px;}
.y1a{bottom:11.160000px;}
.y39{bottom:23.220000px;}
.y52{bottom:31.140000px;}
.y57{bottom:31.314000px;}
.y28{bottom:31.320000px;}
.y7e{bottom:31.350000px;}
.y6d{bottom:31.365000px;}
.y46{bottom:32.760000px;}
.y4f{bottom:32.805000px;}
.y42{bottom:33.120000px;}
.y41{bottom:34.560000px;}
.y3{bottom:37.800000px;}
.y4a{bottom:54.000000px;}
.y7d{bottom:54.030000px;}
.y6c{bottom:54.045000px;}
.y56{bottom:54.174000px;}
.y61{bottom:54.180000px;}
.y49{bottom:55.440000px;}
.y7c{bottom:55.470000px;}
.y6b{bottom:55.485000px;}
.y55{bottom:55.614000px;}
.y60{bottom:55.620000px;}
.y2{bottom:57.240000px;}
.y45{bottom:57.450000px;}
.y4e{bottom:57.465000px;}
.y65{bottom:57.960000px;}
.y44{bottom:58.890000px;}
.y4d{bottom:58.905000px;}
.y85{bottom:72.360000px;}
.y84{bottom:73.800000px;}
.y64{bottom:82.440000px;}
.y76{bottom:82.620000px;}
.y63{bottom:83.880000px;}
.y75{bottom:107.280000px;}
.y74{bottom:108.720000px;}
.y71{bottom:111.096000px;}
.y2d{bottom:111.456000px;}
.y2c{bottom:115.236000px;}
.y54{bottom:124.596000px;}
.y2b{bottom:127.836000px;}
.y70{bottom:163.830000px;}
.y2a{bottom:169.050000px;}
.y27{bottom:192.270000px;}
.y53{bottom:198.390000px;}
.y6f{bottom:207.390000px;}
.y6e{bottom:221.790000px;}
.y26{bottom:243.210000px;}
.y51{bottom:251.130000px;}
.y25{bottom:286.770000px;}
.y6a{bottom:295.410000px;}
.y24{bottom:301.170000px;}
.y22{bottom:324.390000px;}
.y4c{bottom:324.750000px;}
.y86{bottom:335.055000px;}
.y21{bottom:347.655000px;}
.y83{bottom:349.995000px;}
.y68{bottom:369.075000px;}
.y20{bottom:370.875000px;}
.y1f{bottom:394.095000px;}
.y4b{bottom:401.835000px;}
.y1e{bottom:417.315000px;}
.y67{bottom:421.995000px;}
.y1d{bottom:440.535000px;}
.y82{bottom:441.975000px;}
.y48{bottom:454.575000px;}
.y1b{bottom:463.755000px;}
.y66{bottom:465.375000px;}
.y62{bottom:479.955000px;}
.y19{bottom:486.975000px;}
.y81{bottom:515.595000px;}
.y18{bottom:525.315000px;}
.y43{bottom:528.195000px;}
.y17{bottom:555.195000px;}
.y80{bottom:559.155000px;}
.y7b{bottom:573.555000px;}
.y5f{bottom:582.045000px;}
.y16{bottom:583.665000px;}
.y40{bottom:605.265000px;}
.y15{bottom:612.285000px;}
.y14{bottom:640.905000px;}
.y7a{bottom:647.385000px;}
.y5e{bottom:655.845000px;}
.y3f{bottom:658.005000px;}
.y13{bottom:669.345000px;}
.y12{bottom:697.965000px;}
.y79{bottom:700.125000px;}
.y3e{bottom:701.565000px;}
.y5d{bottom:708.585000px;}
.y3d{bottom:715.965000px;}
.y11{bottom:726.405000px;}
.y3c{bottom:739.185000px;}
.y5c{bottom:752.145000px;}
.y10{bottom:755.025000px;}
.y3b{bottom:762.405000px;}
.y5b{bottom:766.545000px;}
.y78{bottom:773.745000px;}
.yf{bottom:783.645000px;}
.y38{bottom:785.625000px;}
.ye{bottom:812.085000px;}
.y5a{bottom:819.285000px;}
.y37{bottom:825.450000px;}
.y77{bottom:826.530000px;}
.yd{bottom:840.750000px;}
.y36{bottom:848.670000px;}
.yc{bottom:869.370000px;}
.yb{bottom:891.150000px;}
.y35{bottom:892.230000px;}
.y59{bottom:896.370000px;}
.y73{bottom:900.330000px;}
.y34{bottom:906.630000px;}
.ya{bottom:914.370000px;}
.y33{bottom:929.850000px;}
.y9{bottom:937.590000px;}
.y58{bottom:949.110000px;}
.y32{bottom:953.070000px;}
.y8{bottom:960.630000px;}
.y31{bottom:976.290000px;}
.y6{bottom:983.850000px;}
.y7{bottom:989.790000px;}
.y30{bottom:999.510000px;}
.y5{bottom:1007.070000px;}
.y2f{bottom:1022.730000px;}
.y72{bottom:1027.230000px;}
.y4{bottom:1040.010000px;}
.y2e{bottom:1066.290000px;}
.y1{bottom:1118.520000px;}
.h8{height:22.500000px;}
.hb{height:22.536000px;}
.h7{height:30.060000px;}
.he{height:35.806641px;}
.hf{height:39.096000px;}
.ha{height:41.238281px;}
.h5{height:41.535703px;}
.h13{height:44.236406px;}
.hd{height:50.220000px;}
.h11{height:52.020000px;}
.h18{height:52.056000px;}
.h9{height:53.709961px;}
.hc{height:56.574492px;}
.h2{height:59.439023px;}
.h6{height:61.189805px;}
.h10{height:62.211094px;}
.h4{height:65.884219px;}
.h1{height:68.084282px;}
.h14{height:72.900000px;}
.h17{height:72.936000px;}
.h15{height:73.080000px;}
.h12{height:76.356000px;}
.h1a{height:91.260000px;}
.h16{height:101.376000px;}
.h19{height:126.180000px;}
.h3{height:166.858945px;}
.h0{height:1188.000000px;}
.wc{width:42.840000px;}
.w6{width:58.860000px;}
.w4{width:97.200000px;}
.w7{width:109.476000px;}
.w8{width:116.280000px;}
.wa{width:222.150000px;}
.w9{width:456.405000px;}
.wb{width:520.305000px;}
.w5{width:645.450000px;}
.wd{width:699.810000px;}
.w3{width:743.190000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x6{left:9.360000px;}
.x1{left:108.035986px;}
.x8{left:112.535986px;}
.xd{left:152.310000px;}
.x9{left:168.330000px;}
.x3{left:206.489986px;}
.x4{left:272.054973px;}
.x5{left:277.274986px;}
.xa{left:278.535000px;}
.x2{left:324.074986px;}
.xc{left:331.815000px;}
.xb{left:395.535000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.741333pt;}
.lse{letter-spacing:-0.069333pt;}
.ls1b{letter-spacing:-0.057600pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls21{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.053867pt;}
.ls11{letter-spacing:0.059520pt;}
.ls6{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.069120pt;}
.lsc{letter-spacing:0.074133pt;}
.ls12{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.082560pt;}
.ls14{letter-spacing:0.122667pt;}
.ls9{letter-spacing:0.144000pt;}
.ls22{letter-spacing:0.152107pt;}
.ls0{letter-spacing:0.154667pt;}
.ls19{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.173440pt;}
.ls7{letter-spacing:0.176000pt;}
.ls20{letter-spacing:0.186133pt;}
.ls8{letter-spacing:0.241920pt;}
.ls1a{letter-spacing:0.244267pt;}
.ls5{letter-spacing:0.267733pt;}
.ls1c{letter-spacing:0.272000pt;}
.ls10{letter-spacing:0.293120pt;}
.ls4{letter-spacing:0.304000pt;}
.ls16{letter-spacing:0.343680pt;}
.ls18{letter-spacing:0.503680pt;}
.ls17{letter-spacing:36.000000pt;}
.ls1d{letter-spacing:57.552640pt;}
.ls15{letter-spacing:63.312640pt;}
.ls2{letter-spacing:63.493120pt;}
.ws6{word-spacing:-53.120000pt;}
.ws1{word-spacing:-12.565547pt;}
.wse{word-spacing:-12.277120pt;}
.wsc{word-spacing:-12.249387pt;}
.ws10{word-spacing:-12.191253pt;}
.ws4{word-spacing:-12.058987pt;}
.ws2{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.947520pt;}
.ws3{word-spacing:-11.935787pt;}
.wsa{word-spacing:-11.024000pt;}
.ws11{word-spacing:-10.912000pt;}
.ws8{word-spacing:-10.848000pt;}
.wsf{word-spacing:-10.832000pt;}
.ws0{word-spacing:-9.690880pt;}
.ws9{word-spacing:-8.656853pt;}
.ws7{word-spacing:-8.389120pt;}
.wsb{word-spacing:0.000000pt;}
._5{margin-left:-14.878080pt;}
._9{margin-left:-10.085333pt;}
._7{margin-left:-7.935360pt;}
._8{margin-left:-6.461227pt;}
._4{margin-left:-4.175360pt;}
._3{margin-left:-2.684160pt;}
._0{margin-left:-0.986240pt;}
._6{width:1.381333pt;}
._a{width:2.304427pt;}
._c{width:3.370453pt;}
._b{width:36.223147pt;}
._2{width:76.954880pt;}
._1{width:569.954133pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:5.920000pt;}
.y23{bottom:5.960000pt;}
.y3a{bottom:6.080000pt;}
.y47{bottom:7.360000pt;}
.y50{bottom:7.400000pt;}
.y29{bottom:7.520000pt;}
.y7f{bottom:7.546667pt;}
.y69{bottom:7.680000pt;}
.y1a{bottom:9.920000pt;}
.y39{bottom:20.640000pt;}
.y52{bottom:27.680000pt;}
.y57{bottom:27.834667pt;}
.y28{bottom:27.840000pt;}
.y7e{bottom:27.866667pt;}
.y6d{bottom:27.880000pt;}
.y46{bottom:29.120000pt;}
.y4f{bottom:29.160000pt;}
.y42{bottom:29.440000pt;}
.y41{bottom:30.720000pt;}
.y3{bottom:33.600000pt;}
.y4a{bottom:48.000000pt;}
.y7d{bottom:48.026667pt;}
.y6c{bottom:48.040000pt;}
.y56{bottom:48.154667pt;}
.y61{bottom:48.160000pt;}
.y49{bottom:49.280000pt;}
.y7c{bottom:49.306667pt;}
.y6b{bottom:49.320000pt;}
.y55{bottom:49.434667pt;}
.y60{bottom:49.440000pt;}
.y2{bottom:50.880000pt;}
.y45{bottom:51.066667pt;}
.y4e{bottom:51.080000pt;}
.y65{bottom:51.520000pt;}
.y44{bottom:52.346667pt;}
.y4d{bottom:52.360000pt;}
.y85{bottom:64.320000pt;}
.y84{bottom:65.600000pt;}
.y64{bottom:73.280000pt;}
.y76{bottom:73.440000pt;}
.y63{bottom:74.560000pt;}
.y75{bottom:95.360000pt;}
.y74{bottom:96.640000pt;}
.y71{bottom:98.752000pt;}
.y2d{bottom:99.072000pt;}
.y2c{bottom:102.432000pt;}
.y54{bottom:110.752000pt;}
.y2b{bottom:113.632000pt;}
.y70{bottom:145.626667pt;}
.y2a{bottom:150.266667pt;}
.y27{bottom:170.906667pt;}
.y53{bottom:176.346667pt;}
.y6f{bottom:184.346667pt;}
.y6e{bottom:197.146667pt;}
.y26{bottom:216.186667pt;}
.y51{bottom:223.226667pt;}
.y25{bottom:254.906667pt;}
.y6a{bottom:262.586667pt;}
.y24{bottom:267.706667pt;}
.y22{bottom:288.346667pt;}
.y4c{bottom:288.666667pt;}
.y86{bottom:297.826667pt;}
.y21{bottom:309.026667pt;}
.y83{bottom:311.106667pt;}
.y68{bottom:328.066667pt;}
.y20{bottom:329.666667pt;}
.y1f{bottom:350.306667pt;}
.y4b{bottom:357.186667pt;}
.y1e{bottom:370.946667pt;}
.y67{bottom:375.106667pt;}
.y1d{bottom:391.586667pt;}
.y82{bottom:392.866667pt;}
.y48{bottom:404.066667pt;}
.y1b{bottom:412.226667pt;}
.y66{bottom:413.666667pt;}
.y62{bottom:426.626667pt;}
.y19{bottom:432.866667pt;}
.y81{bottom:458.306667pt;}
.y18{bottom:466.946667pt;}
.y43{bottom:469.506667pt;}
.y17{bottom:493.506667pt;}
.y80{bottom:497.026667pt;}
.y7b{bottom:509.826667pt;}
.y5f{bottom:517.373333pt;}
.y16{bottom:518.813333pt;}
.y40{bottom:538.013333pt;}
.y15{bottom:544.253333pt;}
.y14{bottom:569.693333pt;}
.y7a{bottom:575.453333pt;}
.y5e{bottom:582.973333pt;}
.y3f{bottom:584.893333pt;}
.y13{bottom:594.973333pt;}
.y12{bottom:620.413333pt;}
.y79{bottom:622.333333pt;}
.y3e{bottom:623.613333pt;}
.y5d{bottom:629.853333pt;}
.y3d{bottom:636.413333pt;}
.y11{bottom:645.693333pt;}
.y3c{bottom:657.053333pt;}
.y5c{bottom:668.573333pt;}
.y10{bottom:671.133333pt;}
.y3b{bottom:677.693333pt;}
.y5b{bottom:681.373333pt;}
.y78{bottom:687.773333pt;}
.yf{bottom:696.573333pt;}
.y38{bottom:698.333333pt;}
.ye{bottom:721.853333pt;}
.y5a{bottom:728.253333pt;}
.y37{bottom:733.733333pt;}
.y77{bottom:734.693333pt;}
.yd{bottom:747.333333pt;}
.y36{bottom:754.373333pt;}
.yc{bottom:772.773333pt;}
.yb{bottom:792.133333pt;}
.y35{bottom:793.093333pt;}
.y59{bottom:796.773333pt;}
.y73{bottom:800.293333pt;}
.y34{bottom:805.893333pt;}
.ya{bottom:812.773333pt;}
.y33{bottom:826.533333pt;}
.y9{bottom:833.413333pt;}
.y58{bottom:843.653333pt;}
.y32{bottom:847.173333pt;}
.y8{bottom:853.893333pt;}
.y31{bottom:867.813333pt;}
.y6{bottom:874.533333pt;}
.y7{bottom:879.813333pt;}
.y30{bottom:888.453333pt;}
.y5{bottom:895.173333pt;}
.y2f{bottom:909.093333pt;}
.y72{bottom:913.093333pt;}
.y4{bottom:924.453333pt;}
.y2e{bottom:947.813333pt;}
.y1{bottom:994.240000pt;}
.h8{height:20.000000pt;}
.hb{height:20.032000pt;}
.h7{height:26.720000pt;}
.he{height:31.828125pt;}
.hf{height:34.752000pt;}
.ha{height:36.656250pt;}
.h5{height:36.920625pt;}
.h13{height:39.321250pt;}
.hd{height:44.640000pt;}
.h11{height:46.240000pt;}
.h18{height:46.272000pt;}
.h9{height:47.742188pt;}
.hc{height:50.288438pt;}
.h2{height:52.834688pt;}
.h6{height:54.390938pt;}
.h10{height:55.298750pt;}
.h4{height:58.563750pt;}
.h1{height:60.519362pt;}
.h14{height:64.800000pt;}
.h17{height:64.832000pt;}
.h15{height:64.960000pt;}
.h12{height:67.872000pt;}
.h1a{height:81.120000pt;}
.h16{height:90.112000pt;}
.h19{height:112.160000pt;}
.h3{height:148.319063pt;}
.h0{height:1056.000000pt;}
.wc{width:38.080000pt;}
.w6{width:52.320000pt;}
.w4{width:86.400000pt;}
.w7{width:97.312000pt;}
.w8{width:103.360000pt;}
.wa{width:197.466667pt;}
.w9{width:405.693333pt;}
.wb{width:462.493333pt;}
.w5{width:573.733333pt;}
.wd{width:622.053333pt;}
.w3{width:660.613333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x6{left:8.320000pt;}
.x1{left:96.031988pt;}
.x8{left:100.031988pt;}
.xd{left:135.386667pt;}
.x9{left:149.626667pt;}
.x3{left:183.546655pt;}
.x4{left:241.826642pt;}
.x5{left:246.466655pt;}
.xa{left:247.586667pt;}
.x2{left:288.066655pt;}
.xc{left:294.946667pt;}
.xb{left:351.586667pt;}
}




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