
    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_0192a7e3b99d36821c6ec406.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_61a2cadc16e2ecb568a7fed2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_d514272b47993cde921007d0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a49b1b84b7d972af7f7e22ce.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ef24600053dcbbcc692c16ba.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_31cf0dab02f4085b6c9edeac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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_f8f25a7ce4be0d266e1fa073.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls9{letter-spacing:-4.266000px;}
.lsa{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:21.546720px;}
.ls3{letter-spacing:687.240000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-9.504000px;}
._0{margin-left:-7.888320px;}
._5{margin-left:-6.742080px;}
._16{margin-left:-5.632800px;}
._9{margin-left:-4.222080px;}
._a{margin-left:-2.431200px;}
._2{margin-left:-1.321920px;}
._1{width:1.290720px;}
._3{width:2.923680px;}
._7{width:4.500000px;}
._10{width:5.641440px;}
._c{width:6.932160px;}
._b{width:8.545680px;}
._f{width:9.585600px;}
._17{width:10.601520px;}
._e{width:11.916240px;}
._d{width:13.529760px;}
._11{width:16.613280px;}
._12{width:17.748720px;}
._13{width:19.367280px;}
._15{width:20.542320px;}
._14{width:22.338000px;}
._1e{width:25.218720px;}
._1d{width:26.224320px;}
._1b{width:27.887040px;}
._19{width:29.425920px;}
._1f{width:30.482160px;}
._20{width:31.501440px;}
._1a{width:34.087200px;}
._1c{width:35.258400px;}
._18{width:55.517040px;}
._6{width:85.722000px;}
._4{width:746.796000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(149,79,114);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.240000px;}
.y90{bottom:11.880000px;}
.y8b{bottom:20.520000px;}
.ya{bottom:37.080000px;}
.y9{bottom:57.060000px;}
.y3e{bottom:75.816000px;}
.y73{bottom:82.116000px;}
.yb2{bottom:91.836000px;}
.y3d{bottom:93.096000px;}
.y72{bottom:99.396000px;}
.yb1{bottom:109.116000px;}
.y3c{bottom:110.376000px;}
.y71{bottom:116.496000px;}
.yb0{bottom:126.396000px;}
.y3b{bottom:127.656000px;}
.y70{bottom:133.776000px;}
.y87{bottom:137.556000px;}
.yaf{bottom:143.496000px;}
.y3a{bottom:144.936000px;}
.y6f{bottom:151.050000px;}
.y86{bottom:154.830000px;}
.yae{bottom:160.770000px;}
.y39{bottom:162.030000px;}
.y6e{bottom:168.330000px;}
.y85{bottom:172.110000px;}
.yad{bottom:178.050000px;}
.y38{bottom:179.310000px;}
.y6d{bottom:185.610000px;}
.y84{bottom:189.210000px;}
.yac{bottom:195.330000px;}
.y37{bottom:196.590000px;}
.y6c{bottom:202.890000px;}
.y83{bottom:206.490000px;}
.yab{bottom:212.610000px;}
.y36{bottom:213.870000px;}
.y6b{bottom:219.990000px;}
.y82{bottom:223.770000px;}
.yaa{bottom:229.890000px;}
.y35{bottom:231.150000px;}
.y6a{bottom:237.270000px;}
.y81{bottom:241.050000px;}
.ya9{bottom:246.990000px;}
.y34{bottom:248.250000px;}
.y69{bottom:254.550000px;}
.y80{bottom:258.330000px;}
.ya8{bottom:264.270000px;}
.y33{bottom:265.530000px;}
.y68{bottom:271.830000px;}
.y7f{bottom:275.430000px;}
.ya7{bottom:281.550000px;}
.y32{bottom:282.810000px;}
.y67{bottom:289.110000px;}
.y7e{bottom:292.710000px;}
.ya6{bottom:298.830000px;}
.y31{bottom:300.090000px;}
.y66{bottom:306.390000px;}
.y7d{bottom:309.990000px;}
.ya5{bottom:316.110000px;}
.y30{bottom:317.415000px;}
.y65{bottom:323.535000px;}
.y7c{bottom:327.315000px;}
.ya4{bottom:333.255000px;}
.y2f{bottom:334.695000px;}
.y64{bottom:340.815000px;}
.y7b{bottom:344.595000px;}
.ya3{bottom:350.535000px;}
.y2e{bottom:351.795000px;}
.y63{bottom:358.095000px;}
.y7a{bottom:361.875000px;}
.ya2{bottom:367.815000px;}
.y2d{bottom:369.075000px;}
.y62{bottom:375.375000px;}
.y79{bottom:378.975000px;}
.ya1{bottom:385.095000px;}
.y2c{bottom:386.355000px;}
.y61{bottom:392.655000px;}
.y78{bottom:396.255000px;}
.ya0{bottom:402.375000px;}
.y2b{bottom:405.795000px;}
.y60{bottom:409.935000px;}
.y77{bottom:413.535000px;}
.y9f{bottom:419.655000px;}
.y2a{bottom:423.075000px;}
.y5f{bottom:427.035000px;}
.y76{bottom:430.815000px;}
.y9e{bottom:436.755000px;}
.y29{bottom:440.355000px;}
.y5e{bottom:444.315000px;}
.y75{bottom:448.095000px;}
.y9d{bottom:454.035000px;}
.y28{bottom:457.635000px;}
.y5d{bottom:461.595000px;}
.y74{bottom:462.135000px;}
.y9c{bottom:471.315000px;}
.y27{bottom:474.915000px;}
.y5c{bottom:478.875000px;}
.y9b{bottom:488.595000px;}
.y26{bottom:492.195000px;}
.y5b{bottom:496.155000px;}
.y9a{bottom:505.875000px;}
.y25{bottom:509.295000px;}
.y5a{bottom:513.255000px;}
.y99{bottom:523.155000px;}
.y24{bottom:526.575000px;}
.y59{bottom:530.535000px;}
.y98{bottom:540.255000px;}
.y23{bottom:543.855000px;}
.y58{bottom:547.815000px;}
.y97{bottom:557.535000px;}
.y22{bottom:561.135000px;}
.y57{bottom:565.095000px;}
.y96{bottom:574.845000px;}
.y21{bottom:578.445000px;}
.y56{bottom:582.405000px;}
.y95{bottom:592.125000px;}
.y20{bottom:595.545000px;}
.y55{bottom:599.685000px;}
.y94{bottom:609.405000px;}
.y1f{bottom:612.825000px;}
.y54{bottom:616.785000px;}
.y93{bottom:626.685000px;}
.y1e{bottom:630.105000px;}
.y53{bottom:634.065000px;}
.y92{bottom:643.785000px;}
.y1d{bottom:647.385000px;}
.y52{bottom:651.345000px;}
.y91{bottom:661.065000px;}
.y1c{bottom:664.665000px;}
.y51{bottom:668.625000px;}
.y1b{bottom:681.945000px;}
.y50{bottom:685.905000px;}
.y8f{bottom:687.885000px;}
.y1a{bottom:699.045000px;}
.y4f{bottom:703.185000px;}
.y19{bottom:716.325000px;}
.y4e{bottom:720.285000px;}
.y18{bottom:733.605000px;}
.y4d{bottom:737.565000px;}
.y8e{bottom:742.605000px;}
.y17{bottom:750.885000px;}
.y4c{bottom:754.845000px;}
.y16{bottom:768.165000px;}
.y4b{bottom:772.125000px;}
.y15{bottom:787.605000px;}
.y4a{bottom:789.405000px;}
.y8d{bottom:797.325000px;}
.y14{bottom:805.245000px;}
.y49{bottom:806.505000px;}
.y48{bottom:823.830000px;}
.y13{bottom:824.370000px;}
.y47{bottom:841.110000px;}
.y12{bottom:843.270000px;}
.y8c{bottom:852.090000px;}
.y46{bottom:858.390000px;}
.y11{bottom:862.350000px;}
.y45{bottom:875.670000px;}
.y10{bottom:881.250000px;}
.y44{bottom:892.950000px;}
.yf{bottom:900.150000px;}
.y8a{bottom:906.810000px;}
.y43{bottom:910.050000px;}
.ye{bottom:919.230000px;}
.y42{bottom:927.330000px;}
.yd{bottom:937.770000px;}
.y41{bottom:944.610000px;}
.yc{bottom:955.770000px;}
.y40{bottom:961.890000px;}
.y88{bottom:963.150000px;}
.yb{bottom:976.470000px;}
.y3f{bottom:979.170000px;}
.y8{bottom:996.090000px;}
.y7{bottom:1011.570000px;}
.y6{bottom:1027.410000px;}
.y5{bottom:1045.410000px;}
.y4{bottom:1062.150000px;}
.y3{bottom:1104.300000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.ha{height:17.280000px;}
.hd{height:34.380000px;}
.hb{height:34.560000px;}
.hc{height:34.596000px;}
.h5{height:39.049805px;}
.h4{height:42.164648px;}
.h1{height:43.215117px;}
.he{height:43.302656px;}
.hf{height:43.506914px;}
.h7{height:46.736719px;}
.h8{height:47.901094px;}
.h9{height:49.255313px;}
.h3{height:50.800781px;}
.h2{height:52.066406px;}
.h6{height:71.613281px;}
.h0{height:1188.000000px;}
.w2{width:152.640000px;}
.w4{width:261.570000px;}
.w3{width:276.195000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:13.500000px;}
.x1{left:108.035986px;}
.x13{left:111.456000px;}
.x2{left:135.755986px;}
.x1a{left:141.875986px;}
.x1c{left:162.029986px;}
.x8{left:164.189986px;}
.x1b{left:168.869986px;}
.x4{left:170.849986px;}
.xb{left:228.449986px;}
.xe{left:255.089986px;}
.x15{left:267.150000px;}
.x17{left:299.414986px;}
.xd{left:329.654986px;}
.xa{left:338.834986px;}
.x12{left:360.074986px;}
.x19{left:374.834986px;}
.x18{left:379.154986px;}
.xc{left:384.734986px;}
.x9{left:391.034986px;}
.xf{left:398.954986px;}
.x6{left:409.034986px;}
.x10{left:420.734986px;}
.x5{left:424.874986px;}
.x7{left:459.074986px;}
.x3{left:531.104986px;}
.x16{left:546.405000px;}
.x11{left:792.869986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-3.792000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:19.152640pt;}
.ls3{letter-spacing:610.880000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-8.448000pt;}
._0{margin-left:-7.011840pt;}
._5{margin-left:-5.992960pt;}
._16{margin-left:-5.006933pt;}
._9{margin-left:-3.752960pt;}
._a{margin-left:-2.161067pt;}
._2{margin-left:-1.175040pt;}
._1{width:1.147307pt;}
._3{width:2.598827pt;}
._7{width:4.000000pt;}
._10{width:5.014613pt;}
._c{width:6.161920pt;}
._b{width:7.596160pt;}
._f{width:8.520533pt;}
._17{width:9.423573pt;}
._e{width:10.592213pt;}
._d{width:12.026453pt;}
._11{width:14.767360pt;}
._12{width:15.776640pt;}
._13{width:17.215360pt;}
._15{width:18.259840pt;}
._14{width:19.856000pt;}
._1e{width:22.416640pt;}
._1d{width:23.310507pt;}
._1b{width:24.788480pt;}
._19{width:26.156373pt;}
._1f{width:27.095253pt;}
._20{width:28.001280pt;}
._1a{width:30.299733pt;}
._1c{width:31.340800pt;}
._18{width:49.348480pt;}
._6{width:76.197333pt;}
._4{width:663.818667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:2.880000pt;}
.y90{bottom:10.560000pt;}
.y8b{bottom:18.240000pt;}
.ya{bottom:32.960000pt;}
.y9{bottom:50.720000pt;}
.y3e{bottom:67.392000pt;}
.y73{bottom:72.992000pt;}
.yb2{bottom:81.632000pt;}
.y3d{bottom:82.752000pt;}
.y72{bottom:88.352000pt;}
.yb1{bottom:96.992000pt;}
.y3c{bottom:98.112000pt;}
.y71{bottom:103.552000pt;}
.yb0{bottom:112.352000pt;}
.y3b{bottom:113.472000pt;}
.y70{bottom:118.912000pt;}
.y87{bottom:122.272000pt;}
.yaf{bottom:127.552000pt;}
.y3a{bottom:128.832000pt;}
.y6f{bottom:134.266667pt;}
.y86{bottom:137.626667pt;}
.yae{bottom:142.906667pt;}
.y39{bottom:144.026667pt;}
.y6e{bottom:149.626667pt;}
.y85{bottom:152.986667pt;}
.yad{bottom:158.266667pt;}
.y38{bottom:159.386667pt;}
.y6d{bottom:164.986667pt;}
.y84{bottom:168.186667pt;}
.yac{bottom:173.626667pt;}
.y37{bottom:174.746667pt;}
.y6c{bottom:180.346667pt;}
.y83{bottom:183.546667pt;}
.yab{bottom:188.986667pt;}
.y36{bottom:190.106667pt;}
.y6b{bottom:195.546667pt;}
.y82{bottom:198.906667pt;}
.yaa{bottom:204.346667pt;}
.y35{bottom:205.466667pt;}
.y6a{bottom:210.906667pt;}
.y81{bottom:214.266667pt;}
.ya9{bottom:219.546667pt;}
.y34{bottom:220.666667pt;}
.y69{bottom:226.266667pt;}
.y80{bottom:229.626667pt;}
.ya8{bottom:234.906667pt;}
.y33{bottom:236.026667pt;}
.y68{bottom:241.626667pt;}
.y7f{bottom:244.826667pt;}
.ya7{bottom:250.266667pt;}
.y32{bottom:251.386667pt;}
.y67{bottom:256.986667pt;}
.y7e{bottom:260.186667pt;}
.ya6{bottom:265.626667pt;}
.y31{bottom:266.746667pt;}
.y66{bottom:272.346667pt;}
.y7d{bottom:275.546667pt;}
.ya5{bottom:280.986667pt;}
.y30{bottom:282.146667pt;}
.y65{bottom:287.586667pt;}
.y7c{bottom:290.946667pt;}
.ya4{bottom:296.226667pt;}
.y2f{bottom:297.506667pt;}
.y64{bottom:302.946667pt;}
.y7b{bottom:306.306667pt;}
.ya3{bottom:311.586667pt;}
.y2e{bottom:312.706667pt;}
.y63{bottom:318.306667pt;}
.y7a{bottom:321.666667pt;}
.ya2{bottom:326.946667pt;}
.y2d{bottom:328.066667pt;}
.y62{bottom:333.666667pt;}
.y79{bottom:336.866667pt;}
.ya1{bottom:342.306667pt;}
.y2c{bottom:343.426667pt;}
.y61{bottom:349.026667pt;}
.y78{bottom:352.226667pt;}
.ya0{bottom:357.666667pt;}
.y2b{bottom:360.706667pt;}
.y60{bottom:364.386667pt;}
.y77{bottom:367.586667pt;}
.y9f{bottom:373.026667pt;}
.y2a{bottom:376.066667pt;}
.y5f{bottom:379.586667pt;}
.y76{bottom:382.946667pt;}
.y9e{bottom:388.226667pt;}
.y29{bottom:391.426667pt;}
.y5e{bottom:394.946667pt;}
.y75{bottom:398.306667pt;}
.y9d{bottom:403.586667pt;}
.y28{bottom:406.786667pt;}
.y5d{bottom:410.306667pt;}
.y74{bottom:410.786667pt;}
.y9c{bottom:418.946667pt;}
.y27{bottom:422.146667pt;}
.y5c{bottom:425.666667pt;}
.y9b{bottom:434.306667pt;}
.y26{bottom:437.506667pt;}
.y5b{bottom:441.026667pt;}
.y9a{bottom:449.666667pt;}
.y25{bottom:452.706667pt;}
.y5a{bottom:456.226667pt;}
.y99{bottom:465.026667pt;}
.y24{bottom:468.066667pt;}
.y59{bottom:471.586667pt;}
.y98{bottom:480.226667pt;}
.y23{bottom:483.426667pt;}
.y58{bottom:486.946667pt;}
.y97{bottom:495.586667pt;}
.y22{bottom:498.786667pt;}
.y57{bottom:502.306667pt;}
.y96{bottom:510.973333pt;}
.y21{bottom:514.173333pt;}
.y56{bottom:517.693333pt;}
.y95{bottom:526.333333pt;}
.y20{bottom:529.373333pt;}
.y55{bottom:533.053333pt;}
.y94{bottom:541.693333pt;}
.y1f{bottom:544.733333pt;}
.y54{bottom:548.253333pt;}
.y93{bottom:557.053333pt;}
.y1e{bottom:560.093333pt;}
.y53{bottom:563.613333pt;}
.y92{bottom:572.253333pt;}
.y1d{bottom:575.453333pt;}
.y52{bottom:578.973333pt;}
.y91{bottom:587.613333pt;}
.y1c{bottom:590.813333pt;}
.y51{bottom:594.333333pt;}
.y1b{bottom:606.173333pt;}
.y50{bottom:609.693333pt;}
.y8f{bottom:611.453333pt;}
.y1a{bottom:621.373333pt;}
.y4f{bottom:625.053333pt;}
.y19{bottom:636.733333pt;}
.y4e{bottom:640.253333pt;}
.y18{bottom:652.093333pt;}
.y4d{bottom:655.613333pt;}
.y8e{bottom:660.093333pt;}
.y17{bottom:667.453333pt;}
.y4c{bottom:670.973333pt;}
.y16{bottom:682.813333pt;}
.y4b{bottom:686.333333pt;}
.y15{bottom:700.093333pt;}
.y4a{bottom:701.693333pt;}
.y8d{bottom:708.733333pt;}
.y14{bottom:715.773333pt;}
.y49{bottom:716.893333pt;}
.y48{bottom:732.293333pt;}
.y13{bottom:732.773333pt;}
.y47{bottom:747.653333pt;}
.y12{bottom:749.573333pt;}
.y8c{bottom:757.413333pt;}
.y46{bottom:763.013333pt;}
.y11{bottom:766.533333pt;}
.y45{bottom:778.373333pt;}
.y10{bottom:783.333333pt;}
.y44{bottom:793.733333pt;}
.yf{bottom:800.133333pt;}
.y8a{bottom:806.053333pt;}
.y43{bottom:808.933333pt;}
.ye{bottom:817.093333pt;}
.y42{bottom:824.293333pt;}
.yd{bottom:833.573333pt;}
.y41{bottom:839.653333pt;}
.yc{bottom:849.573333pt;}
.y40{bottom:855.013333pt;}
.y88{bottom:856.133333pt;}
.yb{bottom:867.973333pt;}
.y3f{bottom:870.373333pt;}
.y8{bottom:885.413333pt;}
.y7{bottom:899.173333pt;}
.y6{bottom:913.253333pt;}
.y5{bottom:929.253333pt;}
.y4{bottom:944.133333pt;}
.y3{bottom:981.600000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.ha{height:15.360000pt;}
.hd{height:30.560000pt;}
.hb{height:30.720000pt;}
.hc{height:30.752000pt;}
.h5{height:34.710938pt;}
.h4{height:37.479688pt;}
.h1{height:38.413438pt;}
.he{height:38.491250pt;}
.hf{height:38.672812pt;}
.h7{height:41.543750pt;}
.h8{height:42.578750pt;}
.h9{height:43.782500pt;}
.h3{height:45.156250pt;}
.h2{height:46.281250pt;}
.h6{height:63.656250pt;}
.h0{height:1056.000000pt;}
.w2{width:135.680000pt;}
.w4{width:232.506667pt;}
.w3{width:245.506667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:12.000000pt;}
.x1{left:96.031988pt;}
.x13{left:99.072000pt;}
.x2{left:120.671988pt;}
.x1a{left:126.111988pt;}
.x1c{left:144.026655pt;}
.x8{left:145.946655pt;}
.x1b{left:150.106655pt;}
.x4{left:151.866655pt;}
.xb{left:203.066655pt;}
.xe{left:226.746655pt;}
.x15{left:237.466667pt;}
.x17{left:266.146655pt;}
.xd{left:293.026655pt;}
.xa{left:301.186655pt;}
.x12{left:320.066655pt;}
.x19{left:333.186655pt;}
.x18{left:337.026655pt;}
.xc{left:341.986655pt;}
.x9{left:347.586655pt;}
.xf{left:354.626655pt;}
.x6{left:363.586655pt;}
.x10{left:373.986655pt;}
.x5{left:377.666655pt;}
.x7{left:408.066655pt;}
.x3{left:472.093321pt;}
.x16{left:485.693333pt;}
.x11{left:704.773321pt;}
}




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