
    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_1154ea7aa997b9d3ba479765.woff2')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_6ff9fadd21932c22b983467e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1ddd7bb355fefe06de549ac5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_994dd30ed0aacdd1f4ad1561.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_086a26dedac9689a349d7b7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_fe8b02025611edc008921e34.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_652ef0ea90f9437c81bdf6f9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_624391efd6dce6e639f95668.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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);}
.v2{vertical-align:-91.440000px;}
.v1{vertical-align:-78.480000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.690000px;}
.lsd{letter-spacing:-0.684000px;}
.ls1f{letter-spacing:-0.378600px;}
.lse{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.037440px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.037440px;}
.ls21{letter-spacing:0.148080px;}
.ls15{letter-spacing:0.259920px;}
.ls20{letter-spacing:0.341280px;}
.ls1a{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.354720px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.378600px;}
.ls3{letter-spacing:0.378720px;}
.ls13{letter-spacing:0.494640px;}
.ls6{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.522720px;}
.ls18{letter-spacing:3.600000px;}
.ls11{letter-spacing:11.340000px;}
.ls19{letter-spacing:12.060000px;}
.ls1b{letter-spacing:14.220000px;}
.ls17{letter-spacing:14.940000px;}
.ls23{letter-spacing:18.540000px;}
.ls9{letter-spacing:19.260000px;}
.ls1e{letter-spacing:24.300000px;}
.ls16{letter-spacing:27.180000px;}
.ls10{letter-spacing:28.620000px;}
.ls1c{letter-spacing:29.316000px;}
.ls14{letter-spacing:29.340000px;}
.ls1d{letter-spacing:30.060000px;}
.ls12{letter-spacing:32.940000px;}
.ls0{letter-spacing:47.700000px;}
.ls7{letter-spacing:52.380000px;}
.ls1{letter-spacing:197.604000px;}
.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:-84.240000px;}
.ws3{word-spacing:-21.438600px;}
.ws2{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.wsc{word-spacing:-21.022560px;}
.ws4{word-spacing:-20.700000px;}
.wsb{word-spacing:-20.681400px;}
.ws9{word-spacing:-20.376000px;}
.ws5{word-spacing:-20.370000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-14.940000px;}
.ws6{word-spacing:0.000000px;}
._25{margin-left:-5.171760px;}
._26{margin-left:-2.270880px;}
._0{margin-left:-1.029600px;}
._1{width:1.025520px;}
._2{width:2.790960px;}
._22{width:3.820320px;}
._5{width:4.885920px;}
._4{width:6.246480px;}
._3{width:7.413120px;}
._c{width:8.424000px;}
._2d{width:9.519120px;}
._f{width:10.866960px;}
._10{width:11.898480px;}
._27{width:12.901920px;}
._15{width:14.017440px;}
._33{width:15.213840px;}
._11{width:16.361280px;}
._16{width:18.033600px;}
._d{width:20.058480px;}
._1f{width:22.261680px;}
._12{width:24.008400px;}
._6{width:25.122240px;}
._7{width:26.390400px;}
._b{width:27.653280px;}
._e{width:28.776480px;}
._23{width:30.111360px;}
._1c{width:31.590000px;}
._1d{width:33.060000px;}
._20{width:34.299120px;}
._14{width:35.549280px;}
._1b{width:37.598880px;}
._24{width:38.654400px;}
._2b{width:40.567200px;}
._31{width:41.792880px;}
._2e{width:42.793920px;}
._1e{width:44.076240px;}
._19{width:45.152640px;}
._1a{width:46.282800px;}
._2c{width:47.408880px;}
._8{width:48.774960px;}
._18{width:50.975760px;}
._17{width:52.228800px;}
._21{width:54.082080px;}
._13{width:55.261440px;}
._2f{width:61.261200px;}
._a{width:76.022640px;}
._9{width:77.621520px;}
._29{width:79.522560px;}
._28{width:80.599440px;}
._2a{width:88.386480px;}
._30{width:90.118080px;}
._32{width:104.289120px;}
.fc6{color:transparent;}
.fc5{color:rgb(68,114,196);}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y56{bottom:3.960000px;}
.y7a{bottom:8.460000px;}
.y4{bottom:12.240000px;}
.y7c{bottom:21.600000px;}
.y3{bottom:23.976000px;}
.y54{bottom:27.540000px;}
.y2{bottom:31.176000px;}
.y79{bottom:32.220000px;}
.y53{bottom:48.240000px;}
.y78{bottom:56.160000px;}
.y52{bottom:68.940000px;}
.y29{bottom:79.416000px;}
.y92{bottom:80.676000px;}
.y4f{bottom:89.496000px;}
.y74{bottom:94.716000px;}
.y76{bottom:101.016000px;}
.y4e{bottom:106.776000px;}
.y28{bottom:107.136000px;}
.y73{bottom:108.216000px;}
.y91{bottom:108.576000px;}
.y4d{bottom:111.996000px;}
.y4c{bottom:125.316000px;}
.y75{bottom:128.736000px;}
.y27{bottom:135.036000px;}
.y90{bottom:136.296000px;}
.y4a{bottom:156.450000px;}
.y72{bottom:158.970000px;}
.y26{bottom:162.750000px;}
.y4b{bottom:164.010000px;}
.y49{bottom:184.350000px;}
.y71{bottom:186.690000px;}
.y25{bottom:190.470000px;}
.y8f{bottom:191.730000px;}
.y48{bottom:212.070000px;}
.y70{bottom:214.590000px;}
.y24{bottom:218.190000px;}
.y8e{bottom:219.630000px;}
.y47{bottom:239.790000px;}
.y6f{bottom:242.310000px;}
.y23{bottom:246.090000px;}
.y8d{bottom:247.350000px;}
.y46{bottom:267.690000px;}
.y6e{bottom:270.030000px;}
.y22{bottom:273.810000px;}
.y8c{bottom:275.070000px;}
.y45{bottom:295.455000px;}
.y6d{bottom:297.975000px;}
.y21{bottom:301.575000px;}
.y8b{bottom:303.015000px;}
.y44{bottom:323.175000px;}
.y6c{bottom:325.695000px;}
.y20{bottom:329.475000px;}
.y8a{bottom:330.735000px;}
.y43{bottom:350.895000px;}
.y6b{bottom:353.415000px;}
.y1f{bottom:357.195000px;}
.y89{bottom:358.455000px;}
.y42{bottom:378.795000px;}
.y6a{bottom:381.135000px;}
.y1e{bottom:384.915000px;}
.y88{bottom:386.175000px;}
.y41{bottom:406.515000px;}
.y69{bottom:409.035000px;}
.y1d{bottom:412.635000px;}
.y87{bottom:414.075000px;}
.y40{bottom:434.235000px;}
.y68{bottom:436.755000px;}
.y1c{bottom:440.535000px;}
.y86{bottom:441.795000px;}
.y3f{bottom:461.955000px;}
.y67{bottom:464.475000px;}
.y1b{bottom:468.255000px;}
.y85{bottom:469.515000px;}
.y3e{bottom:489.855000px;}
.y66{bottom:492.375000px;}
.y1a{bottom:495.975000px;}
.y84{bottom:497.415000px;}
.y3d{bottom:517.575000px;}
.y65{bottom:520.095000px;}
.y19{bottom:523.875000px;}
.y83{bottom:525.135000px;}
.y3c{bottom:545.295000px;}
.y64{bottom:547.815000px;}
.y18{bottom:551.595000px;}
.y82{bottom:552.855000px;}
.y3b{bottom:573.225000px;}
.y63{bottom:575.565000px;}
.y17{bottom:579.345000px;}
.y81{bottom:580.605000px;}
.y3a{bottom:600.945000px;}
.y62{bottom:603.465000px;}
.y16{bottom:607.065000px;}
.y80{bottom:608.505000px;}
.y39{bottom:628.665000px;}
.y61{bottom:631.185000px;}
.y15{bottom:634.965000px;}
.y7f{bottom:636.225000px;}
.y38{bottom:656.385000px;}
.y60{bottom:658.905000px;}
.y14{bottom:662.685000px;}
.y7e{bottom:663.945000px;}
.y37{bottom:684.285000px;}
.y5f{bottom:686.625000px;}
.y7d{bottom:688.785000px;}
.y13{bottom:690.405000px;}
.y7b{bottom:702.285000px;}
.y36{bottom:712.005000px;}
.y5e{bottom:714.525000px;}
.y12{bottom:718.125000px;}
.y35{bottom:739.725000px;}
.y77{bottom:741.345000px;}
.y5d{bottom:742.245000px;}
.y11{bottom:746.025000px;}
.y34{bottom:767.625000px;}
.y5c{bottom:769.965000px;}
.y10{bottom:773.745000px;}
.y33{bottom:795.345000px;}
.y5b{bottom:797.865000px;}
.yf{bottom:801.465000px;}
.y32{bottom:823.065000px;}
.y5a{bottom:825.585000px;}
.ye{bottom:829.365000px;}
.y31{bottom:850.830000px;}
.y59{bottom:853.350000px;}
.yd{bottom:857.130000px;}
.y30{bottom:878.730000px;}
.y58{bottom:881.070000px;}
.yc{bottom:884.850000px;}
.y2f{bottom:906.450000px;}
.y57{bottom:908.970000px;}
.y55{bottom:929.310000px;}
.y2e{bottom:934.170000px;}
.yb{bottom:935.430000px;}
.y51{bottom:950.730000px;}
.y2d{bottom:961.890000px;}
.ya{bottom:973.050000px;}
.y9{bottom:989.610000px;}
.y2c{bottom:989.790000px;}
.y8{bottom:1010.310000px;}
.y2b{bottom:1017.510000px;}
.y7{bottom:1030.290000px;}
.y2a{bottom:1045.230000px;}
.y6{bottom:1048.830000px;}
.y50{bottom:1052.790000px;}
.y5{bottom:1073.130000px;}
.y1{bottom:1190.160000px;}
.h11{height:20.700000px;}
.h3{height:31.860000px;}
.hc{height:38.158594px;}
.h14{height:38.340000px;}
.h13{height:50.273438px;}
.h8{height:52.971680px;}
.hb{height:52.998047px;}
.h9{height:58.621992px;}
.hd{height:58.651172px;}
.ha{height:58.819922px;}
.h5{height:60.226875px;}
.h7{height:70.628906px;}
.h10{height:70.664062px;}
.h6{height:72.562500px;}
.h12{height:72.900000px;}
.he{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hf{height:85.680000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w5{width:89.460000px;}
.wb{width:105.696000px;}
.wa{width:115.920000px;}
.w6{width:128.556000px;}
.w7{width:131.220000px;}
.we{width:137.376000px;}
.wd{width:148.140000px;}
.w8{width:155.550000px;}
.wc{width:169.230000px;}
.w9{width:177.870000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:9.000000px;}
.x13{left:14.220000px;}
.x26{left:16.560000px;}
.x23{left:19.980000px;}
.x3{left:22.140000px;}
.x1a{left:25.950000px;}
.x24{left:27.540000px;}
.x1b{left:28.650000px;}
.x1d{left:31.320000px;}
.x18{left:33.480000px;}
.x2b{left:39.240000px;}
.x17{left:40.320000px;}
.x2a{left:44.454000px;}
.x2d{left:46.305000px;}
.x1f{left:47.520000px;}
.x1e{left:50.580000px;}
.x2c{left:55.980000px;}
.x20{left:59.790000px;}
.x21{left:66.465000px;}
.x1{left:84.959987px;}
.xd{left:89.855987px;}
.x12{left:103.716000px;}
.x4{left:106.415987px;}
.x5{left:120.995987px;}
.x9{left:138.095987px;}
.x14{left:194.070000px;}
.x25{left:223.410000px;}
.x22{left:229.169987px;}
.x8{left:240.689987px;}
.xf{left:266.609987px;}
.xc{left:301.034987px;}
.x7{left:310.394987px;}
.x16{left:323.355000px;}
.x27{left:329.835000px;}
.x2{left:409.035000px;}
.x6{left:446.474987px;}
.x19{left:455.295000px;}
.x28{left:499.965000px;}
.xa{left:552.344973px;}
.xb{left:559.184987px;}
.x1c{left:611.565000px;}
.x29{left:648.825000px;}
.x10{left:672.629973px;}
.x11{left:679.469987px;}
.xe{left:737.969987px;}
@media print{
.v2{vertical-align:-81.280000pt;}
.v1{vertical-align:-69.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.613333pt;}
.lsd{letter-spacing:-0.608000pt;}
.ls1f{letter-spacing:-0.336533pt;}
.lse{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.033280pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.033280pt;}
.ls21{letter-spacing:0.131627pt;}
.ls15{letter-spacing:0.231040pt;}
.ls20{letter-spacing:0.303360pt;}
.ls1a{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.315307pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.336533pt;}
.ls3{letter-spacing:0.336640pt;}
.ls13{letter-spacing:0.439680pt;}
.ls6{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.464640pt;}
.ls18{letter-spacing:3.200000pt;}
.ls11{letter-spacing:10.080000pt;}
.ls19{letter-spacing:10.720000pt;}
.ls1b{letter-spacing:12.640000pt;}
.ls17{letter-spacing:13.280000pt;}
.ls23{letter-spacing:16.480000pt;}
.ls9{letter-spacing:17.120000pt;}
.ls1e{letter-spacing:21.600000pt;}
.ls16{letter-spacing:24.160000pt;}
.ls10{letter-spacing:25.440000pt;}
.ls1c{letter-spacing:26.058667pt;}
.ls14{letter-spacing:26.080000pt;}
.ls1d{letter-spacing:26.720000pt;}
.ls12{letter-spacing:29.280000pt;}
.ls0{letter-spacing:42.400000pt;}
.ls7{letter-spacing:46.560000pt;}
.ls1{letter-spacing:175.648000pt;}
.ws7{word-spacing:-74.880000pt;}
.ws3{word-spacing:-19.056533pt;}
.ws2{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.686720pt;}
.ws4{word-spacing:-18.400000pt;}
.wsb{word-spacing:-18.383467pt;}
.ws9{word-spacing:-18.112000pt;}
.ws5{word-spacing:-18.106667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws6{word-spacing:0.000000pt;}
._25{margin-left:-4.597120pt;}
._26{margin-left:-2.018560pt;}
._0{margin-left:-0.915200pt;}
._1{width:0.911573pt;}
._2{width:2.480853pt;}
._22{width:3.395840pt;}
._5{width:4.343040pt;}
._4{width:5.552427pt;}
._3{width:6.589440pt;}
._c{width:7.488000pt;}
._2d{width:8.461440pt;}
._f{width:9.659520pt;}
._10{width:10.576427pt;}
._27{width:11.468373pt;}
._15{width:12.459947pt;}
._33{width:13.523413pt;}
._11{width:14.543360pt;}
._16{width:16.029867pt;}
._d{width:17.829760pt;}
._1f{width:19.788160pt;}
._12{width:21.340800pt;}
._6{width:22.330880pt;}
._7{width:23.458133pt;}
._b{width:24.580693pt;}
._e{width:25.579093pt;}
._23{width:26.765653pt;}
._1c{width:28.080000pt;}
._1d{width:29.386667pt;}
._20{width:30.488107pt;}
._14{width:31.599360pt;}
._1b{width:33.421227pt;}
._24{width:34.359467pt;}
._2b{width:36.059733pt;}
._31{width:37.149227pt;}
._2e{width:38.039040pt;}
._1e{width:39.178880pt;}
._19{width:40.135680pt;}
._1a{width:41.140267pt;}
._2c{width:42.141227pt;}
._8{width:43.355520pt;}
._18{width:45.311787pt;}
._17{width:46.425600pt;}
._21{width:48.072960pt;}
._13{width:49.121280pt;}
._2f{width:54.454400pt;}
._a{width:67.575680pt;}
._9{width:68.996907pt;}
._29{width:70.686720pt;}
._28{width:71.643947pt;}
._2a{width:78.565760pt;}
._30{width:80.104960pt;}
._32{width:92.701440pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:3.520000pt;}
.y7a{bottom:7.520000pt;}
.y4{bottom:10.880000pt;}
.y7c{bottom:19.200000pt;}
.y3{bottom:21.312000pt;}
.y54{bottom:24.480000pt;}
.y2{bottom:27.712000pt;}
.y79{bottom:28.640000pt;}
.y53{bottom:42.880000pt;}
.y78{bottom:49.920000pt;}
.y52{bottom:61.280000pt;}
.y29{bottom:70.592000pt;}
.y92{bottom:71.712000pt;}
.y4f{bottom:79.552000pt;}
.y74{bottom:84.192000pt;}
.y76{bottom:89.792000pt;}
.y4e{bottom:94.912000pt;}
.y28{bottom:95.232000pt;}
.y73{bottom:96.192000pt;}
.y91{bottom:96.512000pt;}
.y4d{bottom:99.552000pt;}
.y4c{bottom:111.392000pt;}
.y75{bottom:114.432000pt;}
.y27{bottom:120.032000pt;}
.y90{bottom:121.152000pt;}
.y4a{bottom:139.066667pt;}
.y72{bottom:141.306667pt;}
.y26{bottom:144.666667pt;}
.y4b{bottom:145.786667pt;}
.y49{bottom:163.866667pt;}
.y71{bottom:165.946667pt;}
.y25{bottom:169.306667pt;}
.y8f{bottom:170.426667pt;}
.y48{bottom:188.506667pt;}
.y70{bottom:190.746667pt;}
.y24{bottom:193.946667pt;}
.y8e{bottom:195.226667pt;}
.y47{bottom:213.146667pt;}
.y6f{bottom:215.386667pt;}
.y23{bottom:218.746667pt;}
.y8d{bottom:219.866667pt;}
.y46{bottom:237.946667pt;}
.y6e{bottom:240.026667pt;}
.y22{bottom:243.386667pt;}
.y8c{bottom:244.506667pt;}
.y45{bottom:262.626667pt;}
.y6d{bottom:264.866667pt;}
.y21{bottom:268.066667pt;}
.y8b{bottom:269.346667pt;}
.y44{bottom:287.266667pt;}
.y6c{bottom:289.506667pt;}
.y20{bottom:292.866667pt;}
.y8a{bottom:293.986667pt;}
.y43{bottom:311.906667pt;}
.y6b{bottom:314.146667pt;}
.y1f{bottom:317.506667pt;}
.y89{bottom:318.626667pt;}
.y42{bottom:336.706667pt;}
.y6a{bottom:338.786667pt;}
.y1e{bottom:342.146667pt;}
.y88{bottom:343.266667pt;}
.y41{bottom:361.346667pt;}
.y69{bottom:363.586667pt;}
.y1d{bottom:366.786667pt;}
.y87{bottom:368.066667pt;}
.y40{bottom:385.986667pt;}
.y68{bottom:388.226667pt;}
.y1c{bottom:391.586667pt;}
.y86{bottom:392.706667pt;}
.y3f{bottom:410.626667pt;}
.y67{bottom:412.866667pt;}
.y1b{bottom:416.226667pt;}
.y85{bottom:417.346667pt;}
.y3e{bottom:435.426667pt;}
.y66{bottom:437.666667pt;}
.y1a{bottom:440.866667pt;}
.y84{bottom:442.146667pt;}
.y3d{bottom:460.066667pt;}
.y65{bottom:462.306667pt;}
.y19{bottom:465.666667pt;}
.y83{bottom:466.786667pt;}
.y3c{bottom:484.706667pt;}
.y64{bottom:486.946667pt;}
.y18{bottom:490.306667pt;}
.y82{bottom:491.426667pt;}
.y3b{bottom:509.533333pt;}
.y63{bottom:511.613333pt;}
.y17{bottom:514.973333pt;}
.y81{bottom:516.093333pt;}
.y3a{bottom:534.173333pt;}
.y62{bottom:536.413333pt;}
.y16{bottom:539.613333pt;}
.y80{bottom:540.893333pt;}
.y39{bottom:558.813333pt;}
.y61{bottom:561.053333pt;}
.y15{bottom:564.413333pt;}
.y7f{bottom:565.533333pt;}
.y38{bottom:583.453333pt;}
.y60{bottom:585.693333pt;}
.y14{bottom:589.053333pt;}
.y7e{bottom:590.173333pt;}
.y37{bottom:608.253333pt;}
.y5f{bottom:610.333333pt;}
.y7d{bottom:612.253333pt;}
.y13{bottom:613.693333pt;}
.y7b{bottom:624.253333pt;}
.y36{bottom:632.893333pt;}
.y5e{bottom:635.133333pt;}
.y12{bottom:638.333333pt;}
.y35{bottom:657.533333pt;}
.y77{bottom:658.973333pt;}
.y5d{bottom:659.773333pt;}
.y11{bottom:663.133333pt;}
.y34{bottom:682.333333pt;}
.y5c{bottom:684.413333pt;}
.y10{bottom:687.773333pt;}
.y33{bottom:706.973333pt;}
.y5b{bottom:709.213333pt;}
.yf{bottom:712.413333pt;}
.y32{bottom:731.613333pt;}
.y5a{bottom:733.853333pt;}
.ye{bottom:737.213333pt;}
.y31{bottom:756.293333pt;}
.y59{bottom:758.533333pt;}
.yd{bottom:761.893333pt;}
.y30{bottom:781.093333pt;}
.y58{bottom:783.173333pt;}
.yc{bottom:786.533333pt;}
.y2f{bottom:805.733333pt;}
.y57{bottom:807.973333pt;}
.y55{bottom:826.053333pt;}
.y2e{bottom:830.373333pt;}
.yb{bottom:831.493333pt;}
.y51{bottom:845.093333pt;}
.y2d{bottom:855.013333pt;}
.ya{bottom:864.933333pt;}
.y9{bottom:879.653333pt;}
.y2c{bottom:879.813333pt;}
.y8{bottom:898.053333pt;}
.y2b{bottom:904.453333pt;}
.y7{bottom:915.813333pt;}
.y2a{bottom:929.093333pt;}
.y6{bottom:932.293333pt;}
.y50{bottom:935.813333pt;}
.y5{bottom:953.893333pt;}
.y1{bottom:1057.920000pt;}
.h11{height:18.400000pt;}
.h3{height:28.320000pt;}
.hc{height:33.918750pt;}
.h14{height:34.080000pt;}
.h13{height:44.687500pt;}
.h8{height:47.085938pt;}
.hb{height:47.109375pt;}
.h9{height:52.108438pt;}
.hd{height:52.134375pt;}
.ha{height:52.284375pt;}
.h5{height:53.535000pt;}
.h7{height:62.781250pt;}
.h10{height:62.812500pt;}
.h6{height:64.500000pt;}
.h12{height:64.800000pt;}
.he{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hf{height:76.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w5{width:79.520000pt;}
.wb{width:93.952000pt;}
.wa{width:103.040000pt;}
.w6{width:114.272000pt;}
.w7{width:116.640000pt;}
.we{width:122.112000pt;}
.wd{width:131.680000pt;}
.w8{width:138.266667pt;}
.wc{width:150.426667pt;}
.w9{width:158.106667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:8.000000pt;}
.x13{left:12.640000pt;}
.x26{left:14.720000pt;}
.x23{left:17.760000pt;}
.x3{left:19.680000pt;}
.x1a{left:23.066667pt;}
.x24{left:24.480000pt;}
.x1b{left:25.466667pt;}
.x1d{left:27.840000pt;}
.x18{left:29.760000pt;}
.x2b{left:34.880000pt;}
.x17{left:35.840000pt;}
.x2a{left:39.514667pt;}
.x2d{left:41.160000pt;}
.x1f{left:42.240000pt;}
.x1e{left:44.960000pt;}
.x2c{left:49.760000pt;}
.x20{left:53.146667pt;}
.x21{left:59.080000pt;}
.x1{left:75.519988pt;}
.xd{left:79.871988pt;}
.x12{left:92.192000pt;}
.x4{left:94.591988pt;}
.x5{left:107.551988pt;}
.x9{left:122.751988pt;}
.x14{left:172.506667pt;}
.x25{left:198.586667pt;}
.x22{left:203.706655pt;}
.x8{left:213.946655pt;}
.xf{left:236.986655pt;}
.xc{left:267.586655pt;}
.x7{left:275.906655pt;}
.x16{left:287.426667pt;}
.x27{left:293.186667pt;}
.x2{left:363.586667pt;}
.x6{left:396.866655pt;}
.x19{left:404.706667pt;}
.x28{left:444.413333pt;}
.xa{left:490.973310pt;}
.xb{left:497.053322pt;}
.x1c{left:543.613333pt;}
.x29{left:576.733333pt;}
.x10{left:597.893310pt;}
.x11{left:603.973322pt;}
.xe{left:655.973322pt;}
}




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