
    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_1d1e548a10604df1b1dd3bed.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72cb53f248ab4a50ab08ebb8.woff')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_51a7ce9307b3286652afb6c6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_bb8857c903955cbfd1b0efed.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_f60c19ba9e0dbee264fbf923.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_43717dba94d9bfccdca354de.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;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;}
.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:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.386000px;}
.ls3{letter-spacing:-1.176000px;}
.ls5{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.413400px;}
.lsf{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.511800px;}
.ls14{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.828000px;}
.ls16{letter-spacing:0.924000px;}
.lse{letter-spacing:1.080000px;}
.ls19{letter-spacing:11.466720px;}
.ls9{letter-spacing:16.506720px;}
.ls1{letter-spacing:19.386720px;}
.ls17{letter-spacing:41.706720px;}
.lsc{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.020000px;}
.wsa{word-spacing:-15.864000px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.526600px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._7{margin-left:-3.543120px;}
._8{margin-left:-2.530320px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._11{width:2.335440px;}
._9{width:3.974400px;}
._a{width:5.079360px;}
._12{width:6.176160px;}
._13{width:7.230960px;}
._c{width:8.840640px;}
._b{width:9.936000px;}
._14{width:11.009520px;}
._15{width:12.470400px;}
._19{width:13.833360px;}
._18{width:15.976080px;}
._16{width:17.928000px;}
._17{width:19.316160px;}
._f{width:21.919680px;}
._10{width:23.076240px;}
._d{width:25.369920px;}
._e{width:27.056640px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yde{bottom:16.560000px;}
.ydd{bottom:35.100000px;}
.yda{bottom:36.900000px;}
.ydc{bottom:53.820000px;}
.y6{bottom:57.996000px;}
.ydb{bottom:72.354000px;}
.yd9{bottom:82.656000px;}
.yd2{bottom:92.376000px;}
.y34{bottom:98.316000px;}
.ybd{bottom:100.296000px;}
.yd1{bottom:108.216000px;}
.y6b{bottom:112.176000px;}
.y33{bottom:118.116000px;}
.ybc{bottom:120.096000px;}
.y9e{bottom:124.056000px;}
.yd0{bottom:128.016000px;}
.y6a{bottom:131.976000px;}
.y32{bottom:137.916000px;}
.ybb{bottom:139.896000px;}
.y9d{bottom:143.856000px;}
.ycf{bottom:147.816000px;}
.y69{bottom:151.770000px;}
.y31{bottom:157.890000px;}
.yba{bottom:159.690000px;}
.y9c{bottom:163.650000px;}
.yce{bottom:167.610000px;}
.y68{bottom:171.570000px;}
.y30{bottom:177.690000px;}
.yb9{bottom:179.490000px;}
.y9b{bottom:183.450000px;}
.ycd{bottom:187.590000px;}
.y67{bottom:191.550000px;}
.y2f{bottom:197.490000px;}
.yb8{bottom:199.470000px;}
.y9a{bottom:203.430000px;}
.ycc{bottom:207.390000px;}
.y66{bottom:211.350000px;}
.y2e{bottom:217.290000px;}
.yb7{bottom:219.270000px;}
.y99{bottom:223.230000px;}
.ycb{bottom:224.850000px;}
.y65{bottom:231.150000px;}
.y2d{bottom:237.090000px;}
.yb6{bottom:239.070000px;}
.y98{bottom:243.030000px;}
.y64{bottom:250.950000px;}
.y2c{bottom:257.070000px;}
.yb5{bottom:258.870000px;}
.y97{bottom:262.830000px;}
.y63{bottom:270.750000px;}
.y2b{bottom:276.870000px;}
.yb4{bottom:278.670000px;}
.y96{bottom:282.675000px;}
.y62{bottom:290.775000px;}
.y2a{bottom:296.715000px;}
.yb3{bottom:298.695000px;}
.y95{bottom:302.655000px;}
.y61{bottom:310.575000px;}
.y29{bottom:316.515000px;}
.yb2{bottom:318.495000px;}
.y94{bottom:322.455000px;}
.y60{bottom:330.375000px;}
.y28{bottom:336.315000px;}
.yb1{bottom:338.295000px;}
.y93{bottom:342.255000px;}
.y5f{bottom:350.175000px;}
.y27{bottom:356.295000px;}
.yb0{bottom:358.095000px;}
.y92{bottom:362.055000px;}
.y5e{bottom:369.975000px;}
.y26{bottom:376.095000px;}
.yaf{bottom:377.895000px;}
.y91{bottom:381.855000px;}
.y5d{bottom:389.955000px;}
.y25{bottom:395.895000px;}
.yae{bottom:397.875000px;}
.y90{bottom:401.835000px;}
.y5c{bottom:409.755000px;}
.y24{bottom:415.695000px;}
.yad{bottom:417.675000px;}
.y8f{bottom:421.635000px;}
.y5b{bottom:429.555000px;}
.y23{bottom:435.495000px;}
.yac{bottom:437.475000px;}
.y8e{bottom:441.435000px;}
.y5a{bottom:449.355000px;}
.y22{bottom:455.475000px;}
.yab{bottom:457.275000px;}
.y8d{bottom:461.235000px;}
.y59{bottom:469.155000px;}
.y21{bottom:475.275000px;}
.yaa{bottom:477.075000px;}
.y8c{bottom:481.035000px;}
.y58{bottom:489.135000px;}
.y20{bottom:495.075000px;}
.ya9{bottom:497.055000px;}
.y8b{bottom:501.015000px;}
.y57{bottom:508.935000px;}
.y1f{bottom:514.875000px;}
.ya8{bottom:516.855000px;}
.y8a{bottom:520.815000px;}
.y56{bottom:528.735000px;}
.y1e{bottom:534.675000px;}
.ya7{bottom:536.655000px;}
.y89{bottom:540.615000px;}
.y55{bottom:548.535000px;}
.ya6{bottom:556.455000px;}
.y1d{bottom:556.815000px;}
.y88{bottom:560.415000px;}
.y54{bottom:568.365000px;}
.ya5{bottom:576.285000px;}
.y87{bottom:580.245000px;}
.y1c{bottom:585.645000px;}
.y53{bottom:588.345000px;}
.ya4{bottom:596.265000px;}
.y86{bottom:597.885000px;}
.y1b{bottom:605.625000px;}
.y52{bottom:608.145000px;}
.y85{bottom:612.105000px;}
.ya3{bottom:616.065000px;}
.y1a{bottom:625.425000px;}
.y51{bottom:627.945000px;}
.y84{bottom:631.905000px;}
.ya2{bottom:635.865000px;}
.yd8{bottom:637.845000px;}
.y19{bottom:645.225000px;}
.y50{bottom:647.745000px;}
.y83{bottom:651.705000px;}
.ya1{bottom:655.665000px;}
.y18{bottom:665.025000px;}
.y4f{bottom:667.545000px;}
.yd7{bottom:669.885000px;}
.y82{bottom:671.505000px;}
.ya0{bottom:675.465000px;}
.y17{bottom:684.825000px;}
.y4e{bottom:687.525000px;}
.y81{bottom:691.485000px;}
.y9f{bottom:693.105000px;}
.yc7{bottom:695.445000px;}
.yd6{bottom:703.545000px;}
.y16{bottom:704.805000px;}
.y4d{bottom:707.325000px;}
.y80{bottom:711.285000px;}
.yc6{bottom:715.245000px;}
.y15{bottom:724.605000px;}
.y4c{bottom:727.125000px;}
.y7f{bottom:731.085000px;}
.yc5{bottom:735.045000px;}
.yd5{bottom:737.385000px;}
.y14{bottom:744.405000px;}
.y4b{bottom:746.925000px;}
.y7e{bottom:750.885000px;}
.yc4{bottom:754.845000px;}
.y13{bottom:764.205000px;}
.y4a{bottom:766.725000px;}
.y7d{bottom:768.345000px;}
.yd4{bottom:771.045000px;}
.yc3{bottom:774.645000px;}
.y7c{bottom:782.565000px;}
.y12{bottom:784.005000px;}
.y49{bottom:786.705000px;}
.yc2{bottom:794.625000px;}
.y7b{bottom:802.545000px;}
.yd3{bottom:804.885000px;}
.y11{bottom:806.145000px;}
.y48{bottom:806.505000px;}
.yc1{bottom:814.425000px;}
.y7a{bottom:822.345000px;}
.y10{bottom:825.945000px;}
.y47{bottom:826.305000px;}
.yc0{bottom:834.225000px;}
.y79{bottom:842.145000px;}
.y46{bottom:846.105000px;}
.yf{bottom:851.010000px;}
.ybf{bottom:854.070000px;}
.y78{bottom:861.990000px;}
.y45{bottom:865.950000px;}
.ye{bottom:866.310000px;}
.ybe{bottom:871.530000px;}
.yca{bottom:873.870000px;}
.y77{bottom:881.790000px;}
.y44{bottom:885.930000px;}
.yd{bottom:888.090000px;}
.yc9{bottom:893.850000px;}
.y76{bottom:899.430000px;}
.y43{bottom:905.730000px;}
.yc{bottom:909.870000px;}
.y75{bottom:913.650000px;}
.y42{bottom:925.530000px;}
.yb{bottom:931.650000px;}
.y74{bottom:933.450000px;}
.y41{bottom:945.330000px;}
.y73{bottom:953.250000px;}
.ya{bottom:953.610000px;}
.y40{bottom:965.130000px;}
.y72{bottom:973.050000px;}
.y9{bottom:974.850000px;}
.y3f{bottom:985.110000px;}
.y71{bottom:993.030000px;}
.y8{bottom:998.250000px;}
.y3e{bottom:1004.910000px;}
.y70{bottom:1012.830000px;}
.y3d{bottom:1024.710000px;}
.y7{bottom:1029.930000px;}
.yc8{bottom:1030.290000px;}
.y6f{bottom:1032.630000px;}
.y3c{bottom:1044.510000px;}
.y6e{bottom:1052.430000px;}
.y3b{bottom:1064.310000px;}
.y5{bottom:1067.010000px;}
.y6d{bottom:1072.230000px;}
.y3a{bottom:1084.290000px;}
.y6c{bottom:1089.870000px;}
.y4{bottom:1096.530000px;}
.y39{bottom:1104.090000px;}
.y38{bottom:1123.890000px;}
.y3{bottom:1126.050000px;}
.y37{bottom:1143.720000px;}
.y2{bottom:1155.600000px;}
.y36{bottom:1163.520000px;}
.y1{bottom:1187.460000px;}
.y35{bottom:1194.120000px;}
.he{height:2.826563px;}
.ha{height:35.332031px;}
.h6{height:38.158594px;}
.hf{height:43.215117px;}
.h5{height:58.651172px;}
.h7{height:60.226875px;}
.hb{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.hc{height:65.884219px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.hd{height:86.400000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:54.179987px;}
.x3{left:80.999987px;}
.x2{left:86.039987px;}
.x4{left:108.035987px;}
.x5{left:191.370000px;}
.x6{left:264.810000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-1.232000pt;}
.ls3{letter-spacing:-1.045333pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.367467pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.454933pt;}
.ls14{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls16{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.960000pt;}
.ls19{letter-spacing:10.192640pt;}
.ls9{letter-spacing:14.672640pt;}
.ls1{letter-spacing:17.232640pt;}
.ls17{letter-spacing:37.072640pt;}
.lsc{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.240000pt;}
.wsa{word-spacing:-14.101333pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.912533pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._7{margin-left:-3.149440pt;}
._8{margin-left:-2.249173pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._11{width:2.075947pt;}
._9{width:3.532800pt;}
._a{width:4.514987pt;}
._12{width:5.489920pt;}
._13{width:6.427520pt;}
._c{width:7.858347pt;}
._b{width:8.832000pt;}
._14{width:9.786240pt;}
._15{width:11.084800pt;}
._19{width:12.296320pt;}
._18{width:14.200960pt;}
._16{width:15.936000pt;}
._17{width:17.169920pt;}
._f{width:19.484160pt;}
._10{width:20.512213pt;}
._d{width:22.551040pt;}
._e{width:24.050347pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:14.720000pt;}
.ydd{bottom:31.200000pt;}
.yda{bottom:32.800000pt;}
.ydc{bottom:47.840000pt;}
.y6{bottom:51.552000pt;}
.ydb{bottom:64.314667pt;}
.yd9{bottom:73.472000pt;}
.yd2{bottom:82.112000pt;}
.y34{bottom:87.392000pt;}
.ybd{bottom:89.152000pt;}
.yd1{bottom:96.192000pt;}
.y6b{bottom:99.712000pt;}
.y33{bottom:104.992000pt;}
.ybc{bottom:106.752000pt;}
.y9e{bottom:110.272000pt;}
.yd0{bottom:113.792000pt;}
.y6a{bottom:117.312000pt;}
.y32{bottom:122.592000pt;}
.ybb{bottom:124.352000pt;}
.y9d{bottom:127.872000pt;}
.ycf{bottom:131.392000pt;}
.y69{bottom:134.906667pt;}
.y31{bottom:140.346667pt;}
.yba{bottom:141.946667pt;}
.y9c{bottom:145.466667pt;}
.yce{bottom:148.986667pt;}
.y68{bottom:152.506667pt;}
.y30{bottom:157.946667pt;}
.yb9{bottom:159.546667pt;}
.y9b{bottom:163.066667pt;}
.ycd{bottom:166.746667pt;}
.y67{bottom:170.266667pt;}
.y2f{bottom:175.546667pt;}
.yb8{bottom:177.306667pt;}
.y9a{bottom:180.826667pt;}
.ycc{bottom:184.346667pt;}
.y66{bottom:187.866667pt;}
.y2e{bottom:193.146667pt;}
.yb7{bottom:194.906667pt;}
.y99{bottom:198.426667pt;}
.ycb{bottom:199.866667pt;}
.y65{bottom:205.466667pt;}
.y2d{bottom:210.746667pt;}
.yb6{bottom:212.506667pt;}
.y98{bottom:216.026667pt;}
.y64{bottom:223.066667pt;}
.y2c{bottom:228.506667pt;}
.yb5{bottom:230.106667pt;}
.y97{bottom:233.626667pt;}
.y63{bottom:240.666667pt;}
.y2b{bottom:246.106667pt;}
.yb4{bottom:247.706667pt;}
.y96{bottom:251.266667pt;}
.y62{bottom:258.466667pt;}
.y2a{bottom:263.746667pt;}
.yb3{bottom:265.506667pt;}
.y95{bottom:269.026667pt;}
.y61{bottom:276.066667pt;}
.y29{bottom:281.346667pt;}
.yb2{bottom:283.106667pt;}
.y94{bottom:286.626667pt;}
.y60{bottom:293.666667pt;}
.y28{bottom:298.946667pt;}
.yb1{bottom:300.706667pt;}
.y93{bottom:304.226667pt;}
.y5f{bottom:311.266667pt;}
.y27{bottom:316.706667pt;}
.yb0{bottom:318.306667pt;}
.y92{bottom:321.826667pt;}
.y5e{bottom:328.866667pt;}
.y26{bottom:334.306667pt;}
.yaf{bottom:335.906667pt;}
.y91{bottom:339.426667pt;}
.y5d{bottom:346.626667pt;}
.y25{bottom:351.906667pt;}
.yae{bottom:353.666667pt;}
.y90{bottom:357.186667pt;}
.y5c{bottom:364.226667pt;}
.y24{bottom:369.506667pt;}
.yad{bottom:371.266667pt;}
.y8f{bottom:374.786667pt;}
.y5b{bottom:381.826667pt;}
.y23{bottom:387.106667pt;}
.yac{bottom:388.866667pt;}
.y8e{bottom:392.386667pt;}
.y5a{bottom:399.426667pt;}
.y22{bottom:404.866667pt;}
.yab{bottom:406.466667pt;}
.y8d{bottom:409.986667pt;}
.y59{bottom:417.026667pt;}
.y21{bottom:422.466667pt;}
.yaa{bottom:424.066667pt;}
.y8c{bottom:427.586667pt;}
.y58{bottom:434.786667pt;}
.y20{bottom:440.066667pt;}
.ya9{bottom:441.826667pt;}
.y8b{bottom:445.346667pt;}
.y57{bottom:452.386667pt;}
.y1f{bottom:457.666667pt;}
.ya8{bottom:459.426667pt;}
.y8a{bottom:462.946667pt;}
.y56{bottom:469.986667pt;}
.y1e{bottom:475.266667pt;}
.ya7{bottom:477.026667pt;}
.y89{bottom:480.546667pt;}
.y55{bottom:487.586667pt;}
.ya6{bottom:494.626667pt;}
.y1d{bottom:494.946667pt;}
.y88{bottom:498.146667pt;}
.y54{bottom:505.213333pt;}
.ya5{bottom:512.253333pt;}
.y87{bottom:515.773333pt;}
.y1c{bottom:520.573333pt;}
.y53{bottom:522.973333pt;}
.ya4{bottom:530.013333pt;}
.y86{bottom:531.453333pt;}
.y1b{bottom:538.333333pt;}
.y52{bottom:540.573333pt;}
.y85{bottom:544.093333pt;}
.ya3{bottom:547.613333pt;}
.y1a{bottom:555.933333pt;}
.y51{bottom:558.173333pt;}
.y84{bottom:561.693333pt;}
.ya2{bottom:565.213333pt;}
.yd8{bottom:566.973333pt;}
.y19{bottom:573.533333pt;}
.y50{bottom:575.773333pt;}
.y83{bottom:579.293333pt;}
.ya1{bottom:582.813333pt;}
.y18{bottom:591.133333pt;}
.y4f{bottom:593.373333pt;}
.yd7{bottom:595.453333pt;}
.y82{bottom:596.893333pt;}
.ya0{bottom:600.413333pt;}
.y17{bottom:608.733333pt;}
.y4e{bottom:611.133333pt;}
.y81{bottom:614.653333pt;}
.y9f{bottom:616.093333pt;}
.yc7{bottom:618.173333pt;}
.yd6{bottom:625.373333pt;}
.y16{bottom:626.493333pt;}
.y4d{bottom:628.733333pt;}
.y80{bottom:632.253333pt;}
.yc6{bottom:635.773333pt;}
.y15{bottom:644.093333pt;}
.y4c{bottom:646.333333pt;}
.y7f{bottom:649.853333pt;}
.yc5{bottom:653.373333pt;}
.yd5{bottom:655.453333pt;}
.y14{bottom:661.693333pt;}
.y4b{bottom:663.933333pt;}
.y7e{bottom:667.453333pt;}
.yc4{bottom:670.973333pt;}
.y13{bottom:679.293333pt;}
.y4a{bottom:681.533333pt;}
.y7d{bottom:682.973333pt;}
.yd4{bottom:685.373333pt;}
.yc3{bottom:688.573333pt;}
.y7c{bottom:695.613333pt;}
.y12{bottom:696.893333pt;}
.y49{bottom:699.293333pt;}
.yc2{bottom:706.333333pt;}
.y7b{bottom:713.373333pt;}
.yd3{bottom:715.453333pt;}
.y11{bottom:716.573333pt;}
.y48{bottom:716.893333pt;}
.yc1{bottom:723.933333pt;}
.y7a{bottom:730.973333pt;}
.y10{bottom:734.173333pt;}
.y47{bottom:734.493333pt;}
.yc0{bottom:741.533333pt;}
.y79{bottom:748.573333pt;}
.y46{bottom:752.093333pt;}
.yf{bottom:756.453333pt;}
.ybf{bottom:759.173333pt;}
.y78{bottom:766.213333pt;}
.y45{bottom:769.733333pt;}
.ye{bottom:770.053333pt;}
.ybe{bottom:774.693333pt;}
.yca{bottom:776.773333pt;}
.y77{bottom:783.813333pt;}
.y44{bottom:787.493333pt;}
.yd{bottom:789.413333pt;}
.yc9{bottom:794.533333pt;}
.y76{bottom:799.493333pt;}
.y43{bottom:805.093333pt;}
.yc{bottom:808.773333pt;}
.y75{bottom:812.133333pt;}
.y42{bottom:822.693333pt;}
.yb{bottom:828.133333pt;}
.y74{bottom:829.733333pt;}
.y41{bottom:840.293333pt;}
.y73{bottom:847.333333pt;}
.ya{bottom:847.653333pt;}
.y40{bottom:857.893333pt;}
.y72{bottom:864.933333pt;}
.y9{bottom:866.533333pt;}
.y3f{bottom:875.653333pt;}
.y71{bottom:882.693333pt;}
.y8{bottom:887.333333pt;}
.y3e{bottom:893.253333pt;}
.y70{bottom:900.293333pt;}
.y3d{bottom:910.853333pt;}
.y7{bottom:915.493333pt;}
.yc8{bottom:915.813333pt;}
.y6f{bottom:917.893333pt;}
.y3c{bottom:928.453333pt;}
.y6e{bottom:935.493333pt;}
.y3b{bottom:946.053333pt;}
.y5{bottom:948.453333pt;}
.y6d{bottom:953.093333pt;}
.y3a{bottom:963.813333pt;}
.y6c{bottom:968.773333pt;}
.y4{bottom:974.693333pt;}
.y39{bottom:981.413333pt;}
.y38{bottom:999.013333pt;}
.y3{bottom:1000.933333pt;}
.y37{bottom:1016.640000pt;}
.y2{bottom:1027.200000pt;}
.y36{bottom:1034.240000pt;}
.y1{bottom:1055.520000pt;}
.y35{bottom:1061.440000pt;}
.he{height:2.512500pt;}
.ha{height:31.406250pt;}
.h6{height:33.918750pt;}
.hf{height:38.413438pt;}
.h5{height:52.134375pt;}
.h7{height:53.535000pt;}
.hb{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.hc{height:58.563750pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.hd{height:76.800000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:48.159988pt;}
.x3{left:71.999988pt;}
.x2{left:76.479988pt;}
.x4{left:96.031988pt;}
.x5{left:170.106667pt;}
.x6{left:235.386667pt;}
}




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