
    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_202a162acb7b4b087c37cc1a.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_70f1daceda7103131541f2b7.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_7ac61b335484746c92c1b56f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4d17ebba41f12a3c7d3e3ae2.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_83698e19909411bbc0cc0676.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_22edcd9201ed6efd7e1f5d88.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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_f098001170f8cc3f6fce04cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_82b1196289c8b1a69f5803cb.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v3{vertical-align:-138.240000px;}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.998000px;}
.lsb{letter-spacing:-1.914000px;}
.ls9{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.254000px;}
.lse{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.492600px;}
.lsd{letter-spacing:-0.475200px;}
.ls10{letter-spacing:-0.466800px;}
.ls7{letter-spacing:-0.276600px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.140160px;}
.ls5{letter-spacing:0.316800px;}
.lsc{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.906560px;}
.ls13{letter-spacing:2.160000px;}
.ls17{letter-spacing:3.600000px;}
.ls14{letter-spacing:7.920000px;}
.ls18{letter-spacing:13.680000px;}
.ls16{letter-spacing:18.000000px;}
.ls3{letter-spacing:19.440000px;}
.ls4{letter-spacing:20.892000px;}
.ls19{letter-spacing:25.200000px;}
.ls1d{letter-spacing:30.960000px;}
.ls12{letter-spacing:32.400000px;}
.ls1c{letter-spacing:46.800000px;}
.ls1a{letter-spacing:193.558560px;}
.ls1b{letter-spacing:1105.752000px;}
.ls2{letter-spacing:1151.976000px;}
.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.480000px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.843400px;}
.wsa{word-spacing:-14.653200px;}
.ws6{word-spacing:-14.310000px;}
.ws3{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.204800px;}
.ws4{word-spacing:-13.187400px;}
.ws8{word-spacing:-12.870000px;}
.ws9{word-spacing:-12.426000px;}
.ws2{word-spacing:-12.240000px;}
.ws5{word-spacing:-11.766000px;}
.wsb{word-spacing:0.000000px;}
._25{margin-left:-9.132480px;}
._1c{margin-left:-8.107200px;}
._23{margin-left:-6.324960px;}
._1a{margin-left:-4.495680px;}
._3{margin-left:-2.903040px;}
._0{margin-left:-1.440000px;}
._1{width:1.126080px;}
._2{width:2.203200px;}
._b{width:3.227520px;}
._6{width:4.282560px;}
._26{width:5.336640px;}
._c{width:6.338880px;}
._12{width:7.822080px;}
._19{width:8.871360px;}
._14{width:9.954240px;}
._13{width:10.999680px;}
._4{width:12.156480px;}
._5{width:13.657440px;}
._18{width:17.154240px;}
._17{width:18.201120px;}
._e{width:19.221120px;}
._d{width:21.026880px;}
._1b{width:22.032000px;}
._11{width:23.040000px;}
._10{width:25.079040px;}
._f{width:26.562240px;}
._20{width:28.388160px;}
._28{width:29.543040px;}
._1d{width:30.551040px;}
._8{width:32.189760px;}
._7{width:33.698880px;}
._22{width:34.704000px;}
._24{width:35.836800px;}
._21{width:39.300480px;}
._1f{width:40.616640px;}
._16{width:42.301440px;}
._27{width:43.971840px;}
._9{width:45.167040px;}
._a{width:47.197440px;}
._1e{width:52.848000px;}
._15{width:777.371520px;}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(16,0,12);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y39{bottom:106.200000px;}
.y66{bottom:108.000000px;}
.y7c{bottom:112.716000px;}
.y9c{bottom:116.676000px;}
.y38{bottom:121.716000px;}
.y65{bottom:125.316000px;}
.y7b{bottom:129.996000px;}
.y9b{bottom:133.956000px;}
.y37{bottom:137.556000px;}
.y64{bottom:142.596000px;}
.y7a{bottom:146.916000px;}
.y9a{bottom:151.230000px;}
.y36{bottom:154.830000px;}
.y63{bottom:159.870000px;}
.y79{bottom:164.190000px;}
.y99{bottom:168.510000px;}
.y35{bottom:172.110000px;}
.y62{bottom:177.150000px;}
.y78{bottom:181.470000px;}
.y98{bottom:185.790000px;}
.y34{bottom:189.390000px;}
.y61{bottom:194.070000px;}
.y77{bottom:198.750000px;}
.y97{bottom:203.070000px;}
.y33{bottom:206.670000px;}
.y60{bottom:211.350000px;}
.y76{bottom:216.030000px;}
.y96{bottom:220.395000px;}
.y32{bottom:223.635000px;}
.y5f{bottom:228.675000px;}
.y75{bottom:233.355000px;}
.y95{bottom:237.675000px;}
.y31{bottom:240.915000px;}
.y5e{bottom:245.955000px;}
.y74{bottom:250.635000px;}
.y94{bottom:254.955000px;}
.y30{bottom:258.195000px;}
.y5d{bottom:263.235000px;}
.y73{bottom:267.915000px;}
.y93{bottom:272.235000px;}
.y2f{bottom:275.475000px;}
.y5c{bottom:280.515000px;}
.y72{bottom:285.195000px;}
.y92{bottom:289.515000px;}
.y2e{bottom:292.755000px;}
.y5b{bottom:297.795000px;}
.y71{bottom:302.475000px;}
.y91{bottom:306.435000px;}
.y2d{bottom:310.035000px;}
.y5a{bottom:315.075000px;}
.y70{bottom:319.755000px;}
.y90{bottom:323.745000px;}
.y2c{bottom:327.345000px;}
.y59{bottom:332.385000px;}
.y6f{bottom:336.705000px;}
.y8f{bottom:341.025000px;}
.y2b{bottom:344.625000px;}
.y58{bottom:349.665000px;}
.y6e{bottom:353.985000px;}
.y8e{bottom:358.305000px;}
.y2a{bottom:361.905000px;}
.y57{bottom:366.945000px;}
.y6d{bottom:371.265000px;}
.y29{bottom:379.185000px;}
.y56{bottom:383.865000px;}
.y6c{bottom:388.545000px;}
.y28{bottom:396.465000px;}
.y55{bottom:401.145000px;}
.y6b{bottom:405.825000px;}
.y8d{bottom:410.145000px;}
.y27{bottom:413.385000px;}
.y54{bottom:418.425000px;}
.y6a{bottom:423.105000px;}
.y8c{bottom:427.110000px;}
.y26{bottom:430.710000px;}
.y53{bottom:435.750000px;}
.y69{bottom:440.430000px;}
.y25{bottom:447.990000px;}
.y52{bottom:453.030000px;}
.y68{bottom:457.710000px;}
.y8b{bottom:458.430000px;}
.y24{bottom:465.270000px;}
.y51{bottom:470.310000px;}
.y67{bottom:471.390000px;}
.y8a{bottom:475.710000px;}
.y23{bottom:482.190000px;}
.y50{bottom:487.590000px;}
.y89{bottom:492.990000px;}
.y22{bottom:499.830000px;}
.y4f{bottom:504.870000px;}
.y88{bottom:510.270000px;}
.y21{bottom:517.110000px;}
.y4e{bottom:522.150000px;}
.y87{bottom:527.550000px;}
.y20{bottom:534.060000px;}
.y4d{bottom:539.460000px;}
.y86{bottom:544.860000px;}
.y1f{bottom:549.180000px;}
.y4c{bottom:556.740000px;}
.y85{bottom:562.140000px;}
.y1e{bottom:565.380000px;}
.y4b{bottom:573.660000px;}
.y84{bottom:579.060000px;}
.y1d{bottom:582.660000px;}
.y4a{bottom:592.020000px;}
.y83{bottom:596.340000px;}
.y1c{bottom:599.580000px;}
.y49{bottom:610.380000px;}
.y82{bottom:613.620000px;}
.y1b{bottom:616.860000px;}
.y48{bottom:628.740000px;}
.y81{bottom:630.900000px;}
.y1a{bottom:634.140000px;}
.y47{bottom:647.130000px;}
.y80{bottom:647.850000px;}
.y19{bottom:651.810000px;}
.y46{bottom:664.410000px;}
.y7f{bottom:665.490000px;}
.y18{bottom:669.090000px;}
.y45{bottom:682.770000px;}
.y17{bottom:686.370000px;}
.y44{bottom:700.050000px;}
.y16{bottom:703.290000px;}
.y43{bottom:717.330000px;}
.y15{bottom:720.570000px;}
.y42{bottom:734.610000px;}
.y14{bottom:737.850000px;}
.y41{bottom:751.935000px;}
.y13{bottom:755.175000px;}
.y40{bottom:768.855000px;}
.y12{bottom:772.455000px;}
.y3f{bottom:786.135000px;}
.y11{bottom:789.735000px;}
.y3e{bottom:803.415000px;}
.y10{bottom:806.655000px;}
.y3d{bottom:820.695000px;}
.yf{bottom:837.975000px;}
.y7e{bottom:854.925000px;}
.ye{bottom:855.285000px;}
.y7d{bottom:872.205000px;}
.yd{bottom:872.565000px;}
.yc{bottom:889.485000px;}
.y3c{bottom:889.845000px;}
.yb{bottom:907.125000px;}
.y3b{bottom:924.045000px;}
.ya{bottom:924.405000px;}
.y9{bottom:941.685000px;}
.y8{bottom:959.010000px;}
.y7{bottom:975.930000px;}
.y6{bottom:993.210000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.410000px;}
.y3a{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.h8{height:52.299844px;}
.h6{height:53.704687px;}
.h5{height:54.219375px;}
.h9{height:55.147500px;}
.h7{height:59.328281px;}
.h2{height:59.357813px;}
.h4{height:60.952500px;}
.ha{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:51.155989px;}
.x7{left:61.235989px;}
.xc{left:76.715989px;}
.x2{left:93.635989px;}
.x10{left:103.751989px;}
.xb{left:119.231989px;}
.xe{left:130.751989px;}
.x9{left:170.024989px;}
.x8{left:187.304989px;}
.x4{left:209.624989px;}
.xf{left:235.184989px;}
.x5{left:267.989989px;}
.x1{left:337.859989px;}
.x6{left:349.019989px;}
.xa{left:363.419989px;}
.xd{left:510.014989px;}
@media print{
.v3{vertical-align:-122.880000pt;}
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.776000pt;}
.lsb{letter-spacing:-1.701333pt;}
.ls9{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.114667pt;}
.lse{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.437867pt;}
.lsd{letter-spacing:-0.422400pt;}
.ls10{letter-spacing:-0.414933pt;}
.ls7{letter-spacing:-0.245867pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.124587pt;}
.ls5{letter-spacing:0.281600pt;}
.lsc{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.694720pt;}
.ls13{letter-spacing:1.920000pt;}
.ls17{letter-spacing:3.200000pt;}
.ls14{letter-spacing:7.040000pt;}
.ls18{letter-spacing:12.160000pt;}
.ls16{letter-spacing:16.000000pt;}
.ls3{letter-spacing:17.280000pt;}
.ls4{letter-spacing:18.570667pt;}
.ls19{letter-spacing:22.400000pt;}
.ls1d{letter-spacing:27.520000pt;}
.ls12{letter-spacing:28.800000pt;}
.ls1c{letter-spacing:41.600000pt;}
.ls1a{letter-spacing:172.052053pt;}
.ls1b{letter-spacing:982.890667pt;}
.ls2{letter-spacing:1023.978667pt;}
.wsc{word-spacing:-53.760000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.194133pt;}
.wsa{word-spacing:-13.025067pt;}
.ws6{word-spacing:-12.720000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.737600pt;}
.ws4{word-spacing:-11.722133pt;}
.ws8{word-spacing:-11.440000pt;}
.ws9{word-spacing:-11.045333pt;}
.ws2{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.458667pt;}
.wsb{word-spacing:0.000000pt;}
._25{margin-left:-8.117760pt;}
._1c{margin-left:-7.206400pt;}
._23{margin-left:-5.622187pt;}
._1a{margin-left:-3.996160pt;}
._3{margin-left:-2.580480pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.000960pt;}
._2{width:1.958400pt;}
._b{width:2.868907pt;}
._6{width:3.806720pt;}
._26{width:4.743680pt;}
._c{width:5.634560pt;}
._12{width:6.952960pt;}
._19{width:7.885653pt;}
._14{width:8.848213pt;}
._13{width:9.777493pt;}
._4{width:10.805760pt;}
._5{width:12.139947pt;}
._18{width:15.248213pt;}
._17{width:16.178773pt;}
._e{width:17.085440pt;}
._d{width:18.690560pt;}
._1b{width:19.584000pt;}
._11{width:20.480000pt;}
._10{width:22.292480pt;}
._f{width:23.610880pt;}
._20{width:25.233920pt;}
._28{width:26.260480pt;}
._1d{width:27.156480pt;}
._8{width:28.613120pt;}
._7{width:29.954560pt;}
._22{width:30.848000pt;}
._24{width:31.854933pt;}
._21{width:34.933760pt;}
._1f{width:36.103680pt;}
._16{width:37.601280pt;}
._27{width:39.086080pt;}
._9{width:40.148480pt;}
._a{width:41.953280pt;}
._1e{width:46.976000pt;}
._15{width:690.996907pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y39{bottom:94.400000pt;}
.y66{bottom:96.000000pt;}
.y7c{bottom:100.192000pt;}
.y9c{bottom:103.712000pt;}
.y38{bottom:108.192000pt;}
.y65{bottom:111.392000pt;}
.y7b{bottom:115.552000pt;}
.y9b{bottom:119.072000pt;}
.y37{bottom:122.272000pt;}
.y64{bottom:126.752000pt;}
.y7a{bottom:130.592000pt;}
.y9a{bottom:134.426667pt;}
.y36{bottom:137.626667pt;}
.y63{bottom:142.106667pt;}
.y79{bottom:145.946667pt;}
.y99{bottom:149.786667pt;}
.y35{bottom:152.986667pt;}
.y62{bottom:157.466667pt;}
.y78{bottom:161.306667pt;}
.y98{bottom:165.146667pt;}
.y34{bottom:168.346667pt;}
.y61{bottom:172.506667pt;}
.y77{bottom:176.666667pt;}
.y97{bottom:180.506667pt;}
.y33{bottom:183.706667pt;}
.y60{bottom:187.866667pt;}
.y76{bottom:192.026667pt;}
.y96{bottom:195.906667pt;}
.y32{bottom:198.786667pt;}
.y5f{bottom:203.266667pt;}
.y75{bottom:207.426667pt;}
.y95{bottom:211.266667pt;}
.y31{bottom:214.146667pt;}
.y5e{bottom:218.626667pt;}
.y74{bottom:222.786667pt;}
.y94{bottom:226.626667pt;}
.y30{bottom:229.506667pt;}
.y5d{bottom:233.986667pt;}
.y73{bottom:238.146667pt;}
.y93{bottom:241.986667pt;}
.y2f{bottom:244.866667pt;}
.y5c{bottom:249.346667pt;}
.y72{bottom:253.506667pt;}
.y92{bottom:257.346667pt;}
.y2e{bottom:260.226667pt;}
.y5b{bottom:264.706667pt;}
.y71{bottom:268.866667pt;}
.y91{bottom:272.386667pt;}
.y2d{bottom:275.586667pt;}
.y5a{bottom:280.066667pt;}
.y70{bottom:284.226667pt;}
.y90{bottom:287.773333pt;}
.y2c{bottom:290.973333pt;}
.y59{bottom:295.453333pt;}
.y6f{bottom:299.293333pt;}
.y8f{bottom:303.133333pt;}
.y2b{bottom:306.333333pt;}
.y58{bottom:310.813333pt;}
.y6e{bottom:314.653333pt;}
.y8e{bottom:318.493333pt;}
.y2a{bottom:321.693333pt;}
.y57{bottom:326.173333pt;}
.y6d{bottom:330.013333pt;}
.y29{bottom:337.053333pt;}
.y56{bottom:341.213333pt;}
.y6c{bottom:345.373333pt;}
.y28{bottom:352.413333pt;}
.y55{bottom:356.573333pt;}
.y6b{bottom:360.733333pt;}
.y8d{bottom:364.573333pt;}
.y27{bottom:367.453333pt;}
.y54{bottom:371.933333pt;}
.y6a{bottom:376.093333pt;}
.y8c{bottom:379.653333pt;}
.y26{bottom:382.853333pt;}
.y53{bottom:387.333333pt;}
.y69{bottom:391.493333pt;}
.y25{bottom:398.213333pt;}
.y52{bottom:402.693333pt;}
.y68{bottom:406.853333pt;}
.y8b{bottom:407.493333pt;}
.y24{bottom:413.573333pt;}
.y51{bottom:418.053333pt;}
.y67{bottom:419.013333pt;}
.y8a{bottom:422.853333pt;}
.y23{bottom:428.613333pt;}
.y50{bottom:433.413333pt;}
.y89{bottom:438.213333pt;}
.y22{bottom:444.293333pt;}
.y4f{bottom:448.773333pt;}
.y88{bottom:453.573333pt;}
.y21{bottom:459.653333pt;}
.y4e{bottom:464.133333pt;}
.y87{bottom:468.933333pt;}
.y20{bottom:474.720000pt;}
.y4d{bottom:479.520000pt;}
.y86{bottom:484.320000pt;}
.y1f{bottom:488.160000pt;}
.y4c{bottom:494.880000pt;}
.y85{bottom:499.680000pt;}
.y1e{bottom:502.560000pt;}
.y4b{bottom:509.920000pt;}
.y84{bottom:514.720000pt;}
.y1d{bottom:517.920000pt;}
.y4a{bottom:526.240000pt;}
.y83{bottom:530.080000pt;}
.y1c{bottom:532.960000pt;}
.y49{bottom:542.560000pt;}
.y82{bottom:545.440000pt;}
.y1b{bottom:548.320000pt;}
.y48{bottom:558.880000pt;}
.y81{bottom:560.800000pt;}
.y1a{bottom:563.680000pt;}
.y47{bottom:575.226667pt;}
.y80{bottom:575.866667pt;}
.y19{bottom:579.386667pt;}
.y46{bottom:590.586667pt;}
.y7f{bottom:591.546667pt;}
.y18{bottom:594.746667pt;}
.y45{bottom:606.906667pt;}
.y17{bottom:610.106667pt;}
.y44{bottom:622.266667pt;}
.y16{bottom:625.146667pt;}
.y43{bottom:637.626667pt;}
.y15{bottom:640.506667pt;}
.y42{bottom:652.986667pt;}
.y14{bottom:655.866667pt;}
.y41{bottom:668.386667pt;}
.y13{bottom:671.266667pt;}
.y40{bottom:683.426667pt;}
.y12{bottom:686.626667pt;}
.y3f{bottom:698.786667pt;}
.y11{bottom:701.986667pt;}
.y3e{bottom:714.146667pt;}
.y10{bottom:717.026667pt;}
.y3d{bottom:729.506667pt;}
.yf{bottom:744.866667pt;}
.y7e{bottom:759.933333pt;}
.ye{bottom:760.253333pt;}
.y7d{bottom:775.293333pt;}
.yd{bottom:775.613333pt;}
.yc{bottom:790.653333pt;}
.y3c{bottom:790.973333pt;}
.yb{bottom:806.333333pt;}
.y3b{bottom:821.373333pt;}
.ya{bottom:821.693333pt;}
.y9{bottom:837.053333pt;}
.y8{bottom:852.453333pt;}
.y7{bottom:867.493333pt;}
.y6{bottom:882.853333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.253333pt;}
.y3a{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.h8{height:46.488750pt;}
.h6{height:47.737500pt;}
.h5{height:48.195000pt;}
.h9{height:49.020000pt;}
.h7{height:52.736250pt;}
.h2{height:52.762500pt;}
.h4{height:54.180000pt;}
.ha{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:45.471990pt;}
.x7{left:54.431990pt;}
.xc{left:68.191990pt;}
.x2{left:83.231990pt;}
.x10{left:92.223990pt;}
.xb{left:105.983990pt;}
.xe{left:116.223990pt;}
.x9{left:151.133324pt;}
.x8{left:166.493324pt;}
.x4{left:186.333324pt;}
.xf{left:209.053324pt;}
.x5{left:238.213324pt;}
.x1{left:300.319990pt;}
.x6{left:310.239990pt;}
.xa{left:323.039990pt;}
.xd{left:453.346657pt;}
}




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