
    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_0fe2659882fbbc6fe5aa979f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_383808972851c1b800f8a487.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9d241d9ad7d7eb0292a5f47a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_c9fae66c38cb1fc05b238969.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_0ccacd3f9bfadd30d13d7961.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5c9b34e54ed545ca72a6ba19.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b16d053acd432e70771a4522.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8050b4d5bf9e70c4fdba07c2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_39e46ce1fdd8c5745c90fae6.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v2{vertical-align:-96.600000px;}
.v1{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.552000px;}
.ls4{letter-spacing:-0.168000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.228000px;}
.ls6{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.294000px;}
.lsb{letter-spacing:0.600000px;}
.ls2{letter-spacing:25.140000px;}
.ls1{letter-spacing:37.860000px;}
.lsa{letter-spacing:40.848000px;}
.ls0{letter-spacing:87.900000px;}
.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;}
}
.ws1{word-spacing:-24.000000px;}
.ws5{word-spacing:-21.228000px;}
.ws4{word-spacing:-21.048000px;}
.ws2{word-spacing:-21.000000px;}
.ws6{word-spacing:-20.448000px;}
.ws0{word-spacing:-17.832000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-5.796000px;}
._c{margin-left:-4.704000px;}
._17{margin-left:-3.528000px;}
._9{margin-left:-2.100000px;}
._4{margin-left:-1.008000px;}
._0{width:1.092000px;}
._b{width:2.616000px;}
._16{width:3.636000px;}
._19{width:5.004000px;}
._8{width:6.048000px;}
._7{width:7.056000px;}
._f{width:8.064000px;}
._15{width:9.600000px;}
._2a{width:10.752000px;}
._2b{width:12.348000px;}
._21{width:14.112000px;}
._13{width:16.206000px;}
._2{width:17.718000px;}
._1{width:18.906000px;}
._5{width:19.992000px;}
._a{width:22.260000px;}
._3{width:24.528000px;}
._14{width:25.872000px;}
._18{width:27.048000px;}
._1a{width:28.224000px;}
._1d{width:29.376000px;}
._e{width:31.080000px;}
._22{width:32.424000px;}
._24{width:33.504000px;}
._1c{width:34.656000px;}
._1b{width:35.928000px;}
._12{width:37.632000px;}
._1f{width:38.976000px;}
._2e{width:44.046000px;}
._2d{width:45.174000px;}
._23{width:47.712000px;}
._6{width:50.400000px;}
._1e{width:68.214000px;}
._11{width:83.076000px;}
._10{width:84.084000px;}
._20{width:115.128000px;}
._25{width:171.612000px;}
._27{width:174.552000px;}
._28{width:297.696000px;}
._29{width:528.360000px;}
._26{width:968.520000px;}
._2c{width:1193.784000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:6.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.900000px;}
.ya{bottom:5.250000px;}
.y3{bottom:5.700000px;}
.y9{bottom:7.350000px;}
.y6{bottom:9.000000px;}
.yb{bottom:11.850000px;}
.y5{bottom:20.550000px;}
.y8{bottom:36.337500px;}
.y61{bottom:90.937500px;}
.y54{bottom:99.487500px;}
.y89{bottom:112.687500px;}
.y60{bottom:115.087500px;}
.y30{bottom:116.887500px;}
.y53{bottom:127.237500px;}
.y88{bottom:136.837500px;}
.y5f{bottom:139.237500px;}
.y2f{bottom:144.637500px;}
.y52{bottom:154.995000px;}
.y87{bottom:160.995000px;}
.y5e{bottom:163.395000px;}
.y2e{bottom:172.545000px;}
.y51{bottom:182.745000px;}
.y86{bottom:185.130000px;}
.y5d{bottom:187.545000px;}
.y2d{bottom:200.295000px;}
.y85{bottom:209.295000px;}
.y50{bottom:210.495000px;}
.y5c{bottom:211.695000px;}
.y2c{bottom:228.045000px;}
.y84{bottom:233.445000px;}
.y5b{bottom:235.845000px;}
.y4f{bottom:238.245000px;}
.y2b{bottom:255.795000px;}
.y83{bottom:257.595000px;}
.y5a{bottom:259.995000px;}
.y4e{bottom:266.130000px;}
.y82{bottom:281.745000px;}
.y2a{bottom:283.545000px;}
.y59{bottom:284.145000px;}
.y4d{bottom:293.880000px;}
.y81{bottom:305.895000px;}
.y58{bottom:308.295000px;}
.y29{bottom:311.295000px;}
.y4c{bottom:321.645000px;}
.y80{bottom:330.045000px;}
.y57{bottom:332.445000px;}
.y28{bottom:339.045000px;}
.y4b{bottom:349.395000px;}
.y7f{bottom:354.195000px;}
.y56{bottom:356.595000px;}
.y27{bottom:366.945000px;}
.y4a{bottom:377.145000px;}
.y7e{bottom:378.330000px;}
.y55{bottom:380.775000px;}
.y26{bottom:394.725000px;}
.y7d{bottom:402.525000px;}
.y49{bottom:404.925000px;}
.y25{bottom:422.475000px;}
.y7c{bottom:426.675000px;}
.y48{bottom:432.675000px;}
.y24{bottom:450.225000px;}
.y7b{bottom:450.825000px;}
.y47{bottom:460.575000px;}
.y7a{bottom:474.975000px;}
.y23{bottom:477.975000px;}
.y46{bottom:488.325000px;}
.y79{bottom:499.125000px;}
.y22{bottom:505.725000px;}
.y45{bottom:516.075000px;}
.y78{bottom:523.275000px;}
.y21{bottom:533.475000px;}
.y44{bottom:543.825000px;}
.y77{bottom:547.425000px;}
.y20{bottom:561.225000px;}
.y43{bottom:571.575000px;}
.y1f{bottom:589.125000px;}
.y76{bottom:595.725000px;}
.y42{bottom:599.325000px;}
.y1e{bottom:616.875000px;}
.y75{bottom:619.875000px;}
.y41{bottom:627.075000px;}
.y74{bottom:644.025000px;}
.y1d{bottom:644.625000px;}
.y40{bottom:654.825000px;}
.y73{bottom:668.175000px;}
.y1c{bottom:672.375000px;}
.y3f{bottom:682.725000px;}
.y72{bottom:692.325000px;}
.y1b{bottom:700.125000px;}
.y3e{bottom:710.475000px;}
.y71{bottom:716.475000px;}
.y1a{bottom:727.875000px;}
.y3d{bottom:738.270000px;}
.y70{bottom:740.670000px;}
.y19{bottom:755.670000px;}
.y6f{bottom:764.820000px;}
.y3c{bottom:766.020000px;}
.y18{bottom:783.570000px;}
.y6e{bottom:788.955000px;}
.y3b{bottom:793.770000px;}
.y17{bottom:811.320000px;}
.y6d{bottom:813.120000px;}
.y3a{bottom:821.520000px;}
.y6c{bottom:837.270000px;}
.y16{bottom:839.070000px;}
.y39{bottom:849.270000px;}
.y6b{bottom:861.420000px;}
.y15{bottom:866.820000px;}
.y38{bottom:877.170000px;}
.y14{bottom:894.570000px;}
.y37{bottom:904.920000px;}
.y6a{bottom:909.720000px;}
.y13{bottom:922.320000px;}
.y36{bottom:932.670000px;}
.y69{bottom:933.870000px;}
.y12{bottom:950.070000px;}
.y68{bottom:958.020000px;}
.y35{bottom:960.420000px;}
.y11{bottom:977.820000px;}
.y67{bottom:982.170000px;}
.y34{bottom:988.170000px;}
.y10{bottom:1005.720000px;}
.y66{bottom:1006.320000px;}
.y33{bottom:1015.920000px;}
.y65{bottom:1030.470000px;}
.yf{bottom:1033.470000px;}
.y32{bottom:1043.670000px;}
.y64{bottom:1054.620000px;}
.ye{bottom:1061.220000px;}
.y31{bottom:1071.420000px;}
.y63{bottom:1078.770000px;}
.yd{bottom:1099.350000px;}
.y62{bottom:1102.950000px;}
.yc{bottom:1127.100000px;}
.y7{bottom:1151.100000px;}
.y4{bottom:1166.850000px;}
.y1{bottom:1199.550000px;}
.h6{height:14.962500px;}
.h2{height:20.700000px;}
.h5{height:21.900000px;}
.h8{height:27.600000px;}
.h4{height:53.709961px;}
.hd{height:59.267578px;}
.hf{height:61.400391px;}
.h7{height:65.645508px;}
.h9{height:70.664062px;}
.h3{height:72.562500px;}
.h10{height:75.304688px;}
.he{height:82.400391px;}
.hb{height:82.441406px;}
.hc{height:84.656250px;}
.h11{height:86.338763px;}
.ha{height:96.750000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:44.250000px;}
.w6{width:54.150000px;}
.w5{width:742.905000px;}
.w2{width:840.120000px;}
.w4{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.350000px;}
.x6{left:8.535000px;}
.xb{left:15.000000px;}
.x4{left:35.535000px;}
.x9{left:39.900000px;}
.x8{left:54.600000px;}
.x2{left:64.050000px;}
.x7{left:85.049987px;}
.x14{left:106.349987px;}
.xc{left:117.749987px;}
.x12{left:138.187487px;}
.xd{left:145.087487px;}
.x11{left:190.829987px;}
.x10{left:286.994987px;}
.x13{left:289.529987px;}
.xe{left:386.924987px;}
.x5{left:420.075000px;}
.xf{left:446.474987px;}
.xa{left:797.505000px;}
.x3{left:844.470000px;}
@media print{
.v2{vertical-align:-85.866667pt;}
.v1{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.490667pt;}
.ls4{letter-spacing:-0.149333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.202667pt;}
.ls6{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.261333pt;}
.lsb{letter-spacing:0.533333pt;}
.ls2{letter-spacing:22.346667pt;}
.ls1{letter-spacing:33.653333pt;}
.lsa{letter-spacing:36.309333pt;}
.ls0{letter-spacing:78.133333pt;}
.ws1{word-spacing:-21.333333pt;}
.ws5{word-spacing:-18.869333pt;}
.ws4{word-spacing:-18.709333pt;}
.ws2{word-spacing:-18.666667pt;}
.ws6{word-spacing:-18.176000pt;}
.ws0{word-spacing:-15.850667pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-5.152000pt;}
._c{margin-left:-4.181333pt;}
._17{margin-left:-3.136000pt;}
._9{margin-left:-1.866667pt;}
._4{margin-left:-0.896000pt;}
._0{width:0.970667pt;}
._b{width:2.325333pt;}
._16{width:3.232000pt;}
._19{width:4.448000pt;}
._8{width:5.376000pt;}
._7{width:6.272000pt;}
._f{width:7.168000pt;}
._15{width:8.533333pt;}
._2a{width:9.557333pt;}
._2b{width:10.976000pt;}
._21{width:12.544000pt;}
._13{width:14.405333pt;}
._2{width:15.749333pt;}
._1{width:16.805333pt;}
._5{width:17.770667pt;}
._a{width:19.786667pt;}
._3{width:21.802667pt;}
._14{width:22.997333pt;}
._18{width:24.042667pt;}
._1a{width:25.088000pt;}
._1d{width:26.112000pt;}
._e{width:27.626667pt;}
._22{width:28.821333pt;}
._24{width:29.781333pt;}
._1c{width:30.805333pt;}
._1b{width:31.936000pt;}
._12{width:33.450667pt;}
._1f{width:34.645333pt;}
._2e{width:39.152000pt;}
._2d{width:40.154667pt;}
._23{width:42.410667pt;}
._6{width:44.800000pt;}
._1e{width:60.634667pt;}
._11{width:73.845333pt;}
._10{width:74.741333pt;}
._20{width:102.336000pt;}
._25{width:152.544000pt;}
._27{width:155.157333pt;}
._28{width:264.618667pt;}
._29{width:469.653333pt;}
._26{width:860.906667pt;}
._2c{width:1061.141333pt;}
.fs2{font-size:5.333333pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.466667pt;}
.ya{bottom:4.666667pt;}
.y3{bottom:5.066667pt;}
.y9{bottom:6.533333pt;}
.y6{bottom:8.000000pt;}
.yb{bottom:10.533333pt;}
.y5{bottom:18.266667pt;}
.y8{bottom:32.300000pt;}
.y61{bottom:80.833333pt;}
.y54{bottom:88.433333pt;}
.y89{bottom:100.166667pt;}
.y60{bottom:102.300000pt;}
.y30{bottom:103.900000pt;}
.y53{bottom:113.100000pt;}
.y88{bottom:121.633333pt;}
.y5f{bottom:123.766667pt;}
.y2f{bottom:128.566667pt;}
.y52{bottom:137.773333pt;}
.y87{bottom:143.106667pt;}
.y5e{bottom:145.240000pt;}
.y2e{bottom:153.373333pt;}
.y51{bottom:162.440000pt;}
.y86{bottom:164.560000pt;}
.y5d{bottom:166.706667pt;}
.y2d{bottom:178.040000pt;}
.y85{bottom:186.040000pt;}
.y50{bottom:187.106667pt;}
.y5c{bottom:188.173333pt;}
.y2c{bottom:202.706667pt;}
.y84{bottom:207.506667pt;}
.y5b{bottom:209.640000pt;}
.y4f{bottom:211.773333pt;}
.y2b{bottom:227.373333pt;}
.y83{bottom:228.973333pt;}
.y5a{bottom:231.106667pt;}
.y4e{bottom:236.560000pt;}
.y82{bottom:250.440000pt;}
.y2a{bottom:252.040000pt;}
.y59{bottom:252.573333pt;}
.y4d{bottom:261.226667pt;}
.y81{bottom:271.906667pt;}
.y58{bottom:274.040000pt;}
.y29{bottom:276.706667pt;}
.y4c{bottom:285.906667pt;}
.y80{bottom:293.373333pt;}
.y57{bottom:295.506667pt;}
.y28{bottom:301.373333pt;}
.y4b{bottom:310.573333pt;}
.y7f{bottom:314.840000pt;}
.y56{bottom:316.973333pt;}
.y27{bottom:326.173333pt;}
.y4a{bottom:335.240000pt;}
.y7e{bottom:336.293333pt;}
.y55{bottom:338.466667pt;}
.y26{bottom:350.866667pt;}
.y7d{bottom:357.800000pt;}
.y49{bottom:359.933333pt;}
.y25{bottom:375.533333pt;}
.y7c{bottom:379.266667pt;}
.y48{bottom:384.600000pt;}
.y24{bottom:400.200000pt;}
.y7b{bottom:400.733333pt;}
.y47{bottom:409.400000pt;}
.y7a{bottom:422.200000pt;}
.y23{bottom:424.866667pt;}
.y46{bottom:434.066667pt;}
.y79{bottom:443.666667pt;}
.y22{bottom:449.533333pt;}
.y45{bottom:458.733333pt;}
.y78{bottom:465.133333pt;}
.y21{bottom:474.200000pt;}
.y44{bottom:483.400000pt;}
.y77{bottom:486.600000pt;}
.y20{bottom:498.866667pt;}
.y43{bottom:508.066667pt;}
.y1f{bottom:523.666667pt;}
.y76{bottom:529.533333pt;}
.y42{bottom:532.733333pt;}
.y1e{bottom:548.333333pt;}
.y75{bottom:551.000000pt;}
.y41{bottom:557.400000pt;}
.y74{bottom:572.466667pt;}
.y1d{bottom:573.000000pt;}
.y40{bottom:582.066667pt;}
.y73{bottom:593.933333pt;}
.y1c{bottom:597.666667pt;}
.y3f{bottom:606.866667pt;}
.y72{bottom:615.400000pt;}
.y1b{bottom:622.333333pt;}
.y3e{bottom:631.533333pt;}
.y71{bottom:636.866667pt;}
.y1a{bottom:647.000000pt;}
.y3d{bottom:656.240000pt;}
.y70{bottom:658.373333pt;}
.y19{bottom:671.706667pt;}
.y6f{bottom:679.840000pt;}
.y3c{bottom:680.906667pt;}
.y18{bottom:696.506667pt;}
.y6e{bottom:701.293333pt;}
.y3b{bottom:705.573333pt;}
.y17{bottom:721.173333pt;}
.y6d{bottom:722.773333pt;}
.y3a{bottom:730.240000pt;}
.y6c{bottom:744.240000pt;}
.y16{bottom:745.840000pt;}
.y39{bottom:754.906667pt;}
.y6b{bottom:765.706667pt;}
.y15{bottom:770.506667pt;}
.y38{bottom:779.706667pt;}
.y14{bottom:795.173333pt;}
.y37{bottom:804.373333pt;}
.y6a{bottom:808.640000pt;}
.y13{bottom:819.840000pt;}
.y36{bottom:829.040000pt;}
.y69{bottom:830.106667pt;}
.y12{bottom:844.506667pt;}
.y68{bottom:851.573333pt;}
.y35{bottom:853.706667pt;}
.y11{bottom:869.173333pt;}
.y67{bottom:873.040000pt;}
.y34{bottom:878.373333pt;}
.y10{bottom:893.973333pt;}
.y66{bottom:894.506667pt;}
.y33{bottom:903.040000pt;}
.y65{bottom:915.973333pt;}
.yf{bottom:918.640000pt;}
.y32{bottom:927.706667pt;}
.y64{bottom:937.440000pt;}
.ye{bottom:943.306667pt;}
.y31{bottom:952.373333pt;}
.y63{bottom:958.906667pt;}
.yd{bottom:977.200000pt;}
.y62{bottom:980.400000pt;}
.yc{bottom:1001.866667pt;}
.y7{bottom:1023.200000pt;}
.y4{bottom:1037.200000pt;}
.y1{bottom:1066.266667pt;}
.h6{height:13.300000pt;}
.h2{height:18.400000pt;}
.h5{height:19.466667pt;}
.h8{height:24.533333pt;}
.h4{height:47.742188pt;}
.hd{height:52.682292pt;}
.hf{height:54.578125pt;}
.h7{height:58.351562pt;}
.h9{height:62.812500pt;}
.h3{height:64.500000pt;}
.h10{height:66.937500pt;}
.he{height:73.244792pt;}
.hb{height:73.281250pt;}
.hc{height:75.250000pt;}
.h11{height:76.745567pt;}
.ha{height:86.000000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:39.333333pt;}
.w6{width:48.133333pt;}
.w5{width:660.360000pt;}
.w2{width:746.773333pt;}
.w4{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.866667pt;}
.x6{left:7.586667pt;}
.xb{left:13.333333pt;}
.x4{left:31.586667pt;}
.x9{left:35.466667pt;}
.x8{left:48.533333pt;}
.x2{left:56.933333pt;}
.x7{left:75.599988pt;}
.x14{left:94.533322pt;}
.xc{left:104.666655pt;}
.x12{left:122.833322pt;}
.xd{left:128.966655pt;}
.x11{left:169.626655pt;}
.x10{left:255.106655pt;}
.x13{left:257.359988pt;}
.xe{left:343.933322pt;}
.x5{left:373.400000pt;}
.xf{left:396.866655pt;}
.xa{left:708.893333pt;}
.x3{left:750.640000pt;}
}




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