
    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_af570fa66881e7f8ee2e3b6a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_f3f6486465dcba88e4f70565.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')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_8c1d2292e156124a613aa201.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_ba2381787eaf07e14e50f8a3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a871cb2dee63c3bd912c1519.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:4.500000px;}
.ls7{letter-spacing:16.506720px;}
.ls5{letter-spacing:46.002720px;}
.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:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-3.925200px;}
._6{margin-left:-2.230080px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._8{width:2.919120px;}
._2{width:3.960960px;}
._b{width:5.071920px;}
._5{width:6.752880px;}
._9{width:8.665200px;}
._d{width:9.740880px;}
._7{width:11.175120px;}
._c{width:12.264960px;}
._a{width:13.318800px;}
._f{width:16.044720px;}
._1b{width:17.197200px;}
._13{width:18.517920px;}
._12{width:19.601280px;}
._1a{width:21.334320px;}
._19{width:23.127120px;}
._18{width:24.621120px;}
._1c{width:26.512080px;}
._16{width:27.541680px;}
._22{width:29.103120px;}
._2d{width:33.816480px;}
._1d{width:35.557200px;}
._20{width:37.409760px;}
._17{width:39.433920px;}
._29{width:40.748640px;}
._14{width:47.808000px;}
._27{width:54.612960px;}
._26{width:55.935360px;}
._10{width:63.644400px;}
._11{width:65.429520px;}
._28{width:68.843520px;}
._25{width:80.078400px;}
._1f{width:83.357520px;}
._2b{width:120.169680px;}
._2a{width:121.193280px;}
._1e{width:122.448240px;}
._4{width:136.056000px;}
._24{width:146.940240px;}
._23{width:147.965760px;}
._15{width:179.810160px;}
._21{width:189.610800px;}
._2c{width:244.709520px;}
._3{width:636.906000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.240000px;}
.y80{bottom:3.285000px;}
.y7c{bottom:20.340000px;}
.y78{bottom:20.520000px;}
.y7f{bottom:20.565000px;}
.yc{bottom:36.720000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.y9d{bottom:113.796000px;}
.y94{bottom:117.936000px;}
.y41{bottom:120.276000px;}
.y93{bottom:120.816000px;}
.y76{bottom:135.036000px;}
.y40{bottom:137.556000px;}
.y92{bottom:138.096000px;}
.ybb{bottom:142.596000px;}
.y9c{bottom:145.476000px;}
.y75{bottom:152.310000px;}
.y3f{bottom:154.650000px;}
.y91{bottom:155.370000px;}
.yba{bottom:159.870000px;}
.y9b{bottom:162.750000px;}
.y74{bottom:169.590000px;}
.y3e{bottom:171.930000px;}
.y90{bottom:172.470000px;}
.yb9{bottom:176.970000px;}
.y9a{bottom:180.030000px;}
.y73{bottom:186.870000px;}
.y3d{bottom:189.210000px;}
.y8f{bottom:189.750000px;}
.yb8{bottom:194.250000px;}
.y99{bottom:197.310000px;}
.y72{bottom:204.150000px;}
.y3c{bottom:206.490000px;}
.y8e{bottom:207.030000px;}
.yb7{bottom:211.530000px;}
.y98{bottom:214.410000px;}
.y71{bottom:221.250000px;}
.y3b{bottom:223.770000px;}
.y8d{bottom:224.310000px;}
.yb6{bottom:228.810000px;}
.y97{bottom:231.690000px;}
.y70{bottom:238.530000px;}
.y3a{bottom:241.050000px;}
.y8c{bottom:241.590000px;}
.yb5{bottom:246.090000px;}
.y96{bottom:248.970000px;}
.y6f{bottom:255.810000px;}
.y39{bottom:258.150000px;}
.y8b{bottom:258.870000px;}
.y95{bottom:263.010000px;}
.yb4{bottom:263.370000px;}
.y6e{bottom:273.090000px;}
.y38{bottom:275.430000px;}
.y8a{bottom:275.970000px;}
.yb3{bottom:280.470000px;}
.y6d{bottom:290.370000px;}
.y37{bottom:292.710000px;}
.y89{bottom:293.250000px;}
.yb2{bottom:297.750000px;}
.y6c{bottom:307.650000px;}
.y36{bottom:309.990000px;}
.y88{bottom:310.530000px;}
.yb1{bottom:315.030000px;}
.y6b{bottom:324.750000px;}
.y35{bottom:327.270000px;}
.y87{bottom:327.810000px;}
.yb0{bottom:332.310000px;}
.y6a{bottom:342.075000px;}
.y34{bottom:344.595000px;}
.y86{bottom:345.135000px;}
.yaf{bottom:349.635000px;}
.y85{bottom:359.175000px;}
.y69{bottom:359.355000px;}
.y33{bottom:361.695000px;}
.yae{bottom:366.915000px;}
.y68{bottom:376.635000px;}
.y32{bottom:378.975000px;}
.yad{bottom:384.015000px;}
.y67{bottom:393.915000px;}
.y31{bottom:396.255000px;}
.yac{bottom:398.055000px;}
.y66{bottom:411.195000px;}
.y30{bottom:413.535000px;}
.y65{bottom:428.295000px;}
.y2f{bottom:430.815000px;}
.y64{bottom:445.575000px;}
.y2e{bottom:448.095000px;}
.y63{bottom:462.855000px;}
.y2d{bottom:465.195000px;}
.y62{bottom:480.135000px;}
.y2c{bottom:482.475000px;}
.y61{bottom:497.415000px;}
.y2b{bottom:499.755000px;}
.y60{bottom:514.515000px;}
.y2a{bottom:517.035000px;}
.y5f{bottom:531.795000px;}
.y29{bottom:534.315000px;}
.y5e{bottom:549.075000px;}
.y28{bottom:551.415000px;}
.y5d{bottom:566.355000px;}
.y27{bottom:571.035000px;}
.y5c{bottom:583.635000px;}
.y26{bottom:588.315000px;}
.y5b{bottom:600.915000px;}
.y25{bottom:605.445000px;}
.y5a{bottom:618.045000px;}
.y24{bottom:622.725000px;}
.y59{bottom:635.325000px;}
.y23{bottom:640.005000px;}
.y58{bottom:652.605000px;}
.y22{bottom:657.285000px;}
.y57{bottom:669.885000px;}
.y21{bottom:674.565000px;}
.y56{bottom:687.165000px;}
.y20{bottom:691.845000px;}
.y55{bottom:704.445000px;}
.y1f{bottom:708.945000px;}
.y54{bottom:721.545000px;}
.y1e{bottom:726.225000px;}
.y53{bottom:738.825000px;}
.y1d{bottom:743.505000px;}
.yab{bottom:752.325000px;}
.y52{bottom:756.105000px;}
.y1c{bottom:760.785000px;}
.yaa{bottom:769.605000px;}
.y51{bottom:773.385000px;}
.y1b{bottom:778.065000px;}
.ya9{bottom:786.885000px;}
.y50{bottom:790.665000px;}
.y1a{bottom:795.345000px;}
.y84{bottom:803.445000px;}
.ya8{bottom:804.165000px;}
.y4f{bottom:807.945000px;}
.y19{bottom:812.445000px;}
.y83{bottom:820.545000px;}
.ya7{bottom:821.445000px;}
.y4e{bottom:825.045000px;}
.y18{bottom:829.725000px;}
.y82{bottom:837.825000px;}
.ya6{bottom:838.545000px;}
.y4d{bottom:842.325000px;}
.y17{bottom:847.005000px;}
.y81{bottom:855.105000px;}
.ya5{bottom:855.825000px;}
.y4c{bottom:859.605000px;}
.y16{bottom:864.285000px;}
.y7e{bottom:869.865000px;}
.ya4{bottom:873.150000px;}
.y4b{bottom:876.930000px;}
.y15{bottom:881.610000px;}
.ya3{bottom:890.430000px;}
.y4a{bottom:894.210000px;}
.y14{bottom:898.710000px;}
.y7d{bottom:905.190000px;}
.ya2{bottom:907.710000px;}
.y49{bottom:911.310000px;}
.y13{bottom:915.990000px;}
.ya1{bottom:924.810000px;}
.y48{bottom:928.590000px;}
.y12{bottom:935.430000px;}
.ya0{bottom:939.570000px;}
.y7b{bottom:940.470000px;}
.y47{bottom:945.870000px;}
.y11{bottom:953.250000px;}
.y46{bottom:963.150000px;}
.y10{bottom:972.150000px;}
.y9f{bottom:974.850000px;}
.y7a{bottom:975.570000px;}
.y45{bottom:980.430000px;}
.yf{bottom:990.690000px;}
.y9e{bottom:992.850000px;}
.y44{bottom:997.710000px;}
.ye{bottom:1008.690000px;}
.y77{bottom:1010.850000px;}
.y43{bottom:1014.810000px;}
.yd{bottom:1029.390000px;}
.y42{bottom:1032.090000px;}
.y9{bottom:1050.630000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1104.810000px;}
.y5{bottom:1121.550000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hd{height:17.280000px;}
.ha{height:34.380000px;}
.h9{height:34.560000px;}
.hb{height:34.596000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hc{height:43.302656px;}
.he{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h4{height:50.800781px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:86.400000px;}
.w3{width:112.140000px;}
.w4{width:157.350000px;}
.w8{width:168.690000px;}
.w6{width:181.830000px;}
.w9{width:186.150000px;}
.w5{width:221.970000px;}
.wa{width:232.230000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x2{left:108.035987px;}
.x18{left:113.435987px;}
.x1{left:128.015987px;}
.x11{left:133.415987px;}
.x21{left:135.035987px;}
.x8{left:149.795987px;}
.x5{left:157.169987px;}
.xb{left:162.029987px;}
.x1f{left:163.469987px;}
.x1b{left:195.870000px;}
.x16{left:196.949987px;}
.xe{left:221.610000px;}
.x15{left:244.289987px;}
.xa{left:305.354987px;}
.xc{left:336.674987px;}
.x19{left:340.994987px;}
.x1a{left:349.274987px;}
.x1c{left:365.295000px;}
.xf{left:379.875000px;}
.x7{left:386.354987px;}
.x20{left:395.714987px;}
.x12{left:399.854987px;}
.x9{left:409.214987px;}
.x6{left:412.274987px;}
.x14{left:424.874987px;}
.x3{left:446.474987px;}
.x4{left:518.504987px;}
.x1d{left:552.165000px;}
.x10{left:602.565000px;}
.x13{left:628.844987px;}
.x1e{left:634.424987px;}
.x17{left:637.664987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:4.000000pt;}
.ls7{letter-spacing:14.672640pt;}
.ls5{letter-spacing:40.891307pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-3.489067pt;}
._6{margin-left:-1.982293pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._8{width:2.594773pt;}
._2{width:3.520853pt;}
._b{width:4.508373pt;}
._5{width:6.002560pt;}
._9{width:7.702400pt;}
._d{width:8.658560pt;}
._7{width:9.933440pt;}
._c{width:10.902187pt;}
._a{width:11.838933pt;}
._f{width:14.261973pt;}
._1b{width:15.286400pt;}
._13{width:16.460373pt;}
._12{width:17.423360pt;}
._1a{width:18.963840pt;}
._19{width:20.557440pt;}
._18{width:21.885440pt;}
._1c{width:23.566293pt;}
._16{width:24.481493pt;}
._22{width:25.869440pt;}
._2d{width:30.059093pt;}
._1d{width:31.606400pt;}
._20{width:33.253120pt;}
._17{width:35.052373pt;}
._29{width:36.221013pt;}
._14{width:42.496000pt;}
._27{width:48.544853pt;}
._26{width:49.720320pt;}
._10{width:56.572800pt;}
._11{width:58.159573pt;}
._28{width:61.194240pt;}
._25{width:71.180800pt;}
._1f{width:74.095573pt;}
._2b{width:106.817493pt;}
._2a{width:107.727360pt;}
._1e{width:108.842880pt;}
._4{width:120.938667pt;}
._24{width:130.613547pt;}
._23{width:131.525120pt;}
._15{width:159.831253pt;}
._21{width:168.542933pt;}
._2c{width:217.519573pt;}
._3{width:566.138667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.880000pt;}
.y80{bottom:2.920000pt;}
.y7c{bottom:18.080000pt;}
.y78{bottom:18.240000pt;}
.y7f{bottom:18.280000pt;}
.yc{bottom:32.640000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.y9d{bottom:101.152000pt;}
.y94{bottom:104.832000pt;}
.y41{bottom:106.912000pt;}
.y93{bottom:107.392000pt;}
.y76{bottom:120.032000pt;}
.y40{bottom:122.272000pt;}
.y92{bottom:122.752000pt;}
.ybb{bottom:126.752000pt;}
.y9c{bottom:129.312000pt;}
.y75{bottom:135.386667pt;}
.y3f{bottom:137.466667pt;}
.y91{bottom:138.106667pt;}
.yba{bottom:142.106667pt;}
.y9b{bottom:144.666667pt;}
.y74{bottom:150.746667pt;}
.y3e{bottom:152.826667pt;}
.y90{bottom:153.306667pt;}
.yb9{bottom:157.306667pt;}
.y9a{bottom:160.026667pt;}
.y73{bottom:166.106667pt;}
.y3d{bottom:168.186667pt;}
.y8f{bottom:168.666667pt;}
.yb8{bottom:172.666667pt;}
.y99{bottom:175.386667pt;}
.y72{bottom:181.466667pt;}
.y3c{bottom:183.546667pt;}
.y8e{bottom:184.026667pt;}
.yb7{bottom:188.026667pt;}
.y98{bottom:190.586667pt;}
.y71{bottom:196.666667pt;}
.y3b{bottom:198.906667pt;}
.y8d{bottom:199.386667pt;}
.yb6{bottom:203.386667pt;}
.y97{bottom:205.946667pt;}
.y70{bottom:212.026667pt;}
.y3a{bottom:214.266667pt;}
.y8c{bottom:214.746667pt;}
.yb5{bottom:218.746667pt;}
.y96{bottom:221.306667pt;}
.y6f{bottom:227.386667pt;}
.y39{bottom:229.466667pt;}
.y8b{bottom:230.106667pt;}
.y95{bottom:233.786667pt;}
.yb4{bottom:234.106667pt;}
.y6e{bottom:242.746667pt;}
.y38{bottom:244.826667pt;}
.y8a{bottom:245.306667pt;}
.yb3{bottom:249.306667pt;}
.y6d{bottom:258.106667pt;}
.y37{bottom:260.186667pt;}
.y89{bottom:260.666667pt;}
.yb2{bottom:264.666667pt;}
.y6c{bottom:273.466667pt;}
.y36{bottom:275.546667pt;}
.y88{bottom:276.026667pt;}
.yb1{bottom:280.026667pt;}
.y6b{bottom:288.666667pt;}
.y35{bottom:290.906667pt;}
.y87{bottom:291.386667pt;}
.yb0{bottom:295.386667pt;}
.y6a{bottom:304.066667pt;}
.y34{bottom:306.306667pt;}
.y86{bottom:306.786667pt;}
.yaf{bottom:310.786667pt;}
.y85{bottom:319.266667pt;}
.y69{bottom:319.426667pt;}
.y33{bottom:321.506667pt;}
.yae{bottom:326.146667pt;}
.y68{bottom:334.786667pt;}
.y32{bottom:336.866667pt;}
.yad{bottom:341.346667pt;}
.y67{bottom:350.146667pt;}
.y31{bottom:352.226667pt;}
.yac{bottom:353.826667pt;}
.y66{bottom:365.506667pt;}
.y30{bottom:367.586667pt;}
.y65{bottom:380.706667pt;}
.y2f{bottom:382.946667pt;}
.y64{bottom:396.066667pt;}
.y2e{bottom:398.306667pt;}
.y63{bottom:411.426667pt;}
.y2d{bottom:413.506667pt;}
.y62{bottom:426.786667pt;}
.y2c{bottom:428.866667pt;}
.y61{bottom:442.146667pt;}
.y2b{bottom:444.226667pt;}
.y60{bottom:457.346667pt;}
.y2a{bottom:459.586667pt;}
.y5f{bottom:472.706667pt;}
.y29{bottom:474.946667pt;}
.y5e{bottom:488.066667pt;}
.y28{bottom:490.146667pt;}
.y5d{bottom:503.426667pt;}
.y27{bottom:507.586667pt;}
.y5c{bottom:518.786667pt;}
.y26{bottom:522.946667pt;}
.y5b{bottom:534.146667pt;}
.y25{bottom:538.173333pt;}
.y5a{bottom:549.373333pt;}
.y24{bottom:553.533333pt;}
.y59{bottom:564.733333pt;}
.y23{bottom:568.893333pt;}
.y58{bottom:580.093333pt;}
.y22{bottom:584.253333pt;}
.y57{bottom:595.453333pt;}
.y21{bottom:599.613333pt;}
.y56{bottom:610.813333pt;}
.y20{bottom:614.973333pt;}
.y55{bottom:626.173333pt;}
.y1f{bottom:630.173333pt;}
.y54{bottom:641.373333pt;}
.y1e{bottom:645.533333pt;}
.y53{bottom:656.733333pt;}
.y1d{bottom:660.893333pt;}
.yab{bottom:668.733333pt;}
.y52{bottom:672.093333pt;}
.y1c{bottom:676.253333pt;}
.yaa{bottom:684.093333pt;}
.y51{bottom:687.453333pt;}
.y1b{bottom:691.613333pt;}
.ya9{bottom:699.453333pt;}
.y50{bottom:702.813333pt;}
.y1a{bottom:706.973333pt;}
.y84{bottom:714.173333pt;}
.ya8{bottom:714.813333pt;}
.y4f{bottom:718.173333pt;}
.y19{bottom:722.173333pt;}
.y83{bottom:729.373333pt;}
.ya7{bottom:730.173333pt;}
.y4e{bottom:733.373333pt;}
.y18{bottom:737.533333pt;}
.y82{bottom:744.733333pt;}
.ya6{bottom:745.373333pt;}
.y4d{bottom:748.733333pt;}
.y17{bottom:752.893333pt;}
.y81{bottom:760.093333pt;}
.ya5{bottom:760.733333pt;}
.y4c{bottom:764.093333pt;}
.y16{bottom:768.253333pt;}
.y7e{bottom:773.213333pt;}
.ya4{bottom:776.133333pt;}
.y4b{bottom:779.493333pt;}
.y15{bottom:783.653333pt;}
.ya3{bottom:791.493333pt;}
.y4a{bottom:794.853333pt;}
.y14{bottom:798.853333pt;}
.y7d{bottom:804.613333pt;}
.ya2{bottom:806.853333pt;}
.y49{bottom:810.053333pt;}
.y13{bottom:814.213333pt;}
.ya1{bottom:822.053333pt;}
.y48{bottom:825.413333pt;}
.y12{bottom:831.493333pt;}
.ya0{bottom:835.173333pt;}
.y7b{bottom:835.973333pt;}
.y47{bottom:840.773333pt;}
.y11{bottom:847.333333pt;}
.y46{bottom:856.133333pt;}
.y10{bottom:864.133333pt;}
.y9f{bottom:866.533333pt;}
.y7a{bottom:867.173333pt;}
.y45{bottom:871.493333pt;}
.yf{bottom:880.613333pt;}
.y9e{bottom:882.533333pt;}
.y44{bottom:886.853333pt;}
.ye{bottom:896.613333pt;}
.y77{bottom:898.533333pt;}
.y43{bottom:902.053333pt;}
.yd{bottom:915.013333pt;}
.y42{bottom:917.413333pt;}
.y9{bottom:933.893333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:982.053333pt;}
.y5{bottom:996.933333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hd{height:15.360000pt;}
.ha{height:30.560000pt;}
.h9{height:30.720000pt;}
.hb{height:30.752000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hc{height:38.491250pt;}
.he{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h4{height:45.156250pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:76.800000pt;}
.w3{width:99.680000pt;}
.w4{width:139.866667pt;}
.w8{width:149.946667pt;}
.w6{width:161.626667pt;}
.w9{width:165.466667pt;}
.w5{width:197.306667pt;}
.wa{width:206.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x2{left:96.031988pt;}
.x18{left:100.831988pt;}
.x1{left:113.791988pt;}
.x11{left:118.591988pt;}
.x21{left:120.031988pt;}
.x8{left:133.151988pt;}
.x5{left:139.706655pt;}
.xb{left:144.026655pt;}
.x1f{left:145.306655pt;}
.x1b{left:174.106667pt;}
.x16{left:175.066655pt;}
.xe{left:196.986667pt;}
.x15{left:217.146655pt;}
.xa{left:271.426655pt;}
.xc{left:299.266655pt;}
.x19{left:303.106655pt;}
.x1a{left:310.466655pt;}
.x1c{left:324.706667pt;}
.xf{left:337.666667pt;}
.x7{left:343.426655pt;}
.x20{left:351.746655pt;}
.x12{left:355.426655pt;}
.x9{left:363.746655pt;}
.x6{left:366.466655pt;}
.x14{left:377.666655pt;}
.x3{left:396.866655pt;}
.x4{left:460.893322pt;}
.x1d{left:490.813333pt;}
.x10{left:535.613333pt;}
.x13{left:558.973322pt;}
.x1e{left:563.933322pt;}
.x17{left:566.813322pt;}
}




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