
    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_7a54e0028f5698b53234233e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ba1463c7818d21823945a4b8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cf60a2d78ceaf7b86ea7dd3e.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_e24cadee273b4424d7decb06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_a17c73b09a442667f5e3892b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_ab1577ea24c45dc8fb31207b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a3b9f5bdb1908d22fbfef0a2.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-82.080000px;}
.v1{vertical-align:-73.560000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.584000px;}
.ls2{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.466800px;}
.lsa{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:1.152000px;}
.ls3{letter-spacing:1.440000px;}
.ls10{letter-spacing:2.160000px;}
.ls16{letter-spacing:5.040000px;}
.lsd{letter-spacing:17.424000px;}
.ls5{letter-spacing:29.088000px;}
.ls17{letter-spacing:162.000000px;}
.ls13{letter-spacing:195.132000px;}
.ls8{letter-spacing:195.276000px;}
.lsc{letter-spacing:991.896000px;}
.ls11{letter-spacing:1043.700000px;}
.ls7{letter-spacing:1375.056000px;}
.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;}
}
.ws2{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.352000px;}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.120000px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-7.499520px;}
._4{margin-left:-6.120000px;}
._2{margin-left:-4.128000px;}
._1{margin-left:-2.160000px;}
._3{margin-left:-1.122240px;}
._0{width:1.188000px;}
._6{width:2.760000px;}
._e{width:3.840000px;}
._f{width:4.944000px;}
._10{width:6.312480px;}
._1d{width:7.348800px;}
._11{width:8.352000px;}
._c{width:10.188000px;}
._b{width:11.316000px;}
._14{width:12.684000px;}
._15{width:13.860000px;}
._7{width:14.904000px;}
._8{width:16.014240px;}
._2e{width:18.591840px;}
._13{width:19.872000px;}
._d{width:21.852000px;}
._12{width:22.878240px;}
._1a{width:24.612000px;}
._31{width:25.638240px;}
._1e{width:27.000000px;}
._19{width:28.584000px;}
._18{width:30.276000px;}
._32{width:31.932000px;}
._16{width:35.250240px;}
._17{width:37.008000px;}
._1b{width:38.628000px;}
._1c{width:40.488000px;}
._28{width:42.703200px;}
._29{width:44.218080px;}
._9{width:46.422240px;}
._a{width:48.149280px;}
._21{width:54.552480px;}
._22{width:56.300160px;}
._2a{width:57.443040px;}
._2b{width:58.728960px;}
._24{width:61.246080px;}
._23{width:63.145440px;}
._2d{width:69.857280px;}
._2c{width:71.380800px;}
._27{width:87.724800px;}
._30{width:95.518080px;}
._2f{width:106.868160px;}
._20{width:118.296000px;}
._1f{width:119.586240px;}
._34{width:160.452000px;}
._33{width:161.622240px;}
._25{width:234.372000px;}
._26{width:275.834400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y65{bottom:3.960000px;}
.y9{bottom:5.040000px;}
.y3{bottom:6.480000px;}
.y6b{bottom:19.080000px;}
.y71{bottom:19.440000px;}
.y2{bottom:28.800000px;}
.y6a{bottom:37.800000px;}
.y70{bottom:38.160000px;}
.y1{bottom:39.996000px;}
.y69{bottom:56.880000px;}
.y6f{bottom:57.240000px;}
.y7{bottom:57.996000px;}
.y8{bottom:60.876000px;}
.y68{bottom:75.600000px;}
.y6e{bottom:75.960000px;}
.y79{bottom:77.070000px;}
.y36{bottom:88.236000px;}
.yaa{bottom:90.756000px;}
.y5d{bottom:92.556000px;}
.y35{bottom:94.356000px;}
.y67{bottom:94.680000px;}
.y6d{bottom:95.070000px;}
.y78{bottom:95.790000px;}
.y93{bottom:100.116000px;}
.y49{bottom:102.276000px;}
.y34{bottom:106.596000px;}
.y77{bottom:114.870000px;}
.y5c{bottom:123.516000px;}
.yc5{bottom:130.032000px;}
.y92{bottom:131.112000px;}
.y48{bottom:133.272000px;}
.y76{bottom:133.635000px;}
.y75{bottom:133.995000px;}
.ya9{bottom:136.512000px;}
.yc7{bottom:143.712000px;}
.y74{bottom:152.715000px;}
.y5b{bottom:154.515000px;}
.yc4{bottom:160.995000px;}
.y91{bottom:162.435000px;}
.y33{bottom:164.235000px;}
.ya8{bottom:167.835000px;}
.y6c{bottom:169.995000px;}
.y73{bottom:171.795000px;}
.yd0{bottom:174.675000px;}
.y9b{bottom:184.755000px;}
.y32{bottom:185.115000px;}
.y5a{bottom:185.835000px;}
.yc3{bottom:191.955000px;}
.y90{bottom:193.395000px;}
.y47{bottom:195.195000px;}
.ya7{bottom:198.795000px;}
.y31{bottom:205.635000px;}
.y9a{bottom:216.075000px;}
.y59{bottom:216.795000px;}
.yc2{bottom:223.275000px;}
.y8f{bottom:224.355000px;}
.y30{bottom:226.515000px;}
.ya6{bottom:229.755000px;}
.ycf{bottom:236.595000px;}
.y2f{bottom:247.035000px;}
.y58{bottom:247.755000px;}
.yc1{bottom:254.265000px;}
.y8e{bottom:255.345000px;}
.y46{bottom:257.505000px;}
.ya5{bottom:260.745000px;}
.y2e{bottom:267.945000px;}
.y99{bottom:278.025000px;}
.y57{bottom:278.745000px;}
.y66{bottom:280.905000px;}
.yc0{bottom:285.225000px;}
.y8d{bottom:286.665000px;}
.y2d{bottom:288.465000px;}
.ya4{bottom:292.065000px;}
.yce{bottom:298.905000px;}
.y2c{bottom:309.345000px;}
.y56{bottom:310.065000px;}
.ybf{bottom:316.185000px;}
.y8c{bottom:317.625000px;}
.y45{bottom:319.425000px;}
.ya3{bottom:323.025000px;}
.y2b{bottom:329.865000px;}
.y98{bottom:340.305000px;}
.y55{bottom:341.025000px;}
.ybe{bottom:347.505000px;}
.y8b{bottom:348.585000px;}
.y2a{bottom:350.745000px;}
.ya2{bottom:353.985000px;}
.ycd{bottom:360.825000px;}
.ybd{bottom:367.665000px;}
.y29{bottom:371.265000px;}
.y54{bottom:371.985000px;}
.y8a{bottom:379.590000px;}
.y44{bottom:381.750000px;}
.ya1{bottom:384.990000px;}
.y64{bottom:391.470000px;}
.y28{bottom:392.190000px;}
.ybc{bottom:399.030000px;}
.y97{bottom:402.270000px;}
.y53{bottom:402.990000px;}
.y89{bottom:410.910000px;}
.y27{bottom:412.710000px;}
.ya0{bottom:416.310000px;}
.ybb{bottom:419.910000px;}
.yc6{bottom:422.790000px;}
.ycc{bottom:423.150000px;}
.y88{bottom:431.070000px;}
.y63{bottom:433.590000px;}
.yba{bottom:440.430000px;}
.y26{bottom:443.670000px;}
.y9f{bottom:454.110000px;}
.y52{bottom:454.830000px;}
.yb9{bottom:461.310000px;}
.y87{bottom:462.390000px;}
.y25{bottom:464.190000px;}
.y62{bottom:464.550000px;}
.y43{bottom:474.990000px;}
.y51{bottom:481.470000px;}
.yb8{bottom:481.830000px;}
.y9e{bottom:485.070000px;}
.y86{bottom:493.710000px;}
.y24{bottom:495.510000px;}
.yb7{bottom:502.740000px;}
.y42{bottom:505.980000px;}
.y23{bottom:516.060000px;}
.yb6{bottom:523.260000px;}
.y85{bottom:524.700000px;}
.y61{bottom:526.500000px;}
.y22{bottom:536.940000px;}
.y9d{bottom:547.380000px;}
.y84{bottom:555.660000px;}
.y21{bottom:557.460000px;}
.y41{bottom:567.900000px;}
.yb5{bottom:569.340000px;}
.y20{bottom:578.340000px;}
.y83{bottom:586.620000px;}
.y60{bottom:588.780000px;}
.y1f{bottom:598.860000px;}
.y9c{bottom:609.300000px;}
.yb4{bottom:615.420000px;}
.y82{bottom:617.940000px;}
.y5f{bottom:619.380000px;}
.y1e{bottom:619.740000px;}
.y40{bottom:630.210000px;}
.y5e{bottom:639.930000px;}
.y1d{bottom:640.290000px;}
.y81{bottom:648.930000px;}
.y96{bottom:650.730000px;}
.y1c{bottom:661.170000px;}
.yb3{bottom:661.530000px;}
.y50{bottom:671.610000px;}
.y80{bottom:679.890000px;}
.y1b{bottom:681.690000px;}
.y3f{bottom:692.130000px;}
.y1a{bottom:702.570000px;}
.yb2{bottom:707.610000px;}
.y7f{bottom:710.850000px;}
.y95{bottom:713.010000px;}
.y19{bottom:723.090000px;}
.y4f{bottom:733.530000px;}
.y7e{bottom:741.810000px;}
.y18{bottom:743.970000px;}
.yb1{bottom:753.735000px;}
.y3e{bottom:754.455000px;}
.y94{bottom:764.175000px;}
.y17{bottom:764.535000px;}
.y7d{bottom:773.175000px;}
.ycb{bottom:774.975000px;}
.y16{bottom:785.415000px;}
.y4e{bottom:795.855000px;}
.yb0{bottom:799.815000px;}
.y7c{bottom:803.775000px;}
.y15{bottom:805.935000px;}
.y3d{bottom:816.375000px;}
.y7b{bottom:824.295000px;}
.y14{bottom:826.815000px;}
.yca{bottom:837.255000px;}
.yaf{bottom:845.895000px;}
.y13{bottom:847.335000px;}
.y7a{bottom:855.615000px;}
.y4d{bottom:857.775000px;}
.y72{bottom:872.895000px;}
.yae{bottom:876.855000px;}
.y12{bottom:878.685000px;}
.y4c{bottom:888.765000px;}
.yad{bottom:896.325000px;}
.y11{bottom:898.845000px;}
.yc9{bottom:899.205000px;}
.y3c{bottom:909.285000px;}
.y4b{bottom:920.085000px;}
.yac{bottom:922.245000px;}
.y3b{bottom:929.805000px;}
.y10{bottom:930.165000px;}
.yab{bottom:940.605000px;}
.ye{bottom:951.045000px;}
.yf{bottom:957.885000px;}
.y3a{bottom:961.485000px;}
.yd{bottom:981.645000px;}
.y39{bottom:982.005000px;}
.yc{bottom:1002.525000px;}
.yc8{bottom:1002.885000px;}
.y4a{bottom:1013.010000px;}
.yb{bottom:1023.090000px;}
.y38{bottom:1023.450000px;}
.ya{bottom:1043.970000px;}
.y37{bottom:1044.330000px;}
.y6{bottom:1077.450000px;}
.y5{bottom:1097.250000px;}
.y4{bottom:1117.770000px;}
.he{height:19.440000px;}
.h5{height:20.160000px;}
.hb{height:39.183750px;}
.h1{height:45.000000px;}
.ha{height:46.638281px;}
.hc{height:59.357813px;}
.h12{height:60.952500px;}
.h7{height:63.949219px;}
.h9{height:64.546875px;}
.h4{height:65.010937px;}
.h6{height:66.757500px;}
.h3{height:70.628906px;}
.h2{height:70.664062px;}
.h8{height:72.562500px;}
.hd{height:74.953125px;}
.hf{height:109.836000px;}
.h10{height:110.196000px;}
.h11{height:186.915000px;}
.h0{height:1188.000000px;}
.w5{width:154.155000px;}
.w1{width:262.545000px;}
.w6{width:286.305000px;}
.w3{width:394.710000px;}
.w4{width:917.999973px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:6.840000px;}
.x1c{left:7.920000px;}
.x8{left:10.800000px;}
.x1d{left:12.240000px;}
.x19{left:19.440000px;}
.x22{left:20.556000px;}
.x1b{left:22.719000px;}
.x21{left:29.559000px;}
.x1e{left:32.079000px;}
.x20{left:37.839000px;}
.x1a{left:42.159000px;}
.x1f{left:51.519000px;}
.x15{left:56.199000px;}
.x17{left:83.925000px;}
.x7{left:115.236000px;}
.x6{left:127.475986px;}
.xa{left:128.915986px;}
.x9{left:130.355986px;}
.x12{left:132.515986px;}
.x3{left:148.005000px;}
.x13{left:180.794986px;}
.x25{left:202.034986px;}
.x16{left:283.065000px;}
.x11{left:343.589986px;}
.xb{left:379.229986px;}
.x26{left:415.589986px;}
.x10{left:431.069986px;}
.xf{left:440.819986px;}
.x24{left:473.219986px;}
.xc{left:480.059986px;}
.x23{left:507.059986px;}
.x18{left:570.090000px;}
.x1{left:572.250000px;}
.xd{left:677.774986px;}
.x14{left:777.884986px;}
.x5{left:808.124986px;}
.xe{left:826.889973px;}
.x4{left:833.009986px;}
@media print{
.v2{vertical-align:-72.960000pt;}
.v1{vertical-align:-65.386667pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.408000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.414933pt;}
.lsa{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.024000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.920000pt;}
.ls16{letter-spacing:4.480000pt;}
.lsd{letter-spacing:15.488000pt;}
.ls5{letter-spacing:25.856000pt;}
.ls17{letter-spacing:144.000000pt;}
.ls13{letter-spacing:173.450667pt;}
.ls8{letter-spacing:173.578667pt;}
.lsc{letter-spacing:881.685333pt;}
.ls11{letter-spacing:927.733333pt;}
.ls7{letter-spacing:1222.272000pt;}
.ws2{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.424000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-6.666240pt;}
._4{margin-left:-5.440000pt;}
._2{margin-left:-3.669333pt;}
._1{margin-left:-1.920000pt;}
._3{margin-left:-0.997547pt;}
._0{width:1.056000pt;}
._6{width:2.453333pt;}
._e{width:3.413333pt;}
._f{width:4.394667pt;}
._10{width:5.611093pt;}
._1d{width:6.532267pt;}
._11{width:7.424000pt;}
._c{width:9.056000pt;}
._b{width:10.058667pt;}
._14{width:11.274667pt;}
._15{width:12.320000pt;}
._7{width:13.248000pt;}
._8{width:14.234880pt;}
._2e{width:16.526080pt;}
._13{width:17.664000pt;}
._d{width:19.424000pt;}
._12{width:20.336213pt;}
._1a{width:21.877333pt;}
._31{width:22.789547pt;}
._1e{width:24.000000pt;}
._19{width:25.408000pt;}
._18{width:26.912000pt;}
._32{width:28.384000pt;}
._16{width:31.333547pt;}
._17{width:32.896000pt;}
._1b{width:34.336000pt;}
._1c{width:35.989333pt;}
._28{width:37.958400pt;}
._29{width:39.304960pt;}
._9{width:41.264213pt;}
._a{width:42.799360pt;}
._21{width:48.491093pt;}
._22{width:50.044587pt;}
._2a{width:51.060480pt;}
._2b{width:52.203520pt;}
._24{width:54.440960pt;}
._23{width:56.129280pt;}
._2d{width:62.095360pt;}
._2c{width:63.449600pt;}
._27{width:77.977600pt;}
._30{width:84.904960pt;}
._2f{width:94.993920pt;}
._20{width:105.152000pt;}
._1f{width:106.298880pt;}
._34{width:142.624000pt;}
._33{width:143.664213pt;}
._25{width:208.330667pt;}
._26{width:245.186133pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:3.520000pt;}
.y9{bottom:4.480000pt;}
.y3{bottom:5.760000pt;}
.y6b{bottom:16.960000pt;}
.y71{bottom:17.280000pt;}
.y2{bottom:25.600000pt;}
.y6a{bottom:33.600000pt;}
.y70{bottom:33.920000pt;}
.y1{bottom:35.552000pt;}
.y69{bottom:50.560000pt;}
.y6f{bottom:50.880000pt;}
.y7{bottom:51.552000pt;}
.y8{bottom:54.112000pt;}
.y68{bottom:67.200000pt;}
.y6e{bottom:67.520000pt;}
.y79{bottom:68.506667pt;}
.y36{bottom:78.432000pt;}
.yaa{bottom:80.672000pt;}
.y5d{bottom:82.272000pt;}
.y35{bottom:83.872000pt;}
.y67{bottom:84.160000pt;}
.y6d{bottom:84.506667pt;}
.y78{bottom:85.146667pt;}
.y93{bottom:88.992000pt;}
.y49{bottom:90.912000pt;}
.y34{bottom:94.752000pt;}
.y77{bottom:102.106667pt;}
.y5c{bottom:109.792000pt;}
.yc5{bottom:115.584000pt;}
.y92{bottom:116.544000pt;}
.y48{bottom:118.464000pt;}
.y76{bottom:118.786667pt;}
.y75{bottom:119.106667pt;}
.ya9{bottom:121.344000pt;}
.yc7{bottom:127.744000pt;}
.y74{bottom:135.746667pt;}
.y5b{bottom:137.346667pt;}
.yc4{bottom:143.106667pt;}
.y91{bottom:144.386667pt;}
.y33{bottom:145.986667pt;}
.ya8{bottom:149.186667pt;}
.y6c{bottom:151.106667pt;}
.y73{bottom:152.706667pt;}
.yd0{bottom:155.266667pt;}
.y9b{bottom:164.226667pt;}
.y32{bottom:164.546667pt;}
.y5a{bottom:165.186667pt;}
.yc3{bottom:170.626667pt;}
.y90{bottom:171.906667pt;}
.y47{bottom:173.506667pt;}
.ya7{bottom:176.706667pt;}
.y31{bottom:182.786667pt;}
.y9a{bottom:192.066667pt;}
.y59{bottom:192.706667pt;}
.yc2{bottom:198.466667pt;}
.y8f{bottom:199.426667pt;}
.y30{bottom:201.346667pt;}
.ya6{bottom:204.226667pt;}
.ycf{bottom:210.306667pt;}
.y2f{bottom:219.586667pt;}
.y58{bottom:220.226667pt;}
.yc1{bottom:226.013333pt;}
.y8e{bottom:226.973333pt;}
.y46{bottom:228.893333pt;}
.ya5{bottom:231.773333pt;}
.y2e{bottom:238.173333pt;}
.y99{bottom:247.133333pt;}
.y57{bottom:247.773333pt;}
.y66{bottom:249.693333pt;}
.yc0{bottom:253.533333pt;}
.y8d{bottom:254.813333pt;}
.y2d{bottom:256.413333pt;}
.ya4{bottom:259.613333pt;}
.yce{bottom:265.693333pt;}
.y2c{bottom:274.973333pt;}
.y56{bottom:275.613333pt;}
.ybf{bottom:281.053333pt;}
.y8c{bottom:282.333333pt;}
.y45{bottom:283.933333pt;}
.ya3{bottom:287.133333pt;}
.y2b{bottom:293.213333pt;}
.y98{bottom:302.493333pt;}
.y55{bottom:303.133333pt;}
.ybe{bottom:308.893333pt;}
.y8b{bottom:309.853333pt;}
.y2a{bottom:311.773333pt;}
.ya2{bottom:314.653333pt;}
.ycd{bottom:320.733333pt;}
.ybd{bottom:326.813333pt;}
.y29{bottom:330.013333pt;}
.y54{bottom:330.653333pt;}
.y8a{bottom:337.413333pt;}
.y44{bottom:339.333333pt;}
.ya1{bottom:342.213333pt;}
.y64{bottom:347.973333pt;}
.y28{bottom:348.613333pt;}
.ybc{bottom:354.693333pt;}
.y97{bottom:357.573333pt;}
.y53{bottom:358.213333pt;}
.y89{bottom:365.253333pt;}
.y27{bottom:366.853333pt;}
.ya0{bottom:370.053333pt;}
.ybb{bottom:373.253333pt;}
.yc6{bottom:375.813333pt;}
.ycc{bottom:376.133333pt;}
.y88{bottom:383.173333pt;}
.y63{bottom:385.413333pt;}
.yba{bottom:391.493333pt;}
.y26{bottom:394.373333pt;}
.y9f{bottom:403.653333pt;}
.y52{bottom:404.293333pt;}
.yb9{bottom:410.053333pt;}
.y87{bottom:411.013333pt;}
.y25{bottom:412.613333pt;}
.y62{bottom:412.933333pt;}
.y43{bottom:422.213333pt;}
.y51{bottom:427.973333pt;}
.yb8{bottom:428.293333pt;}
.y9e{bottom:431.173333pt;}
.y86{bottom:438.853333pt;}
.y24{bottom:440.453333pt;}
.yb7{bottom:446.880000pt;}
.y42{bottom:449.760000pt;}
.y23{bottom:458.720000pt;}
.yb6{bottom:465.120000pt;}
.y85{bottom:466.400000pt;}
.y61{bottom:468.000000pt;}
.y22{bottom:477.280000pt;}
.y9d{bottom:486.560000pt;}
.y84{bottom:493.920000pt;}
.y21{bottom:495.520000pt;}
.y41{bottom:504.800000pt;}
.yb5{bottom:506.080000pt;}
.y20{bottom:514.080000pt;}
.y83{bottom:521.440000pt;}
.y60{bottom:523.360000pt;}
.y1f{bottom:532.320000pt;}
.y9c{bottom:541.600000pt;}
.yb4{bottom:547.040000pt;}
.y82{bottom:549.280000pt;}
.y5f{bottom:550.560000pt;}
.y1e{bottom:550.880000pt;}
.y40{bottom:560.186667pt;}
.y5e{bottom:568.826667pt;}
.y1d{bottom:569.146667pt;}
.y81{bottom:576.826667pt;}
.y96{bottom:578.426667pt;}
.y1c{bottom:587.706667pt;}
.yb3{bottom:588.026667pt;}
.y50{bottom:596.986667pt;}
.y80{bottom:604.346667pt;}
.y1b{bottom:605.946667pt;}
.y3f{bottom:615.226667pt;}
.y1a{bottom:624.506667pt;}
.yb2{bottom:628.986667pt;}
.y7f{bottom:631.866667pt;}
.y95{bottom:633.786667pt;}
.y19{bottom:642.746667pt;}
.y4f{bottom:652.026667pt;}
.y7e{bottom:659.386667pt;}
.y18{bottom:661.306667pt;}
.yb1{bottom:669.986667pt;}
.y3e{bottom:670.626667pt;}
.y94{bottom:679.266667pt;}
.y17{bottom:679.586667pt;}
.y7d{bottom:687.266667pt;}
.ycb{bottom:688.866667pt;}
.y16{bottom:698.146667pt;}
.y4e{bottom:707.426667pt;}
.yb0{bottom:710.946667pt;}
.y7c{bottom:714.466667pt;}
.y15{bottom:716.386667pt;}
.y3d{bottom:725.666667pt;}
.y7b{bottom:732.706667pt;}
.y14{bottom:734.946667pt;}
.yca{bottom:744.226667pt;}
.yaf{bottom:751.906667pt;}
.y13{bottom:753.186667pt;}
.y7a{bottom:760.546667pt;}
.y4d{bottom:762.466667pt;}
.y72{bottom:775.906667pt;}
.yae{bottom:779.426667pt;}
.y12{bottom:781.053333pt;}
.y4c{bottom:790.013333pt;}
.yad{bottom:796.733333pt;}
.y11{bottom:798.973333pt;}
.yc9{bottom:799.293333pt;}
.y3c{bottom:808.253333pt;}
.y4b{bottom:817.853333pt;}
.yac{bottom:819.773333pt;}
.y3b{bottom:826.493333pt;}
.y10{bottom:826.813333pt;}
.yab{bottom:836.093333pt;}
.ye{bottom:845.373333pt;}
.yf{bottom:851.453333pt;}
.y3a{bottom:854.653333pt;}
.yd{bottom:872.573333pt;}
.y39{bottom:872.893333pt;}
.yc{bottom:891.133333pt;}
.yc8{bottom:891.453333pt;}
.y4a{bottom:900.453333pt;}
.yb{bottom:909.413333pt;}
.y38{bottom:909.733333pt;}
.ya{bottom:927.973333pt;}
.y37{bottom:928.293333pt;}
.y6{bottom:957.733333pt;}
.y5{bottom:975.333333pt;}
.y4{bottom:993.573333pt;}
.he{height:17.280000pt;}
.h5{height:17.920000pt;}
.hb{height:34.830000pt;}
.h1{height:40.000000pt;}
.ha{height:41.456250pt;}
.hc{height:52.762500pt;}
.h12{height:54.180000pt;}
.h7{height:56.843750pt;}
.h9{height:57.375000pt;}
.h4{height:57.787500pt;}
.h6{height:59.340000pt;}
.h3{height:62.781250pt;}
.h2{height:62.812500pt;}
.h8{height:64.500000pt;}
.hd{height:66.625000pt;}
.hf{height:97.632000pt;}
.h10{height:97.952000pt;}
.h11{height:166.146667pt;}
.h0{height:1056.000000pt;}
.w5{width:137.026667pt;}
.w1{width:233.373333pt;}
.w6{width:254.493333pt;}
.w3{width:350.853333pt;}
.w4{width:815.999976pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:6.080000pt;}
.x1c{left:7.040000pt;}
.x8{left:9.600000pt;}
.x1d{left:10.880000pt;}
.x19{left:17.280000pt;}
.x22{left:18.272000pt;}
.x1b{left:20.194667pt;}
.x21{left:26.274667pt;}
.x1e{left:28.514667pt;}
.x20{left:33.634667pt;}
.x1a{left:37.474667pt;}
.x1f{left:45.794667pt;}
.x15{left:49.954667pt;}
.x17{left:74.600000pt;}
.x7{left:102.432000pt;}
.x6{left:113.311988pt;}
.xa{left:114.591988pt;}
.x9{left:115.871988pt;}
.x12{left:117.791988pt;}
.x3{left:131.560000pt;}
.x13{left:160.706655pt;}
.x25{left:179.586655pt;}
.x16{left:251.613333pt;}
.x11{left:305.413321pt;}
.xb{left:337.093321pt;}
.x26{left:369.413321pt;}
.x10{left:383.173321pt;}
.xf{left:391.839988pt;}
.x24{left:420.639988pt;}
.xc{left:426.719988pt;}
.x23{left:450.719988pt;}
.x18{left:506.746667pt;}
.x1{left:508.666667pt;}
.xd{left:602.466655pt;}
.x14{left:691.453321pt;}
.x5{left:718.333321pt;}
.xe{left:735.013309pt;}
.x4{left:740.453321pt;}
}




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