
    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_85a0229754dd02d572317b8d.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_75a76a672fc3456a07cdf570.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fab9c77f56751bfa6ae40c2c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5deeab7dfd67a1b71e8a2934.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b2df0fa970f1f38d651b2743.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_c7b585a465ff39699ff3d61c.woff')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-3.000000px;}
.lsc{letter-spacing:-2.994000px;}
.ls9{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.700000px;}
.ls10{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.600000px;}
.lse{letter-spacing:8.400000px;}
.ls12{letter-spacing:15.600000px;}
.ls13{letter-spacing:30.984000px;}
.ls11{letter-spacing:31.584000px;}
.lsf{letter-spacing:60.600000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.wsb{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
._45{margin-left:-4.632000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._6{width:2.076000px;}
._7{width:3.108000px;}
._1a{width:4.536000px;}
._20{width:6.120000px;}
._1b{width:7.704000px;}
._5{width:8.946000px;}
._4{width:10.146000px;}
._1d{width:11.316000px;}
._a{width:12.378000px;}
._8{width:13.896000px;}
._9{width:15.498000px;}
._32{width:16.704000px;}
._c{width:19.080000px;}
._b{width:20.088000px;}
._22{width:22.008000px;}
._19{width:23.328000px;}
._14{width:25.200000px;}
._15{width:26.508000px;}
._37{width:27.714000px;}
._28{width:29.016000px;}
._34{width:30.156000px;}
._35{width:31.578000px;}
._36{width:32.616000px;}
._26{width:34.344000px;}
._2b{width:35.712000px;}
._e{width:37.656000px;}
._f{width:38.880000px;}
._1f{width:40.104000px;}
._33{width:41.256000px;}
._16{width:42.624000px;}
._10{width:43.992000px;}
._11{width:45.000000px;}
._25{width:46.296000px;}
._38{width:48.168000px;}
._30{width:49.896000px;}
._31{width:51.192000px;}
._12{width:52.560000px;}
._48{width:54.072000px;}
._23{width:55.368000px;}
._24{width:56.592000px;}
._3e{width:57.630000px;}
._3d{width:58.968000px;}
._3f{width:61.014000px;}
._41{width:62.352000px;}
._2e{width:63.576000px;}
._2f{width:64.656000px;}
._1e{width:66.312000px;}
._d{width:67.656000px;}
._3c{width:69.048000px;}
._17{width:70.632000px;}
._18{width:72.072000px;}
._44{width:73.080000px;}
._21{width:81.360000px;}
._4a{width:82.584000px;}
._4b{width:84.096000px;}
._3a{width:86.424000px;}
._50{width:96.126000px;}
._40{width:98.496000px;}
._52{width:99.792000px;}
._53{width:100.800000px;}
._4c{width:112.536000px;}
._27{width:114.552000px;}
._55{width:117.600000px;}
._39{width:118.800000px;}
._4f{width:124.644000px;}
._3b{width:130.104000px;}
._51{width:132.480000px;}
._29{width:136.800000px;}
._2a{width:138.168000px;}
._13{width:141.984000px;}
._43{width:143.424000px;}
._4d{width:160.488000px;}
._4e{width:161.712000px;}
._42{width:164.160000px;}
._54{width:172.152000px;}
._1c{width:185.832000px;}
._49{width:207.216000px;}
._2d{width:212.760000px;}
._46{width:295.560000px;}
._47{width:296.568000px;}
._2c{width:354.456000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y70{bottom:3.892500px;}
.y1f{bottom:3.900000px;}
.y23{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y6a{bottom:14.250000px;}
.y71{bottom:14.257500px;}
.y6d{bottom:14.265000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y6f{bottom:24.592500px;}
.y1e{bottom:24.600000px;}
.y22{bottom:24.615000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y1d{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y1c{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y1b{bottom:86.700000px;}
.y1a{bottom:107.400000px;}
.y96{bottom:115.687500px;}
.y3d{bottom:121.987500px;}
.y72{bottom:126.637500px;}
.yc2{bottom:127.537500px;}
.y19{bottom:128.100000px;}
.y7f{bottom:137.287500px;}
.yae{bottom:137.587500px;}
.y95{bottom:139.387500px;}
.y3c{bottom:145.837500px;}
.y6e{bottom:147.037500px;}
.y18{bottom:148.800000px;}
.y67{bottom:150.495000px;}
.yc1{bottom:151.245000px;}
.y7e{bottom:160.995000px;}
.yad{bottom:161.295000px;}
.y94{bottom:163.245000px;}
.y17{bottom:169.500000px;}
.y3b{bottom:169.695000px;}
.y66{bottom:174.345000px;}
.yc0{bottom:175.095000px;}
.y7d{bottom:184.845000px;}
.yac{bottom:185.130000px;}
.y93{bottom:187.095000px;}
.y6c{bottom:189.180000px;}
.y3a{bottom:193.395000px;}
.y65{bottom:198.195000px;}
.ybf{bottom:198.945000px;}
.y7c{bottom:208.695000px;}
.yab{bottom:208.995000px;}
.y92{bottom:210.795000px;}
.y39{bottom:217.245000px;}
.y64{bottom:221.895000px;}
.ybe{bottom:222.630000px;}
.y6b{bottom:231.345000px;}
.y7b{bottom:232.380000px;}
.yaa{bottom:232.830000px;}
.y91{bottom:234.645000px;}
.y38{bottom:241.095000px;}
.y63{bottom:245.745000px;}
.ybd{bottom:246.495000px;}
.y7a{bottom:256.245000px;}
.ya9{bottom:256.545000px;}
.y90{bottom:258.495000px;}
.y37{bottom:264.795000px;}
.y62{bottom:269.595000px;}
.ybc{bottom:270.330000px;}
.y69{bottom:273.495000px;}
.y79{bottom:280.080000px;}
.ya8{bottom:280.380000px;}
.y8f{bottom:282.345000px;}
.y36{bottom:288.645000px;}
.ybb{bottom:290.295000px;}
.y61{bottom:293.295000px;}
.y78{bottom:303.795000px;}
.ya7{bottom:304.245000px;}
.y8e{bottom:306.045000px;}
.y35{bottom:312.495000px;}
.y68{bottom:315.630000px;}
.y60{bottom:317.130000px;}
.y77{bottom:327.630000px;}
.ya6{bottom:327.945000px;}
.y8d{bottom:329.895000px;}
.y34{bottom:336.195000px;}
.y5f{bottom:340.995000px;}
.y8c{bottom:349.845000px;}
.y76{bottom:351.495000px;}
.ya5{bottom:351.795000px;}
.y33{bottom:360.045000px;}
.y5e{bottom:364.695000px;}
.y75{bottom:375.195000px;}
.ya4{bottom:375.645000px;}
.y32{bottom:383.925000px;}
.y5d{bottom:388.575000px;}
.y74{bottom:399.075000px;}
.ya3{bottom:399.375000px;}
.yba{bottom:400.725000px;}
.y31{bottom:407.775000px;}
.y5c{bottom:412.425000px;}
.y73{bottom:419.025000px;}
.ya2{bottom:423.225000px;}
.yb9{bottom:424.575000px;}
.y30{bottom:431.475000px;}
.y5b{bottom:436.125000px;}
.ya1{bottom:447.075000px;}
.yb8{bottom:448.425000px;}
.y2f{bottom:455.325000px;}
.y5a{bottom:459.975000px;}
.ya0{bottom:470.775000px;}
.yb7{bottom:472.125000px;}
.y2e{bottom:479.175000px;}
.y59{bottom:483.825000px;}
.y9f{bottom:494.625000px;}
.yb6{bottom:495.975000px;}
.y2d{bottom:502.875000px;}
.y58{bottom:507.525000px;}
.y9e{bottom:514.575000px;}
.yb5{bottom:519.825000px;}
.y2c{bottom:526.725000px;}
.y57{bottom:531.375000px;}
.y8b{bottom:536.775000px;}
.yb4{bottom:543.525000px;}
.y2b{bottom:550.575000px;}
.y56{bottom:555.225000px;}
.y8a{bottom:560.625000px;}
.yb3{bottom:567.375000px;}
.y2a{bottom:574.275000px;}
.y55{bottom:579.075000px;}
.y89{bottom:584.475000px;}
.yb2{bottom:591.225000px;}
.y29{bottom:598.125000px;}
.y54{bottom:602.775000px;}
.y88{bottom:608.175000px;}
.yb1{bottom:614.925000px;}
.y28{bottom:621.975000px;}
.y53{bottom:626.625000px;}
.y87{bottom:632.025000px;}
.yb0{bottom:638.775000px;}
.y27{bottom:645.675000px;}
.y52{bottom:650.475000px;}
.y86{bottom:655.875000px;}
.yaf{bottom:658.725000px;}
.y26{bottom:669.525000px;}
.y51{bottom:674.175000px;}
.y85{bottom:679.575000px;}
.y25{bottom:693.375000px;}
.y50{bottom:698.025000px;}
.y84{bottom:703.425000px;}
.y4f{bottom:721.875000px;}
.y24{bottom:726.075000px;}
.y83{bottom:727.275000px;}
.y21{bottom:742.905000px;}
.y4e{bottom:745.620000px;}
.y82{bottom:751.020000px;}
.y4d{bottom:769.470000px;}
.y81{bottom:774.870000px;}
.y20{bottom:784.320000px;}
.y4c{bottom:793.320000px;}
.y80{bottom:794.820000px;}
.y9d{bottom:798.720000px;}
.y16{bottom:805.020000px;}
.y4b{bottom:817.020000px;}
.y9c{bottom:822.570000px;}
.y4a{bottom:840.870000px;}
.y9b{bottom:846.270000px;}
.y49{bottom:864.720000px;}
.y9a{bottom:870.120000px;}
.y48{bottom:888.420000px;}
.y99{bottom:893.970000px;}
.y47{bottom:912.270000px;}
.y98{bottom:917.670000px;}
.y46{bottom:936.120000px;}
.y97{bottom:937.620000px;}
.y45{bottom:959.970000px;}
.y44{bottom:983.670000px;}
.y15{bottom:994.920000px;}
.y43{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.700000px;}
.h11{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.hf{height:50.484375px;}
.ha{height:50.800781px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h12{height:74.004654px;}
.h2{height:82.441406px;}
.he{height:186.285000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wb{width:77.550000px;}
.wa{width:88.537500px;}
.w9{width:103.800000px;}
.wc{width:119.700000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1a{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x20{left:69.599987px;}
.x10{left:96.299987px;}
.x19{left:100.200000px;}
.x18{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x11{left:400.274987px;}
.x23{left:437.174987px;}
.x21{left:439.274987px;}
.x1b{left:457.274987px;}
.x13{left:464.924987px;}
.x24{left:484.124987px;}
.x15{left:489.224987px;}
.x12{left:509.174987px;}
.x1c{left:510.374987px;}
.x16{left:559.574987px;}
.x1d{left:562.575000px;}
.xc{left:625.425000px;}
.x1e{left:651.870000px;}
.x14{left:656.219987px;}
.xf{left:713.655000px;}
.x1f{left:730.155000px;}
.x2{left:819.119987px;}
.x22{left:848.819987px;}
.x17{left:850.619987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-2.666667pt;}
.lsc{letter-spacing:-2.661333pt;}
.ls9{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.400000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.533333pt;}
.lse{letter-spacing:7.466667pt;}
.ls12{letter-spacing:13.866667pt;}
.ls13{letter-spacing:27.541333pt;}
.ls11{letter-spacing:28.074667pt;}
.lsf{letter-spacing:53.866667pt;}
.wsd{word-spacing:-64.000000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
._45{margin-left:-4.117333pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._6{width:1.845333pt;}
._7{width:2.762667pt;}
._1a{width:4.032000pt;}
._20{width:5.440000pt;}
._1b{width:6.848000pt;}
._5{width:7.952000pt;}
._4{width:9.018667pt;}
._1d{width:10.058667pt;}
._a{width:11.002667pt;}
._8{width:12.352000pt;}
._9{width:13.776000pt;}
._32{width:14.848000pt;}
._c{width:16.960000pt;}
._b{width:17.856000pt;}
._22{width:19.562667pt;}
._19{width:20.736000pt;}
._14{width:22.400000pt;}
._15{width:23.562667pt;}
._37{width:24.634667pt;}
._28{width:25.792000pt;}
._34{width:26.805333pt;}
._35{width:28.069333pt;}
._36{width:28.992000pt;}
._26{width:30.528000pt;}
._2b{width:31.744000pt;}
._e{width:33.472000pt;}
._f{width:34.560000pt;}
._1f{width:35.648000pt;}
._33{width:36.672000pt;}
._16{width:37.888000pt;}
._10{width:39.104000pt;}
._11{width:40.000000pt;}
._25{width:41.152000pt;}
._38{width:42.816000pt;}
._30{width:44.352000pt;}
._31{width:45.504000pt;}
._12{width:46.720000pt;}
._48{width:48.064000pt;}
._23{width:49.216000pt;}
._24{width:50.304000pt;}
._3e{width:51.226667pt;}
._3d{width:52.416000pt;}
._3f{width:54.234667pt;}
._41{width:55.424000pt;}
._2e{width:56.512000pt;}
._2f{width:57.472000pt;}
._1e{width:58.944000pt;}
._d{width:60.138667pt;}
._3c{width:61.376000pt;}
._17{width:62.784000pt;}
._18{width:64.064000pt;}
._44{width:64.960000pt;}
._21{width:72.320000pt;}
._4a{width:73.408000pt;}
._4b{width:74.752000pt;}
._3a{width:76.821333pt;}
._50{width:85.445333pt;}
._40{width:87.552000pt;}
._52{width:88.704000pt;}
._53{width:89.600000pt;}
._4c{width:100.032000pt;}
._27{width:101.824000pt;}
._55{width:104.533333pt;}
._39{width:105.600000pt;}
._4f{width:110.794667pt;}
._3b{width:115.648000pt;}
._51{width:117.760000pt;}
._29{width:121.600000pt;}
._2a{width:122.816000pt;}
._13{width:126.208000pt;}
._43{width:127.488000pt;}
._4d{width:142.656000pt;}
._4e{width:143.744000pt;}
._42{width:145.920000pt;}
._54{width:153.024000pt;}
._1c{width:165.184000pt;}
._49{width:184.192000pt;}
._2d{width:189.120000pt;}
._46{width:262.720000pt;}
._47{width:263.616000pt;}
._2c{width:315.072000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y70{bottom:3.460000pt;}
.y1f{bottom:3.466667pt;}
.y23{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y6a{bottom:12.666667pt;}
.y71{bottom:12.673333pt;}
.y6d{bottom:12.680000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y6f{bottom:21.860000pt;}
.y1e{bottom:21.866667pt;}
.y22{bottom:21.880000pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y1d{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y1c{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y1b{bottom:77.066667pt;}
.y1a{bottom:95.466667pt;}
.y96{bottom:102.833333pt;}
.y3d{bottom:108.433333pt;}
.y72{bottom:112.566667pt;}
.yc2{bottom:113.366667pt;}
.y19{bottom:113.866667pt;}
.y7f{bottom:122.033333pt;}
.yae{bottom:122.300000pt;}
.y95{bottom:123.900000pt;}
.y3c{bottom:129.633333pt;}
.y6e{bottom:130.700000pt;}
.y18{bottom:132.266667pt;}
.y67{bottom:133.773333pt;}
.yc1{bottom:134.440000pt;}
.y7e{bottom:143.106667pt;}
.yad{bottom:143.373333pt;}
.y94{bottom:145.106667pt;}
.y17{bottom:150.666667pt;}
.y3b{bottom:150.840000pt;}
.y66{bottom:154.973333pt;}
.yc0{bottom:155.640000pt;}
.y7d{bottom:164.306667pt;}
.yac{bottom:164.560000pt;}
.y93{bottom:166.306667pt;}
.y6c{bottom:168.160000pt;}
.y3a{bottom:171.906667pt;}
.y65{bottom:176.173333pt;}
.ybf{bottom:176.840000pt;}
.y7c{bottom:185.506667pt;}
.yab{bottom:185.773333pt;}
.y92{bottom:187.373333pt;}
.y39{bottom:193.106667pt;}
.y64{bottom:197.240000pt;}
.ybe{bottom:197.893333pt;}
.y6b{bottom:205.640000pt;}
.y7b{bottom:206.560000pt;}
.yaa{bottom:206.960000pt;}
.y91{bottom:208.573333pt;}
.y38{bottom:214.306667pt;}
.y63{bottom:218.440000pt;}
.ybd{bottom:219.106667pt;}
.y7a{bottom:227.773333pt;}
.ya9{bottom:228.040000pt;}
.y90{bottom:229.773333pt;}
.y37{bottom:235.373333pt;}
.y62{bottom:239.640000pt;}
.ybc{bottom:240.293333pt;}
.y69{bottom:243.106667pt;}
.y79{bottom:248.960000pt;}
.ya8{bottom:249.226667pt;}
.y8f{bottom:250.973333pt;}
.y36{bottom:256.573333pt;}
.ybb{bottom:258.040000pt;}
.y61{bottom:260.706667pt;}
.y78{bottom:270.040000pt;}
.ya7{bottom:270.440000pt;}
.y8e{bottom:272.040000pt;}
.y35{bottom:277.773333pt;}
.y68{bottom:280.560000pt;}
.y60{bottom:281.893333pt;}
.y77{bottom:291.226667pt;}
.ya6{bottom:291.506667pt;}
.y8d{bottom:293.240000pt;}
.y34{bottom:298.840000pt;}
.y5f{bottom:303.106667pt;}
.y8c{bottom:310.973333pt;}
.y76{bottom:312.440000pt;}
.ya5{bottom:312.706667pt;}
.y33{bottom:320.040000pt;}
.y5e{bottom:324.173333pt;}
.y75{bottom:333.506667pt;}
.ya4{bottom:333.906667pt;}
.y32{bottom:341.266667pt;}
.y5d{bottom:345.400000pt;}
.y74{bottom:354.733333pt;}
.ya3{bottom:355.000000pt;}
.yba{bottom:356.200000pt;}
.y31{bottom:362.466667pt;}
.y5c{bottom:366.600000pt;}
.y73{bottom:372.466667pt;}
.ya2{bottom:376.200000pt;}
.yb9{bottom:377.400000pt;}
.y30{bottom:383.533333pt;}
.y5b{bottom:387.666667pt;}
.ya1{bottom:397.400000pt;}
.yb8{bottom:398.600000pt;}
.y2f{bottom:404.733333pt;}
.y5a{bottom:408.866667pt;}
.ya0{bottom:418.466667pt;}
.yb7{bottom:419.666667pt;}
.y2e{bottom:425.933333pt;}
.y59{bottom:430.066667pt;}
.y9f{bottom:439.666667pt;}
.yb6{bottom:440.866667pt;}
.y2d{bottom:447.000000pt;}
.y58{bottom:451.133333pt;}
.y9e{bottom:457.400000pt;}
.yb5{bottom:462.066667pt;}
.y2c{bottom:468.200000pt;}
.y57{bottom:472.333333pt;}
.y8b{bottom:477.133333pt;}
.yb4{bottom:483.133333pt;}
.y2b{bottom:489.400000pt;}
.y56{bottom:493.533333pt;}
.y8a{bottom:498.333333pt;}
.yb3{bottom:504.333333pt;}
.y2a{bottom:510.466667pt;}
.y55{bottom:514.733333pt;}
.y89{bottom:519.533333pt;}
.yb2{bottom:525.533333pt;}
.y29{bottom:531.666667pt;}
.y54{bottom:535.800000pt;}
.y88{bottom:540.600000pt;}
.yb1{bottom:546.600000pt;}
.y28{bottom:552.866667pt;}
.y53{bottom:557.000000pt;}
.y87{bottom:561.800000pt;}
.yb0{bottom:567.800000pt;}
.y27{bottom:573.933333pt;}
.y52{bottom:578.200000pt;}
.y86{bottom:583.000000pt;}
.yaf{bottom:585.533333pt;}
.y26{bottom:595.133333pt;}
.y51{bottom:599.266667pt;}
.y85{bottom:604.066667pt;}
.y25{bottom:616.333333pt;}
.y50{bottom:620.466667pt;}
.y84{bottom:625.266667pt;}
.y4f{bottom:641.666667pt;}
.y24{bottom:645.400000pt;}
.y83{bottom:646.466667pt;}
.y21{bottom:660.360000pt;}
.y4e{bottom:662.773333pt;}
.y82{bottom:667.573333pt;}
.y4d{bottom:683.973333pt;}
.y81{bottom:688.773333pt;}
.y20{bottom:697.173333pt;}
.y4c{bottom:705.173333pt;}
.y80{bottom:706.506667pt;}
.y9d{bottom:709.973333pt;}
.y16{bottom:715.573333pt;}
.y4b{bottom:726.240000pt;}
.y9c{bottom:731.173333pt;}
.y4a{bottom:747.440000pt;}
.y9b{bottom:752.240000pt;}
.y49{bottom:768.640000pt;}
.y9a{bottom:773.440000pt;}
.y48{bottom:789.706667pt;}
.y99{bottom:794.640000pt;}
.y47{bottom:810.906667pt;}
.y98{bottom:815.706667pt;}
.y46{bottom:832.106667pt;}
.y97{bottom:833.440000pt;}
.y45{bottom:853.306667pt;}
.y44{bottom:874.373333pt;}
.y15{bottom:884.373333pt;}
.y43{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.400000pt;}
.h11{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.hf{height:44.875000pt;}
.ha{height:45.156250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h12{height:65.781915pt;}
.h2{height:73.281250pt;}
.he{height:165.586667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wb{width:68.933333pt;}
.wa{width:78.700000pt;}
.w9{width:92.266667pt;}
.wc{width:106.400000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1a{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x20{left:61.866655pt;}
.x10{left:85.599988pt;}
.x19{left:89.066667pt;}
.x18{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x11{left:355.799988pt;}
.x23{left:388.599988pt;}
.x21{left:390.466655pt;}
.x1b{left:406.466655pt;}
.x13{left:413.266655pt;}
.x24{left:430.333322pt;}
.x15{left:434.866655pt;}
.x12{left:452.599988pt;}
.x1c{left:453.666655pt;}
.x16{left:497.399988pt;}
.x1d{left:500.066667pt;}
.xc{left:555.933333pt;}
.x1e{left:579.440000pt;}
.x14{left:583.306655pt;}
.xf{left:634.360000pt;}
.x1f{left:649.026667pt;}
.x2{left:728.106655pt;}
.x22{left:754.506655pt;}
.x17{left:756.106655pt;}
}




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