
    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_a07a7005f21a6ac2dcab0ffe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_1fd634a8685229f90fd4d9c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_4df490e5fe713eef1c1380af.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_18efbd83401758a3602335a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_e98fedb0206ac7be286188c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:1.440000px;}
.ls3{letter-spacing:14.400000px;}
.ls1{letter-spacing:21.221280px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws4{word-spacing:-66.240000px;}
.ws2{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-4.032000px;}
._a{margin-left:-2.690880px;}
._0{margin-left:-1.457280px;}
._1{width:1.436400px;}
._7{width:2.808000px;}
._2{width:3.830400px;}
._8{width:5.184000px;}
._9{width:6.552000px;}
._c{width:7.563600px;}
._d{width:8.965200px;}
._e{width:10.008000px;}
._15{width:11.088000px;}
._1a{width:12.315600px;}
._f{width:14.040000px;}
._10{width:15.063600px;}
._b{width:16.464000px;}
._11{width:19.656000px;}
._12{width:21.168000px;}
._1d{width:23.705280px;}
._16{width:24.984000px;}
._17{width:26.424000px;}
._20{width:27.881280px;}
._1f{width:32.866560px;}
._1e{width:33.912000px;}
._1b{width:36.000000px;}
._1c{width:37.224000px;}
._18{width:38.880000px;}
._19{width:39.905280px;}
._3{width:60.041520px;}
._4{width:61.094880px;}
._23{width:71.568000px;}
._13{width:72.720000px;}
._21{width:81.504000px;}
._22{width:82.544880px;}
._6{width:165.019440px;}
._5{width:166.047840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:58.320000px;}
.y3{bottom:77.616000px;}
.y2{bottom:96.696000px;}
.y1{bottom:115.596000px;}
.y9d{bottom:135.576000px;}
.y33{bottom:139.356000px;}
.y73{bottom:146.196000px;}
.y8e{bottom:155.190000px;}
.y32{bottom:160.050000px;}
.y9c{bottom:166.530000px;}
.y72{bottom:177.330000px;}
.y31{bottom:180.750000px;}
.y8d{bottom:186.330000px;}
.y52{bottom:187.770000px;}
.y9b{bottom:197.670000px;}
.y30{bottom:201.450000px;}
.y71{bottom:208.290000px;}
.y8c{bottom:217.290000px;}
.y51{bottom:218.730000px;}
.y2f{bottom:222.150000px;}
.y9a{bottom:228.630000px;}
.yba{bottom:236.730000px;}
.y70{bottom:239.430000px;}
.y2e{bottom:242.850000px;}
.y50{bottom:252.030000px;}
.yb9{bottom:257.610000px;}
.y99{bottom:259.770000px;}
.y2d{bottom:263.550000px;}
.y8b{bottom:265.170000px;}
.y6f{bottom:270.390000px;}
.yb8{bottom:278.310000px;}
.y4f{bottom:282.450000px;}
.y2c{bottom:284.250000px;}
.y98{bottom:290.730000px;}
.y8a{bottom:296.310000px;}
.yb7{bottom:299.010000px;}
.y6e{bottom:301.350000px;}
.y2b{bottom:304.950000px;}
.y4e{bottom:309.270000px;}
.yb6{bottom:319.710000px;}
.y97{bottom:321.870000px;}
.y2a{bottom:325.650000px;}
.y89{bottom:327.270000px;}
.y6d{bottom:332.490000px;}
.y4d{bottom:340.455000px;}
.y29{bottom:346.395000px;}
.y96{bottom:352.875000px;}
.y88{bottom:358.455000px;}
.yb5{bottom:361.155000px;}
.y6c{bottom:363.495000px;}
.y28{bottom:367.095000px;}
.y4c{bottom:371.415000px;}
.yb4{bottom:381.855000px;}
.y95{bottom:384.015000px;}
.y27{bottom:387.795000px;}
.y87{bottom:389.415000px;}
.y6b{bottom:394.635000px;}
.y4b{bottom:402.555000px;}
.y26{bottom:408.495000px;}
.y94{bottom:414.975000px;}
.y86{bottom:420.555000px;}
.yb3{bottom:423.255000px;}
.y6a{bottom:425.595000px;}
.y25{bottom:429.195000px;}
.y4a{bottom:433.515000px;}
.yb2{bottom:443.955000px;}
.y93{bottom:446.115000px;}
.y24{bottom:449.895000px;}
.y85{bottom:451.515000px;}
.y69{bottom:456.735000px;}
.y49{bottom:464.655000px;}
.y23{bottom:470.595000px;}
.y92{bottom:477.075000px;}
.y84{bottom:482.655000px;}
.yb1{bottom:485.355000px;}
.y68{bottom:487.695000px;}
.y22{bottom:491.295000px;}
.y48{bottom:495.615000px;}
.yb0{bottom:506.055000px;}
.y21{bottom:511.995000px;}
.y83{bottom:513.615000px;}
.y67{bottom:518.835000px;}
.y91{bottom:519.375000px;}
.y47{bottom:526.755000px;}
.y20{bottom:532.695000px;}
.y82{bottom:544.755000px;}
.yaf{bottom:547.455000px;}
.y66{bottom:549.795000px;}
.y1f{bottom:553.395000px;}
.y90{bottom:555.735000px;}
.y46{bottom:557.715000px;}
.yae{bottom:568.155000px;}
.y1e{bottom:574.095000px;}
.y81{bottom:575.715000px;}
.y65{bottom:580.935000px;}
.y45{bottom:588.855000px;}
.y1d{bottom:594.795000px;}
.y80{bottom:606.885000px;}
.yad{bottom:609.585000px;}
.y64{bottom:611.925000px;}
.y1c{bottom:615.525000px;}
.y44{bottom:619.845000px;}
.yac{bottom:630.285000px;}
.y1b{bottom:636.045000px;}
.y7f{bottom:637.845000px;}
.y63{bottom:643.065000px;}
.y43{bottom:650.985000px;}
.y1a{bottom:656.745000px;}
.y7e{bottom:668.985000px;}
.yab{bottom:671.685000px;}
.y62{bottom:674.025000px;}
.y19{bottom:677.445000px;}
.y42{bottom:681.945000px;}
.yaa{bottom:692.385000px;}
.y18{bottom:698.145000px;}
.y7d{bottom:699.945000px;}
.y61{bottom:705.165000px;}
.y41{bottom:713.085000px;}
.y17{bottom:718.845000px;}
.y7c{bottom:731.085000px;}
.ya9{bottom:733.785000px;}
.y60{bottom:736.125000px;}
.y16{bottom:739.545000px;}
.y40{bottom:744.045000px;}
.ya8{bottom:754.485000px;}
.y15{bottom:760.245000px;}
.y7b{bottom:762.045000px;}
.y5f{bottom:767.265000px;}
.y3f{bottom:775.005000px;}
.ya7{bottom:775.185000px;}
.y14{bottom:780.945000px;}
.y7a{bottom:793.005000px;}
.ya6{bottom:795.705000px;}
.y5e{bottom:798.225000px;}
.y8f{bottom:799.485000px;}
.y13{bottom:801.645000px;}
.y3e{bottom:806.145000px;}
.ya5{bottom:816.405000px;}
.y12{bottom:822.345000px;}
.y79{bottom:824.145000px;}
.y5d{bottom:829.365000px;}
.y3d{bottom:837.105000px;}
.y11{bottom:849.885000px;}
.y78{bottom:855.105000px;}
.ya4{bottom:857.805000px;}
.y5c{bottom:860.325000px;}
.y10{bottom:863.745000px;}
.y3c{bottom:868.245000px;}
.ya3{bottom:878.550000px;}
.yf{bottom:884.490000px;}
.y77{bottom:886.290000px;}
.y5b{bottom:891.510000px;}
.y3b{bottom:899.250000px;}
.ye{bottom:912.030000px;}
.y76{bottom:917.250000px;}
.ya2{bottom:919.950000px;}
.y5a{bottom:922.470000px;}
.yd{bottom:925.890000px;}
.y3a{bottom:930.390000px;}
.ya1{bottom:940.650000px;}
.yc{bottom:946.590000px;}
.y75{bottom:948.390000px;}
.y59{bottom:953.610000px;}
.y39{bottom:961.350000px;}
.yb{bottom:968.730000px;}
.y74{bottom:981.690000px;}
.y58{bottom:984.570000px;}
.ya0{bottom:992.310000px;}
.y38{bottom:992.490000px;}
.ya{bottom:996.270000px;}
.y57{bottom:1015.710000px;}
.y37{bottom:1023.450000px;}
.y9{bottom:1023.810000px;}
.y9f{bottom:1025.790000px;}
.y56{bottom:1046.670000px;}
.y8{bottom:1051.530000px;}
.y36{bottom:1054.590000px;}
.y9e{bottom:1068.810000px;}
.y55{bottom:1077.810000px;}
.y7{bottom:1079.070000px;}
.y35{bottom:1085.550000px;}
.y6{bottom:1106.610000px;}
.y54{bottom:1108.770000px;}
.y5{bottom:1134.330000px;}
.y34{bottom:1137.030000px;}
.y53{bottom:1139.940000px;}
.h6{height:43.246406px;}
.ha{height:48.410156px;}
.h8{height:48.761719px;}
.hf{height:52.417969px;}
.h7{height:52.628906px;}
.he{height:58.833281px;}
.h2{height:59.383125px;}
.hc{height:63.949219px;}
.h5{height:64.546875px;}
.h3{height:65.884219px;}
.hd{height:70.606406px;}
.hb{height:74.820586px;}
.h9{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.xa{left:138.275987px;}
.x6{left:154.649987px;}
.x8{left:180.389987px;}
.x7{left:181.649987px;}
.xc{left:207.569987px;}
.x2{left:241.769987px;}
.x5{left:290.774987px;}
.x4{left:292.034987px;}
.x3{left:441.254987px;}
.x9{left:467.744987px;}
.xb{left:481.244987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls3{letter-spacing:12.800000pt;}
.ls1{letter-spacing:18.863360pt;}
.ws7{word-spacing:-64.000000pt;}
.ws4{word-spacing:-58.880000pt;}
.ws2{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-3.584000pt;}
._a{margin-left:-2.391893pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.276800pt;}
._7{width:2.496000pt;}
._2{width:3.404800pt;}
._8{width:4.608000pt;}
._9{width:5.824000pt;}
._c{width:6.723200pt;}
._d{width:7.969067pt;}
._e{width:8.896000pt;}
._15{width:9.856000pt;}
._1a{width:10.947200pt;}
._f{width:12.480000pt;}
._10{width:13.389867pt;}
._b{width:14.634667pt;}
._11{width:17.472000pt;}
._12{width:18.816000pt;}
._1d{width:21.071360pt;}
._16{width:22.208000pt;}
._17{width:23.488000pt;}
._20{width:24.783360pt;}
._1f{width:29.214720pt;}
._1e{width:30.144000pt;}
._1b{width:32.000000pt;}
._1c{width:33.088000pt;}
._18{width:34.560000pt;}
._19{width:35.471360pt;}
._3{width:53.370240pt;}
._4{width:54.306560pt;}
._23{width:63.616000pt;}
._13{width:64.640000pt;}
._21{width:72.448000pt;}
._22{width:73.373227pt;}
._6{width:146.683947pt;}
._5{width:147.598080pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:68.992000pt;}
.y2{bottom:85.952000pt;}
.y1{bottom:102.752000pt;}
.y9d{bottom:120.512000pt;}
.y33{bottom:123.872000pt;}
.y73{bottom:129.952000pt;}
.y8e{bottom:137.946667pt;}
.y32{bottom:142.266667pt;}
.y9c{bottom:148.026667pt;}
.y72{bottom:157.626667pt;}
.y31{bottom:160.666667pt;}
.y8d{bottom:165.626667pt;}
.y52{bottom:166.906667pt;}
.y9b{bottom:175.706667pt;}
.y30{bottom:179.066667pt;}
.y71{bottom:185.146667pt;}
.y8c{bottom:193.146667pt;}
.y51{bottom:194.426667pt;}
.y2f{bottom:197.466667pt;}
.y9a{bottom:203.226667pt;}
.yba{bottom:210.426667pt;}
.y70{bottom:212.826667pt;}
.y2e{bottom:215.866667pt;}
.y50{bottom:224.026667pt;}
.yb9{bottom:228.986667pt;}
.y99{bottom:230.906667pt;}
.y2d{bottom:234.266667pt;}
.y8b{bottom:235.706667pt;}
.y6f{bottom:240.346667pt;}
.yb8{bottom:247.386667pt;}
.y4f{bottom:251.066667pt;}
.y2c{bottom:252.666667pt;}
.y98{bottom:258.426667pt;}
.y8a{bottom:263.386667pt;}
.yb7{bottom:265.786667pt;}
.y6e{bottom:267.866667pt;}
.y2b{bottom:271.066667pt;}
.y4e{bottom:274.906667pt;}
.yb6{bottom:284.186667pt;}
.y97{bottom:286.106667pt;}
.y2a{bottom:289.466667pt;}
.y89{bottom:290.906667pt;}
.y6d{bottom:295.546667pt;}
.y4d{bottom:302.626667pt;}
.y29{bottom:307.906667pt;}
.y96{bottom:313.666667pt;}
.y88{bottom:318.626667pt;}
.yb5{bottom:321.026667pt;}
.y6c{bottom:323.106667pt;}
.y28{bottom:326.306667pt;}
.y4c{bottom:330.146667pt;}
.yb4{bottom:339.426667pt;}
.y95{bottom:341.346667pt;}
.y27{bottom:344.706667pt;}
.y87{bottom:346.146667pt;}
.y6b{bottom:350.786667pt;}
.y4b{bottom:357.826667pt;}
.y26{bottom:363.106667pt;}
.y94{bottom:368.866667pt;}
.y86{bottom:373.826667pt;}
.yb3{bottom:376.226667pt;}
.y6a{bottom:378.306667pt;}
.y25{bottom:381.506667pt;}
.y4a{bottom:385.346667pt;}
.yb2{bottom:394.626667pt;}
.y93{bottom:396.546667pt;}
.y24{bottom:399.906667pt;}
.y85{bottom:401.346667pt;}
.y69{bottom:405.986667pt;}
.y49{bottom:413.026667pt;}
.y23{bottom:418.306667pt;}
.y92{bottom:424.066667pt;}
.y84{bottom:429.026667pt;}
.yb1{bottom:431.426667pt;}
.y68{bottom:433.506667pt;}
.y22{bottom:436.706667pt;}
.y48{bottom:440.546667pt;}
.yb0{bottom:449.826667pt;}
.y21{bottom:455.106667pt;}
.y83{bottom:456.546667pt;}
.y67{bottom:461.186667pt;}
.y91{bottom:461.666667pt;}
.y47{bottom:468.226667pt;}
.y20{bottom:473.506667pt;}
.y82{bottom:484.226667pt;}
.yaf{bottom:486.626667pt;}
.y66{bottom:488.706667pt;}
.y1f{bottom:491.906667pt;}
.y90{bottom:493.986667pt;}
.y46{bottom:495.746667pt;}
.yae{bottom:505.026667pt;}
.y1e{bottom:510.306667pt;}
.y81{bottom:511.746667pt;}
.y65{bottom:516.386667pt;}
.y45{bottom:523.426667pt;}
.y1d{bottom:528.706667pt;}
.y80{bottom:539.453333pt;}
.yad{bottom:541.853333pt;}
.y64{bottom:543.933333pt;}
.y1c{bottom:547.133333pt;}
.y44{bottom:550.973333pt;}
.yac{bottom:560.253333pt;}
.y1b{bottom:565.373333pt;}
.y7f{bottom:566.973333pt;}
.y63{bottom:571.613333pt;}
.y43{bottom:578.653333pt;}
.y1a{bottom:583.773333pt;}
.y7e{bottom:594.653333pt;}
.yab{bottom:597.053333pt;}
.y62{bottom:599.133333pt;}
.y19{bottom:602.173333pt;}
.y42{bottom:606.173333pt;}
.yaa{bottom:615.453333pt;}
.y18{bottom:620.573333pt;}
.y7d{bottom:622.173333pt;}
.y61{bottom:626.813333pt;}
.y41{bottom:633.853333pt;}
.y17{bottom:638.973333pt;}
.y7c{bottom:649.853333pt;}
.ya9{bottom:652.253333pt;}
.y60{bottom:654.333333pt;}
.y16{bottom:657.373333pt;}
.y40{bottom:661.373333pt;}
.ya8{bottom:670.653333pt;}
.y15{bottom:675.773333pt;}
.y7b{bottom:677.373333pt;}
.y5f{bottom:682.013333pt;}
.y3f{bottom:688.893333pt;}
.ya7{bottom:689.053333pt;}
.y14{bottom:694.173333pt;}
.y7a{bottom:704.893333pt;}
.ya6{bottom:707.293333pt;}
.y5e{bottom:709.533333pt;}
.y8f{bottom:710.653333pt;}
.y13{bottom:712.573333pt;}
.y3e{bottom:716.573333pt;}
.ya5{bottom:725.693333pt;}
.y12{bottom:730.973333pt;}
.y79{bottom:732.573333pt;}
.y5d{bottom:737.213333pt;}
.y3d{bottom:744.093333pt;}
.y11{bottom:755.453333pt;}
.y78{bottom:760.093333pt;}
.ya4{bottom:762.493333pt;}
.y5c{bottom:764.733333pt;}
.y10{bottom:767.773333pt;}
.y3c{bottom:771.773333pt;}
.ya3{bottom:780.933333pt;}
.yf{bottom:786.213333pt;}
.y77{bottom:787.813333pt;}
.y5b{bottom:792.453333pt;}
.y3b{bottom:799.333333pt;}
.ye{bottom:810.693333pt;}
.y76{bottom:815.333333pt;}
.ya2{bottom:817.733333pt;}
.y5a{bottom:819.973333pt;}
.yd{bottom:823.013333pt;}
.y3a{bottom:827.013333pt;}
.ya1{bottom:836.133333pt;}
.yc{bottom:841.413333pt;}
.y75{bottom:843.013333pt;}
.y59{bottom:847.653333pt;}
.y39{bottom:854.533333pt;}
.yb{bottom:861.093333pt;}
.y74{bottom:872.613333pt;}
.y58{bottom:875.173333pt;}
.ya0{bottom:882.053333pt;}
.y38{bottom:882.213333pt;}
.ya{bottom:885.573333pt;}
.y57{bottom:902.853333pt;}
.y37{bottom:909.733333pt;}
.y9{bottom:910.053333pt;}
.y9f{bottom:911.813333pt;}
.y56{bottom:930.373333pt;}
.y8{bottom:934.693333pt;}
.y36{bottom:937.413333pt;}
.y9e{bottom:950.053333pt;}
.y55{bottom:958.053333pt;}
.y7{bottom:959.173333pt;}
.y35{bottom:964.933333pt;}
.y6{bottom:983.653333pt;}
.y54{bottom:985.573333pt;}
.y5{bottom:1008.293333pt;}
.y34{bottom:1010.693333pt;}
.y53{bottom:1013.280000pt;}
.h6{height:38.441250pt;}
.ha{height:43.031250pt;}
.h8{height:43.343750pt;}
.hf{height:46.593750pt;}
.h7{height:46.781250pt;}
.he{height:52.296250pt;}
.h2{height:52.785000pt;}
.hc{height:56.843750pt;}
.h5{height:57.375000pt;}
.h3{height:58.563750pt;}
.hd{height:62.761250pt;}
.hb{height:66.507188pt;}
.h9{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.xa{left:122.911988pt;}
.x6{left:137.466655pt;}
.x8{left:160.346655pt;}
.x7{left:161.466655pt;}
.xc{left:184.506655pt;}
.x2{left:214.906655pt;}
.x5{left:258.466655pt;}
.x4{left:259.586655pt;}
.x3{left:392.226655pt;}
.x9{left:415.773322pt;}
.xb{left:427.773322pt;}
}




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