
    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_df7d62c1f0b0f896ab504826.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_9f38195bcf21927efefb1b56.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_341ca300bdce74645b462a52.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ee3d7382937c17b9aaa68801.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_370bb8f73a79282b9894e236.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_c827e1f0ecd3b79a2bc81f9f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_004bb10cdc56a3ef5c1166d1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27c6bd123d724ab14521d7cc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_ad3c108886196b7a655069f1.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-97.920000px;}
.v4{vertical-align:-30.240000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v3{vertical-align:30.240000px;}
.ls1d{letter-spacing:-2.520000px;}
.ls1e{letter-spacing:-1.782000px;}
.ls1c{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.690000px;}
.lsa{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.341400px;}
.ls4{letter-spacing:-0.322800px;}
.lsb{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000001px;}
.ls0{letter-spacing:0.028080px;}
.ls15{letter-spacing:0.252720px;}
.ls13{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.504000px;}
.ls1a{letter-spacing:1.260000px;}
.lse{letter-spacing:4.140000px;}
.ls9{letter-spacing:4.860000px;}
.lsd{letter-spacing:7.740000px;}
.ls19{letter-spacing:10.800000px;}
.ls14{letter-spacing:20.700000px;}
.ls6{letter-spacing:29.340000px;}
.ls18{letter-spacing:40.661280px;}
.ls17{letter-spacing:43.541280px;}
.ls16{letter-spacing:53.940000px;}
.lsf{letter-spacing:223.020000px;}
.ls7{letter-spacing:441.900000px;}
.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;}
}
.ws11{word-spacing:-84.240000px;}
.ws6{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.401400px;}
.ws15{word-spacing:-21.312720px;}
.ws13{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsb{word-spacing:-21.031920px;}
.ws12{word-spacing:-20.880000px;}
.ws3{word-spacing:-20.737200px;}
.ws4{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.ws17{word-spacing:-20.370000px;}
.ws14{word-spacing:-19.980000px;}
.ws16{word-spacing:-19.278000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.696000px;}
.wse{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.wsd{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.140000px;}
.wsc{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1c{margin-left:-5.896800px;}
._b{margin-left:-4.548960px;}
._c{margin-left:-3.337200px;}
._1d{margin-left:-2.306880px;}
._0{margin-left:-1.296000px;}
._1{width:1.152000px;}
._4{width:2.948400px;}
._14{width:4.056480px;}
._23{width:5.114160px;}
._1a{width:6.823440px;}
._17{width:8.171280px;}
._18{width:9.202080px;}
._1b{width:10.984560px;}
._10{width:12.511680px;}
._a{width:13.584000px;}
._9{width:14.657760px;}
._6{width:15.994560px;}
._5{width:17.133120px;}
._19{width:18.417600px;}
._21{width:19.812240px;}
._12{width:22.219920px;}
._2{width:23.671440px;}
._3{width:24.750960px;}
._22{width:26.599200px;}
._13{width:28.136160px;}
._30{width:29.315520px;}
._f{width:30.443040px;}
._26{width:31.753440px;}
._25{width:33.138720px;}
._1f{width:35.128080px;}
._1e{width:36.255600px;}
._20{width:38.024640px;}
._24{width:39.340080px;}
._e{width:40.973040px;}
._d{width:42.204240px;}
._8{width:43.500240px;}
._33{width:45.277200px;}
._15{width:46.280160px;}
._29{width:48.185280px;}
._2a{width:49.231920px;}
._7{width:50.492160px;}
._34{width:51.781440px;}
._35{width:52.844640px;}
._27{width:58.462560px;}
._28{width:59.725200px;}
._2c{width:64.807920px;}
._2b{width:66.076560px;}
._32{width:80.544480px;}
._31{width:82.334880px;}
._2d{width:86.114160px;}
._2e{width:87.130080px;}
._11{width:92.696400px;}
._16{width:201.281760px;}
._2f{width:234.352320px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.170000px;}
.y4a{bottom:15.660000px;}
.y4d{bottom:15.840000px;}
.y5a{bottom:15.885000px;}
.y78{bottom:16.740000px;}
.y69{bottom:16.920000px;}
.y6c{bottom:16.965000px;}
.y7a{bottom:17.100000px;}
.y52{bottom:22.500000px;}
.y3{bottom:24.330000px;}
.y5{bottom:25.230000px;}
.y5d{bottom:30.960000px;}
.y57{bottom:31.140000px;}
.y49{bottom:32.760000px;}
.y4b{bottom:32.940000px;}
.y51{bottom:39.600000px;}
.y68{bottom:41.040000px;}
.y2{bottom:45.570000px;}
.y4{bottom:45.930000px;}
.y5c{bottom:48.060000px;}
.y56{bottom:48.285000px;}
.y50{bottom:56.880000px;}
.y9{bottom:75.240000px;}
.y8{bottom:96.300000px;}
.y99{bottom:126.000000px;}
.y75{bottom:136.980000px;}
.y46{bottom:141.300000px;}
.y31{bottom:141.480000px;}
.y64{bottom:150.120000px;}
.y45{bottom:165.420000px;}
.y30{bottom:165.600000px;}
.y74{bottom:173.160000px;}
.y63{bottom:174.240000px;}
.y44{bottom:189.570000px;}
.y2f{bottom:189.750000px;}
.y62{bottom:198.570000px;}
.y73{bottom:209.730000px;}
.y2e{bottom:213.870000px;}
.y98{bottom:222.690000px;}
.y72{bottom:233.850000px;}
.y2d{bottom:237.990000px;}
.y61{bottom:240.330000px;}
.y97{bottom:246.810000px;}
.y71{bottom:257.970000px;}
.y60{bottom:260.490000px;}
.y2c{bottom:262.110000px;}
.y96{bottom:270.930000px;}
.y70{bottom:282.270000px;}
.y43{bottom:286.230000px;}
.y2b{bottom:286.410000px;}
.y5b{bottom:290.550000px;}
.y95{bottom:295.050000px;}
.y42{bottom:310.350000px;}
.y2a{bottom:310.530000px;}
.y6f{bottom:318.270000px;}
.y94{bottom:319.170000px;}
.y5f{bottom:320.430000px;}
.y41{bottom:334.470000px;}
.y29{bottom:334.650000px;}
.y6e{bottom:338.250000px;}
.y93{bottom:343.470000px;}
.y5e{bottom:350.490000px;}
.y28{bottom:358.770000px;}
.y92{bottom:367.590000px;}
.y6d{bottom:375.150000px;}
.y55{bottom:380.370000px;}
.y27{bottom:382.890000px;}
.y91{bottom:391.710000px;}
.y26{bottom:407.010000px;}
.y59{bottom:410.430000px;}
.y6b{bottom:412.050000px;}
.y90{bottom:415.830000px;}
.ya9{bottom:424.155000px;}
.y25{bottom:430.815000px;}
.y40{bottom:431.175000px;}
.y8f{bottom:439.995000px;}
.y58{bottom:440.535000px;}
.ya8{bottom:448.815000px;}
.y6a{bottom:448.995000px;}
.y3f{bottom:455.295000px;}
.y24{bottom:455.475000px;}
.y8e{bottom:464.115000px;}
.y4f{bottom:470.415000px;}
.ya7{bottom:473.475000px;}
.y3e{bottom:479.415000px;}
.y23{bottom:479.595000px;}
.y67{bottom:485.895000px;}
.y8d{bottom:488.235000px;}
.ya6{bottom:498.135000px;}
.y54{bottom:500.475000px;}
.y3d{bottom:503.535000px;}
.y22{bottom:503.715000px;}
.y8c{bottom:512.535000px;}
.ya5{bottom:522.615000px;}
.y21{bottom:527.835000px;}
.y53{bottom:530.535000px;}
.y8b{bottom:536.655000px;}
.ya4{bottom:547.275000px;}
.y66{bottom:551.595000px;}
.y20{bottom:551.955000px;}
.y4e{bottom:560.415000px;}
.y8a{bottom:560.775000px;}
.ya3{bottom:571.935000px;}
.y65{bottom:575.715000px;}
.y1f{bottom:576.075000px;}
.y89{bottom:584.895000px;}
.y4c{bottom:590.475000px;}
.ya2{bottom:596.595000px;}
.y3c{bottom:600.195000px;}
.y1e{bottom:600.375000px;}
.y88{bottom:609.015000px;}
.y48{bottom:620.535000px;}
.ya1{bottom:621.075000px;}
.y3b{bottom:624.315000px;}
.y1d{bottom:624.495000px;}
.y87{bottom:633.135000px;}
.ya0{bottom:645.735000px;}
.y3a{bottom:648.435000px;}
.y1c{bottom:648.615000px;}
.y86{bottom:657.435000px;}
.y9f{bottom:670.425000px;}
.y1b{bottom:672.765000px;}
.y85{bottom:681.585000px;}
.y47{bottom:684.825000px;}
.y9e{bottom:695.085000px;}
.y39{bottom:696.525000px;}
.y1a{bottom:696.885000px;}
.y84{bottom:705.705000px;}
.y9d{bottom:719.565000px;}
.y19{bottom:721.005000px;}
.y83{bottom:729.825000px;}
.y9c{bottom:744.225000px;}
.y18{bottom:745.125000px;}
.y82{bottom:753.945000px;}
.y38{bottom:769.245000px;}
.y81{bottom:778.065000px;}
.y17{bottom:780.945000px;}
.y37{bottom:793.365000px;}
.y80{bottom:802.185000px;}
.y16{bottom:805.065000px;}
.y36{bottom:817.665000px;}
.y7f{bottom:826.485000px;}
.y15{bottom:841.425000px;}
.y35{bottom:841.785000px;}
.y7e{bottom:850.605000px;}
.y14{bottom:865.905000px;}
.y7d{bottom:886.785000px;}
.y13{bottom:890.025000px;}
.y7c{bottom:906.630000px;}
.y12{bottom:914.190000px;}
.y11{bottom:938.310000px;}
.y7b{bottom:943.530000px;}
.y9b{bottom:962.070000px;}
.y10{bottom:962.430000px;}
.y79{bottom:980.430000px;}
.y9a{bottom:986.370000px;}
.yf{bottom:986.730000px;}
.ye{bottom:1010.850000px;}
.y77{bottom:1017.330000px;}
.yd{bottom:1034.970000px;}
.yc{bottom:1058.730000px;}
.y34{bottom:1059.090000px;}
.y76{bottom:1070.970000px;}
.yb{bottom:1082.850000px;}
.y33{bottom:1083.210000px;}
.ya{bottom:1106.970000px;}
.y32{bottom:1107.330000px;}
.y7{bottom:1130.730000px;}
.y1{bottom:1147.110000px;}
.h14{height:29.160000px;}
.h11{height:29.340000px;}
.h16{height:29.376000px;}
.h19{height:36.000000px;}
.h1a{height:36.036000px;}
.h1b{height:36.180000px;}
.he{height:46.476000px;}
.h4{height:50.800781px;}
.h12{height:58.621992px;}
.hf{height:58.651172px;}
.h10{height:59.038594px;}
.hb{height:59.066719px;}
.h18{height:60.120000px;}
.h7{height:60.679688px;}
.h3{height:60.960938px;}
.h2{height:62.676000px;}
.hc{height:65.884219px;}
.h6{height:70.664062px;}
.h1d{height:71.324297px;}
.h5{height:72.562500px;}
.h9{height:82.635820px;}
.ha{height:82.676953px;}
.hd{height:83.238047px;}
.h8{height:84.898125px;}
.h1c{height:86.585445px;}
.h17{height:89.100000px;}
.h13{height:89.280000px;}
.h15{height:89.316000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:104.400000px;}
.we{width:114.660000px;}
.w6{width:114.876000px;}
.w8{width:115.380000px;}
.wd{width:115.416000px;}
.wb{width:126.360000px;}
.w11{width:133.596000px;}
.w9{width:138.456000px;}
.wc{width:147.456000px;}
.w7{width:158.610000px;}
.wf{width:206.310000px;}
.w2{width:223.095000px;}
.w10{width:274.710000px;}
.w3{width:499.215000px;}
.wa{width:634.965000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.136000px;}
.x19{left:9.540000px;}
.x31{left:11.700000px;}
.x2a{left:15.885000px;}
.x2b{left:20.205000px;}
.x5{left:23.580000px;}
.x28{left:24.654000px;}
.x1b{left:28.260000px;}
.x23{left:31.680000px;}
.x30{left:32.985000px;}
.x27{left:34.554000px;}
.x4{left:38.880000px;}
.x21{left:43.065000px;}
.x20{left:49.320000px;}
.x2f{left:50.985000px;}
.x1f{left:52.245000px;}
.x22{left:58.005000px;}
.x37{left:63.534000px;}
.x35{left:66.600000px;}
.x39{left:73.614000px;}
.x1{left:84.960000px;}
.x38{left:96.120000px;}
.x7{left:116.315987px;}
.x17{left:129.096000px;}
.x26{left:135.935987px;}
.x13{left:138.095987px;}
.x24{left:183.629987px;}
.x16{left:195.689987px;}
.xa{left:223.049987px;}
.x18{left:234.390000px;}
.x33{left:239.249987px;}
.x29{left:262.830000px;}
.x11{left:266.429987px;}
.x1e{left:290.919000px;}
.x3b{left:297.614987px;}
.x3{left:308.055000px;}
.xd{left:334.694987px;}
.x6{left:336.450000px;}
.xb{left:339.734987px;}
.x34{left:343.515000px;}
.x1a{left:350.175000px;}
.x8{left:354.314987px;}
.xc{left:357.914987px;}
.xf{left:366.194987px;}
.xe{left:367.454987px;}
.x12{left:392.114987px;}
.x14{left:393.374987px;}
.x10{left:399.134987px;}
.x3a{left:402.734987px;}
.x2c{left:411.015000px;}
.x9{left:446.474987px;}
.x3c{left:472.964987px;}
.x1c{left:509.505000px;}
.x2d{left:527.145000px;}
.x36{left:618.945000px;}
.x1d{left:625.605000px;}
.x2e{left:642.705000px;}
.x32{left:729.149987px;}
.x25{left:734.549987px;}
.x15{left:807.989987px;}
@media print{
.v1{vertical-align:-87.040000pt;}
.v4{vertical-align:-26.880000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v3{vertical-align:26.880000pt;}
.ls1d{letter-spacing:-2.240000pt;}
.ls1e{letter-spacing:-1.584000pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.613333pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.303467pt;}
.ls4{letter-spacing:-0.286933pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls0{letter-spacing:0.024960pt;}
.ls15{letter-spacing:0.224640pt;}
.ls13{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:1.120000pt;}
.lse{letter-spacing:3.680000pt;}
.ls9{letter-spacing:4.320000pt;}
.lsd{letter-spacing:6.880000pt;}
.ls19{letter-spacing:9.600000pt;}
.ls14{letter-spacing:18.400000pt;}
.ls6{letter-spacing:26.080000pt;}
.ls18{letter-spacing:36.143360pt;}
.ls17{letter-spacing:38.703360pt;}
.ls16{letter-spacing:47.946667pt;}
.lsf{letter-spacing:198.240000pt;}
.ls7{letter-spacing:392.800000pt;}
.ws11{word-spacing:-74.880000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.023467pt;}
.ws15{word-spacing:-18.944640pt;}
.ws13{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.695040pt;}
.ws12{word-spacing:-18.560000pt;}
.ws3{word-spacing:-18.433067pt;}
.ws4{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.ws17{word-spacing:-18.106667pt;}
.ws14{word-spacing:-17.760000pt;}
.ws16{word-spacing:-17.136000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.952000pt;}
.wse{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.680000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1c{margin-left:-5.241600pt;}
._b{margin-left:-4.043520pt;}
._c{margin-left:-2.966400pt;}
._1d{margin-left:-2.050560pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.024000pt;}
._4{width:2.620800pt;}
._14{width:3.605760pt;}
._23{width:4.545920pt;}
._1a{width:6.065280pt;}
._17{width:7.263360pt;}
._18{width:8.179627pt;}
._1b{width:9.764053pt;}
._10{width:11.121493pt;}
._a{width:12.074667pt;}
._9{width:13.029120pt;}
._6{width:14.217387pt;}
._5{width:15.229440pt;}
._19{width:16.371200pt;}
._21{width:17.610880pt;}
._12{width:19.751040pt;}
._2{width:21.041280pt;}
._3{width:22.000853pt;}
._22{width:23.643733pt;}
._13{width:25.009920pt;}
._30{width:26.058240pt;}
._f{width:27.060480pt;}
._26{width:28.225280pt;}
._25{width:29.456640pt;}
._1f{width:31.224960pt;}
._1e{width:32.227200pt;}
._20{width:33.799680pt;}
._24{width:34.968960pt;}
._e{width:36.420480pt;}
._d{width:37.514880pt;}
._8{width:38.666880pt;}
._33{width:40.246400pt;}
._15{width:41.137920pt;}
._29{width:42.831360pt;}
._2a{width:43.761707pt;}
._7{width:44.881920pt;}
._34{width:46.027947pt;}
._35{width:46.973013pt;}
._27{width:51.966720pt;}
._28{width:53.089067pt;}
._2c{width:57.607040pt;}
._2b{width:58.734720pt;}
._32{width:71.595093pt;}
._31{width:73.186560pt;}
._2d{width:76.545920pt;}
._2e{width:77.448960pt;}
._11{width:82.396800pt;}
._16{width:178.917120pt;}
._2f{width:208.313173pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.706667pt;}
.y4a{bottom:13.920000pt;}
.y4d{bottom:14.080000pt;}
.y5a{bottom:14.120000pt;}
.y78{bottom:14.880000pt;}
.y69{bottom:15.040000pt;}
.y6c{bottom:15.080000pt;}
.y7a{bottom:15.200000pt;}
.y52{bottom:20.000000pt;}
.y3{bottom:21.626667pt;}
.y5{bottom:22.426667pt;}
.y5d{bottom:27.520000pt;}
.y57{bottom:27.680000pt;}
.y49{bottom:29.120000pt;}
.y4b{bottom:29.280000pt;}
.y51{bottom:35.200000pt;}
.y68{bottom:36.480000pt;}
.y2{bottom:40.506667pt;}
.y4{bottom:40.826667pt;}
.y5c{bottom:42.720000pt;}
.y56{bottom:42.920000pt;}
.y50{bottom:50.560000pt;}
.y9{bottom:66.880000pt;}
.y8{bottom:85.600000pt;}
.y99{bottom:112.000000pt;}
.y75{bottom:121.760000pt;}
.y46{bottom:125.600000pt;}
.y31{bottom:125.760000pt;}
.y64{bottom:133.440000pt;}
.y45{bottom:147.040000pt;}
.y30{bottom:147.200000pt;}
.y74{bottom:153.920000pt;}
.y63{bottom:154.880000pt;}
.y44{bottom:168.506667pt;}
.y2f{bottom:168.666667pt;}
.y62{bottom:176.506667pt;}
.y73{bottom:186.426667pt;}
.y2e{bottom:190.106667pt;}
.y98{bottom:197.946667pt;}
.y72{bottom:207.866667pt;}
.y2d{bottom:211.546667pt;}
.y61{bottom:213.626667pt;}
.y97{bottom:219.386667pt;}
.y71{bottom:229.306667pt;}
.y60{bottom:231.546667pt;}
.y2c{bottom:232.986667pt;}
.y96{bottom:240.826667pt;}
.y70{bottom:250.906667pt;}
.y43{bottom:254.426667pt;}
.y2b{bottom:254.586667pt;}
.y5b{bottom:258.266667pt;}
.y95{bottom:262.266667pt;}
.y42{bottom:275.866667pt;}
.y2a{bottom:276.026667pt;}
.y6f{bottom:282.906667pt;}
.y94{bottom:283.706667pt;}
.y5f{bottom:284.826667pt;}
.y41{bottom:297.306667pt;}
.y29{bottom:297.466667pt;}
.y6e{bottom:300.666667pt;}
.y93{bottom:305.306667pt;}
.y5e{bottom:311.546667pt;}
.y28{bottom:318.906667pt;}
.y92{bottom:326.746667pt;}
.y6d{bottom:333.466667pt;}
.y55{bottom:338.106667pt;}
.y27{bottom:340.346667pt;}
.y91{bottom:348.186667pt;}
.y26{bottom:361.786667pt;}
.y59{bottom:364.826667pt;}
.y6b{bottom:366.266667pt;}
.y90{bottom:369.626667pt;}
.ya9{bottom:377.026667pt;}
.y25{bottom:382.946667pt;}
.y40{bottom:383.266667pt;}
.y8f{bottom:391.106667pt;}
.y58{bottom:391.586667pt;}
.ya8{bottom:398.946667pt;}
.y6a{bottom:399.106667pt;}
.y3f{bottom:404.706667pt;}
.y24{bottom:404.866667pt;}
.y8e{bottom:412.546667pt;}
.y4f{bottom:418.146667pt;}
.ya7{bottom:420.866667pt;}
.y3e{bottom:426.146667pt;}
.y23{bottom:426.306667pt;}
.y67{bottom:431.906667pt;}
.y8d{bottom:433.986667pt;}
.ya6{bottom:442.786667pt;}
.y54{bottom:444.866667pt;}
.y3d{bottom:447.586667pt;}
.y22{bottom:447.746667pt;}
.y8c{bottom:455.586667pt;}
.ya5{bottom:464.546667pt;}
.y21{bottom:469.186667pt;}
.y53{bottom:471.586667pt;}
.y8b{bottom:477.026667pt;}
.ya4{bottom:486.466667pt;}
.y66{bottom:490.306667pt;}
.y20{bottom:490.626667pt;}
.y4e{bottom:498.146667pt;}
.y8a{bottom:498.466667pt;}
.ya3{bottom:508.386667pt;}
.y65{bottom:511.746667pt;}
.y1f{bottom:512.066667pt;}
.y89{bottom:519.906667pt;}
.y4c{bottom:524.866667pt;}
.ya2{bottom:530.306667pt;}
.y3c{bottom:533.506667pt;}
.y1e{bottom:533.666667pt;}
.y88{bottom:541.346667pt;}
.y48{bottom:551.586667pt;}
.ya1{bottom:552.066667pt;}
.y3b{bottom:554.946667pt;}
.y1d{bottom:555.106667pt;}
.y87{bottom:562.786667pt;}
.ya0{bottom:573.986667pt;}
.y3a{bottom:576.386667pt;}
.y1c{bottom:576.546667pt;}
.y86{bottom:584.386667pt;}
.y9f{bottom:595.933333pt;}
.y1b{bottom:598.013333pt;}
.y85{bottom:605.853333pt;}
.y47{bottom:608.733333pt;}
.y9e{bottom:617.853333pt;}
.y39{bottom:619.133333pt;}
.y1a{bottom:619.453333pt;}
.y84{bottom:627.293333pt;}
.y9d{bottom:639.613333pt;}
.y19{bottom:640.893333pt;}
.y83{bottom:648.733333pt;}
.y9c{bottom:661.533333pt;}
.y18{bottom:662.333333pt;}
.y82{bottom:670.173333pt;}
.y38{bottom:683.773333pt;}
.y81{bottom:691.613333pt;}
.y17{bottom:694.173333pt;}
.y37{bottom:705.213333pt;}
.y80{bottom:713.053333pt;}
.y16{bottom:715.613333pt;}
.y36{bottom:726.813333pt;}
.y7f{bottom:734.653333pt;}
.y15{bottom:747.933333pt;}
.y35{bottom:748.253333pt;}
.y7e{bottom:756.093333pt;}
.y14{bottom:769.693333pt;}
.y7d{bottom:788.253333pt;}
.y13{bottom:791.133333pt;}
.y7c{bottom:805.893333pt;}
.y12{bottom:812.613333pt;}
.y11{bottom:834.053333pt;}
.y7b{bottom:838.693333pt;}
.y9b{bottom:855.173333pt;}
.y10{bottom:855.493333pt;}
.y79{bottom:871.493333pt;}
.y9a{bottom:876.773333pt;}
.yf{bottom:877.093333pt;}
.ye{bottom:898.533333pt;}
.y77{bottom:904.293333pt;}
.yd{bottom:919.973333pt;}
.yc{bottom:941.093333pt;}
.y34{bottom:941.413333pt;}
.y76{bottom:951.973333pt;}
.yb{bottom:962.533333pt;}
.y33{bottom:962.853333pt;}
.ya{bottom:983.973333pt;}
.y32{bottom:984.293333pt;}
.y7{bottom:1005.093333pt;}
.y1{bottom:1019.653333pt;}
.h14{height:25.920000pt;}
.h11{height:26.080000pt;}
.h16{height:26.112000pt;}
.h19{height:32.000000pt;}
.h1a{height:32.032000pt;}
.h1b{height:32.160000pt;}
.he{height:41.312000pt;}
.h4{height:45.156250pt;}
.h12{height:52.108438pt;}
.hf{height:52.134375pt;}
.h10{height:52.478750pt;}
.hb{height:52.503750pt;}
.h18{height:53.440000pt;}
.h7{height:53.937500pt;}
.h3{height:54.187500pt;}
.h2{height:55.712000pt;}
.hc{height:58.563750pt;}
.h6{height:62.812500pt;}
.h1d{height:63.399375pt;}
.h5{height:64.500000pt;}
.h9{height:73.454062pt;}
.ha{height:73.490625pt;}
.hd{height:73.989375pt;}
.h8{height:75.465000pt;}
.h1c{height:76.964840pt;}
.h17{height:79.200000pt;}
.h13{height:79.360000pt;}
.h15{height:79.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:92.800000pt;}
.we{width:101.920000pt;}
.w6{width:102.112000pt;}
.w8{width:102.560000pt;}
.wd{width:102.592000pt;}
.wb{width:112.320000pt;}
.w11{width:118.752000pt;}
.w9{width:123.072000pt;}
.wc{width:131.072000pt;}
.w7{width:140.986667pt;}
.wf{width:183.386667pt;}
.w2{width:198.306667pt;}
.w10{width:244.186667pt;}
.w3{width:443.746667pt;}
.wa{width:564.413333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.232000pt;}
.x19{left:8.480000pt;}
.x31{left:10.400000pt;}
.x2a{left:14.120000pt;}
.x2b{left:17.960000pt;}
.x5{left:20.960000pt;}
.x28{left:21.914667pt;}
.x1b{left:25.120000pt;}
.x23{left:28.160000pt;}
.x30{left:29.320000pt;}
.x27{left:30.714667pt;}
.x4{left:34.560000pt;}
.x21{left:38.280000pt;}
.x20{left:43.840000pt;}
.x2f{left:45.320000pt;}
.x1f{left:46.440000pt;}
.x22{left:51.560000pt;}
.x37{left:56.474667pt;}
.x35{left:59.200000pt;}
.x39{left:65.434667pt;}
.x1{left:75.520000pt;}
.x38{left:85.440000pt;}
.x7{left:103.391988pt;}
.x17{left:114.752000pt;}
.x26{left:120.831988pt;}
.x13{left:122.751988pt;}
.x24{left:163.226655pt;}
.x16{left:173.946655pt;}
.xa{left:198.266655pt;}
.x18{left:208.346667pt;}
.x33{left:212.666655pt;}
.x29{left:233.626667pt;}
.x11{left:236.826655pt;}
.x1e{left:258.594667pt;}
.x3b{left:264.546655pt;}
.x3{left:273.826667pt;}
.xd{left:297.506655pt;}
.x6{left:299.066667pt;}
.xb{left:301.986655pt;}
.x34{left:305.346667pt;}
.x1a{left:311.266667pt;}
.x8{left:314.946655pt;}
.xc{left:318.146655pt;}
.xf{left:325.506655pt;}
.xe{left:326.626655pt;}
.x12{left:348.546655pt;}
.x14{left:349.666655pt;}
.x10{left:354.786655pt;}
.x3a{left:357.986655pt;}
.x2c{left:365.346667pt;}
.x9{left:396.866655pt;}
.x3c{left:420.413322pt;}
.x1c{left:452.893333pt;}
.x2d{left:468.573333pt;}
.x36{left:550.173333pt;}
.x1d{left:556.093333pt;}
.x2e{left:571.293333pt;}
.x32{left:648.133322pt;}
.x25{left:652.933322pt;}
.x15{left:718.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; }
  