
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a30f1bb75a4dee32352912e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_72bfc974577f265c2c5e6d3f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a508f483d6e92d7929c8bb7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.139160;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_ea70967cf072b2078ec18b79.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151855;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_1695a5680bfba632015740a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.151855;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7dde050cecd8e58af9c0888c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.378000px;}
.ls1a{letter-spacing:-0.234000px;}
.ls7{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.162000px;}
.lsf{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.054000px;}
.ls12{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018000px;}
.lse{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.432000px;}
.lsc{letter-spacing:7.128000px;}
.ls11{letter-spacing:33.408000px;}
.ls2{letter-spacing:64.908000px;}
.ls10{letter-spacing:74.988000px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.wsb{word-spacing:-13.590000px;}
.ws4{word-spacing:-13.572000px;}
.ws7{word-spacing:-13.536000px;}
.ws9{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.446000px;}
.ws2{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.338000px;}
.wsd{word-spacing:-13.320000px;}
.ws1{word-spacing:-13.284000px;}
.ws11{word-spacing:-13.230000px;}
.wsf{word-spacing:-13.212000px;}
.ws6{word-spacing:-13.176000px;}
.ws12{word-spacing:-13.158000px;}
.ws3{word-spacing:-13.014000px;}
.wse{word-spacing:-12.960000px;}
.ws0{word-spacing:-0.036000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-1.242000px;}
._0{width:1.054080px;}
._8{width:2.455920px;}
._6{width:3.510000px;}
._7{width:4.752000px;}
._e{width:5.886000px;}
._c{width:7.020000px;}
._a{width:8.316000px;}
._9{width:9.504000px;}
._5{width:10.848000px;}
._4{width:11.880000px;}
._2{width:14.742000px;}
._3{width:16.392000px;}
._d{width:17.610000px;}
._11{width:18.984000px;}
._19{width:20.124000px;}
._b{width:21.978000px;}
._f{width:23.490000px;}
._16{width:27.816000px;}
._15{width:28.884000px;}
._10{width:33.102000px;}
._12{width:34.393920px;}
._17{width:38.502000px;}
._18{width:113.238000px;}
._14{width:120.744000px;}
._13{width:121.770000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(233,44,48);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs2{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.yf{bottom:0.720000px;}
.y9{bottom:3.330000px;}
.y1c{bottom:17.820000px;}
.yb{bottom:19.530000px;}
.y97{bottom:19.560000px;}
.ya1{bottom:19.620000px;}
.ye{bottom:20.250000px;}
.y5{bottom:22.320000px;}
.y13{bottom:33.840000px;}
.y1b{bottom:34.020000px;}
.y42{bottom:35.730000px;}
.y96{bottom:35.760000px;}
.ya0{bottom:35.820000px;}
.y1a{bottom:50.220000px;}
.y41{bottom:51.930000px;}
.y95{bottom:51.960000px;}
.y9f{bottom:52.020000px;}
.y12{bottom:53.370000px;}
.y4{bottom:57.780000px;}
.y19{bottom:66.420000px;}
.y40{bottom:68.130000px;}
.y94{bottom:68.160000px;}
.y9e{bottom:68.220000px;}
.y18{bottom:82.620000px;}
.y3f{bottom:84.330000px;}
.y93{bottom:84.360000px;}
.y9d{bottom:84.420000px;}
.y76{bottom:86.400000px;}
.yb8{bottom:87.840000px;}
.y99{bottom:90.090000px;}
.y43{bottom:91.620000px;}
.y1f{bottom:95.940000px;}
.y3e{bottom:100.530000px;}
.y92{bottom:100.560000px;}
.y9c{bottom:100.620000px;}
.y3d{bottom:116.730000px;}
.y91{bottom:116.760000px;}
.y9b{bottom:116.820000px;}
.yb4{bottom:116.850000px;}
.y74{bottom:132.930000px;}
.y90{bottom:132.960000px;}
.y9a{bottom:133.020000px;}
.y3c{bottom:133.050000px;}
.ya7{bottom:149.130000px;}
.y73{bottom:149.160000px;}
.y3b{bottom:149.250000px;}
.ya6{bottom:165.330000px;}
.y72{bottom:165.360000px;}
.y3a{bottom:165.450000px;}
.ya5{bottom:181.530000px;}
.y71{bottom:181.560000px;}
.y39{bottom:181.650000px;}
.y8f{bottom:197.760000px;}
.y38{bottom:197.850000px;}
.ya4{bottom:213.960000px;}
.y37{bottom:214.050000px;}
.ya3{bottom:230.160000px;}
.y36{bottom:230.250000px;}
.y35{bottom:246.450000px;}
.y34{bottom:262.650000px;}
.y33{bottom:278.850000px;}
.y70{bottom:295.050000px;}
.y32{bottom:295.770000px;}
.y6f{bottom:311.250000px;}
.y31{bottom:311.970000px;}
.y6e{bottom:327.450000px;}
.y30{bottom:328.890000px;}
.y6d{bottom:343.650000px;}
.y2f{bottom:345.180000px;}
.y6c{bottom:359.850000px;}
.y2e{bottom:362.100000px;}
.y6b{bottom:376.050000px;}
.y2d{bottom:378.300000px;}
.y6a{bottom:392.250000px;}
.y2c{bottom:394.500000px;}
.y69{bottom:408.450000px;}
.y2b{bottom:410.700000px;}
.y68{bottom:424.650000px;}
.y2a{bottom:426.900000px;}
.y67{bottom:440.850000px;}
.y8e{bottom:440.880000px;}
.y29{bottom:443.820000px;}
.y66{bottom:457.050000px;}
.y8d{bottom:457.080000px;}
.y28{bottom:460.020000px;}
.y65{bottom:473.250000px;}
.y8c{bottom:473.280000px;}
.y27{bottom:477.030000px;}
.y64{bottom:489.450000px;}
.y26{bottom:493.230000px;}
.y63{bottom:505.650000px;}
.y25{bottom:509.430000px;}
.y62{bottom:521.850000px;}
.y24{bottom:525.630000px;}
.y61{bottom:538.050000px;}
.y23{bottom:542.550000px;}
.y8a{bottom:554.250000px;}
.y60{bottom:554.280000px;}
.y22{bottom:558.780000px;}
.y5f{bottom:570.480000px;}
.yb2{bottom:570.570000px;}
.y21{bottom:574.980000px;}
.y5e{bottom:586.680000px;}
.yb1{bottom:586.770000px;}
.y20{bottom:591.180000px;}
.y5d{bottom:602.880000px;}
.yb0{bottom:602.970000px;}
.y98{bottom:609.420000px;}
.y5c{bottom:619.080000px;}
.yaf{bottom:619.170000px;}
.y8b{bottom:626.340000px;}
.y5b{bottom:635.280000px;}
.yae{bottom:635.370000px;}
.y5a{bottom:651.480000px;}
.yad{bottom:651.570000px;}
.y59{bottom:667.680000px;}
.yac{bottom:667.770000px;}
.y58{bottom:683.880000px;}
.yab{bottom:683.970000px;}
.y57{bottom:700.080000px;}
.y89{bottom:700.170000px;}
.y1e{bottom:700.710000px;}
.y56{bottom:716.280000px;}
.yaa{bottom:716.370000px;}
.y88{bottom:717.090000px;}
.y55{bottom:732.480000px;}
.ya9{bottom:732.570000px;}
.y87{bottom:733.290000px;}
.y1d{bottom:733.920000px;}
.y54{bottom:748.770000px;}
.y86{bottom:750.210000px;}
.y17{bottom:750.840000px;}
.y53{bottom:764.970000px;}
.y85{bottom:766.410000px;}
.y52{bottom:781.170000px;}
.y84{bottom:783.330000px;}
.yb7{bottom:785.400000px;}
.y51{bottom:797.370000px;}
.y83{bottom:799.530000px;}
.yb6{bottom:802.320000px;}
.y50{bottom:813.570000px;}
.y82{bottom:815.730000px;}
.y4f{bottom:829.770000px;}
.y81{bottom:831.930000px;}
.y4e{bottom:845.970000px;}
.y16{bottom:847.050000px;}
.y80{bottom:848.220000px;}
.ya8{bottom:852.450000px;}
.ybc{bottom:860.280000px;}
.y4d{bottom:862.170000px;}
.y11{bottom:864.060000px;}
.y7f{bottom:865.140000px;}
.ya2{bottom:869.460000px;}
.y4c{bottom:878.370000px;}
.y7e{bottom:881.340000px;}
.y4b{bottom:894.570000px;}
.y15{bottom:897.180000px;}
.y7d{bottom:898.260000px;}
.ybb{bottom:901.860000px;}
.y4a{bottom:910.770000px;}
.y14{bottom:914.100000px;}
.y7c{bottom:914.460000px;}
.y49{bottom:926.970000px;}
.y7b{bottom:930.660000px;}
.yd{bottom:931.110000px;}
.yb5{bottom:932.730000px;}
.y48{bottom:943.170000px;}
.y7a{bottom:947.670000px;}
.y10{bottom:948.030000px;}
.yb3{bottom:949.650000px;}
.y47{bottom:959.370000px;}
.y79{bottom:963.870000px;}
.yc{bottom:964.950000px;}
.yba{bottom:965.850000px;}
.y46{bottom:975.600000px;}
.y78{bottom:980.100000px;}
.ya{bottom:981.960000px;}
.yb9{bottom:982.860000px;}
.y45{bottom:991.800000px;}
.y77{bottom:996.300000px;}
.y44{bottom:1008.000000px;}
.y8{bottom:1015.080000px;}
.y7{bottom:1052.790000px;}
.y6{bottom:1079.550000px;}
.y75{bottom:1096.290000px;}
.y3{bottom:1135.620000px;}
.y2{bottom:1173.780000px;}
.y1{bottom:1193.940000px;}
.h5{height:16.200000px;}
.h6{height:32.400000px;}
.h7{height:33.120000px;}
.h4{height:49.807617px;}
.hb{height:55.503491px;}
.h3{height:60.379277px;}
.h2{height:65.526152px;}
.h8{height:66.240000px;}
.h18{height:88.094355px;}
.h9{height:95.490000px;}
.h15{height:129.630000px;}
.h13{height:129.690000px;}
.h12{height:145.920000px;}
.h17{height:210.630000px;}
.h10{height:243.030000px;}
.he{height:486.150000px;}
.hf{height:518.520000px;}
.ha{height:604.050000px;}
.h14{height:696.840000px;}
.h11{height:761.640000px;}
.h16{height:875.040000px;}
.hd{height:1009.170000px;}
.hc{height:1020.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:126.840000px;}
.w6{width:137.550000px;}
.w7{width:148.140000px;}
.wa{width:211.890000px;}
.w8{width:286.320000px;}
.wb{width:360.750000px;}
.w9{width:435.180000px;}
.w5{width:573.450000px;}
.w3{width:701.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.770000px;}
.x8{left:9.300000px;}
.xa{left:34.770000px;}
.xb{left:61.770000px;}
.x1{left:106.379987px;}
.x3{left:212.519987px;}
.x5{left:234.300000px;}
.x6{left:372.570000px;}
.x9{left:447.000000px;}
.x7{left:521.430000px;}
.x2{left:783.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.336000pt;}
.ls1a{letter-spacing:-0.208000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.144000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.048000pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.384000pt;}
.lsc{letter-spacing:6.336000pt;}
.ls11{letter-spacing:29.696000pt;}
.ls2{letter-spacing:57.696000pt;}
.ls10{letter-spacing:66.656000pt;}
.ws5{word-spacing:-48.000000pt;}
.wsb{word-spacing:-12.080000pt;}
.ws4{word-spacing:-12.064000pt;}
.ws7{word-spacing:-12.032000pt;}
.ws9{word-spacing:-12.016000pt;}
.wsa{word-spacing:-11.952000pt;}
.ws2{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.856000pt;}
.wsd{word-spacing:-11.840000pt;}
.ws1{word-spacing:-11.808000pt;}
.ws11{word-spacing:-11.760000pt;}
.wsf{word-spacing:-11.744000pt;}
.ws6{word-spacing:-11.712000pt;}
.ws12{word-spacing:-11.696000pt;}
.ws3{word-spacing:-11.568000pt;}
.wse{word-spacing:-11.520000pt;}
.ws0{word-spacing:-0.032000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-1.104000pt;}
._0{width:0.936960pt;}
._8{width:2.183040pt;}
._6{width:3.120000pt;}
._7{width:4.224000pt;}
._e{width:5.232000pt;}
._c{width:6.240000pt;}
._a{width:7.392000pt;}
._9{width:8.448000pt;}
._5{width:9.642667pt;}
._4{width:10.560000pt;}
._2{width:13.104000pt;}
._3{width:14.570667pt;}
._d{width:15.653333pt;}
._11{width:16.874667pt;}
._19{width:17.888000pt;}
._b{width:19.536000pt;}
._f{width:20.880000pt;}
._16{width:24.725333pt;}
._15{width:25.674667pt;}
._10{width:29.424000pt;}
._12{width:30.572373pt;}
._17{width:34.224000pt;}
._18{width:100.656000pt;}
._14{width:107.328000pt;}
._13{width:108.240000pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:0.640000pt;}
.y9{bottom:2.960000pt;}
.y1c{bottom:15.840000pt;}
.yb{bottom:17.360000pt;}
.y97{bottom:17.386667pt;}
.ya1{bottom:17.440000pt;}
.ye{bottom:18.000000pt;}
.y5{bottom:19.840000pt;}
.y13{bottom:30.080000pt;}
.y1b{bottom:30.240000pt;}
.y42{bottom:31.760000pt;}
.y96{bottom:31.786667pt;}
.ya0{bottom:31.840000pt;}
.y1a{bottom:44.640000pt;}
.y41{bottom:46.160000pt;}
.y95{bottom:46.186667pt;}
.y9f{bottom:46.240000pt;}
.y12{bottom:47.440000pt;}
.y4{bottom:51.360000pt;}
.y19{bottom:59.040000pt;}
.y40{bottom:60.560000pt;}
.y94{bottom:60.586667pt;}
.y9e{bottom:60.640000pt;}
.y18{bottom:73.440000pt;}
.y3f{bottom:74.960000pt;}
.y93{bottom:74.986667pt;}
.y9d{bottom:75.040000pt;}
.y76{bottom:76.800000pt;}
.yb8{bottom:78.080000pt;}
.y99{bottom:80.080000pt;}
.y43{bottom:81.440000pt;}
.y1f{bottom:85.280000pt;}
.y3e{bottom:89.360000pt;}
.y92{bottom:89.386667pt;}
.y9c{bottom:89.440000pt;}
.y3d{bottom:103.760000pt;}
.y91{bottom:103.786667pt;}
.y9b{bottom:103.840000pt;}
.yb4{bottom:103.866667pt;}
.y74{bottom:118.160000pt;}
.y90{bottom:118.186667pt;}
.y9a{bottom:118.240000pt;}
.y3c{bottom:118.266667pt;}
.ya7{bottom:132.560000pt;}
.y73{bottom:132.586667pt;}
.y3b{bottom:132.666667pt;}
.ya6{bottom:146.960000pt;}
.y72{bottom:146.986667pt;}
.y3a{bottom:147.066667pt;}
.ya5{bottom:161.360000pt;}
.y71{bottom:161.386667pt;}
.y39{bottom:161.466667pt;}
.y8f{bottom:175.786667pt;}
.y38{bottom:175.866667pt;}
.ya4{bottom:190.186667pt;}
.y37{bottom:190.266667pt;}
.ya3{bottom:204.586667pt;}
.y36{bottom:204.666667pt;}
.y35{bottom:219.066667pt;}
.y34{bottom:233.466667pt;}
.y33{bottom:247.866667pt;}
.y70{bottom:262.266667pt;}
.y32{bottom:262.906667pt;}
.y6f{bottom:276.666667pt;}
.y31{bottom:277.306667pt;}
.y6e{bottom:291.066667pt;}
.y30{bottom:292.346667pt;}
.y6d{bottom:305.466667pt;}
.y2f{bottom:306.826667pt;}
.y6c{bottom:319.866667pt;}
.y2e{bottom:321.866667pt;}
.y6b{bottom:334.266667pt;}
.y2d{bottom:336.266667pt;}
.y6a{bottom:348.666667pt;}
.y2c{bottom:350.666667pt;}
.y69{bottom:363.066667pt;}
.y2b{bottom:365.066667pt;}
.y68{bottom:377.466667pt;}
.y2a{bottom:379.466667pt;}
.y67{bottom:391.866667pt;}
.y8e{bottom:391.893333pt;}
.y29{bottom:394.506667pt;}
.y66{bottom:406.266667pt;}
.y8d{bottom:406.293333pt;}
.y28{bottom:408.906667pt;}
.y65{bottom:420.666667pt;}
.y8c{bottom:420.693333pt;}
.y27{bottom:424.026667pt;}
.y64{bottom:435.066667pt;}
.y26{bottom:438.426667pt;}
.y63{bottom:449.466667pt;}
.y25{bottom:452.826667pt;}
.y62{bottom:463.866667pt;}
.y24{bottom:467.226667pt;}
.y61{bottom:478.266667pt;}
.y23{bottom:482.266667pt;}
.y8a{bottom:492.666667pt;}
.y60{bottom:492.693333pt;}
.y22{bottom:496.693333pt;}
.y5f{bottom:507.093333pt;}
.yb2{bottom:507.173333pt;}
.y21{bottom:511.093333pt;}
.y5e{bottom:521.493333pt;}
.yb1{bottom:521.573333pt;}
.y20{bottom:525.493333pt;}
.y5d{bottom:535.893333pt;}
.yb0{bottom:535.973333pt;}
.y98{bottom:541.706667pt;}
.y5c{bottom:550.293333pt;}
.yaf{bottom:550.373333pt;}
.y8b{bottom:556.746667pt;}
.y5b{bottom:564.693333pt;}
.yae{bottom:564.773333pt;}
.y5a{bottom:579.093333pt;}
.yad{bottom:579.173333pt;}
.y59{bottom:593.493333pt;}
.yac{bottom:593.573333pt;}
.y58{bottom:607.893333pt;}
.yab{bottom:607.973333pt;}
.y57{bottom:622.293333pt;}
.y89{bottom:622.373333pt;}
.y1e{bottom:622.853333pt;}
.y56{bottom:636.693333pt;}
.yaa{bottom:636.773333pt;}
.y88{bottom:637.413333pt;}
.y55{bottom:651.093333pt;}
.ya9{bottom:651.173333pt;}
.y87{bottom:651.813333pt;}
.y1d{bottom:652.373333pt;}
.y54{bottom:665.573333pt;}
.y86{bottom:666.853333pt;}
.y17{bottom:667.413333pt;}
.y53{bottom:679.973333pt;}
.y85{bottom:681.253333pt;}
.y52{bottom:694.373333pt;}
.y84{bottom:696.293333pt;}
.yb7{bottom:698.133333pt;}
.y51{bottom:708.773333pt;}
.y83{bottom:710.693333pt;}
.yb6{bottom:713.173333pt;}
.y50{bottom:723.173333pt;}
.y82{bottom:725.093333pt;}
.y4f{bottom:737.573333pt;}
.y81{bottom:739.493333pt;}
.y4e{bottom:751.973333pt;}
.y16{bottom:752.933333pt;}
.y80{bottom:753.973333pt;}
.ya8{bottom:757.733333pt;}
.ybc{bottom:764.693333pt;}
.y4d{bottom:766.373333pt;}
.y11{bottom:768.053333pt;}
.y7f{bottom:769.013333pt;}
.ya2{bottom:772.853333pt;}
.y4c{bottom:780.773333pt;}
.y7e{bottom:783.413333pt;}
.y4b{bottom:795.173333pt;}
.y15{bottom:797.493333pt;}
.y7d{bottom:798.453333pt;}
.ybb{bottom:801.653333pt;}
.y4a{bottom:809.573333pt;}
.y14{bottom:812.533333pt;}
.y7c{bottom:812.853333pt;}
.y49{bottom:823.973333pt;}
.y7b{bottom:827.253333pt;}
.yd{bottom:827.653333pt;}
.yb5{bottom:829.093333pt;}
.y48{bottom:838.373333pt;}
.y7a{bottom:842.373333pt;}
.y10{bottom:842.693333pt;}
.yb3{bottom:844.133333pt;}
.y47{bottom:852.773333pt;}
.y79{bottom:856.773333pt;}
.yc{bottom:857.733333pt;}
.yba{bottom:858.533333pt;}
.y46{bottom:867.200000pt;}
.y78{bottom:871.200000pt;}
.ya{bottom:872.853333pt;}
.yb9{bottom:873.653333pt;}
.y45{bottom:881.600000pt;}
.y77{bottom:885.600000pt;}
.y44{bottom:896.000000pt;}
.y8{bottom:902.293333pt;}
.y7{bottom:935.813333pt;}
.y6{bottom:959.600000pt;}
.y75{bottom:974.480000pt;}
.y3{bottom:1009.440000pt;}
.y2{bottom:1043.360000pt;}
.y1{bottom:1061.280000pt;}
.h5{height:14.400000pt;}
.h6{height:28.800000pt;}
.h7{height:29.440000pt;}
.h4{height:44.273438pt;}
.hb{height:49.336436pt;}
.h3{height:53.670469pt;}
.h2{height:58.245469pt;}
.h8{height:58.880000pt;}
.h18{height:78.306094pt;}
.h9{height:84.880000pt;}
.h15{height:115.226667pt;}
.h13{height:115.280000pt;}
.h12{height:129.706667pt;}
.h17{height:187.226667pt;}
.h10{height:216.026667pt;}
.he{height:432.133333pt;}
.hf{height:460.906667pt;}
.ha{height:536.933333pt;}
.h14{height:619.413333pt;}
.h11{height:677.013333pt;}
.h16{height:777.813333pt;}
.hd{height:897.040000pt;}
.hc{height:907.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:112.746667pt;}
.w6{width:122.266667pt;}
.w7{width:131.680000pt;}
.wa{width:188.346667pt;}
.w8{width:254.506667pt;}
.wb{width:320.666667pt;}
.w9{width:386.826667pt;}
.w5{width:509.733333pt;}
.w3{width:623.120000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.906667pt;}
.x8{left:8.266667pt;}
.xa{left:30.906667pt;}
.xb{left:54.906667pt;}
.x1{left:94.559988pt;}
.x3{left:188.906655pt;}
.x5{left:208.266667pt;}
.x6{left:331.173333pt;}
.x9{left:397.333333pt;}
.x7{left:463.493333pt;}
.x2{left:696.719988pt;}
}




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