
    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_36706aa0ef3665daf718ae9a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_72abd17524287259606a141e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.171875;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_aad04b6a7e65f8e5a0dc886e.woff')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_75f3f2289f650e3a98ec2d6d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_a9b698f17c50c5e628e9e669.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5c02dd70e0568e2d08f6fb28.woff')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_bfdb9ef4d11556c297bb97d5.woff')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_e0aaedd58f163899de9ae394.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls4{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.282000px;}
.ls2{letter-spacing:-0.230400px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.540000px;}
.lsb{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.026720px;}
.ls5{letter-spacing:64.002720px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws6{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-2.438880px;}
._2{margin-left:-1.152480px;}
._4{width:1.110240px;}
._6{width:3.047760px;}
._5{width:4.900320px;}
._a{width:6.752880px;}
._d{width:7.888320px;}
._8{width:9.561600px;}
._7{width:11.115360px;}
._b{width:12.436560px;}
._9{width:13.599600px;}
._11{width:16.015680px;}
._1{width:17.072640px;}
._0{width:18.074880px;}
._c{width:19.075680px;}
._12{width:20.947440px;}
._e{width:24.706080px;}
._10{width:25.781760px;}
._f{width:26.892000px;}
._13{width:38.092320px;}
._14{width:39.142800px;}
._15{width:46.219680px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:11.700000px;}
.ya1{bottom:11.730000px;}
.yb7{bottom:11.874000px;}
.y8e{bottom:11.880000px;}
.yab{bottom:14.040000px;}
.yc1{bottom:14.085000px;}
.yb1{bottom:14.220000px;}
.yae{bottom:16.560000px;}
.y92{bottom:24.660000px;}
.y9d{bottom:24.690000px;}
.yb4{bottom:24.834000px;}
.ya5{bottom:24.840000px;}
.ya8{bottom:27.000000px;}
.ybe{bottom:27.045000px;}
.yb0{bottom:27.180000px;}
.y95{bottom:37.620000px;}
.ya0{bottom:37.650000px;}
.yb6{bottom:37.794000px;}
.y97{bottom:37.800000px;}
.yaa{bottom:39.960000px;}
.ybf{bottom:40.005000px;}
.ybb{bottom:40.140000px;}
.yad{bottom:42.480000px;}
.y90{bottom:50.580000px;}
.y9b{bottom:50.610000px;}
.yb3{bottom:50.754000px;}
.ya7{bottom:52.920000px;}
.ybd{bottom:52.965000px;}
.yba{bottom:53.100000px;}
.y94{bottom:63.540000px;}
.y9f{bottom:63.570000px;}
.yb5{bottom:63.714000px;}
.y98{bottom:63.720000px;}
.ya9{bottom:65.880000px;}
.yc0{bottom:65.925000px;}
.y91{bottom:76.500000px;}
.y9c{bottom:76.530000px;}
.y4{bottom:84.240000px;}
.y9e{bottom:89.310000px;}
.y93{bottom:89.460000px;}
.y3{bottom:104.400000px;}
.yd1{bottom:125.856000px;}
.y26{bottom:128.376000px;}
.y6a{bottom:130.356000px;}
.y8c{bottom:133.596000px;}
.yb2{bottom:146.736000px;}
.yd0{bottom:151.770000px;}
.y25{bottom:154.290000px;}
.y69{bottom:157.350000px;}
.y8b{bottom:159.510000px;}
.y4a{bottom:162.030000px;}
.ycf{bottom:177.510000px;}
.y24{bottom:180.210000px;}
.y68{bottom:184.710000px;}
.y8a{bottom:185.430000px;}
.yd5{bottom:186.510000px;}
.y49{bottom:187.950000px;}
.yce{bottom:203.430000px;}
.y23{bottom:206.130000px;}
.y89{bottom:211.170000px;}
.y67{bottom:211.710000px;}
.y48{bottom:213.870000px;}
.yd4{bottom:214.950000px;}
.ycd{bottom:229.350000px;}
.yaf{bottom:230.430000px;}
.y22{bottom:231.870000px;}
.y88{bottom:237.090000px;}
.y66{bottom:238.530000px;}
.y47{bottom:239.610000px;}
.yd3{bottom:242.310000px;}
.ycc{bottom:255.270000px;}
.y21{bottom:257.790000px;}
.y87{bottom:263.010000px;}
.y46{bottom:265.530000px;}
.y65{bottom:266.790000px;}
.yd2{bottom:268.230000px;}
.ycb{bottom:281.010000px;}
.y20{bottom:283.710000px;}
.y86{bottom:288.930000px;}
.y45{bottom:291.450000px;}
.y64{bottom:293.970000px;}
.yca{bottom:306.930000px;}
.y1f{bottom:309.630000px;}
.y85{bottom:314.670000px;}
.y44{bottom:317.370000px;}
.yac{bottom:318.630000px;}
.y63{bottom:319.890000px;}
.yc9{bottom:332.850000px;}
.y1e{bottom:336.630000px;}
.y84{bottom:340.590000px;}
.y43{bottom:343.110000px;}
.y62{bottom:345.810000px;}
.yc8{bottom:358.770000px;}
.y1d{bottom:363.810000px;}
.y83{bottom:366.555000px;}
.y42{bottom:369.075000px;}
.y61{bottom:371.775000px;}
.yc7{bottom:385.815000px;}
.ya6{bottom:385.995000px;}
.y1c{bottom:389.775000px;}
.y82{bottom:392.475000px;}
.y41{bottom:394.995000px;}
.y60{bottom:397.515000px;}
.yc6{bottom:414.255000px;}
.y1b{bottom:415.695000px;}
.y81{bottom:418.215000px;}
.y40{bottom:420.915000px;}
.y5f{bottom:423.435000px;}
.y1a{bottom:441.615000px;}
.y80{bottom:444.135000px;}
.y3f{bottom:446.655000px;}
.y5e{bottom:449.355000px;}
.y19{bottom:467.355000px;}
.y7f{bottom:470.055000px;}
.y3e{bottom:472.575000px;}
.ya4{bottom:474.195000px;}
.y5d{bottom:475.275000px;}
.y18{bottom:493.275000px;}
.y7e{bottom:495.795000px;}
.y3d{bottom:498.495000px;}
.y5c{bottom:501.015000px;}
.y17{bottom:519.195000px;}
.y7d{bottom:521.715000px;}
.y3c{bottom:524.415000px;}
.y5b{bottom:526.935000px;}
.y16{bottom:545.115000px;}
.y7c{bottom:547.635000px;}
.y3b{bottom:550.155000px;}
.y5a{bottom:552.855000px;}
.ya2{bottom:557.895000px;}
.y15{bottom:570.855000px;}
.y7b{bottom:573.555000px;}
.y3a{bottom:576.075000px;}
.y59{bottom:578.595000px;}
.y14{bottom:596.775000px;}
.y7a{bottom:599.295000px;}
.y39{bottom:601.995000px;}
.y58{bottom:604.515000px;}
.y9a{bottom:615.675000px;}
.y13{bottom:622.695000px;}
.y79{bottom:625.245000px;}
.y38{bottom:627.945000px;}
.y57{bottom:630.465000px;}
.yc5{bottom:648.465000px;}
.y12{bottom:648.645000px;}
.y78{bottom:651.165000px;}
.yd7{bottom:652.245000px;}
.y37{bottom:653.685000px;}
.y56{bottom:656.385000px;}
.y11{bottom:674.385000px;}
.y77{bottom:677.085000px;}
.y36{bottom:679.605000px;}
.yd6{bottom:680.685000px;}
.y55{bottom:682.125000px;}
.y10{bottom:700.305000px;}
.y76{bottom:702.825000px;}
.y35{bottom:705.525000px;}
.y54{bottom:708.045000px;}
.y99{bottom:725.145000px;}
.yf{bottom:726.225000px;}
.y75{bottom:728.745000px;}
.y34{bottom:731.445000px;}
.y53{bottom:733.965000px;}
.ye{bottom:751.965000px;}
.y74{bottom:754.665000px;}
.y33{bottom:757.185000px;}
.y52{bottom:759.885000px;}
.yc4{bottom:777.885000px;}
.yd{bottom:779.145000px;}
.y73{bottom:780.585000px;}
.y32{bottom:783.105000px;}
.y51{bottom:785.625000px;}
.yc3{bottom:803.805000px;}
.y72{bottom:806.325000px;}
.yc{bottom:807.585000px;}
.y96{bottom:808.665000px;}
.y31{bottom:809.025000px;}
.y50{bottom:811.545000px;}
.yc2{bottom:830.805000px;}
.y71{bottom:832.245000px;}
.y30{bottom:834.765000px;}
.yb{bottom:836.025000px;}
.y4f{bottom:837.465000px;}
.y70{bottom:858.165000px;}
.y2f{bottom:860.685000px;}
.y4e{bottom:863.385000px;}
.ya{bottom:864.465000px;}
.ybc{bottom:877.065000px;}
.y6f{bottom:884.130000px;}
.y2e{bottom:886.650000px;}
.y4d{bottom:889.170000px;}
.y8f{bottom:892.410000px;}
.y9{bottom:892.950000px;}
.y6e{bottom:909.870000px;}
.y2d{bottom:912.570000px;}
.y4c{bottom:915.090000px;}
.y8{bottom:924.990000px;}
.y6d{bottom:935.790000px;}
.y2c{bottom:939.570000px;}
.y4b{bottom:941.010000px;}
.yda{bottom:961.710000px;}
.y6c{bottom:962.790000px;}
.yb9{bottom:965.310000px;}
.y7{bottom:965.850000px;}
.y2b{bottom:966.930000px;}
.yd9{bottom:988.710000px;}
.y6b{bottom:991.230000px;}
.y2a{bottom:992.670000px;}
.y8d{bottom:1001.850000px;}
.y6{bottom:1012.470000px;}
.yd8{bottom:1017.150000px;}
.y29{bottom:1018.590000px;}
.y28{bottom:1044.510000px;}
.yb8{bottom:1053.690000px;}
.y5{bottom:1058.910000px;}
.y27{bottom:1070.250000px;}
.y2{bottom:1084.290000px;}
.y1{bottom:1194.120000px;}
.h15{height:25.740000px;}
.hc{height:25.920000px;}
.h9{height:41.726953px;}
.hb{height:42.164648px;}
.ha{height:43.506914px;}
.h7{height:46.736719px;}
.h8{height:49.255313px;}
.h11{height:51.660000px;}
.h6{height:54.596250px;}
.h13{height:61.236000px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.h5{height:68.340586px;}
.h4{height:76.201172px;}
.hf{height:77.580000px;}
.h14{height:77.760000px;}
.he{height:77.796000px;}
.h12{height:82.260000px;}
.h16{height:82.296000px;}
.h10{height:103.356000px;}
.hd{height:103.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:140.220000px;}
.w4{width:202.035000px;}
.w5{width:340.770000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.080000px;}
.xf{left:42.120000px;}
.x13{left:50.040000px;}
.x11{left:73.125000px;}
.xe{left:106.956000px;}
.x1{left:108.035987px;}
.x4{left:125.855987px;}
.xc{left:135.035987px;}
.x15{left:162.029987px;}
.x5{left:179.129987px;}
.xd{left:192.629987px;}
.x7{left:200.549987px;}
.x6{left:230.069987px;}
.xa{left:239.249987px;}
.x10{left:250.950000px;}
.x9{left:264.989987px;}
.x8{left:285.914987px;}
.xb{left:446.474987px;}
.x12{left:456.765000px;}
.x3{left:694.589987px;}
.x2{left:785.489987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls4{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.250667pt;}
.ls2{letter-spacing:-0.204800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.480000pt;}
.lsb{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.912640pt;}
.ls5{letter-spacing:56.891307pt;}
.ws3{word-spacing:-53.120000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-2.167893pt;}
._2{margin-left:-1.024427pt;}
._4{width:0.986880pt;}
._6{width:2.709120pt;}
._5{width:4.355840pt;}
._a{width:6.002560pt;}
._d{width:7.011840pt;}
._8{width:8.499200pt;}
._7{width:9.880320pt;}
._b{width:11.054720pt;}
._9{width:12.088533pt;}
._11{width:14.236160pt;}
._1{width:15.175680pt;}
._0{width:16.066560pt;}
._c{width:16.956160pt;}
._12{width:18.619947pt;}
._e{width:21.960960pt;}
._10{width:22.917120pt;}
._f{width:23.904000pt;}
._13{width:33.859840pt;}
._14{width:34.793600pt;}
._15{width:41.084160pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:10.400000pt;}
.ya1{bottom:10.426667pt;}
.yb7{bottom:10.554667pt;}
.y8e{bottom:10.560000pt;}
.yab{bottom:12.480000pt;}
.yc1{bottom:12.520000pt;}
.yb1{bottom:12.640000pt;}
.yae{bottom:14.720000pt;}
.y92{bottom:21.920000pt;}
.y9d{bottom:21.946667pt;}
.yb4{bottom:22.074667pt;}
.ya5{bottom:22.080000pt;}
.ya8{bottom:24.000000pt;}
.ybe{bottom:24.040000pt;}
.yb0{bottom:24.160000pt;}
.y95{bottom:33.440000pt;}
.ya0{bottom:33.466667pt;}
.yb6{bottom:33.594667pt;}
.y97{bottom:33.600000pt;}
.yaa{bottom:35.520000pt;}
.ybf{bottom:35.560000pt;}
.ybb{bottom:35.680000pt;}
.yad{bottom:37.760000pt;}
.y90{bottom:44.960000pt;}
.y9b{bottom:44.986667pt;}
.yb3{bottom:45.114667pt;}
.ya7{bottom:47.040000pt;}
.ybd{bottom:47.080000pt;}
.yba{bottom:47.200000pt;}
.y94{bottom:56.480000pt;}
.y9f{bottom:56.506667pt;}
.yb5{bottom:56.634667pt;}
.y98{bottom:56.640000pt;}
.ya9{bottom:58.560000pt;}
.yc0{bottom:58.600000pt;}
.y91{bottom:68.000000pt;}
.y9c{bottom:68.026667pt;}
.y4{bottom:74.880000pt;}
.y9e{bottom:79.386667pt;}
.y93{bottom:79.520000pt;}
.y3{bottom:92.800000pt;}
.yd1{bottom:111.872000pt;}
.y26{bottom:114.112000pt;}
.y6a{bottom:115.872000pt;}
.y8c{bottom:118.752000pt;}
.yb2{bottom:130.432000pt;}
.yd0{bottom:134.906667pt;}
.y25{bottom:137.146667pt;}
.y69{bottom:139.866667pt;}
.y8b{bottom:141.786667pt;}
.y4a{bottom:144.026667pt;}
.ycf{bottom:157.786667pt;}
.y24{bottom:160.186667pt;}
.y68{bottom:164.186667pt;}
.y8a{bottom:164.826667pt;}
.yd5{bottom:165.786667pt;}
.y49{bottom:167.066667pt;}
.yce{bottom:180.826667pt;}
.y23{bottom:183.226667pt;}
.y89{bottom:187.706667pt;}
.y67{bottom:188.186667pt;}
.y48{bottom:190.106667pt;}
.yd4{bottom:191.066667pt;}
.ycd{bottom:203.866667pt;}
.yaf{bottom:204.826667pt;}
.y22{bottom:206.106667pt;}
.y88{bottom:210.746667pt;}
.y66{bottom:212.026667pt;}
.y47{bottom:212.986667pt;}
.yd3{bottom:215.386667pt;}
.ycc{bottom:226.906667pt;}
.y21{bottom:229.146667pt;}
.y87{bottom:233.786667pt;}
.y46{bottom:236.026667pt;}
.y65{bottom:237.146667pt;}
.yd2{bottom:238.426667pt;}
.ycb{bottom:249.786667pt;}
.y20{bottom:252.186667pt;}
.y86{bottom:256.826667pt;}
.y45{bottom:259.066667pt;}
.y64{bottom:261.306667pt;}
.yca{bottom:272.826667pt;}
.y1f{bottom:275.226667pt;}
.y85{bottom:279.706667pt;}
.y44{bottom:282.106667pt;}
.yac{bottom:283.226667pt;}
.y63{bottom:284.346667pt;}
.yc9{bottom:295.866667pt;}
.y1e{bottom:299.226667pt;}
.y84{bottom:302.746667pt;}
.y43{bottom:304.986667pt;}
.y62{bottom:307.386667pt;}
.yc8{bottom:318.906667pt;}
.y1d{bottom:323.386667pt;}
.y83{bottom:325.826667pt;}
.y42{bottom:328.066667pt;}
.y61{bottom:330.466667pt;}
.yc7{bottom:342.946667pt;}
.ya6{bottom:343.106667pt;}
.y1c{bottom:346.466667pt;}
.y82{bottom:348.866667pt;}
.y41{bottom:351.106667pt;}
.y60{bottom:353.346667pt;}
.yc6{bottom:368.226667pt;}
.y1b{bottom:369.506667pt;}
.y81{bottom:371.746667pt;}
.y40{bottom:374.146667pt;}
.y5f{bottom:376.386667pt;}
.y1a{bottom:392.546667pt;}
.y80{bottom:394.786667pt;}
.y3f{bottom:397.026667pt;}
.y5e{bottom:399.426667pt;}
.y19{bottom:415.426667pt;}
.y7f{bottom:417.826667pt;}
.y3e{bottom:420.066667pt;}
.ya4{bottom:421.506667pt;}
.y5d{bottom:422.466667pt;}
.y18{bottom:438.466667pt;}
.y7e{bottom:440.706667pt;}
.y3d{bottom:443.106667pt;}
.y5c{bottom:445.346667pt;}
.y17{bottom:461.506667pt;}
.y7d{bottom:463.746667pt;}
.y3c{bottom:466.146667pt;}
.y5b{bottom:468.386667pt;}
.y16{bottom:484.546667pt;}
.y7c{bottom:486.786667pt;}
.y3b{bottom:489.026667pt;}
.y5a{bottom:491.426667pt;}
.ya2{bottom:495.906667pt;}
.y15{bottom:507.426667pt;}
.y7b{bottom:509.826667pt;}
.y3a{bottom:512.066667pt;}
.y59{bottom:514.306667pt;}
.y14{bottom:530.466667pt;}
.y7a{bottom:532.706667pt;}
.y39{bottom:535.106667pt;}
.y58{bottom:537.346667pt;}
.y9a{bottom:547.266667pt;}
.y13{bottom:553.506667pt;}
.y79{bottom:555.773333pt;}
.y38{bottom:558.173333pt;}
.y57{bottom:560.413333pt;}
.yc5{bottom:576.413333pt;}
.y12{bottom:576.573333pt;}
.y78{bottom:578.813333pt;}
.yd7{bottom:579.773333pt;}
.y37{bottom:581.053333pt;}
.y56{bottom:583.453333pt;}
.y11{bottom:599.453333pt;}
.y77{bottom:601.853333pt;}
.y36{bottom:604.093333pt;}
.yd6{bottom:605.053333pt;}
.y55{bottom:606.333333pt;}
.y10{bottom:622.493333pt;}
.y76{bottom:624.733333pt;}
.y35{bottom:627.133333pt;}
.y54{bottom:629.373333pt;}
.y99{bottom:644.573333pt;}
.yf{bottom:645.533333pt;}
.y75{bottom:647.773333pt;}
.y34{bottom:650.173333pt;}
.y53{bottom:652.413333pt;}
.ye{bottom:668.413333pt;}
.y74{bottom:670.813333pt;}
.y33{bottom:673.053333pt;}
.y52{bottom:675.453333pt;}
.yc4{bottom:691.453333pt;}
.yd{bottom:692.573333pt;}
.y73{bottom:693.853333pt;}
.y32{bottom:696.093333pt;}
.y51{bottom:698.333333pt;}
.yc3{bottom:714.493333pt;}
.y72{bottom:716.733333pt;}
.yc{bottom:717.853333pt;}
.y96{bottom:718.813333pt;}
.y31{bottom:719.133333pt;}
.y50{bottom:721.373333pt;}
.yc2{bottom:738.493333pt;}
.y71{bottom:739.773333pt;}
.y30{bottom:742.013333pt;}
.yb{bottom:743.133333pt;}
.y4f{bottom:744.413333pt;}
.y70{bottom:762.813333pt;}
.y2f{bottom:765.053333pt;}
.y4e{bottom:767.453333pt;}
.ya{bottom:768.413333pt;}
.ybc{bottom:779.613333pt;}
.y6f{bottom:785.893333pt;}
.y2e{bottom:788.133333pt;}
.y4d{bottom:790.373333pt;}
.y8f{bottom:793.253333pt;}
.y9{bottom:793.733333pt;}
.y6e{bottom:808.773333pt;}
.y2d{bottom:811.173333pt;}
.y4c{bottom:813.413333pt;}
.y8{bottom:822.213333pt;}
.y6d{bottom:831.813333pt;}
.y2c{bottom:835.173333pt;}
.y4b{bottom:836.453333pt;}
.yda{bottom:854.853333pt;}
.y6c{bottom:855.813333pt;}
.yb9{bottom:858.053333pt;}
.y7{bottom:858.533333pt;}
.y2b{bottom:859.493333pt;}
.yd9{bottom:878.853333pt;}
.y6b{bottom:881.093333pt;}
.y2a{bottom:882.373333pt;}
.y8d{bottom:890.533333pt;}
.y6{bottom:899.973333pt;}
.yd8{bottom:904.133333pt;}
.y29{bottom:905.413333pt;}
.y28{bottom:928.453333pt;}
.yb8{bottom:936.613333pt;}
.y5{bottom:941.253333pt;}
.y27{bottom:951.333333pt;}
.y2{bottom:963.813333pt;}
.y1{bottom:1061.440000pt;}
.h15{height:22.880000pt;}
.hc{height:23.040000pt;}
.h9{height:37.090625pt;}
.hb{height:37.479688pt;}
.ha{height:38.672812pt;}
.h7{height:41.543750pt;}
.h8{height:43.782500pt;}
.h11{height:45.920000pt;}
.h6{height:48.530000pt;}
.h13{height:54.432000pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.h5{height:60.747188pt;}
.h4{height:67.734375pt;}
.hf{height:68.960000pt;}
.h14{height:69.120000pt;}
.he{height:69.152000pt;}
.h12{height:73.120000pt;}
.h16{height:73.152000pt;}
.h10{height:91.872000pt;}
.hd{height:92.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:124.640000pt;}
.w4{width:179.586667pt;}
.w5{width:302.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:0.960000pt;}
.xf{left:37.440000pt;}
.x13{left:44.480000pt;}
.x11{left:65.000000pt;}
.xe{left:95.072000pt;}
.x1{left:96.031988pt;}
.x4{left:111.871988pt;}
.xc{left:120.031988pt;}
.x15{left:144.026655pt;}
.x5{left:159.226655pt;}
.xd{left:171.226655pt;}
.x7{left:178.266655pt;}
.x6{left:204.506655pt;}
.xa{left:212.666655pt;}
.x10{left:223.066667pt;}
.x9{left:235.546655pt;}
.x8{left:254.146655pt;}
.xb{left:396.866655pt;}
.x12{left:406.013333pt;}
.x3{left:617.413322pt;}
.x2{left:698.213322pt;}
}




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