
    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_d3e620c59aa02d39ccf8d0a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_9777942a22927ee07643a522.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922363;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_da5405271e4683391efdaed7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_4f7befdbf98a9c25dbbe40e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_22102a6e78a19e626d2bbb4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921875;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_01efa67357ddb78c2a5b6c89.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_485b9c287f74e801002dc40c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962891;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_9c80f1aa7049bd049017e8e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921875;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;}
.ls2{letter-spacing:-0.223200px;}
.ls6{letter-spacing:-0.159600px;}
.lse{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.055440px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.161400px;}
.lsa{letter-spacing:0.237600px;}
.ls5{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.295200px;}
.ls3{letter-spacing:0.299400px;}
.ls8{letter-spacing:26.263872px;}
.lsc{letter-spacing:111.549600px;}
.lsb{letter-spacing:111.600000px;}
.ls7{letter-spacing:119.916000px;}
.ls9{letter-spacing:122.328000px;}
.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;}
}
.ws10{word-spacing:-73.440000px;}
.ws13{word-spacing:-36.756720px;}
.ws12{word-spacing:-36.720000px;}
.ws11{word-spacing:-33.696000px;}
.ws9{word-spacing:-33.598800px;}
.ws6{word-spacing:-30.697920px;}
.wsb{word-spacing:-30.661200px;}
.wsf{word-spacing:-29.246400px;}
.ws8{word-spacing:-26.071200px;}
.ws3{word-spacing:-23.078160px;}
.ws2{word-spacing:-20.336544px;}
.ws1{word-spacing:-20.301840px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:1.783200px;}
.wse{word-spacing:2.171952px;}
.wsc{word-spacing:2.490480px;}
.ws14{word-spacing:2.916000px;}
.ws15{word-spacing:3.192000px;}
.wsa{word-spacing:3.196800px;}
.ws16{word-spacing:3.312000px;}
.wsd{word-spacing:3.696480px;}
.ws4{word-spacing:135.691440px;}
.ws5{word-spacing:210.966240px;}
._10{margin-left:-8.792640px;}
._2{margin-left:-7.437024px;}
._12{margin-left:-6.153696px;}
._5{margin-left:-5.046048px;}
._4{margin-left:-3.254544px;}
._0{margin-left:-1.679328px;}
._3{width:1.198368px;}
._1{width:2.638944px;}
._e{width:3.947760px;}
._16{width:5.411568px;}
._f{width:24.948480px;}
._13{width:29.209728px;}
._14{width:30.227328px;}
._11{width:34.380912px;}
._18{width:58.756128px;}
._a{width:223.854960px;}
._c{width:248.453040px;}
._8{width:297.600672px;}
._d{width:305.766528px;}
._9{width:364.392384px;}
._17{width:384.995040px;}
._6{width:398.186400px;}
._7{width:456.033408px;}
._b{width:498.765840px;}
._15{width:588.828288px;}
.fc2{color:rgb(51,153,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs4{font-size:84.240000px;}
.fs5{font-size:84.384000px;}
.fs6{font-size:95.760000px;}
.fsb{font-size:102.240000px;}
.fs9{font-size:102.384000px;}
.fs10{font-size:113.760000px;}
.fs11{font-size:113.904000px;}
.fs2{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fse{font-size:131.760000px;}
.fsf{font-size:131.904000px;}
.fsc{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fsd{font-size:192.240000px;}
.fs3{font-size:216.000000px;}
.fs1{font-size:239.760000px;}
.fs0{font-size:239.904000px;}
.fs7{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:14.148000px;}
.y8d{bottom:25.704000px;}
.y2b{bottom:29.592000px;}
.y88{bottom:30.780000px;}
.y6b{bottom:32.040000px;}
.y18{bottom:34.020000px;}
.y9c{bottom:39.924000px;}
.y6a{bottom:48.492000px;}
.y2a{bottom:57.240000px;}
.y5c{bottom:59.976000px;}
.y87{bottom:64.008000px;}
.y9b{bottom:67.284000px;}
.y6c{bottom:73.800000px;}
.y8b{bottom:74.376000px;}
.y84{bottom:76.032000px;}
.y69{bottom:77.112000px;}
.y4f{bottom:77.616000px;}
.y3c{bottom:84.060000px;}
.y29{bottom:84.888000px;}
.y5b{bottom:91.656000px;}
.y8{bottom:93.600000px;}
.y9a{bottom:94.644000px;}
.ya{bottom:99.330000px;}
.y4e{bottom:102.132000px;}
.y83{bottom:103.572000px;}
.y6d{bottom:109.512000px;}
.y17{bottom:115.590000px;}
.y3b{bottom:116.640000px;}
.y92{bottom:118.188000px;}
.y99{bottom:122.004000px;}
.y9{bottom:123.270000px;}
.y4d{bottom:126.612000px;}
.y82{bottom:130.932000px;}
.y68{bottom:135.972000px;}
.y91{bottom:142.050000px;}
.y3a{bottom:149.040000px;}
.y98{bottom:149.364000px;}
.y4c{bottom:151.095000px;}
.y5a{bottom:153.435000px;}
.y81{bottom:158.325000px;}
.y28{bottom:159.840000px;}
.y16{bottom:160.200000px;}
.y8a{bottom:162.615000px;}
.y67{bottom:164.805000px;}
.y73{bottom:173.085000px;}
.y97{bottom:176.760000px;}
.y39{bottom:181.260000px;}
.y8c{bottom:182.985000px;}
.y23{bottom:184.110000px;}
.y80{bottom:185.685000px;}
.y90{bottom:192.210000px;}
.yad{bottom:192.705000px;}
.y66{bottom:193.605000px;}
.y4b{bottom:196.635000px;}
.y96{bottom:204.120000px;}
.y15{bottom:204.810000px;}
.y72{bottom:205.710000px;}
.y7f{bottom:212.865000px;}
.y38{bottom:213.150000px;}
.y59{bottom:214.995000px;}
.y8f{bottom:216.075000px;}
.y4a{bottom:221.115000px;}
.y27{bottom:221.910000px;}
.y19{bottom:228.780000px;}
.y95{bottom:231.480000px;}
.yac{bottom:235.905000px;}
.ya5{bottom:238.140000px;}
.y7e{bottom:240.405000px;}
.y37{bottom:245.550000px;}
.y49{bottom:245.595000px;}
.y58{bottom:246.675000px;}
.y14{bottom:249.375000px;}
.y65{bottom:252.465000px;}
.y8e{bottom:254.340000px;}
.y7d{bottom:267.585000px;}
.y48{bottom:270.105000px;}
.y26{bottom:272.880000px;}
.y36{bottom:277.950000px;}
.y57{bottom:278.565000px;}
.y64{bottom:281.265000px;}
.ya4{bottom:282.090000px;}
.y22{bottom:285.045000px;}
.y6f{bottom:288.360000px;}
.y94{bottom:288.720000px;}
.y13{bottom:293.970000px;}
.y7c{bottom:295.125000px;}
.yab{bottom:309.705000px;}
.y56{bottom:310.065000px;}
.y35{bottom:310.350000px;}
.y21{bottom:312.870000px;}
.y47{bottom:317.985000px;}
.y7b{bottom:322.350000px;}
.y89{bottom:324.030000px;}
.y5{bottom:330.195000px;}
.y25{bottom:334.980000px;}
.y20{bottom:336.810000px;}
.y63{bottom:339.990000px;}
.y34{bottom:342.750000px;}
.y7a{bottom:349.710000px;}
.yaa{bottom:352.410000px;}
.ya3{bottom:354.630000px;}
.y6e{bottom:355.860000px;}
.yc{bottom:360.360000px;}
.y46{bottom:362.085000px;}
.ye{bottom:364.860000px;}
.y62{bottom:368.970000px;}
.y4{bottom:370.695000px;}
.y55{bottom:371.805000px;}
.y33{bottom:375.195000px;}
.y79{bottom:377.070000px;}
.y1f{bottom:378.150000px;}
.yb{bottom:384.300000px;}
.y45{bottom:386.565000px;}
.yd{bottom:388.800000px;}
.y24{bottom:393.870000px;}
.ya9{bottom:396.150000px;}
.ya2{bottom:397.830000px;}
.y1b{bottom:399.495000px;}
.y71{bottom:401.010000px;}
.y1e{bottom:402.090000px;}
.y54{bottom:403.485000px;}
.y12{bottom:406.005000px;}
.y32{bottom:407.595000px;}
.y44{bottom:411.045000px;}
.y1a{bottom:423.465000px;}
.y61{bottom:427.650000px;}
.y11{bottom:429.990000px;}
.y78{bottom:434.490000px;}
.y1d{bottom:434.700000px;}
.y53{bottom:435.210000px;}
.y43{bottom:435.570000px;}
.ya8{bottom:439.350000px;}
.y31{bottom:439.995000px;}
.ya1{bottom:441.075000px;}
.y10{bottom:451.515000px;}
.y60{bottom:456.450000px;}
.y42{bottom:460.050000px;}
.y77{bottom:461.850000px;}
.y1c{bottom:466.200000px;}
.y52{bottom:466.890000px;}
.y3{bottom:469.725000px;}
.y30{bottom:472.395000px;}
.yf{bottom:475.455000px;}
.ya0{bottom:484.275000px;}
.y41{bottom:484.530000px;}
.yae{bottom:486.510000px;}
.y76{bottom:489.240000px;}
.y51{bottom:498.570000px;}
.y40{bottom:509.010000px;}
.ya7{bottom:512.100000px;}
.y5f{bottom:515.340000px;}
.y75{bottom:516.600000px;}
.y3f{bottom:533.490000px;}
.y86{bottom:533.520000px;}
.y2f{bottom:534.885000px;}
.y2{bottom:541.725000px;}
.y5e{bottom:544.140000px;}
.ya6{bottom:555.840000px;}
.y9f{bottom:558.075000px;}
.y85{bottom:562.320000px;}
.y50{bottom:563.910000px;}
.y2e{bottom:567.285000px;}
.y3e{bottom:572.580000px;}
.y5d{bottom:572.940000px;}
.y74{bottom:574.020000px;}
.y93{bottom:575.715000px;}
.y1{bottom:613.770000px;}
.y7{bottom:649.950000px;}
.y9e{bottom:655.890000px;}
.y2c{bottom:675.870000px;}
.y2d{bottom:683.460000px;}
.y3d{bottom:686.445000px;}
.y9d{bottom:713.490000px;}
.y6{bottom:714.930000px;}
.h6{height:63.714727px;}
.h7{height:63.823641px;}
.h1a{height:72.381094px;}
.h8{height:72.427852px;}
.hc{height:85.600547px;}
.h18{height:86.735742px;}
.h15{height:90.884531px;}
.he{height:92.605078px;}
.h10{height:92.735508px;}
.h16{height:103.039453px;}
.h17{height:103.169883px;}
.h3{height:108.908789px;}
.hb{height:109.039219px;}
.h12{height:119.343164px;}
.h13{height:119.473594px;}
.hf{height:130.429688px;}
.hd{height:130.560117px;}
.h11{height:174.123633px;}
.h4{height:195.644531px;}
.h2{height:217.165430px;}
.h1{height:217.295859px;}
.ha{height:260.859375px;}
.h19{height:395.100000px;}
.h14{height:439.920000px;}
.h5{height:500.400000px;}
.h9{height:570.060000px;}
.h0{height:810.000000px;}
.w5{width:599.580000px;}
.w4{width:613.980000px;}
.w2{width:867.600000px;}
.w3{width:970.200000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x34{left:25.380000px;}
.x3b{left:44.171984px;}
.x29{left:54.863984px;}
.x13{left:57.780000px;}
.x28{left:58.823984px;}
.x26{left:60.875984px;}
.x35{left:63.540000px;}
.x27{left:68.615984px;}
.x41{left:72.107984px;}
.x14{left:75.348000px;}
.x24{left:80.747984px;}
.x3c{left:84.707984px;}
.x2e{left:94.170000px;}
.x42{left:103.427984px;}
.x7{left:106.200000px;}
.x22{left:114.330000px;}
.x25{left:121.247984px;}
.x3d{left:123.875984px;}
.x37{left:127.620000px;}
.xa{left:140.685000px;}
.x5{left:143.315984px;}
.x2c{left:144.720000px;}
.xb{left:146.625000px;}
.x15{left:148.530000px;}
.x16{left:152.490000px;}
.x39{left:173.310000px;}
.x17{left:214.950000px;}
.x2f{left:216.330000px;}
.x1{left:220.964984px;}
.x40{left:225.749984px;}
.x44{left:230.684984px;}
.xc{left:240.870000px;}
.x2{left:248.324984px;}
.x4{left:253.364984px;}
.xd{left:254.730000px;}
.x3{left:266.909984px;}
.x36{left:269.025000px;}
.xe{left:273.525000px;}
.x2b{left:314.025000px;}
.x38{left:328.425000px;}
.x1e{left:333.255000px;}
.x43{left:335.414984px;}
.x12{left:343.514984px;}
.x19{left:349.890000px;}
.x18{left:355.470000px;}
.x6{left:364.214984px;}
.x1b{left:375.765000px;}
.x2d{left:380.670000px;}
.x1a{left:382.110000px;}
.xf{left:396.930000px;}
.x1d{left:399.390000px;}
.x1c{left:404.925000px;}
.x3f{left:410.474984px;}
.x10{left:420.510000px;}
.x8{left:429.840000px;}
.x23{left:431.174984px;}
.x9{left:437.940000px;}
.x31{left:445.244984px;}
.x3e{left:460.154984px;}
.x3a{left:471.930000px;}
.x2a{left:474.944984px;}
.x30{left:544.035000px;}
.x20{left:624.165000px;}
.x1f{left:637.170000px;}
.x33{left:638.669984px;}
.x21{left:639.900000px;}
.x11{left:679.575000px;}
.x32{left:776.489984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.198400pt;}
.ls6{letter-spacing:-0.141867pt;}
.lse{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.049280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.143467pt;}
.lsa{letter-spacing:0.211200pt;}
.ls5{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.262400pt;}
.ls3{letter-spacing:0.266133pt;}
.ls8{letter-spacing:23.345664pt;}
.lsc{letter-spacing:99.155200pt;}
.lsb{letter-spacing:99.200000pt;}
.ls7{letter-spacing:106.592000pt;}
.ls9{letter-spacing:108.736000pt;}
.ws10{word-spacing:-65.280000pt;}
.ws13{word-spacing:-32.672640pt;}
.ws12{word-spacing:-32.640000pt;}
.ws11{word-spacing:-29.952000pt;}
.ws9{word-spacing:-29.865600pt;}
.ws6{word-spacing:-27.287040pt;}
.wsb{word-spacing:-27.254400pt;}
.wsf{word-spacing:-25.996800pt;}
.ws8{word-spacing:-23.174400pt;}
.ws3{word-spacing:-20.513920pt;}
.ws2{word-spacing:-18.076928pt;}
.ws1{word-spacing:-18.046080pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:1.585067pt;}
.wse{word-spacing:1.930624pt;}
.wsc{word-spacing:2.213760pt;}
.ws14{word-spacing:2.592000pt;}
.ws15{word-spacing:2.837333pt;}
.wsa{word-spacing:2.841600pt;}
.ws16{word-spacing:2.944000pt;}
.wsd{word-spacing:3.285760pt;}
.ws4{word-spacing:120.614613pt;}
.ws5{word-spacing:187.525547pt;}
._10{margin-left:-7.815680pt;}
._2{margin-left:-6.610688pt;}
._12{margin-left:-5.469952pt;}
._5{margin-left:-4.485376pt;}
._4{margin-left:-2.892928pt;}
._0{margin-left:-1.492736pt;}
._3{width:1.065216pt;}
._1{width:2.345728pt;}
._e{width:3.509120pt;}
._16{width:4.810283pt;}
._f{width:22.176427pt;}
._13{width:25.964203pt;}
._14{width:26.868736pt;}
._11{width:30.560811pt;}
._18{width:52.227669pt;}
._a{width:198.982187pt;}
._c{width:220.847147pt;}
._8{width:264.533931pt;}
._d{width:271.792469pt;}
._9{width:323.904341pt;}
._17{width:342.217813pt;}
._6{width:353.943467pt;}
._7{width:405.363029pt;}
._b{width:443.347413pt;}
._15{width:523.402923pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:75.008000pt;}
.fs6{font-size:85.120000pt;}
.fsb{font-size:90.880000pt;}
.fs9{font-size:91.008000pt;}
.fs10{font-size:101.120000pt;}
.fs11{font-size:101.248000pt;}
.fs2{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fse{font-size:117.120000pt;}
.fsf{font-size:117.248000pt;}
.fsc{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fsd{font-size:170.880000pt;}
.fs3{font-size:192.000000pt;}
.fs1{font-size:213.120000pt;}
.fs0{font-size:213.248000pt;}
.fs7{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:12.576000pt;}
.y8d{bottom:22.848000pt;}
.y2b{bottom:26.304000pt;}
.y88{bottom:27.360000pt;}
.y6b{bottom:28.480000pt;}
.y18{bottom:30.240000pt;}
.y9c{bottom:35.488000pt;}
.y6a{bottom:43.104000pt;}
.y2a{bottom:50.880000pt;}
.y5c{bottom:53.312000pt;}
.y87{bottom:56.896000pt;}
.y9b{bottom:59.808000pt;}
.y6c{bottom:65.600000pt;}
.y8b{bottom:66.112000pt;}
.y84{bottom:67.584000pt;}
.y69{bottom:68.544000pt;}
.y4f{bottom:68.992000pt;}
.y3c{bottom:74.720000pt;}
.y29{bottom:75.456000pt;}
.y5b{bottom:81.472000pt;}
.y8{bottom:83.200000pt;}
.y9a{bottom:84.128000pt;}
.ya{bottom:88.293333pt;}
.y4e{bottom:90.784000pt;}
.y83{bottom:92.064000pt;}
.y6d{bottom:97.344000pt;}
.y17{bottom:102.746667pt;}
.y3b{bottom:103.680000pt;}
.y92{bottom:105.056000pt;}
.y99{bottom:108.448000pt;}
.y9{bottom:109.573333pt;}
.y4d{bottom:112.544000pt;}
.y82{bottom:116.384000pt;}
.y68{bottom:120.864000pt;}
.y91{bottom:126.266667pt;}
.y3a{bottom:132.480000pt;}
.y98{bottom:132.768000pt;}
.y4c{bottom:134.306667pt;}
.y5a{bottom:136.386667pt;}
.y81{bottom:140.733333pt;}
.y28{bottom:142.080000pt;}
.y16{bottom:142.400000pt;}
.y8a{bottom:144.546667pt;}
.y67{bottom:146.493333pt;}
.y73{bottom:153.853333pt;}
.y97{bottom:157.120000pt;}
.y39{bottom:161.120000pt;}
.y8c{bottom:162.653333pt;}
.y23{bottom:163.653333pt;}
.y80{bottom:165.053333pt;}
.y90{bottom:170.853333pt;}
.yad{bottom:171.293333pt;}
.y66{bottom:172.093333pt;}
.y4b{bottom:174.786667pt;}
.y96{bottom:181.440000pt;}
.y15{bottom:182.053333pt;}
.y72{bottom:182.853333pt;}
.y7f{bottom:189.213333pt;}
.y38{bottom:189.466667pt;}
.y59{bottom:191.106667pt;}
.y8f{bottom:192.066667pt;}
.y4a{bottom:196.546667pt;}
.y27{bottom:197.253333pt;}
.y19{bottom:203.360000pt;}
.y95{bottom:205.760000pt;}
.yac{bottom:209.693333pt;}
.ya5{bottom:211.680000pt;}
.y7e{bottom:213.693333pt;}
.y37{bottom:218.266667pt;}
.y49{bottom:218.306667pt;}
.y58{bottom:219.266667pt;}
.y14{bottom:221.666667pt;}
.y65{bottom:224.413333pt;}
.y8e{bottom:226.080000pt;}
.y7d{bottom:237.853333pt;}
.y48{bottom:240.093333pt;}
.y26{bottom:242.560000pt;}
.y36{bottom:247.066667pt;}
.y57{bottom:247.613333pt;}
.y64{bottom:250.013333pt;}
.ya4{bottom:250.746667pt;}
.y22{bottom:253.373333pt;}
.y6f{bottom:256.320000pt;}
.y94{bottom:256.640000pt;}
.y13{bottom:261.306667pt;}
.y7c{bottom:262.333333pt;}
.yab{bottom:275.293333pt;}
.y56{bottom:275.613333pt;}
.y35{bottom:275.866667pt;}
.y21{bottom:278.106667pt;}
.y47{bottom:282.653333pt;}
.y7b{bottom:286.533333pt;}
.y89{bottom:288.026667pt;}
.y5{bottom:293.506667pt;}
.y25{bottom:297.760000pt;}
.y20{bottom:299.386667pt;}
.y63{bottom:302.213333pt;}
.y34{bottom:304.666667pt;}
.y7a{bottom:310.853333pt;}
.yaa{bottom:313.253333pt;}
.ya3{bottom:315.226667pt;}
.y6e{bottom:316.320000pt;}
.yc{bottom:320.320000pt;}
.y46{bottom:321.853333pt;}
.ye{bottom:324.320000pt;}
.y62{bottom:327.973333pt;}
.y4{bottom:329.506667pt;}
.y55{bottom:330.493333pt;}
.y33{bottom:333.506667pt;}
.y79{bottom:335.173333pt;}
.y1f{bottom:336.133333pt;}
.yb{bottom:341.600000pt;}
.y45{bottom:343.613333pt;}
.yd{bottom:345.600000pt;}
.y24{bottom:350.106667pt;}
.ya9{bottom:352.133333pt;}
.ya2{bottom:353.626667pt;}
.y1b{bottom:355.106667pt;}
.y71{bottom:356.453333pt;}
.y1e{bottom:357.413333pt;}
.y54{bottom:358.653333pt;}
.y12{bottom:360.893333pt;}
.y32{bottom:362.306667pt;}
.y44{bottom:365.373333pt;}
.y1a{bottom:376.413333pt;}
.y61{bottom:380.133333pt;}
.y11{bottom:382.213333pt;}
.y78{bottom:386.213333pt;}
.y1d{bottom:386.400000pt;}
.y53{bottom:386.853333pt;}
.y43{bottom:387.173333pt;}
.ya8{bottom:390.533333pt;}
.y31{bottom:391.106667pt;}
.ya1{bottom:392.066667pt;}
.y10{bottom:401.346667pt;}
.y60{bottom:405.733333pt;}
.y42{bottom:408.933333pt;}
.y77{bottom:410.533333pt;}
.y1c{bottom:414.400000pt;}
.y52{bottom:415.013333pt;}
.y3{bottom:417.533333pt;}
.y30{bottom:419.906667pt;}
.yf{bottom:422.626667pt;}
.ya0{bottom:430.466667pt;}
.y41{bottom:430.693333pt;}
.yae{bottom:432.453333pt;}
.y76{bottom:434.880000pt;}
.y51{bottom:443.173333pt;}
.y40{bottom:452.453333pt;}
.ya7{bottom:455.200000pt;}
.y5f{bottom:458.080000pt;}
.y75{bottom:459.200000pt;}
.y3f{bottom:474.213333pt;}
.y86{bottom:474.240000pt;}
.y2f{bottom:475.453333pt;}
.y2{bottom:481.533333pt;}
.y5e{bottom:483.680000pt;}
.ya6{bottom:494.080000pt;}
.y9f{bottom:496.066667pt;}
.y85{bottom:499.840000pt;}
.y50{bottom:501.253333pt;}
.y2e{bottom:504.253333pt;}
.y3e{bottom:508.960000pt;}
.y5d{bottom:509.280000pt;}
.y74{bottom:510.240000pt;}
.y93{bottom:511.746667pt;}
.y1{bottom:545.573333pt;}
.y7{bottom:577.733333pt;}
.y9e{bottom:583.013333pt;}
.y2c{bottom:600.773333pt;}
.y2d{bottom:607.520000pt;}
.y3d{bottom:610.173333pt;}
.y9d{bottom:634.213333pt;}
.y6{bottom:635.493333pt;}
.h6{height:56.635312pt;}
.h7{height:56.732125pt;}
.h1a{height:64.338750pt;}
.h8{height:64.380313pt;}
.hc{height:76.089375pt;}
.h18{height:77.098438pt;}
.h15{height:80.786250pt;}
.he{height:82.315625pt;}
.h10{height:82.431562pt;}
.h16{height:91.590625pt;}
.h17{height:91.706562pt;}
.h3{height:96.807812pt;}
.hb{height:96.923750pt;}
.h12{height:106.082812pt;}
.h13{height:106.198750pt;}
.hf{height:115.937500pt;}
.hd{height:116.053437pt;}
.h11{height:154.776562pt;}
.h4{height:173.906250pt;}
.h2{height:193.035937pt;}
.h1{height:193.151875pt;}
.ha{height:231.875000pt;}
.h19{height:351.200000pt;}
.h14{height:391.040000pt;}
.h5{height:444.800000pt;}
.h9{height:506.720000pt;}
.h0{height:720.000000pt;}
.w5{width:532.960000pt;}
.w4{width:545.760000pt;}
.w2{width:771.200000pt;}
.w3{width:862.400000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x34{left:22.560000pt;}
.x3b{left:39.263986pt;}
.x29{left:48.767986pt;}
.x13{left:51.360000pt;}
.x28{left:52.287986pt;}
.x26{left:54.111986pt;}
.x35{left:56.480000pt;}
.x27{left:60.991986pt;}
.x41{left:64.095986pt;}
.x14{left:66.976000pt;}
.x24{left:71.775986pt;}
.x3c{left:75.295986pt;}
.x2e{left:83.706667pt;}
.x42{left:91.935986pt;}
.x7{left:94.400000pt;}
.x22{left:101.626667pt;}
.x25{left:107.775986pt;}
.x3d{left:110.111986pt;}
.x37{left:113.440000pt;}
.xa{left:125.053333pt;}
.x5{left:127.391986pt;}
.x2c{left:128.640000pt;}
.xb{left:130.333333pt;}
.x15{left:132.026667pt;}
.x16{left:135.546667pt;}
.x39{left:154.053333pt;}
.x17{left:191.066667pt;}
.x2f{left:192.293333pt;}
.x1{left:196.413319pt;}
.x40{left:200.666652pt;}
.x44{left:205.053319pt;}
.xc{left:214.106667pt;}
.x2{left:220.733319pt;}
.x4{left:225.213319pt;}
.xd{left:226.426667pt;}
.x3{left:237.253319pt;}
.x36{left:239.133333pt;}
.xe{left:243.133333pt;}
.x2b{left:279.133333pt;}
.x38{left:291.933333pt;}
.x1e{left:296.226667pt;}
.x43{left:298.146652pt;}
.x12{left:305.346652pt;}
.x19{left:311.013333pt;}
.x18{left:315.973333pt;}
.x6{left:323.746652pt;}
.x1b{left:334.013333pt;}
.x2d{left:338.373333pt;}
.x1a{left:339.653333pt;}
.xf{left:352.826667pt;}
.x1d{left:355.013333pt;}
.x1c{left:359.933333pt;}
.x3f{left:364.866652pt;}
.x10{left:373.786667pt;}
.x8{left:382.080000pt;}
.x23{left:383.266652pt;}
.x9{left:389.280000pt;}
.x31{left:395.773319pt;}
.x3e{left:409.026652pt;}
.x3a{left:419.493333pt;}
.x2a{left:422.173319pt;}
.x30{left:483.586667pt;}
.x20{left:554.813333pt;}
.x1f{left:566.373333pt;}
.x33{left:567.706652pt;}
.x21{left:568.800000pt;}
.x11{left:604.066667pt;}
.x32{left:690.213319pt;}
}




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