
    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_3f7e470a9a3977074bf08e88.woff')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_8b90d9e5f759fcff797e34fd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_01429827ab3edf9009ffd8eb.woff')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_a72c27a34968526108ea5e5c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_773d52dde74cfa1ba0090bfe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920410;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_793d8e52bcf0e4e3d4ca96e3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_d2a7564ff6538afc7d985cae.woff')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;}
.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:-92.160000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsf{letter-spacing:-1.656000px;}
.ls6{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.ls4{letter-spacing:1.080000px;}
.ls3{letter-spacing:669.420000px;}
.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;}
}
.ws5{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws8{word-spacing:-16.344000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._18{margin-left:-14.400000px;}
._d{margin-left:-4.662000px;}
._6{margin-left:-2.808000px;}
._1{margin-left:-1.014720px;}
._0{width:1.434240px;}
._5{width:3.318720px;}
._e{width:4.584000px;}
._11{width:6.036000px;}
._c{width:7.920000px;}
._7{width:9.360000px;}
._8{width:10.759680px;}
._4{width:11.955840px;}
._3{width:13.446720px;}
._a{width:14.472000px;}
._9{width:16.200000px;}
._15{width:19.085760px;}
._b{width:20.094720px;}
._10{width:21.160320px;}
._12{width:22.752000px;}
._13{width:23.832000px;}
._1b{width:24.840000px;}
._1c{width:25.920000px;}
._14{width:27.072000px;}
._f{width:28.656000px;}
._16{width:30.822720px;}
._1d{width:32.534400px;}
._1e{width:34.416000px;}
._1f{width:35.784000px;}
._20{width:37.440000px;}
._19{width:48.096000px;}
._1a{width:49.464000px;}
._17{width:194.376000px;}
._2{width:327.836160px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(38,38,38);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:12.420000px;}
.y3{bottom:47.700000px;}
.y2{bottom:84.960000px;}
.y3c{bottom:103.320000px;}
.y9b{bottom:104.580000px;}
.y66{bottom:114.840000px;}
.y3b{bottom:116.820000px;}
.y89{bottom:125.280000px;}
.ya2{bottom:125.460000px;}
.yb9{bottom:134.136000px;}
.y9a{bottom:135.576000px;}
.ya1{bottom:145.836000px;}
.y65{bottom:146.016000px;}
.yb8{bottom:154.830000px;}
.y86{bottom:156.270000px;}
.y3a{bottom:161.130000px;}
.ya0{bottom:166.530000px;}
.y99{bottom:166.710000px;}
.y64{bottom:176.970000px;}
.y39{bottom:178.050000px;}
.y9f{bottom:187.230000px;}
.y85{bottom:187.410000px;}
.y38{bottom:195.330000px;}
.yb7{bottom:196.590000px;}
.y98{bottom:197.670000px;}
.y63{bottom:208.110000px;}
.y37{bottom:212.610000px;}
.yb6{bottom:217.290000px;}
.y84{bottom:218.370000px;}
.y97{bottom:228.810000px;}
.y36{bottom:229.710000px;}
.y62{bottom:239.070000px;}
.y35{bottom:247.350000px;}
.y9e{bottom:249.150000px;}
.y83{bottom:249.510000px;}
.yb5{bottom:255.990000px;}
.y96{bottom:259.770000px;}
.y34{bottom:264.630000px;}
.y61{bottom:270.210000px;}
.y82{bottom:280.470000px;}
.y33{bottom:287.130000px;}
.y95{bottom:290.910000px;}
.yb4{bottom:294.690000px;}
.y32{bottom:299.190000px;}
.y60{bottom:301.170000px;}
.y81{bottom:311.610000px;}
.y31{bottom:316.470000px;}
.y94{bottom:321.870000px;}
.y5f{bottom:332.310000px;}
.yb3{bottom:333.390000px;}
.y30{bottom:333.570000px;}
.y80{bottom:342.570000px;}
.y2f{bottom:350.850000px;}
.y93{bottom:353.010000px;}
.yb2{bottom:354.090000px;}
.y2e{bottom:356.070000px;}
.y5e{bottom:363.270000px;}
.y2d{bottom:368.130000px;}
.y7f{bottom:373.710000px;}
.y92{bottom:384.015000px;}
.y2c{bottom:385.455000px;}
.y5d{bottom:394.455000px;}
.yb1{bottom:395.715000px;}
.y2b{bottom:402.735000px;}
.y7e{bottom:404.715000px;}
.y91{bottom:415.155000px;}
.yb0{bottom:416.415000px;}
.y29{bottom:419.835000px;}
.y2a{bottom:425.055000px;}
.y5c{bottom:425.415000px;}
.y88{bottom:435.495000px;}
.y7d{bottom:435.855000px;}
.y28{bottom:437.835000px;}
.y90{bottom:446.115000px;}
.y5b{bottom:456.555000px;}
.yaf{bottom:458.175000px;}
.y87{bottom:466.455000px;}
.y7c{bottom:466.815000px;}
.y27{bottom:466.995000px;}
.y8f{bottom:477.255000px;}
.y5a{bottom:487.515000px;}
.y26{bottom:487.695000px;}
.y7b{bottom:497.955000px;}
.yae{bottom:499.935000px;}
.y8e{bottom:508.215000px;}
.y25{bottom:508.395000px;}
.y59{bottom:518.655000px;}
.yad{bottom:520.455000px;}
.y7a{bottom:528.915000px;}
.y24{bottom:529.095000px;}
.y8d{bottom:539.355000px;}
.y58{bottom:549.615000px;}
.y23{bottom:549.795000px;}
.y79{bottom:560.055000px;}
.yac{bottom:562.215000px;}
.y8c{bottom:569.955000px;}
.y22{bottom:570.495000px;}
.y57{bottom:580.395000px;}
.yab{bottom:582.915000px;}
.y78{bottom:591.015000px;}
.y21{bottom:591.195000px;}
.y8b{bottom:600.915000px;}
.y56{bottom:601.455000px;}
.y20{bottom:611.895000px;}
.y8a{bottom:621.795000px;}
.y77{bottom:621.975000px;}
.y55{bottom:622.155000px;}
.yaa{bottom:624.675000px;}
.y1f{bottom:632.595000px;}
.y54{bottom:642.885000px;}
.ya9{bottom:645.405000px;}
.y76{bottom:653.145000px;}
.y1e{bottom:653.325000px;}
.y53{bottom:663.585000px;}
.ya8{bottom:665.925000px;}
.y1d{bottom:674.025000px;}
.y75{bottom:684.105000px;}
.y52{bottom:684.285000px;}
.y1c{bottom:694.725000px;}
.y51{bottom:704.985000px;}
.ya7{bottom:707.685000px;}
.y74{bottom:715.245000px;}
.y1b{bottom:715.425000px;}
.y50{bottom:725.685000px;}
.ya6{bottom:728.385000px;}
.y1a{bottom:736.125000px;}
.y73{bottom:746.205000px;}
.y4f{bottom:746.385000px;}
.ya5{bottom:749.085000px;}
.y19{bottom:756.825000px;}
.y4e{bottom:767.085000px;}
.ya4{bottom:769.785000px;}
.y9d{bottom:776.985000px;}
.y72{bottom:777.345000px;}
.y18{bottom:777.525000px;}
.y4d{bottom:787.785000px;}
.ya3{bottom:790.485000px;}
.y17{bottom:798.225000px;}
.y9c{bottom:807.945000px;}
.y71{bottom:808.305000px;}
.y4c{bottom:808.485000px;}
.y16{bottom:818.925000px;}
.y4b{bottom:829.185000px;}
.y70{bottom:839.445000px;}
.y15{bottom:839.625000px;}
.y4a{bottom:849.885000px;}
.y14{bottom:860.325000px;}
.y6f{bottom:870.405000px;}
.y49{bottom:870.585000px;}
.y13{bottom:881.025000px;}
.y48{bottom:891.330000px;}
.y11{bottom:901.410000px;}
.y6e{bottom:901.590000px;}
.y4{bottom:903.210000px;}
.y12{bottom:907.350000px;}
.y47{bottom:912.030000px;}
.yf{bottom:922.110000px;}
.y10{bottom:928.050000px;}
.y6d{bottom:932.550000px;}
.y46{bottom:932.730000px;}
.ye{bottom:942.810000px;}
.yd{bottom:948.750000px;}
.y45{bottom:953.430000px;}
.y6c{bottom:963.690000px;}
.yc{bottom:965.850000px;}
.y44{bottom:974.130000px;}
.y6b{bottom:994.650000px;}
.y43{bottom:994.830000px;}
.yb{bottom:996.990000px;}
.y42{bottom:1015.530000px;}
.ya{bottom:1025.610000px;}
.y6a{bottom:1025.790000px;}
.y41{bottom:1036.230000px;}
.y9{bottom:1046.310000px;}
.y69{bottom:1056.750000px;}
.y40{bottom:1056.930000px;}
.y8{bottom:1067.550000px;}
.y3f{bottom:1077.630000px;}
.y68{bottom:1087.890000px;}
.y7{bottom:1091.670000px;}
.y3e{bottom:1098.330000px;}
.y6{bottom:1115.790000px;}
.y67{bottom:1118.850000px;}
.y3d{bottom:1119.030000px;}
.y1{bottom:1139.370000px;}
.h4{height:29.160000px;}
.ha{height:38.158594px;}
.h8{height:48.616875px;}
.h9{height:58.651172px;}
.h3{height:60.226875px;}
.hb{height:64.546875px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:84.898125px;}
.h7{height:105.996094px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.960000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.xe{left:131.435973px;}
.x10{left:132.515987px;}
.xf{left:136.295987px;}
.x7{left:158.609987px;}
.x4{left:162.389987px;}
.x13{left:181.649987px;}
.x12{left:191.549987px;}
.x11{left:231.149987px;}
.x5{left:322.994987px;}
.xd{left:343.694987px;}
.x8{left:361.694987px;}
.x6{left:467.924987px;}
.xc{left:478.544987px;}
.xa{left:515.984987px;}
.xb{left:566.564987px;}
.x9{left:802.079973px;}
.x1{left:808.019987px;}
.x3{left:830.700000px;}
@media print{
.v1{vertical-align:-81.920000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsf{letter-spacing:-1.472000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls3{letter-spacing:595.040000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws8{word-spacing:-14.528000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._18{margin-left:-12.800000pt;}
._d{margin-left:-4.144000pt;}
._6{margin-left:-2.496000pt;}
._1{margin-left:-0.901973pt;}
._0{width:1.274880pt;}
._5{width:2.949973pt;}
._e{width:4.074667pt;}
._11{width:5.365333pt;}
._c{width:7.040000pt;}
._7{width:8.320000pt;}
._8{width:9.564160pt;}
._4{width:10.627413pt;}
._3{width:11.952640pt;}
._a{width:12.864000pt;}
._9{width:14.400000pt;}
._15{width:16.965120pt;}
._b{width:17.861973pt;}
._10{width:18.809173pt;}
._12{width:20.224000pt;}
._13{width:21.184000pt;}
._1b{width:22.080000pt;}
._1c{width:23.040000pt;}
._14{width:24.064000pt;}
._f{width:25.472000pt;}
._16{width:27.397973pt;}
._1d{width:28.919467pt;}
._1e{width:30.592000pt;}
._1f{width:31.808000pt;}
._20{width:33.280000pt;}
._19{width:42.752000pt;}
._1a{width:43.968000pt;}
._17{width:172.778667pt;}
._2{width:291.409920pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:11.040000pt;}
.y3{bottom:42.400000pt;}
.y2{bottom:75.520000pt;}
.y3c{bottom:91.840000pt;}
.y9b{bottom:92.960000pt;}
.y66{bottom:102.080000pt;}
.y3b{bottom:103.840000pt;}
.y89{bottom:111.360000pt;}
.ya2{bottom:111.520000pt;}
.yb9{bottom:119.232000pt;}
.y9a{bottom:120.512000pt;}
.ya1{bottom:129.632000pt;}
.y65{bottom:129.792000pt;}
.yb8{bottom:137.626667pt;}
.y86{bottom:138.906667pt;}
.y3a{bottom:143.226667pt;}
.ya0{bottom:148.026667pt;}
.y99{bottom:148.186667pt;}
.y64{bottom:157.306667pt;}
.y39{bottom:158.266667pt;}
.y9f{bottom:166.426667pt;}
.y85{bottom:166.586667pt;}
.y38{bottom:173.626667pt;}
.yb7{bottom:174.746667pt;}
.y98{bottom:175.706667pt;}
.y63{bottom:184.986667pt;}
.y37{bottom:188.986667pt;}
.yb6{bottom:193.146667pt;}
.y84{bottom:194.106667pt;}
.y97{bottom:203.386667pt;}
.y36{bottom:204.186667pt;}
.y62{bottom:212.506667pt;}
.y35{bottom:219.866667pt;}
.y9e{bottom:221.466667pt;}
.y83{bottom:221.786667pt;}
.yb5{bottom:227.546667pt;}
.y96{bottom:230.906667pt;}
.y34{bottom:235.226667pt;}
.y61{bottom:240.186667pt;}
.y82{bottom:249.306667pt;}
.y33{bottom:255.226667pt;}
.y95{bottom:258.586667pt;}
.yb4{bottom:261.946667pt;}
.y32{bottom:265.946667pt;}
.y60{bottom:267.706667pt;}
.y81{bottom:276.986667pt;}
.y31{bottom:281.306667pt;}
.y94{bottom:286.106667pt;}
.y5f{bottom:295.386667pt;}
.yb3{bottom:296.346667pt;}
.y30{bottom:296.506667pt;}
.y80{bottom:304.506667pt;}
.y2f{bottom:311.866667pt;}
.y93{bottom:313.786667pt;}
.yb2{bottom:314.746667pt;}
.y2e{bottom:316.506667pt;}
.y5e{bottom:322.906667pt;}
.y2d{bottom:327.226667pt;}
.y7f{bottom:332.186667pt;}
.y92{bottom:341.346667pt;}
.y2c{bottom:342.626667pt;}
.y5d{bottom:350.626667pt;}
.yb1{bottom:351.746667pt;}
.y2b{bottom:357.986667pt;}
.y7e{bottom:359.746667pt;}
.y91{bottom:369.026667pt;}
.yb0{bottom:370.146667pt;}
.y29{bottom:373.186667pt;}
.y2a{bottom:377.826667pt;}
.y5c{bottom:378.146667pt;}
.y88{bottom:387.106667pt;}
.y7d{bottom:387.426667pt;}
.y28{bottom:389.186667pt;}
.y90{bottom:396.546667pt;}
.y5b{bottom:405.826667pt;}
.yaf{bottom:407.266667pt;}
.y87{bottom:414.626667pt;}
.y7c{bottom:414.946667pt;}
.y27{bottom:415.106667pt;}
.y8f{bottom:424.226667pt;}
.y5a{bottom:433.346667pt;}
.y26{bottom:433.506667pt;}
.y7b{bottom:442.626667pt;}
.yae{bottom:444.386667pt;}
.y8e{bottom:451.746667pt;}
.y25{bottom:451.906667pt;}
.y59{bottom:461.026667pt;}
.yad{bottom:462.626667pt;}
.y7a{bottom:470.146667pt;}
.y24{bottom:470.306667pt;}
.y8d{bottom:479.426667pt;}
.y58{bottom:488.546667pt;}
.y23{bottom:488.706667pt;}
.y79{bottom:497.826667pt;}
.yac{bottom:499.746667pt;}
.y8c{bottom:506.626667pt;}
.y22{bottom:507.106667pt;}
.y57{bottom:515.906667pt;}
.yab{bottom:518.146667pt;}
.y78{bottom:525.346667pt;}
.y21{bottom:525.506667pt;}
.y8b{bottom:534.146667pt;}
.y56{bottom:534.626667pt;}
.y20{bottom:543.906667pt;}
.y8a{bottom:552.706667pt;}
.y77{bottom:552.866667pt;}
.y55{bottom:553.026667pt;}
.yaa{bottom:555.266667pt;}
.y1f{bottom:562.306667pt;}
.y54{bottom:571.453333pt;}
.ya9{bottom:573.693333pt;}
.y76{bottom:580.573333pt;}
.y1e{bottom:580.733333pt;}
.y53{bottom:589.853333pt;}
.ya8{bottom:591.933333pt;}
.y1d{bottom:599.133333pt;}
.y75{bottom:608.093333pt;}
.y52{bottom:608.253333pt;}
.y1c{bottom:617.533333pt;}
.y51{bottom:626.653333pt;}
.ya7{bottom:629.053333pt;}
.y74{bottom:635.773333pt;}
.y1b{bottom:635.933333pt;}
.y50{bottom:645.053333pt;}
.ya6{bottom:647.453333pt;}
.y1a{bottom:654.333333pt;}
.y73{bottom:663.293333pt;}
.y4f{bottom:663.453333pt;}
.ya5{bottom:665.853333pt;}
.y19{bottom:672.733333pt;}
.y4e{bottom:681.853333pt;}
.ya4{bottom:684.253333pt;}
.y9d{bottom:690.653333pt;}
.y72{bottom:690.973333pt;}
.y18{bottom:691.133333pt;}
.y4d{bottom:700.253333pt;}
.ya3{bottom:702.653333pt;}
.y17{bottom:709.533333pt;}
.y9c{bottom:718.173333pt;}
.y71{bottom:718.493333pt;}
.y4c{bottom:718.653333pt;}
.y16{bottom:727.933333pt;}
.y4b{bottom:737.053333pt;}
.y70{bottom:746.173333pt;}
.y15{bottom:746.333333pt;}
.y4a{bottom:755.453333pt;}
.y14{bottom:764.733333pt;}
.y6f{bottom:773.693333pt;}
.y49{bottom:773.853333pt;}
.y13{bottom:783.133333pt;}
.y48{bottom:792.293333pt;}
.y11{bottom:801.253333pt;}
.y6e{bottom:801.413333pt;}
.y4{bottom:802.853333pt;}
.y12{bottom:806.533333pt;}
.y47{bottom:810.693333pt;}
.yf{bottom:819.653333pt;}
.y10{bottom:824.933333pt;}
.y6d{bottom:828.933333pt;}
.y46{bottom:829.093333pt;}
.ye{bottom:838.053333pt;}
.yd{bottom:843.333333pt;}
.y45{bottom:847.493333pt;}
.y6c{bottom:856.613333pt;}
.yc{bottom:858.533333pt;}
.y44{bottom:865.893333pt;}
.y6b{bottom:884.133333pt;}
.y43{bottom:884.293333pt;}
.yb{bottom:886.213333pt;}
.y42{bottom:902.693333pt;}
.ya{bottom:911.653333pt;}
.y6a{bottom:911.813333pt;}
.y41{bottom:921.093333pt;}
.y9{bottom:930.053333pt;}
.y69{bottom:939.333333pt;}
.y40{bottom:939.493333pt;}
.y8{bottom:948.933333pt;}
.y3f{bottom:957.893333pt;}
.y68{bottom:967.013333pt;}
.y7{bottom:970.373333pt;}
.y3e{bottom:976.293333pt;}
.y6{bottom:991.813333pt;}
.y67{bottom:994.533333pt;}
.y3d{bottom:994.693333pt;}
.y1{bottom:1012.773333pt;}
.h4{height:25.920000pt;}
.ha{height:33.918750pt;}
.h8{height:43.215000pt;}
.h9{height:52.134375pt;}
.h3{height:53.535000pt;}
.hb{height:57.375000pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:75.465000pt;}
.h7{height:94.218750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.520000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.xe{left:116.831976pt;}
.x10{left:117.791988pt;}
.xf{left:121.151988pt;}
.x7{left:140.986655pt;}
.x4{left:144.346655pt;}
.x13{left:161.466655pt;}
.x12{left:170.266655pt;}
.x11{left:205.466655pt;}
.x5{left:287.106655pt;}
.xd{left:305.506655pt;}
.x8{left:321.506655pt;}
.x6{left:415.933322pt;}
.xc{left:425.373322pt;}
.xa{left:458.653322pt;}
.xb{left:503.613322pt;}
.x9{left:712.959976pt;}
.x1{left:718.239988pt;}
.x3{left:738.400000pt;}
}




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