
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_a32ef2c94ddaef41e610770e.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_d5c2607604f3ba668cbb47e1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_70309a45205c70dad91e8fee.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_59c517336c79b347652981a6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b4feb020e884746ba36338c3.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ec98ac16b07f942b85433a05.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_67c810200675a6f97870c634.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls9{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.027360px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.089400px;}
.ls0{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.139800px;}
.ls8{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.ls7{letter-spacing:2.610000px;}
.ls2{letter-spacing:36.926640px;}
.ls1{letter-spacing:41.148000px;}
.lsa{letter-spacing:46.286640px;}
.lsc{letter-spacing:49.347360px;}
.lse{letter-spacing:52.308000px;}
.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;}
}
.ws4{word-spacing:-60.120000px;}
.ws2{word-spacing:-16.559400px;}
.ws7{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.ws6{word-spacing:-14.976720px;}
.ws8{word-spacing:-14.220000px;}
.ws3{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.327800px;}
._c{width:2.765520px;}
._a{width:4.260720px;}
._6{width:5.434320px;}
._5{width:6.973920px;}
._b{width:8.116200px;}
._1a{width:9.258480px;}
._20{width:10.412640px;}
._9{width:11.482920px;}
._1b{width:12.805560px;}
._14{width:13.887720px;}
._1d{width:16.172280px;}
._7{width:17.254440px;}
._8{width:18.577080px;}
._12{width:19.779480px;}
._13{width:20.921760px;}
._19{width:22.605120px;}
._1c{width:24.348600px;}
._f{width:25.542000px;}
._22{width:26.562960px;}
._16{width:27.895680px;}
._15{width:29.579040px;}
._21{width:30.625560px;}
._1f{width:32.043960px;}
._17{width:33.907680px;}
._23{width:38.223360px;}
._18{width:39.369960px;}
._e{width:40.770000px;}
._d{width:41.796000px;}
._1e{width:43.106040px;}
._24{width:44.480160px;}
._11{width:53.514000px;}
._10{width:54.756000px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
._4{width:863.891520px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y31{bottom:2.970000px;}
.ybf{bottom:3.150000px;}
.y14{bottom:3.240000px;}
.y29{bottom:5.940000px;}
.ycc{bottom:7.560000px;}
.y4{bottom:8.460000px;}
.y2f{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.y27{bottom:19.440000px;}
.ycb{bottom:21.330000px;}
.y2e{bottom:25.110000px;}
.yc2{bottom:30.240000px;}
.yca{bottom:35.190000px;}
.y7{bottom:35.550000px;}
.y26{bottom:35.850000px;}
.y2d{bottom:40.590000px;}
.yc1{bottom:44.010000px;}
.yc9{bottom:48.990000px;}
.y25{bottom:51.330000px;}
.y2c{bottom:56.160000px;}
.y3{bottom:58.140000px;}
.yc8{bottom:62.760000px;}
.y24{bottom:66.900000px;}
.y2b{bottom:71.640000px;}
.yc7{bottom:76.620000px;}
.y23{bottom:82.380000px;}
.yc6{bottom:90.390000px;}
.y22{bottom:97.950000px;}
.y30{bottom:106.200000px;}
.yc5{bottom:111.510000px;}
.y8d{bottom:113.310000px;}
.y21{bottom:113.430000px;}
.y3d{bottom:114.300000px;}
.y75{bottom:124.020000px;}
.y8c{bottom:128.880000px;}
.y20{bottom:129.000000px;}
.y3c{bottom:131.580000px;}
.y74{bottom:141.210000px;}
.y8b{bottom:144.360000px;}
.y3b{bottom:148.860000px;}
.y73{bottom:158.520000px;}
.y8a{bottom:159.960000px;}
.y3a{bottom:166.080000px;}
.y89{bottom:175.440000px;}
.y72{bottom:175.800000px;}
.y39{bottom:183.360000px;}
.y88{bottom:190.920000px;}
.y71{bottom:192.990000px;}
.y38{bottom:200.640000px;}
.y87{bottom:206.490000px;}
.y70{bottom:210.270000px;}
.yc4{bottom:213.780000px;}
.y1e{bottom:214.920000px;}
.y37{bottom:217.830000px;}
.y86{bottom:221.970000px;}
.y6f{bottom:227.460000px;}
.yc0{bottom:228.360000px;}
.y1d{bottom:232.200000px;}
.y36{bottom:235.110000px;}
.y85{bottom:237.540000px;}
.y6e{bottom:244.740000px;}
.y1c{bottom:249.390000px;}
.y35{bottom:252.390000px;}
.y84{bottom:253.020000px;}
.y6d{bottom:262.020000px;}
.y1b{bottom:266.700000px;}
.y83{bottom:268.590000px;}
.y34{bottom:269.580000px;}
.y6c{bottom:279.210000px;}
.y1a{bottom:283.980000px;}
.y82{bottom:284.070000px;}
.ybe{bottom:284.250000px;}
.y33{bottom:286.860000px;}
.y6b{bottom:296.490000px;}
.y81{bottom:299.640000px;}
.y19{bottom:301.170000px;}
.ybd{bottom:302.520000px;}
.y32{bottom:303.780000px;}
.y6a{bottom:313.770000px;}
.y80{bottom:315.120000px;}
.y15{bottom:317.100000px;}
.y18{bottom:318.450000px;}
.ybc{bottom:319.800000px;}
.y7f{bottom:330.690000px;}
.y69{bottom:330.960000px;}
.y17{bottom:335.730000px;}
.ybb{bottom:336.900000px;}
.y7e{bottom:346.170000px;}
.y68{bottom:348.240000px;}
.y16{bottom:352.920000px;}
.yba{bottom:353.280000px;}
.y7d{bottom:361.740000px;}
.y67{bottom:365.520000px;}
.yb9{bottom:369.660000px;}
.y7c{bottom:377.220000px;}
.y66{bottom:382.710000px;}
.yb8{bottom:386.040000px;}
.y7b{bottom:392.790000px;}
.y65{bottom:399.990000px;}
.yb7{bottom:402.420000px;}
.y7a{bottom:408.270000px;}
.y64{bottom:417.270000px;}
.yb6{bottom:418.800000px;}
.y79{bottom:423.840000px;}
.y63{bottom:434.460000px;}
.yb5{bottom:435.180000px;}
.y2a{bottom:436.710000px;}
.y78{bottom:439.320000px;}
.yb4{bottom:451.560000px;}
.y62{bottom:451.740000px;}
.y77{bottom:454.890000px;}
.yb3{bottom:467.940000px;}
.y61{bottom:469.020000px;}
.y76{bottom:470.370000px;}
.yb2{bottom:484.320000px;}
.y60{bottom:486.210000px;}
.yb1{bottom:500.700000px;}
.y5f{bottom:503.490000px;}
.yb0{bottom:517.080000px;}
.y5e{bottom:520.770000px;}
.y28{bottom:521.760000px;}
.yaf{bottom:533.460000px;}
.y5d{bottom:537.960000px;}
.y1f{bottom:542.460000px;}
.yae{bottom:549.840000px;}
.y5c{bottom:555.240000px;}
.yad{bottom:566.220000px;}
.y5b{bottom:572.430000px;}
.yac{bottom:582.720000px;}
.y5a{bottom:589.740000px;}
.yab{bottom:599.100000px;}
.y59{bottom:607.020000px;}
.yaa{bottom:615.480000px;}
.y58{bottom:624.210000px;}
.ya9{bottom:631.860000px;}
.y57{bottom:641.490000px;}
.ya8{bottom:648.240000px;}
.y56{bottom:658.770000px;}
.ya7{bottom:664.620000px;}
.y55{bottom:675.960000px;}
.ya6{bottom:681.000000px;}
.y13{bottom:684.780000px;}
.y54{bottom:693.240000px;}
.ya5{bottom:697.380000px;}
.y53{bottom:710.520000px;}
.ya4{bottom:713.760000px;}
.y12{bottom:719.340000px;}
.y52{bottom:727.710000px;}
.ya3{bottom:730.140000px;}
.y11{bottom:739.230000px;}
.y51{bottom:744.990000px;}
.ya2{bottom:746.520000px;}
.y50{bottom:762.270000px;}
.ya1{bottom:762.900000px;}
.y10{bottom:768.030000px;}
.ya0{bottom:779.280000px;}
.y4f{bottom:779.460000px;}
.yf{bottom:787.020000px;}
.y9f{bottom:795.660000px;}
.y4e{bottom:796.740000px;}
.ye{bottom:808.260000px;}
.y9e{bottom:812.040000px;}
.y4d{bottom:814.020000px;}
.y9d{bottom:828.510000px;}
.y4c{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y9c{bottom:844.890000px;}
.y4b{bottom:848.490000px;}
.y9b{bottom:861.270000px;}
.y4a{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y9a{bottom:877.650000px;}
.y49{bottom:882.960000px;}
.y99{bottom:894.030000px;}
.y48{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y98{bottom:910.410000px;}
.y47{bottom:917.430000px;}
.y97{bottom:926.790000px;}
.ya{bottom:930.210000px;}
.y46{bottom:934.710000px;}
.y96{bottom:943.170000px;}
.y8{bottom:945.600000px;}
.y45{bottom:951.990000px;}
.y95{bottom:959.550000px;}
.y44{bottom:969.180000px;}
.y94{bottom:975.930000px;}
.y43{bottom:986.460000px;}
.y93{bottom:992.340000px;}
.y42{bottom:1003.770000px;}
.y92{bottom:1008.720000px;}
.y41{bottom:1020.960000px;}
.y91{bottom:1025.100000px;}
.y40{bottom:1038.240000px;}
.y90{bottom:1041.480000px;}
.y3f{bottom:1055.520000px;}
.y8f{bottom:1057.950000px;}
.y3e{bottom:1072.710000px;}
.y8e{bottom:1074.150000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1f{height:13.860000px;}
.h1c{height:14.310000px;}
.he{height:17.280000px;}
.h13{height:19.980000px;}
.h3{height:27.630000px;}
.h5{height:33.431836px;}
.h1d{height:33.782520px;}
.h21{height:36.494473px;}
.h15{height:37.705078px;}
.h16{height:38.100586px;}
.h6{height:39.082324px;}
.h19{height:39.716016px;}
.h11{height:39.999023px;}
.h1a{height:40.132617px;}
.h4{height:41.978320px;}
.hd{height:42.418652px;}
.h1b{height:43.354336px;}
.h18{height:43.769004px;}
.h12{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hb{height:53.838457px;}
.h1e{height:55.170000px;}
.hc{height:75.410156px;}
.ha{height:76.201172px;}
.h14{height:84.240000px;}
.h20{height:101.550000px;}
.h17{height:118.800000px;}
.h10{height:141.600000px;}
.h7{height:153.930000px;}
.hf{height:366.960000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w8{width:94.410000px;}
.w6{width:220.350000px;}
.w9{width:286.140000px;}
.w7{width:381.270000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.660000px;}
.x3{left:8.640000px;}
.x10{left:20.160000px;}
.x14{left:27.630000px;}
.x12{left:34.110000px;}
.x13{left:36.090000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x18{left:56.969986px;}
.x16{left:59.669986px;}
.x1{left:60.749986px;}
.x15{left:65.429986px;}
.x9{left:71.909986px;}
.x1d{left:85.050000px;}
.x4{left:100.890000px;}
.x1c{left:104.760000px;}
.x1b{left:106.020000px;}
.x5{left:107.999986px;}
.xa{left:275.069986px;}
.xd{left:304.319986px;}
.xc{left:385.049986px;}
.x8{left:459.029986px;}
.xb{left:464.159986px;}
.xe{left:465.239986px;}
.x17{left:478.229986px;}
.x19{left:479.759986px;}
.x1a{left:506.759986px;}
.x1e{left:572.820000px;}
.xf{left:642.210000px;}
.x7{left:812.430000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls9{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.024320pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.079467pt;}
.ls0{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.124267pt;}
.ls8{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls7{letter-spacing:2.320000pt;}
.ls2{letter-spacing:32.823680pt;}
.ls1{letter-spacing:36.576000pt;}
.lsa{letter-spacing:41.143680pt;}
.lsc{letter-spacing:43.864320pt;}
.lse{letter-spacing:46.496000pt;}
.ws4{word-spacing:-53.440000pt;}
.ws2{word-spacing:-14.719467pt;}
.ws7{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws6{word-spacing:-13.312640pt;}
.ws8{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:1.180267pt;}
._c{width:2.458240pt;}
._a{width:3.787307pt;}
._6{width:4.830507pt;}
._5{width:6.199040pt;}
._b{width:7.214400pt;}
._1a{width:8.229760pt;}
._20{width:9.255680pt;}
._9{width:10.207040pt;}
._1b{width:11.382720pt;}
._14{width:12.344640pt;}
._1d{width:14.375360pt;}
._7{width:15.337280pt;}
._8{width:16.512960pt;}
._12{width:17.581760pt;}
._13{width:18.597120pt;}
._19{width:20.093440pt;}
._1c{width:21.643200pt;}
._f{width:22.704000pt;}
._22{width:23.611520pt;}
._16{width:24.796160pt;}
._15{width:26.292480pt;}
._21{width:27.222720pt;}
._1f{width:28.483520pt;}
._17{width:30.140160pt;}
._23{width:33.976320pt;}
._18{width:34.995520pt;}
._e{width:36.240000pt;}
._d{width:37.152000pt;}
._1e{width:38.316480pt;}
._24{width:39.537920pt;}
._11{width:47.568000pt;}
._10{width:48.672000pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
._4{width:767.903573pt;}
.fs3{font-size:26.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y31{bottom:2.640000pt;}
.ybf{bottom:2.800000pt;}
.y14{bottom:2.880000pt;}
.y29{bottom:5.280000pt;}
.ycc{bottom:6.720000pt;}
.y4{bottom:7.520000pt;}
.y2f{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.y27{bottom:17.280000pt;}
.ycb{bottom:18.960000pt;}
.y2e{bottom:22.320000pt;}
.yc2{bottom:26.880000pt;}
.yca{bottom:31.280000pt;}
.y7{bottom:31.600000pt;}
.y26{bottom:31.866667pt;}
.y2d{bottom:36.080000pt;}
.yc1{bottom:39.120000pt;}
.yc9{bottom:43.546667pt;}
.y25{bottom:45.626667pt;}
.y2c{bottom:49.920000pt;}
.y3{bottom:51.680000pt;}
.yc8{bottom:55.786667pt;}
.y24{bottom:59.466667pt;}
.y2b{bottom:63.680000pt;}
.yc7{bottom:68.106667pt;}
.y23{bottom:73.226667pt;}
.yc6{bottom:80.346667pt;}
.y22{bottom:87.066667pt;}
.y30{bottom:94.400000pt;}
.yc5{bottom:99.120000pt;}
.y8d{bottom:100.720000pt;}
.y21{bottom:100.826667pt;}
.y3d{bottom:101.600000pt;}
.y75{bottom:110.240000pt;}
.y8c{bottom:114.560000pt;}
.y20{bottom:114.666667pt;}
.y3c{bottom:116.960000pt;}
.y74{bottom:125.520000pt;}
.y8b{bottom:128.320000pt;}
.y3b{bottom:132.320000pt;}
.y73{bottom:140.906667pt;}
.y8a{bottom:142.186667pt;}
.y3a{bottom:147.626667pt;}
.y89{bottom:155.946667pt;}
.y72{bottom:156.266667pt;}
.y39{bottom:162.986667pt;}
.y88{bottom:169.706667pt;}
.y71{bottom:171.546667pt;}
.y38{bottom:178.346667pt;}
.y87{bottom:183.546667pt;}
.y70{bottom:186.906667pt;}
.yc4{bottom:190.026667pt;}
.y1e{bottom:191.040000pt;}
.y37{bottom:193.626667pt;}
.y86{bottom:197.306667pt;}
.y6f{bottom:202.186667pt;}
.yc0{bottom:202.986667pt;}
.y1d{bottom:206.400000pt;}
.y36{bottom:208.986667pt;}
.y85{bottom:211.146667pt;}
.y6e{bottom:217.546667pt;}
.y1c{bottom:221.680000pt;}
.y35{bottom:224.346667pt;}
.y84{bottom:224.906667pt;}
.y6d{bottom:232.906667pt;}
.y1b{bottom:237.066667pt;}
.y83{bottom:238.746667pt;}
.y34{bottom:239.626667pt;}
.y6c{bottom:248.186667pt;}
.y1a{bottom:252.426667pt;}
.y82{bottom:252.506667pt;}
.ybe{bottom:252.666667pt;}
.y33{bottom:254.986667pt;}
.y6b{bottom:263.546667pt;}
.y81{bottom:266.346667pt;}
.y19{bottom:267.706667pt;}
.ybd{bottom:268.906667pt;}
.y32{bottom:270.026667pt;}
.y6a{bottom:278.906667pt;}
.y80{bottom:280.106667pt;}
.y15{bottom:281.866667pt;}
.y18{bottom:283.066667pt;}
.ybc{bottom:284.266667pt;}
.y7f{bottom:293.946667pt;}
.y69{bottom:294.186667pt;}
.y17{bottom:298.426667pt;}
.ybb{bottom:299.466667pt;}
.y7e{bottom:307.706667pt;}
.y68{bottom:309.546667pt;}
.y16{bottom:313.706667pt;}
.yba{bottom:314.026667pt;}
.y7d{bottom:321.546667pt;}
.y67{bottom:324.906667pt;}
.yb9{bottom:328.586667pt;}
.y7c{bottom:335.306667pt;}
.y66{bottom:340.186667pt;}
.yb8{bottom:343.146667pt;}
.y7b{bottom:349.146667pt;}
.y65{bottom:355.546667pt;}
.yb7{bottom:357.706667pt;}
.y7a{bottom:362.906667pt;}
.y64{bottom:370.906667pt;}
.yb6{bottom:372.266667pt;}
.y79{bottom:376.746667pt;}
.y63{bottom:386.186667pt;}
.yb5{bottom:386.826667pt;}
.y2a{bottom:388.186667pt;}
.y78{bottom:390.506667pt;}
.yb4{bottom:401.386667pt;}
.y62{bottom:401.546667pt;}
.y77{bottom:404.346667pt;}
.yb3{bottom:415.946667pt;}
.y61{bottom:416.906667pt;}
.y76{bottom:418.106667pt;}
.yb2{bottom:430.506667pt;}
.y60{bottom:432.186667pt;}
.yb1{bottom:445.066667pt;}
.y5f{bottom:447.546667pt;}
.yb0{bottom:459.626667pt;}
.y5e{bottom:462.906667pt;}
.y28{bottom:463.786667pt;}
.yaf{bottom:474.186667pt;}
.y5d{bottom:478.186667pt;}
.y1f{bottom:482.186667pt;}
.yae{bottom:488.746667pt;}
.y5c{bottom:493.546667pt;}
.yad{bottom:503.306667pt;}
.y5b{bottom:508.826667pt;}
.yac{bottom:517.973333pt;}
.y5a{bottom:524.213333pt;}
.yab{bottom:532.533333pt;}
.y59{bottom:539.573333pt;}
.yaa{bottom:547.093333pt;}
.y58{bottom:554.853333pt;}
.ya9{bottom:561.653333pt;}
.y57{bottom:570.213333pt;}
.ya8{bottom:576.213333pt;}
.y56{bottom:585.573333pt;}
.ya7{bottom:590.773333pt;}
.y55{bottom:600.853333pt;}
.ya6{bottom:605.333333pt;}
.y13{bottom:608.693333pt;}
.y54{bottom:616.213333pt;}
.ya5{bottom:619.893333pt;}
.y53{bottom:631.573333pt;}
.ya4{bottom:634.453333pt;}
.y12{bottom:639.413333pt;}
.y52{bottom:646.853333pt;}
.ya3{bottom:649.013333pt;}
.y11{bottom:657.093333pt;}
.y51{bottom:662.213333pt;}
.ya2{bottom:663.573333pt;}
.y50{bottom:677.573333pt;}
.ya1{bottom:678.133333pt;}
.y10{bottom:682.693333pt;}
.ya0{bottom:692.693333pt;}
.y4f{bottom:692.853333pt;}
.yf{bottom:699.573333pt;}
.y9f{bottom:707.253333pt;}
.y4e{bottom:708.213333pt;}
.ye{bottom:718.453333pt;}
.y9e{bottom:721.813333pt;}
.y4d{bottom:723.573333pt;}
.y9d{bottom:736.453333pt;}
.y4c{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y9c{bottom:751.013333pt;}
.y4b{bottom:754.213333pt;}
.y9b{bottom:765.573333pt;}
.y4a{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y9a{bottom:780.133333pt;}
.y49{bottom:784.853333pt;}
.y99{bottom:794.693333pt;}
.y48{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y98{bottom:809.253333pt;}
.y47{bottom:815.493333pt;}
.y97{bottom:823.813333pt;}
.ya{bottom:826.853333pt;}
.y46{bottom:830.853333pt;}
.y96{bottom:838.373333pt;}
.y8{bottom:840.533333pt;}
.y45{bottom:846.213333pt;}
.y95{bottom:852.933333pt;}
.y44{bottom:861.493333pt;}
.y94{bottom:867.493333pt;}
.y43{bottom:876.853333pt;}
.y93{bottom:882.080000pt;}
.y42{bottom:892.240000pt;}
.y92{bottom:896.640000pt;}
.y41{bottom:907.520000pt;}
.y91{bottom:911.200000pt;}
.y40{bottom:922.880000pt;}
.y90{bottom:925.760000pt;}
.y3f{bottom:938.240000pt;}
.y8f{bottom:940.400000pt;}
.y3e{bottom:953.520000pt;}
.y8e{bottom:954.800000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1f{height:12.320000pt;}
.h1c{height:12.720000pt;}
.he{height:15.360000pt;}
.h13{height:17.760000pt;}
.h3{height:24.560000pt;}
.h5{height:29.717188pt;}
.h1d{height:30.028906pt;}
.h21{height:32.439531pt;}
.h15{height:33.515625pt;}
.h16{height:33.867188pt;}
.h6{height:34.739844pt;}
.h19{height:35.303125pt;}
.h11{height:35.554688pt;}
.h1a{height:35.673437pt;}
.h4{height:37.314062pt;}
.hd{height:37.705469pt;}
.h1b{height:38.537188pt;}
.h18{height:38.905781pt;}
.h12{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hb{height:47.856406pt;}
.h1e{height:49.040000pt;}
.hc{height:67.031250pt;}
.ha{height:67.734375pt;}
.h14{height:74.880000pt;}
.h20{height:90.266667pt;}
.h17{height:105.600000pt;}
.h10{height:125.866667pt;}
.h7{height:136.826667pt;}
.hf{height:326.186667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w8{width:83.920000pt;}
.w6{width:195.866667pt;}
.w9{width:254.346667pt;}
.w7{width:338.906667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.920000pt;}
.x3{left:7.680000pt;}
.x10{left:17.920000pt;}
.x14{left:24.560000pt;}
.x12{left:30.320000pt;}
.x13{left:32.080000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x18{left:50.639988pt;}
.x16{left:53.039988pt;}
.x1{left:53.999988pt;}
.x15{left:58.159988pt;}
.x9{left:63.919988pt;}
.x1d{left:75.600000pt;}
.x4{left:89.680000pt;}
.x1c{left:93.120000pt;}
.x1b{left:94.240000pt;}
.x5{left:95.999988pt;}
.xa{left:244.506655pt;}
.xd{left:270.506655pt;}
.xc{left:342.266655pt;}
.x8{left:408.026655pt;}
.xb{left:412.586655pt;}
.xe{left:413.546655pt;}
.x17{left:425.093321pt;}
.x19{left:426.453321pt;}
.x1a{left:450.453321pt;}
.x1e{left:509.173333pt;}
.xf{left:570.853333pt;}
.x7{left:722.160000pt;}
}




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