
    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_518ba80136d09d6d8a4ba7f9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b3ffa86b8559a9364bc41fc5.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dc5953eae4cf36e9199a31bf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_58aa7c1cd430ebe4acc4bd86.woff')format("woff");}.ff4{font-family:ff4;line-height:1.110840;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_cf2d7b85265693467fa0429b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.123047;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_0729df4812c33fcd51dd25d7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_42ad5f9c7af635c135621752.woff')format("woff");}.ff7{font-family:ff7;line-height:1.129395;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);}
.v3{vertical-align:-66.240000px;}
.v2{vertical-align:-64.800000px;}
.v1{vertical-align:-46.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.ls22{letter-spacing:-9.504000px;}
.ls20{letter-spacing:-7.349760px;}
.ls1f{letter-spacing:-3.240000px;}
.ls12{letter-spacing:-1.134000px;}
.ls6{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.397200px;}
.ls1e{letter-spacing:-0.334200px;}
.ls7{letter-spacing:-0.305400px;}
.ls1d{letter-spacing:-0.230400px;}
.ls1c{letter-spacing:-0.219000px;}
.ls13{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.051840px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.385920px;}
.ls14{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.440000px;}
.lse{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.880000px;}
.ls4{letter-spacing:3.600000px;}
.lsd{letter-spacing:5.040000px;}
.lsc{letter-spacing:5.760000px;}
.ls21{letter-spacing:8.110080px;}
.ls1b{letter-spacing:12.240000px;}
.ls15{letter-spacing:15.840000px;}
.lsb{letter-spacing:16.145280px;}
.ls1{letter-spacing:18.385920px;}
.lsa{letter-spacing:19.745280px;}
.ls19{letter-spacing:31.345920px;}
.ls17{letter-spacing:38.826720px;}
.ls18{letter-spacing:119.136000px;}
.ls2{letter-spacing:144.840000px;}
.ls3{letter-spacing:1449.996000px;}
.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;}
}
.ws7{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.450800px;}
.ws3{word-spacing:-16.254600px;}
.ws8{word-spacing:-16.162800px;}
.ws5{word-spacing:-16.145400px;}
.wsb{word-spacing:-16.102200px;}
.ws1{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.788160px;}
.wsc{word-spacing:-15.621000px;}
.wse{word-spacing:-15.609600px;}
.ws9{word-spacing:-15.426000px;}
.ws2{word-spacing:-15.120000px;}
.ws0{word-spacing:-13.860000px;}
.wsd{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-13.294080px;}
._14{margin-left:-5.137920px;}
._c{margin-left:-4.118400px;}
._d{margin-left:-2.977920px;}
._0{margin-left:-1.584000px;}
._5{width:1.140480px;}
._6{width:2.534400px;}
._b{width:4.118400px;}
._7{width:5.258880px;}
._2{width:6.752160px;}
._1{width:7.856640px;}
._9{width:8.893920px;}
._4{width:10.517760px;}
._3{width:11.784960px;}
._f{width:13.060800px;}
._10{width:14.356800px;}
._11{width:15.553440px;}
._13{width:17.666400px;}
._e{width:18.679680px;}
._15{width:19.997760px;}
._12{width:21.329280px;}
._a{width:110.136000px;}
.fc5{color:rgb(0,112,192);}
.fc3{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(32,33,34);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:208.650000px;}
.y8f{bottom:228.990000px;}
.y32{bottom:229.170000px;}
.y62{bottom:229.710000px;}
.y31{bottom:248.070000px;}
.y61{bottom:248.430000px;}
.yb6{bottom:266.430000px;}
.y30{bottom:266.790000px;}
.y8e{bottom:266.970000px;}
.y60{bottom:267.330000px;}
.yb5{bottom:284.430000px;}
.y2f{bottom:285.330000px;}
.y5f{bottom:286.050000px;}
.yb4{bottom:302.250000px;}
.y2e{bottom:304.050000px;}
.y5e{bottom:304.950000px;}
.yb3{bottom:320.250000px;}
.y2d{bottom:322.590000px;}
.y5d{bottom:323.670000px;}
.y8d{bottom:324.030000px;}
.yb2{bottom:338.250000px;}
.y2c{bottom:341.130000px;}
.y5c{bottom:342.570000px;}
.y8c{bottom:342.930000px;}
.yb1{bottom:356.250000px;}
.y2b{bottom:359.670000px;}
.y5b{bottom:361.290000px;}
.y8b{bottom:361.830000px;}
.yb0{bottom:374.250000px;}
.y2a{bottom:378.390000px;}
.y5a{bottom:380.190000px;}
.y8a{bottom:380.910000px;}
.yaf{bottom:392.115000px;}
.y29{bottom:396.975000px;}
.y59{bottom:399.135000px;}
.y89{bottom:399.855000px;}
.yae{bottom:410.115000px;}
.y28{bottom:415.515000px;}
.y58{bottom:418.035000px;}
.y88{bottom:418.935000px;}
.yad{bottom:428.115000px;}
.y27{bottom:434.055000px;}
.y57{bottom:437.115000px;}
.y87{bottom:437.835000px;}
.yac{bottom:446.115000px;}
.y26{bottom:452.595000px;}
.y56{bottom:456.015000px;}
.y86{bottom:456.735000px;}
.yab{bottom:463.935000px;}
.y25{bottom:471.315000px;}
.y55{bottom:474.915000px;}
.y85{bottom:475.815000px;}
.yaa{bottom:481.935000px;}
.y24{bottom:488.235000px;}
.y54{bottom:493.995000px;}
.y84{bottom:494.715000px;}
.y23{bottom:499.935000px;}
.y53{bottom:512.895000px;}
.y83{bottom:513.795000px;}
.y22{bottom:517.575000px;}
.ya9{bottom:517.935000px;}
.y52{bottom:531.975000px;}
.y82{bottom:532.695000px;}
.y21{bottom:535.395000px;}
.ya8{bottom:535.935000px;}
.y51{bottom:550.875000px;}
.y81{bottom:551.595000px;}
.y20{bottom:553.035000px;}
.ya7{bottom:553.755000px;}
.y50{bottom:569.775000px;}
.y80{bottom:570.675000px;}
.y1f{bottom:570.855000px;}
.ya6{bottom:571.755000px;}
.y1e{bottom:588.495000px;}
.y4f{bottom:588.855000px;}
.y7f{bottom:589.575000px;}
.ya5{bottom:589.755000px;}
.y1d{bottom:606.315000px;}
.y4e{bottom:607.755000px;}
.y7e{bottom:608.655000px;}
.y1c{bottom:624.135000px;}
.ya4{bottom:625.575000px;}
.y4d{bottom:626.835000px;}
.y7d{bottom:627.555000px;}
.y1b{bottom:641.805000px;}
.ya3{bottom:643.605000px;}
.y4c{bottom:645.765000px;}
.y7c{bottom:646.485000px;}
.ya2{bottom:661.605000px;}
.y4b{bottom:664.665000px;}
.y7b{bottom:665.565000px;}
.y1a{bottom:675.645000px;}
.ya1{bottom:679.605000px;}
.y4a{bottom:683.745000px;}
.y7a{bottom:684.465000px;}
.y19{bottom:687.345000px;}
.ya0{bottom:697.605000px;}
.y49{bottom:702.645000px;}
.y79{bottom:703.545000px;}
.y18{bottom:705.165000px;}
.y48{bottom:721.725000px;}
.y78{bottom:722.445000px;}
.y9f{bottom:731.985000px;}
.y17{bottom:739.005000px;}
.y47{bottom:740.625000px;}
.y77{bottom:741.345000px;}
.y9e{bottom:743.865000px;}
.y16{bottom:750.705000px;}
.y46{bottom:759.705000px;}
.y76{bottom:760.425000px;}
.y9d{bottom:762.765000px;}
.y15{bottom:769.425000px;}
.y45{bottom:778.605000px;}
.y75{bottom:779.325000px;}
.y9c{bottom:781.485000px;}
.y44{bottom:797.505000px;}
.y14{bottom:798.045000px;}
.y74{bottom:798.405000px;}
.y9b{bottom:800.385000px;}
.y13{bottom:816.405000px;}
.y43{bottom:816.585000px;}
.y73{bottom:817.305000px;}
.y9a{bottom:819.105000px;}
.y12{bottom:833.505000px;}
.y42{bottom:835.485000px;}
.y72{bottom:836.385000px;}
.y99{bottom:838.005000px;}
.y11{bottom:851.505000px;}
.y41{bottom:854.565000px;}
.y71{bottom:855.285000px;}
.y98{bottom:856.725000px;}
.y10{bottom:869.505000px;}
.y40{bottom:873.465000px;}
.y70{bottom:874.185000px;}
.y97{bottom:875.625000px;}
.yf{bottom:887.325000px;}
.y3f{bottom:892.365000px;}
.y6f{bottom:893.310000px;}
.y96{bottom:894.390000px;}
.ye{bottom:905.370000px;}
.y3e{bottom:911.490000px;}
.y6e{bottom:912.210000px;}
.y95{bottom:913.290000px;}
.yd{bottom:923.370000px;}
.y3d{bottom:930.390000px;}
.y6d{bottom:931.290000px;}
.y94{bottom:932.010000px;}
.yc{bottom:941.370000px;}
.y3c{bottom:949.470000px;}
.y6c{bottom:950.190000px;}
.y93{bottom:950.910000px;}
.yb{bottom:959.190000px;}
.y3b{bottom:968.370000px;}
.y6b{bottom:969.090000px;}
.y92{bottom:969.630000px;}
.ya{bottom:977.190000px;}
.y3a{bottom:987.270000px;}
.y6a{bottom:988.170000px;}
.y91{bottom:988.530000px;}
.y9{bottom:995.190000px;}
.y39{bottom:1006.350000px;}
.y69{bottom:1007.070000px;}
.y90{bottom:1007.430000px;}
.y8{bottom:1013.190000px;}
.y38{bottom:1025.250000px;}
.y68{bottom:1026.150000px;}
.y7{bottom:1031.190000px;}
.y37{bottom:1044.330000px;}
.y67{bottom:1045.050000px;}
.y6{bottom:1049.010000px;}
.y36{bottom:1063.230000px;}
.y66{bottom:1063.770000px;}
.y5{bottom:1067.010000px;}
.y35{bottom:1082.130000px;}
.y65{bottom:1082.670000px;}
.y4{bottom:1085.010000px;}
.y34{bottom:1101.210000px;}
.y64{bottom:1101.390000px;}
.y3{bottom:1103.010000px;}
.y33{bottom:1120.110000px;}
.y63{bottom:1120.290000px;}
.y2{bottom:1120.830000px;}
.h7{height:35.332031px;}
.h2{height:52.998047px;}
.h9{height:56.646563px;}
.h5{height:58.651172px;}
.hc{height:59.383125px;}
.h8{height:62.153438px;}
.h4{height:62.184375px;}
.ha{height:63.855000px;}
.hb{height:65.010937px;}
.h3{height:65.124096px;}
.h6{height:66.757500px;}
.hf{height:68.084282px;}
.h0{height:826.924500px;}
.h1{height:827.250000px;}
.he{height:1263.000000px;}
.hd{height:1263.060000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:140.435987px;}
.xa{left:147.815987px;}
.x2{left:151.049987px;}
.x5{left:162.749987px;}
.x3{left:171.929987px;}
.x9{left:193.529987px;}
.x6{left:296.534987px;}
.x1{left:436.424987px;}
.x7{left:535.964987px;}
.x8{left:616.829987px;}
@media print{
.v3{vertical-align:-58.880000pt;}
.v2{vertical-align:-57.600000pt;}
.v1{vertical-align:-41.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.ls22{letter-spacing:-8.448000pt;}
.ls20{letter-spacing:-6.533120pt;}
.ls1f{letter-spacing:-2.880000pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.353067pt;}
.ls1e{letter-spacing:-0.297067pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls1d{letter-spacing:-0.204800pt;}
.ls1c{letter-spacing:-0.194667pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.046080pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.343040pt;}
.ls14{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.200000pt;}
.lsd{letter-spacing:4.480000pt;}
.lsc{letter-spacing:5.120000pt;}
.ls21{letter-spacing:7.208960pt;}
.ls1b{letter-spacing:10.880000pt;}
.ls15{letter-spacing:14.080000pt;}
.lsb{letter-spacing:14.351360pt;}
.ls1{letter-spacing:16.343040pt;}
.lsa{letter-spacing:17.551360pt;}
.ls19{letter-spacing:27.863040pt;}
.ls17{letter-spacing:34.512640pt;}
.ls18{letter-spacing:105.898667pt;}
.ls2{letter-spacing:128.746667pt;}
.ls3{letter-spacing:1288.885333pt;}
.ws7{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.622933pt;}
.ws3{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.366933pt;}
.ws5{word-spacing:-14.351467pt;}
.wsb{word-spacing:-14.313067pt;}
.ws1{word-spacing:-14.080000pt;}
.ws4{word-spacing:-14.033920pt;}
.wsc{word-spacing:-13.885333pt;}
.wse{word-spacing:-13.875200pt;}
.ws9{word-spacing:-13.712000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.320000pt;}
.wsd{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-11.816960pt;}
._14{margin-left:-4.567040pt;}
._c{margin-left:-3.660800pt;}
._d{margin-left:-2.647040pt;}
._0{margin-left:-1.408000pt;}
._5{width:1.013760pt;}
._6{width:2.252800pt;}
._b{width:3.660800pt;}
._7{width:4.674560pt;}
._2{width:6.001920pt;}
._1{width:6.983680pt;}
._9{width:7.905707pt;}
._4{width:9.349120pt;}
._3{width:10.475520pt;}
._f{width:11.609600pt;}
._10{width:12.761600pt;}
._11{width:13.825280pt;}
._13{width:15.703467pt;}
._e{width:16.604160pt;}
._15{width:17.775787pt;}
._12{width:18.959360pt;}
._a{width:97.898667pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:185.466667pt;}
.y8f{bottom:203.546667pt;}
.y32{bottom:203.706667pt;}
.y62{bottom:204.186667pt;}
.y31{bottom:220.506667pt;}
.y61{bottom:220.826667pt;}
.yb6{bottom:236.826667pt;}
.y30{bottom:237.146667pt;}
.y8e{bottom:237.306667pt;}
.y60{bottom:237.626667pt;}
.yb5{bottom:252.826667pt;}
.y2f{bottom:253.626667pt;}
.y5f{bottom:254.266667pt;}
.yb4{bottom:268.666667pt;}
.y2e{bottom:270.266667pt;}
.y5e{bottom:271.066667pt;}
.yb3{bottom:284.666667pt;}
.y2d{bottom:286.746667pt;}
.y5d{bottom:287.706667pt;}
.y8d{bottom:288.026667pt;}
.yb2{bottom:300.666667pt;}
.y2c{bottom:303.226667pt;}
.y5c{bottom:304.506667pt;}
.y8c{bottom:304.826667pt;}
.yb1{bottom:316.666667pt;}
.y2b{bottom:319.706667pt;}
.y5b{bottom:321.146667pt;}
.y8b{bottom:321.626667pt;}
.yb0{bottom:332.666667pt;}
.y2a{bottom:336.346667pt;}
.y5a{bottom:337.946667pt;}
.y8a{bottom:338.586667pt;}
.yaf{bottom:348.546667pt;}
.y29{bottom:352.866667pt;}
.y59{bottom:354.786667pt;}
.y89{bottom:355.426667pt;}
.yae{bottom:364.546667pt;}
.y28{bottom:369.346667pt;}
.y58{bottom:371.586667pt;}
.y88{bottom:372.386667pt;}
.yad{bottom:380.546667pt;}
.y27{bottom:385.826667pt;}
.y57{bottom:388.546667pt;}
.y87{bottom:389.186667pt;}
.yac{bottom:396.546667pt;}
.y26{bottom:402.306667pt;}
.y56{bottom:405.346667pt;}
.y86{bottom:405.986667pt;}
.yab{bottom:412.386667pt;}
.y25{bottom:418.946667pt;}
.y55{bottom:422.146667pt;}
.y85{bottom:422.946667pt;}
.yaa{bottom:428.386667pt;}
.y24{bottom:433.986667pt;}
.y54{bottom:439.106667pt;}
.y84{bottom:439.746667pt;}
.y23{bottom:444.386667pt;}
.y53{bottom:455.906667pt;}
.y83{bottom:456.706667pt;}
.y22{bottom:460.066667pt;}
.ya9{bottom:460.386667pt;}
.y52{bottom:472.866667pt;}
.y82{bottom:473.506667pt;}
.y21{bottom:475.906667pt;}
.ya8{bottom:476.386667pt;}
.y51{bottom:489.666667pt;}
.y81{bottom:490.306667pt;}
.y20{bottom:491.586667pt;}
.ya7{bottom:492.226667pt;}
.y50{bottom:506.466667pt;}
.y80{bottom:507.266667pt;}
.y1f{bottom:507.426667pt;}
.ya6{bottom:508.226667pt;}
.y1e{bottom:523.106667pt;}
.y4f{bottom:523.426667pt;}
.y7f{bottom:524.066667pt;}
.ya5{bottom:524.226667pt;}
.y1d{bottom:538.946667pt;}
.y4e{bottom:540.226667pt;}
.y7e{bottom:541.026667pt;}
.y1c{bottom:554.786667pt;}
.ya4{bottom:556.066667pt;}
.y4d{bottom:557.186667pt;}
.y7d{bottom:557.826667pt;}
.y1b{bottom:570.493333pt;}
.ya3{bottom:572.093333pt;}
.y4c{bottom:574.013333pt;}
.y7c{bottom:574.653333pt;}
.ya2{bottom:588.093333pt;}
.y4b{bottom:590.813333pt;}
.y7b{bottom:591.613333pt;}
.y1a{bottom:600.573333pt;}
.ya1{bottom:604.093333pt;}
.y4a{bottom:607.773333pt;}
.y7a{bottom:608.413333pt;}
.y19{bottom:610.973333pt;}
.ya0{bottom:620.093333pt;}
.y49{bottom:624.573333pt;}
.y79{bottom:625.373333pt;}
.y18{bottom:626.813333pt;}
.y48{bottom:641.533333pt;}
.y78{bottom:642.173333pt;}
.y9f{bottom:650.653333pt;}
.y17{bottom:656.893333pt;}
.y47{bottom:658.333333pt;}
.y77{bottom:658.973333pt;}
.y9e{bottom:661.213333pt;}
.y16{bottom:667.293333pt;}
.y46{bottom:675.293333pt;}
.y76{bottom:675.933333pt;}
.y9d{bottom:678.013333pt;}
.y15{bottom:683.933333pt;}
.y45{bottom:692.093333pt;}
.y75{bottom:692.733333pt;}
.y9c{bottom:694.653333pt;}
.y44{bottom:708.893333pt;}
.y14{bottom:709.373333pt;}
.y74{bottom:709.693333pt;}
.y9b{bottom:711.453333pt;}
.y13{bottom:725.693333pt;}
.y43{bottom:725.853333pt;}
.y73{bottom:726.493333pt;}
.y9a{bottom:728.093333pt;}
.y12{bottom:740.893333pt;}
.y42{bottom:742.653333pt;}
.y72{bottom:743.453333pt;}
.y99{bottom:744.893333pt;}
.y11{bottom:756.893333pt;}
.y41{bottom:759.613333pt;}
.y71{bottom:760.253333pt;}
.y98{bottom:761.533333pt;}
.y10{bottom:772.893333pt;}
.y40{bottom:776.413333pt;}
.y70{bottom:777.053333pt;}
.y97{bottom:778.333333pt;}
.yf{bottom:788.733333pt;}
.y3f{bottom:793.213333pt;}
.y6f{bottom:794.053333pt;}
.y96{bottom:795.013333pt;}
.ye{bottom:804.773333pt;}
.y3e{bottom:810.213333pt;}
.y6e{bottom:810.853333pt;}
.y95{bottom:811.813333pt;}
.yd{bottom:820.773333pt;}
.y3d{bottom:827.013333pt;}
.y6d{bottom:827.813333pt;}
.y94{bottom:828.453333pt;}
.yc{bottom:836.773333pt;}
.y3c{bottom:843.973333pt;}
.y6c{bottom:844.613333pt;}
.y93{bottom:845.253333pt;}
.yb{bottom:852.613333pt;}
.y3b{bottom:860.773333pt;}
.y6b{bottom:861.413333pt;}
.y92{bottom:861.893333pt;}
.ya{bottom:868.613333pt;}
.y3a{bottom:877.573333pt;}
.y6a{bottom:878.373333pt;}
.y91{bottom:878.693333pt;}
.y9{bottom:884.613333pt;}
.y39{bottom:894.533333pt;}
.y69{bottom:895.173333pt;}
.y90{bottom:895.493333pt;}
.y8{bottom:900.613333pt;}
.y38{bottom:911.333333pt;}
.y68{bottom:912.133333pt;}
.y7{bottom:916.613333pt;}
.y37{bottom:928.293333pt;}
.y67{bottom:928.933333pt;}
.y6{bottom:932.453333pt;}
.y36{bottom:945.093333pt;}
.y66{bottom:945.573333pt;}
.y5{bottom:948.453333pt;}
.y35{bottom:961.893333pt;}
.y65{bottom:962.373333pt;}
.y4{bottom:964.453333pt;}
.y34{bottom:978.853333pt;}
.y64{bottom:979.013333pt;}
.y3{bottom:980.453333pt;}
.y33{bottom:995.653333pt;}
.y63{bottom:995.813333pt;}
.y2{bottom:996.293333pt;}
.h7{height:31.406250pt;}
.h2{height:47.109375pt;}
.h9{height:50.352500pt;}
.h5{height:52.134375pt;}
.hc{height:52.785000pt;}
.h8{height:55.247500pt;}
.h4{height:55.275000pt;}
.ha{height:56.760000pt;}
.hb{height:57.787500pt;}
.h3{height:57.888085pt;}
.h6{height:59.340000pt;}
.hf{height:60.519362pt;}
.h0{height:735.044000pt;}
.h1{height:735.333333pt;}
.he{height:1122.666667pt;}
.hd{height:1122.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:124.831988pt;}
.xa{left:131.391988pt;}
.x2{left:134.266655pt;}
.x5{left:144.666655pt;}
.x3{left:152.826655pt;}
.x9{left:172.026655pt;}
.x6{left:263.586655pt;}
.x1{left:387.933322pt;}
.x7{left:476.413322pt;}
.x8{left:548.293322pt;}
}




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