
    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_15228836ee096f39177f341f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_25927c01e5db1ee6126836d2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c2a7c90d9cc6539723dcbf83.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0103f0c94301a00f7066d69.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')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_0fde07d499ed6d763ccebcd6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_098a55672e1400ecd6930596.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.lsd{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:16.406640px;}
.ls2{letter-spacing:46.286640px;}
.ls0{letter-spacing:809.130000px;}
.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:-72.000000px;}
.wsd{word-spacing:-60.120000px;}
.wsb{word-spacing:-54.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.424640px;}
.ws1{word-spacing:-15.210000px;}
.ws8{word-spacing:-15.183600px;}
.ws7{word-spacing:-15.030000px;}
.ws0{word-spacing:-14.850000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.140000px;}
.ws2{word-spacing:-11.970000px;}
.ws6{word-spacing:-10.530000px;}
.wsc{word-spacing:0.000000px;}
._9{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._3{width:1.014240px;}
._5{width:2.885760px;}
._d{width:4.569120px;}
._c{width:5.711400px;}
._7{width:6.840360px;}
._6{width:8.116200px;}
._e{width:9.198360px;}
._10{width:10.220400px;}
._f{width:12.144240px;}
._8{width:13.887720px;}
._1b{width:16.292520px;}
._11{width:17.555040px;}
._1a{width:18.637200px;}
._1e{width:20.006640px;}
._15{width:21.088800px;}
._14{width:22.124160px;}
._12{width:23.627160px;}
._19{width:25.516800px;}
._18{width:26.993880px;}
._16{width:34.569000px;}
._a{width:38.718000px;}
._b{width:44.010000px;}
._17{width:55.009800px;}
._4{width:63.097560px;}
._1c{width:158.175720px;}
._1{width:302.788920px;}
._2{width:372.032040px;}
._1d{width:1272.199320px;}
._13{width:1686.210000px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsb{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.y9b{bottom:2.700000px;}
.y34{bottom:2.970000px;}
.y21{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y22{bottom:4.680000px;}
.y5{bottom:8.370000px;}
.ya0{bottom:16.380000px;}
.y6{bottom:16.470000px;}
.y33{bottom:18.450000px;}
.yf{bottom:22.320000px;}
.y9f{bottom:30.150000px;}
.ye{bottom:33.210000px;}
.y36{bottom:34.020000px;}
.y32{bottom:34.050000px;}
.y53{bottom:35.640000px;}
.y9e{bottom:44.040000px;}
.y8{bottom:49.140000px;}
.y31{bottom:49.530000px;}
.yd{bottom:51.690000px;}
.y2b{bottom:53.100000px;}
.y9d{bottom:57.810000px;}
.y52{bottom:60.030000px;}
.y30{bottom:65.010000px;}
.yc{bottom:65.820000px;}
.y2a{bottom:70.290000px;}
.y4{bottom:73.530000px;}
.y2f{bottom:80.580000px;}
.y29{bottom:87.570000px;}
.y2e{bottom:96.060000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y28{bottom:104.880000px;}
.y2d{bottom:111.630000px;}
.y27{bottom:122.070000px;}
.y49{bottom:122.580000px;}
.y51{bottom:123.480000px;}
.y99{bottom:124.020000px;}
.y62{bottom:125.550000px;}
.ya{bottom:136.200000px;}
.y26{bottom:139.350000px;}
.y50{bottom:140.760000px;}
.y98{bottom:141.210000px;}
.y48{bottom:142.380000px;}
.y61{bottom:142.830000px;}
.y25{bottom:156.630000px;}
.y4f{bottom:157.980000px;}
.y97{bottom:158.520000px;}
.y60{bottom:160.050000px;}
.y47{bottom:162.300000px;}
.y24{bottom:173.820000px;}
.y4e{bottom:175.260000px;}
.y96{bottom:175.800000px;}
.y5f{bottom:177.330000px;}
.y46{bottom:182.100000px;}
.y4d{bottom:192.450000px;}
.y95{bottom:192.990000px;}
.y5e{bottom:194.610000px;}
.y45{bottom:201.990000px;}
.y4c{bottom:209.730000px;}
.y94{bottom:210.270000px;}
.y5d{bottom:211.800000px;}
.y44{bottom:221.790000px;}
.y4b{bottom:227.010000px;}
.y93{bottom:227.460000px;}
.y5c{bottom:229.080000px;}
.y43{bottom:241.590000px;}
.y4a{bottom:244.200000px;}
.y92{bottom:244.740000px;}
.y5b{bottom:259.680000px;}
.y42{bottom:261.480000px;}
.y91{bottom:262.020000px;}
.y5a{bottom:276.960000px;}
.y90{bottom:279.210000px;}
.y41{bottom:281.280000px;}
.y59{bottom:290.910000px;}
.y8f{bottom:296.490000px;}
.y40{bottom:301.170000px;}
.y8e{bottom:313.770000px;}
.y3f{bottom:320.970000px;}
.y8d{bottom:330.960000px;}
.y3e{bottom:340.770000px;}
.y8c{bottom:348.240000px;}
.y3d{bottom:360.660000px;}
.y8b{bottom:365.520000px;}
.y3c{bottom:380.460000px;}
.y8a{bottom:382.710000px;}
.y89{bottom:399.990000px;}
.y3b{bottom:400.350000px;}
.y88{bottom:417.270000px;}
.y3a{bottom:420.150000px;}
.y87{bottom:434.460000px;}
.y39{bottom:437.430000px;}
.y86{bottom:451.740000px;}
.y38{bottom:454.710000px;}
.y85{bottom:469.020000px;}
.y37{bottom:471.450000px;}
.y23{bottom:484.050000px;}
.y84{bottom:486.210000px;}
.y83{bottom:503.490000px;}
.y82{bottom:520.770000px;}
.y9c{bottom:529.680000px;}
.y35{bottom:531.390000px;}
.y81{bottom:537.960000px;}
.y2c{bottom:547.680000px;}
.y80{bottom:555.240000px;}
.y7f{bottom:572.430000px;}
.y58{bottom:582.180000px;}
.y7e{bottom:589.740000px;}
.y9a{bottom:599.370000px;}
.y57{bottom:599.460000px;}
.y7d{bottom:607.020000px;}
.y56{bottom:616.740000px;}
.y7c{bottom:624.210000px;}
.y55{bottom:630.690000px;}
.y7b{bottom:641.490000px;}
.y7a{bottom:658.770000px;}
.y20{bottom:672.630000px;}
.y79{bottom:675.960000px;}
.y78{bottom:693.240000px;}
.y1f{bottom:703.500000px;}
.y1d{bottom:706.380000px;}
.y77{bottom:710.520000px;}
.y1c{bottom:712.050000px;}
.y76{bottom:727.710000px;}
.y1b{bottom:729.330000px;}
.y75{bottom:744.990000px;}
.y1a{bottom:752.460000px;}
.y74{bottom:762.270000px;}
.y19{bottom:778.110000px;}
.y73{bottom:779.460000px;}
.y18{bottom:795.390000px;}
.y72{bottom:796.740000px;}
.y17{bottom:812.940000px;}
.y71{bottom:814.020000px;}
.y70{bottom:831.210000px;}
.y16{bottom:836.700000px;}
.y6f{bottom:848.490000px;}
.y6e{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y6d{bottom:882.960000px;}
.y14{bottom:898.800000px;}
.y6c{bottom:900.240000px;}
.y6b{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.y6a{bottom:934.710000px;}
.y69{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y68{bottom:969.180000px;}
.y67{bottom:986.460000px;}
.y66{bottom:1003.770000px;}
.y65{bottom:1020.960000px;}
.y64{bottom:1038.240000px;}
.y63{bottom:1055.520000px;}
.y54{bottom:1072.710000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h14{height:1.710000px;}
.h10{height:4.318066px;}
.h15{height:4.425645px;}
.h16{height:8.382129px;}
.h22{height:13.860000px;}
.h1c{height:15.570000px;}
.h17{height:17.280000px;}
.ha{height:21.082324px;}
.hc{height:21.607559px;}
.h4{height:27.630000px;}
.h23{height:33.782520px;}
.h6{height:34.624160px;}
.h1f{height:36.068555px;}
.h18{height:38.100586px;}
.h1e{height:39.049805px;}
.h7{height:39.082324px;}
.h1b{height:41.343750px;}
.h3{height:42.418652px;}
.h5{height:43.475449px;}
.h20{height:43.769004px;}
.h2{height:45.295488px;}
.h1d{height:46.620000px;}
.h21{height:49.552031px;}
.h1{height:50.800781px;}
.he{height:52.066406px;}
.h12{height:53.838457px;}
.h8{height:65.526152px;}
.h13{height:67.819043px;}
.h24{height:68.970000px;}
.hd{height:72.418535px;}
.h11{height:76.201172px;}
.hb{height:93.219434px;}
.hf{height:118.619824px;}
.h1a{height:124.230000px;}
.h9{height:143.220000px;}
.h19{height:187.860000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w5{width:165.900000px;}
.w8{width:228.270000px;}
.w9{width:349.770000px;}
.w7{width:592.530000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x13{left:3.150000px;}
.x4{left:4.320000px;}
.x1c{left:6.749986px;}
.x14{left:8.100000px;}
.x18{left:43.650000px;}
.x6{left:45.540000px;}
.x15{left:46.710000px;}
.x1d{left:52.110000px;}
.x1{left:53.999986px;}
.x19{left:59.669986px;}
.x1a{left:60.749986px;}
.x17{left:65.070000px;}
.xa{left:70.470000px;}
.x1e{left:87.210000px;}
.x25{left:92.160000px;}
.x3{left:99.360000px;}
.x26{left:103.080000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x5{left:134.460000px;}
.x8{left:200.190000px;}
.xb{left:231.780000px;}
.x11{left:240.689986px;}
.x12{left:257.339986px;}
.xe{left:266.429986px;}
.x23{left:301.889986px;}
.x7{left:324.030000px;}
.x21{left:362.099986px;}
.x10{left:387.299986px;}
.xf{left:464.159986px;}
.x20{left:469.109986px;}
.x1b{left:486.059986px;}
.x24{left:513.059986px;}
.x16{left:640.050000px;}
.x1f{left:641.849986px;}
.x22{left:668.309986px;}
.xc{left:693.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.lsd{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:14.583680pt;}
.ls2{letter-spacing:41.143680pt;}
.ls0{letter-spacing:719.226667pt;}
.ws3{word-spacing:-64.000000pt;}
.wsd{word-spacing:-53.440000pt;}
.wsb{word-spacing:-48.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.599680pt;}
.ws1{word-spacing:-13.520000pt;}
.ws8{word-spacing:-13.496533pt;}
.ws7{word-spacing:-13.360000pt;}
.ws0{word-spacing:-13.200000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.640000pt;}
.ws6{word-spacing:-9.360000pt;}
.wsc{word-spacing:0.000000pt;}
._9{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._3{width:0.901547pt;}
._5{width:2.565120pt;}
._d{width:4.061440pt;}
._c{width:5.076800pt;}
._7{width:6.080320pt;}
._6{width:7.214400pt;}
._e{width:8.176320pt;}
._10{width:9.084800pt;}
._f{width:10.794880pt;}
._8{width:12.344640pt;}
._1b{width:14.482240pt;}
._11{width:15.604480pt;}
._1a{width:16.566400pt;}
._1e{width:17.783680pt;}
._15{width:18.745600pt;}
._14{width:19.665920pt;}
._12{width:21.001920pt;}
._19{width:22.681600pt;}
._18{width:23.994560pt;}
._16{width:30.728000pt;}
._a{width:34.416000pt;}
._b{width:39.120000pt;}
._17{width:48.897600pt;}
._4{width:56.086720pt;}
._1c{width:140.600640pt;}
._1{width:269.145707pt;}
._2{width:330.695147pt;}
._1d{width:1130.843840pt;}
._13{width:1498.853333pt;}
.fs8{font-size:5.440000pt;}
.fsb{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.y9b{bottom:2.400000pt;}
.y34{bottom:2.640000pt;}
.y21{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y22{bottom:4.160000pt;}
.y5{bottom:7.440000pt;}
.ya0{bottom:14.560000pt;}
.y6{bottom:14.640000pt;}
.y33{bottom:16.400000pt;}
.yf{bottom:19.840000pt;}
.y9f{bottom:26.800000pt;}
.ye{bottom:29.520000pt;}
.y36{bottom:30.240000pt;}
.y32{bottom:30.266667pt;}
.y53{bottom:31.680000pt;}
.y9e{bottom:39.146667pt;}
.y8{bottom:43.680000pt;}
.y31{bottom:44.026667pt;}
.yd{bottom:45.946667pt;}
.y2b{bottom:47.200000pt;}
.y9d{bottom:51.386667pt;}
.y52{bottom:53.360000pt;}
.y30{bottom:57.786667pt;}
.yc{bottom:58.506667pt;}
.y2a{bottom:62.480000pt;}
.y4{bottom:65.360000pt;}
.y2f{bottom:71.626667pt;}
.y29{bottom:77.840000pt;}
.y2e{bottom:85.386667pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y28{bottom:93.226667pt;}
.y2d{bottom:99.226667pt;}
.y27{bottom:108.506667pt;}
.y49{bottom:108.960000pt;}
.y51{bottom:109.760000pt;}
.y99{bottom:110.240000pt;}
.y62{bottom:111.600000pt;}
.ya{bottom:121.066667pt;}
.y26{bottom:123.866667pt;}
.y50{bottom:125.120000pt;}
.y98{bottom:125.520000pt;}
.y48{bottom:126.560000pt;}
.y61{bottom:126.960000pt;}
.y25{bottom:139.226667pt;}
.y4f{bottom:140.426667pt;}
.y97{bottom:140.906667pt;}
.y60{bottom:142.266667pt;}
.y47{bottom:144.266667pt;}
.y24{bottom:154.506667pt;}
.y4e{bottom:155.786667pt;}
.y96{bottom:156.266667pt;}
.y5f{bottom:157.626667pt;}
.y46{bottom:161.866667pt;}
.y4d{bottom:171.066667pt;}
.y95{bottom:171.546667pt;}
.y5e{bottom:172.986667pt;}
.y45{bottom:179.546667pt;}
.y4c{bottom:186.426667pt;}
.y94{bottom:186.906667pt;}
.y5d{bottom:188.266667pt;}
.y44{bottom:197.146667pt;}
.y4b{bottom:201.786667pt;}
.y93{bottom:202.186667pt;}
.y5c{bottom:203.626667pt;}
.y43{bottom:214.746667pt;}
.y4a{bottom:217.066667pt;}
.y92{bottom:217.546667pt;}
.y5b{bottom:230.826667pt;}
.y42{bottom:232.426667pt;}
.y91{bottom:232.906667pt;}
.y5a{bottom:246.186667pt;}
.y90{bottom:248.186667pt;}
.y41{bottom:250.026667pt;}
.y59{bottom:258.586667pt;}
.y8f{bottom:263.546667pt;}
.y40{bottom:267.706667pt;}
.y8e{bottom:278.906667pt;}
.y3f{bottom:285.306667pt;}
.y8d{bottom:294.186667pt;}
.y3e{bottom:302.906667pt;}
.y8c{bottom:309.546667pt;}
.y3d{bottom:320.586667pt;}
.y8b{bottom:324.906667pt;}
.y3c{bottom:338.186667pt;}
.y8a{bottom:340.186667pt;}
.y89{bottom:355.546667pt;}
.y3b{bottom:355.866667pt;}
.y88{bottom:370.906667pt;}
.y3a{bottom:373.466667pt;}
.y87{bottom:386.186667pt;}
.y39{bottom:388.826667pt;}
.y86{bottom:401.546667pt;}
.y38{bottom:404.186667pt;}
.y85{bottom:416.906667pt;}
.y37{bottom:419.066667pt;}
.y23{bottom:430.266667pt;}
.y84{bottom:432.186667pt;}
.y83{bottom:447.546667pt;}
.y82{bottom:462.906667pt;}
.y9c{bottom:470.826667pt;}
.y35{bottom:472.346667pt;}
.y81{bottom:478.186667pt;}
.y2c{bottom:486.826667pt;}
.y80{bottom:493.546667pt;}
.y7f{bottom:508.826667pt;}
.y58{bottom:517.493333pt;}
.y7e{bottom:524.213333pt;}
.y9a{bottom:532.773333pt;}
.y57{bottom:532.853333pt;}
.y7d{bottom:539.573333pt;}
.y56{bottom:548.213333pt;}
.y7c{bottom:554.853333pt;}
.y55{bottom:560.613333pt;}
.y7b{bottom:570.213333pt;}
.y7a{bottom:585.573333pt;}
.y20{bottom:597.893333pt;}
.y79{bottom:600.853333pt;}
.y78{bottom:616.213333pt;}
.y1f{bottom:625.333333pt;}
.y1d{bottom:627.893333pt;}
.y77{bottom:631.573333pt;}
.y1c{bottom:632.933333pt;}
.y76{bottom:646.853333pt;}
.y1b{bottom:648.293333pt;}
.y75{bottom:662.213333pt;}
.y1a{bottom:668.853333pt;}
.y74{bottom:677.573333pt;}
.y19{bottom:691.653333pt;}
.y73{bottom:692.853333pt;}
.y18{bottom:707.013333pt;}
.y72{bottom:708.213333pt;}
.y17{bottom:722.613333pt;}
.y71{bottom:723.573333pt;}
.y70{bottom:738.853333pt;}
.y16{bottom:743.733333pt;}
.y6f{bottom:754.213333pt;}
.y6e{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y6d{bottom:784.853333pt;}
.y14{bottom:798.933333pt;}
.y6c{bottom:800.213333pt;}
.y6b{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.y6a{bottom:830.853333pt;}
.y69{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y68{bottom:861.493333pt;}
.y67{bottom:876.853333pt;}
.y66{bottom:892.240000pt;}
.y65{bottom:907.520000pt;}
.y64{bottom:922.880000pt;}
.y63{bottom:938.240000pt;}
.y54{bottom:953.520000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h14{height:1.520000pt;}
.h10{height:3.838281pt;}
.h15{height:3.933906pt;}
.h16{height:7.450781pt;}
.h22{height:12.320000pt;}
.h1c{height:13.840000pt;}
.h17{height:15.360000pt;}
.ha{height:18.739844pt;}
.hc{height:19.206719pt;}
.h4{height:24.560000pt;}
.h23{height:30.028906pt;}
.h6{height:30.777031pt;}
.h1f{height:32.060937pt;}
.h18{height:33.867188pt;}
.h1e{height:34.710938pt;}
.h7{height:34.739844pt;}
.h1b{height:36.750000pt;}
.h3{height:37.705469pt;}
.h5{height:38.644844pt;}
.h20{height:38.905781pt;}
.h2{height:40.262656pt;}
.h1d{height:41.440000pt;}
.h21{height:44.046250pt;}
.h1{height:45.156250pt;}
.he{height:46.281250pt;}
.h12{height:47.856406pt;}
.h8{height:58.245469pt;}
.h13{height:60.283594pt;}
.h24{height:61.306667pt;}
.hd{height:64.372031pt;}
.h11{height:67.734375pt;}
.hb{height:82.861719pt;}
.hf{height:105.439844pt;}
.h1a{height:110.426667pt;}
.h9{height:127.306667pt;}
.h19{height:166.986667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w5{width:147.466667pt;}
.w8{width:202.906667pt;}
.w9{width:310.906667pt;}
.w7{width:526.693333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x13{left:2.800000pt;}
.x4{left:3.840000pt;}
.x1c{left:5.999988pt;}
.x14{left:7.200000pt;}
.x18{left:38.800000pt;}
.x6{left:40.480000pt;}
.x15{left:41.520000pt;}
.x1d{left:46.320000pt;}
.x1{left:47.999988pt;}
.x19{left:53.039988pt;}
.x1a{left:53.999988pt;}
.x17{left:57.840000pt;}
.xa{left:62.640000pt;}
.x1e{left:77.520000pt;}
.x25{left:81.920000pt;}
.x3{left:88.320000pt;}
.x26{left:91.626667pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x5{left:119.520000pt;}
.x8{left:177.946667pt;}
.xb{left:206.026667pt;}
.x11{left:213.946655pt;}
.x12{left:228.746655pt;}
.xe{left:236.826655pt;}
.x23{left:268.346655pt;}
.x7{left:288.026667pt;}
.x21{left:321.866655pt;}
.x10{left:344.266655pt;}
.xf{left:412.586655pt;}
.x20{left:416.986655pt;}
.x1b{left:432.053321pt;}
.x24{left:456.053321pt;}
.x16{left:568.933333pt;}
.x1f{left:570.533321pt;}
.x22{left:594.053321pt;}
.xc{left:616.533333pt;}
}




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