
    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_54ca6b7496863d22430d6c31.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4a65dc48cce66547aa592047.woff')format("woff");}.ff2{font-family:ff2;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0a3f356976a48e00e63a9f1e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.968262;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_e5992b9bf221bb8af0f1d8cb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4c0e37ffb13f1b7b21d38311.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_52198651f11e39194c485a38.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0f0b6b484eaa04ed9e2db436.woff')format("woff");}.ff7{font-family:ff7;line-height:1.975586;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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_afced36d0140b16781d5d775.woff')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_1fe41d24b9d3a2b2b6ce128b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-27.000000px;}
.v3{vertical-align:-25.500000px;}
.v2{vertical-align:-24.000000px;}
.vb{vertical-align:-15.000000px;}
.v4{vertical-align:-12.000000px;}
.v8{vertical-align:-6.000000px;}
.v7{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.940000px;}
.v9{vertical-align:6.000000px;}
.vc{vertical-align:15.000000px;}
.v1{vertical-align:24.000000px;}
.vd{vertical-align:48.000000px;}
.va{vertical-align:57.000000px;}
.ve{vertical-align:102.000000px;}
.ls15{letter-spacing:-1.500000px;}
.ls19{letter-spacing:-0.978000px;}
.lse{letter-spacing:-0.696000px;}
.ls13{letter-spacing:-0.522000px;}
.lsc{letter-spacing:-0.516000px;}
.lsb{letter-spacing:-0.492000px;}
.lsd{letter-spacing:-0.468000px;}
.ls24{letter-spacing:-0.324000px;}
.ls25{letter-spacing:-0.156000px;}
.ls11{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.015000px;}
.ls4{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.132000px;}
.ls5{letter-spacing:0.150000px;}
.ls21{letter-spacing:0.168000px;}
.ls10{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.228000px;}
.lsf{letter-spacing:0.348000px;}
.ls20{letter-spacing:0.372000px;}
.ls1{letter-spacing:0.408000px;}
.lsa{letter-spacing:0.516000px;}
.ls12{letter-spacing:0.522000px;}
.ls17{letter-spacing:0.588000px;}
.ls9{letter-spacing:0.852000px;}
.ls1a{letter-spacing:1.380000px;}
.ls1c{letter-spacing:1.728000px;}
.ls7{letter-spacing:2.856000px;}
.ls14{letter-spacing:3.228000px;}
.ls8{letter-spacing:3.240000px;}
.ls1f{letter-spacing:3.471000px;}
.ls18{letter-spacing:6.000000px;}
.ls6{letter-spacing:7.578000px;}
.ls1d{letter-spacing:19.620000px;}
.ls1e{letter-spacing:46.716000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws10{word-spacing:-71.676000px;}
.ws11{word-spacing:-51.015000px;}
.ws4{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.976000px;}
.ws6{word-spacing:-17.532000px;}
.ws3{word-spacing:-17.508000px;}
.ws5{word-spacing:-17.484000px;}
.wsf{word-spacing:-17.022000px;}
.wsa{word-spacing:-16.848000px;}
.wsc{word-spacing:-16.674000px;}
.wsb{word-spacing:-16.500000px;}
.wse{word-spacing:-15.978000px;}
.ws9{word-spacing:-15.804000px;}
.ws0{word-spacing:-12.000000px;}
.ws13{word-spacing:-11.844000px;}
.ws8{word-spacing:-10.500000px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:78.336000px;}
._10{margin-left:-4.536000px;}
._b{margin-left:-3.510000px;}
._7{margin-left:-2.070000px;}
._0{margin-left:-1.008000px;}
._1{width:1.308000px;}
._2{width:2.946000px;}
._8{width:4.392000px;}
._f{width:5.478000px;}
._11{width:6.780000px;}
._3{width:8.352000px;}
._4{width:9.360000px;}
._13{width:10.440000px;}
._16{width:11.754000px;}
._5{width:13.320000px;}
._6{width:14.328000px;}
._a{width:15.414000px;}
._9{width:16.416000px;}
._12{width:19.296000px;}
._e{width:20.952000px;}
._c{width:24.474000px;}
._d{width:25.620000px;}
._14{width:26.898000px;}
._15{width:28.278000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:2.250000px;}
.y93{bottom:2.625000px;}
.y7e{bottom:3.750000px;}
.y8f{bottom:4.125000px;}
.y54{bottom:4.875000px;}
.y3f{bottom:5.250000px;}
.y3e{bottom:5.625000px;}
.y42{bottom:5.655000px;}
.y55{bottom:7.875000px;}
.y40{bottom:8.250000px;}
.y92{bottom:85.920000px;}
.y99{bottom:87.045000px;}
.y69{bottom:91.162500px;}
.y95{bottom:93.780000px;}
.yae{bottom:97.537500px;}
.y8d{bottom:100.537500px;}
.y5e{bottom:103.162500px;}
.y91{bottom:106.545000px;}
.y98{bottom:107.670000px;}
.y68{bottom:111.787500px;}
.yad{bottom:118.162500px;}
.y5d{bottom:123.787500px;}
.y67{bottom:132.412500px;}
.yac{bottom:139.162500px;}
.y23{bottom:140.662500px;}
.y8c{bottom:146.662500px;}
.y5c{bottom:150.795000px;}
.y66{bottom:153.045000px;}
.y22{bottom:161.295000px;}
.y5b{bottom:165.405000px;}
.y65{bottom:173.670000px;}
.yab{bottom:174.825000px;}
.y21{bottom:178.200000px;}
.y8b{bottom:182.325000px;}
.y9a{bottom:190.575000px;}
.y5a{bottom:192.075000px;}
.yaa{bottom:195.450000px;}
.y8a{bottom:201.450000px;}
.y64{bottom:209.700000px;}
.y59{bottom:212.700000px;}
.ya9{bottom:216.075000px;}
.y89{bottom:220.200000px;}
.y4c{bottom:226.950000px;}
.y58{bottom:233.325000px;}
.ya8{bottom:236.700000px;}
.y88{bottom:239.325000px;}
.y63{bottom:245.325000px;}
.y4b{bottom:247.950000px;}
.y57{bottom:248.325000px;}
.ya7{bottom:257.700000px;}
.y56{bottom:265.200000px;}
.y4a{bottom:268.575000px;}
.y87{bottom:269.700000px;}
.ya6{bottom:278.325000px;}
.y62{bottom:280.575000px;}
.y53{bottom:288.450000px;}
.y49{bottom:295.200000px;}
.ya5{bottom:298.950000px;}
.y48{bottom:309.870000px;}
.y61{bottom:311.355000px;}
.y52{bottom:315.495000px;}
.ya4{bottom:319.620000px;}
.y47{bottom:330.495000px;}
.y84{bottom:331.230000px;}
.ya3{bottom:340.245000px;}
.y75{bottom:343.620000px;}
.y51{bottom:351.105000px;}
.y46{bottom:357.495000px;}
.ya2{bottom:361.230000px;}
.y20{bottom:363.120000px;}
.y83{bottom:366.870000px;}
.y45{bottom:378.105000px;}
.y74{bottom:379.245000px;}
.ya1{bottom:381.855000px;}
.y1f{bottom:383.745000px;}
.y50{bottom:386.745000px;}
.y82{bottom:387.870000px;}
.y44{bottom:398.730000px;}
.y4f{bottom:402.120000px;}
.ya0{bottom:402.495000px;}
.y1e{bottom:404.370000px;}
.y73{bottom:409.620000px;}
.y43{bottom:413.370000px;}
.y9f{bottom:423.120000px;}
.y81{bottom:423.495000px;}
.y1d{bottom:424.995000px;}
.y41{bottom:430.245000px;}
.y9e{bottom:443.775000px;}
.y1c{bottom:445.650000px;}
.y80{bottom:450.150000px;}
.y3d{bottom:453.525000px;}
.y9d{bottom:464.775000px;}
.y1b{bottom:466.650000px;}
.y7f{bottom:479.775000px;}
.y3c{bottom:480.525000px;}
.y9c{bottom:485.400000px;}
.y1a{bottom:487.275000px;}
.y7d{bottom:496.650000px;}
.y3b{bottom:501.525000px;}
.y9b{bottom:506.025000px;}
.y19{bottom:507.900000px;}
.y7c{bottom:516.525000px;}
.y3a{bottom:522.150000px;}
.y97{bottom:522.900000px;}
.y18{bottom:528.525000px;}
.y39{bottom:542.775000px;}
.y17{bottom:549.150000px;}
.y7b{bottom:558.525000px;}
.y38{bottom:563.445000px;}
.y16{bottom:569.820000px;}
.y7a{bottom:579.195000px;}
.y37{bottom:584.070000px;}
.y15{bottom:590.820000px;}
.y36{bottom:605.070000px;}
.y14{bottom:611.445000px;}
.y79{bottom:614.820000px;}
.y35{bottom:625.695000px;}
.y13{bottom:632.070000px;}
.y78{bottom:633.945000px;}
.y34{bottom:646.320000px;}
.y12{bottom:652.695000px;}
.y33{bottom:666.945000px;}
.y77{bottom:671.820000px;}
.y11{bottom:673.320000px;}
.y32{bottom:687.570000px;}
.y10{bottom:694.350000px;}
.y76{bottom:702.225000px;}
.y31{bottom:708.600000px;}
.y60{bottom:712.350000px;}
.y30{bottom:729.225000px;}
.yf{bottom:729.975000px;}
.y94{bottom:730.350000px;}
.y5f{bottom:742.725000px;}
.y86{bottom:743.100000px;}
.y2f{bottom:749.850000px;}
.ye{bottom:765.600000px;}
.y2e{bottom:770.475000px;}
.y85{bottom:773.850000px;}
.y2d{bottom:791.100000px;}
.yd{bottom:801.225000px;}
.y4e{bottom:803.475000px;}
.y72{bottom:811.350000px;}
.y2c{bottom:812.100000px;}
.y4d{bottom:818.895000px;}
.yc{bottom:827.880000px;}
.y2b{bottom:832.770000px;}
.y71{bottom:847.005000px;}
.y2a{bottom:853.380000px;}
.yb{bottom:857.880000px;}
.y70{bottom:867.630000px;}
.y29{bottom:874.005000px;}
.ya{bottom:884.505000px;}
.y28{bottom:890.880000px;}
.y6f{bottom:903.255000px;}
.y9{bottom:920.130000px;}
.y6e{bottom:929.880000px;}
.y90{bottom:930.630000px;}
.y8{bottom:949.800000px;}
.yb3{bottom:958.800000px;}
.y6d{bottom:959.925000px;}
.y7{bottom:970.425000px;}
.y6c{bottom:976.800000px;}
.yb2{bottom:979.425000px;}
.y27{bottom:992.175000px;}
.y6{bottom:997.425000px;}
.y6b{bottom:1000.050000px;}
.y26{bottom:1012.800000px;}
.y5{bottom:1027.050000px;}
.y25{bottom:1033.425000px;}
.yb1{bottom:1035.675000px;}
.y4{bottom:1047.675000px;}
.y24{bottom:1050.675000px;}
.yb0{bottom:1068.675000px;}
.y3{bottom:1083.330000px;}
.yaf{bottom:1098.330000px;}
.y2{bottom:1103.955000px;}
.y6a{bottom:1118.955000px;}
.y8e{bottom:1135.830000px;}
.y1{bottom:1139.955000px;}
.h12{height:19.125000px;}
.h13{height:21.000000px;}
.h8{height:22.500000px;}
.hc{height:22.537500px;}
.h5{height:33.515625px;}
.h4{height:35.343750px;}
.he{height:39.562500px;}
.h9{height:46.083984px;}
.hd{height:46.567383px;}
.h1{height:50.273438px;}
.h7{height:50.800781px;}
.h6{height:51.996094px;}
.h11{height:53.266172px;}
.hb{height:53.326172px;}
.hf{height:53.633789px;}
.h3{height:57.515625px;}
.h2{height:59.343750px;}
.h18{height:64.945312px;}
.h10{height:73.722656px;}
.ha{height:84.046875px;}
.h1a{height:139.687500px;}
.h17{height:148.687500px;}
.h19{height:193.687500px;}
.h15{height:200.280000px;}
.h14{height:205.200000px;}
.h16{height:207.450000px;}
.h0{height:1263.000000px;}
.w7{width:37.537500px;}
.w6{width:87.412500px;}
.w3{width:106.912500px;}
.w4{width:115.950000px;}
.w5{width:119.287500px;}
.w8{width:121.950000px;}
.w9{width:250.575000px;}
.wa{width:308.400000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:5.625000px;}
.x1e{left:8.250000px;}
.x19{left:10.500000px;}
.x12{left:14.235000px;}
.xa{left:16.170000px;}
.xb{left:18.420000px;}
.x14{left:20.625000px;}
.x8{left:25.537500px;}
.x18{left:29.250000px;}
.xe{left:33.000000px;}
.x16{left:35.295000px;}
.x17{left:36.750000px;}
.x1a{left:40.860000px;}
.x15{left:44.287500px;}
.x2b{left:49.162500px;}
.x22{left:61.162500px;}
.x24{left:101.655000px;}
.x4{left:106.162487px;}
.x2{left:116.287487px;}
.x26{left:130.200000px;}
.x29{left:163.530000px;}
.x27{left:169.200000px;}
.x9{left:213.075000px;}
.x23{left:228.120000px;}
.x5{left:241.619987px;}
.x2a{left:292.260000px;}
.x28{left:299.010000px;}
.x2c{left:312.899987px;}
.xc{left:329.025000px;}
.x6{left:332.774987px;}
.x7{left:338.024987px;}
.x1{left:358.649987px;}
.x2e{left:375.524987px;}
.x2d{left:395.819987px;}
.x3{left:399.569987px;}
.xd{left:448.320000px;}
.x25{left:478.695000px;}
.x2f{left:495.224987px;}
.xf{left:535.725000px;}
.x11{left:573.270000px;}
.x13{left:680.175000px;}
.x21{left:734.549987px;}
.x20{left:736.799987px;}
.x1c{left:739.049987px;}
.x1f{left:743.549987px;}
.x1d{left:781.829987px;}
.x1b{left:786.719987px;}
@media print{
.v5{vertical-align:-24.000000pt;}
.v3{vertical-align:-22.666667pt;}
.v2{vertical-align:-21.333333pt;}
.vb{vertical-align:-13.333333pt;}
.v4{vertical-align:-10.666667pt;}
.v8{vertical-align:-5.333333pt;}
.v7{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.613333pt;}
.v9{vertical-align:5.333333pt;}
.vc{vertical-align:13.333333pt;}
.v1{vertical-align:21.333333pt;}
.vd{vertical-align:42.666667pt;}
.va{vertical-align:50.666667pt;}
.ve{vertical-align:90.666667pt;}
.ls15{letter-spacing:-1.333333pt;}
.ls19{letter-spacing:-0.869333pt;}
.lse{letter-spacing:-0.618667pt;}
.ls13{letter-spacing:-0.464000pt;}
.lsc{letter-spacing:-0.458667pt;}
.lsb{letter-spacing:-0.437333pt;}
.lsd{letter-spacing:-0.416000pt;}
.ls24{letter-spacing:-0.288000pt;}
.ls25{letter-spacing:-0.138667pt;}
.ls11{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.013333pt;}
.ls4{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.117333pt;}
.ls5{letter-spacing:0.133333pt;}
.ls21{letter-spacing:0.149333pt;}
.ls10{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.202667pt;}
.lsf{letter-spacing:0.309333pt;}
.ls20{letter-spacing:0.330667pt;}
.ls1{letter-spacing:0.362667pt;}
.lsa{letter-spacing:0.458667pt;}
.ls12{letter-spacing:0.464000pt;}
.ls17{letter-spacing:0.522667pt;}
.ls9{letter-spacing:0.757333pt;}
.ls1a{letter-spacing:1.226667pt;}
.ls1c{letter-spacing:1.536000pt;}
.ls7{letter-spacing:2.538667pt;}
.ls14{letter-spacing:2.869333pt;}
.ls8{letter-spacing:2.880000pt;}
.ls1f{letter-spacing:3.085333pt;}
.ls18{letter-spacing:5.333333pt;}
.ls6{letter-spacing:6.736000pt;}
.ls1d{letter-spacing:17.440000pt;}
.ls1e{letter-spacing:41.525333pt;}
.ws7{word-spacing:-64.000000pt;}
.ws10{word-spacing:-63.712000pt;}
.ws11{word-spacing:-45.346667pt;}
.ws4{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.978667pt;}
.ws6{word-spacing:-15.584000pt;}
.ws3{word-spacing:-15.562667pt;}
.ws5{word-spacing:-15.541333pt;}
.wsf{word-spacing:-15.130667pt;}
.wsa{word-spacing:-14.976000pt;}
.wsc{word-spacing:-14.821333pt;}
.wsb{word-spacing:-14.666667pt;}
.wse{word-spacing:-14.202667pt;}
.ws9{word-spacing:-14.048000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws13{word-spacing:-10.528000pt;}
.ws8{word-spacing:-9.333333pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:69.632000pt;}
._10{margin-left:-4.032000pt;}
._b{margin-left:-3.120000pt;}
._7{margin-left:-1.840000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.162667pt;}
._2{width:2.618667pt;}
._8{width:3.904000pt;}
._f{width:4.869333pt;}
._11{width:6.026667pt;}
._3{width:7.424000pt;}
._4{width:8.320000pt;}
._13{width:9.280000pt;}
._16{width:10.448000pt;}
._5{width:11.840000pt;}
._6{width:12.736000pt;}
._a{width:13.701333pt;}
._9{width:14.592000pt;}
._12{width:17.152000pt;}
._e{width:18.624000pt;}
._c{width:21.754667pt;}
._d{width:22.773333pt;}
._14{width:23.909333pt;}
._15{width:25.136000pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:2.000000pt;}
.y93{bottom:2.333333pt;}
.y7e{bottom:3.333333pt;}
.y8f{bottom:3.666667pt;}
.y54{bottom:4.333333pt;}
.y3f{bottom:4.666667pt;}
.y3e{bottom:5.000000pt;}
.y42{bottom:5.026667pt;}
.y55{bottom:7.000000pt;}
.y40{bottom:7.333333pt;}
.y92{bottom:76.373333pt;}
.y99{bottom:77.373333pt;}
.y69{bottom:81.033333pt;}
.y95{bottom:83.360000pt;}
.yae{bottom:86.700000pt;}
.y8d{bottom:89.366667pt;}
.y5e{bottom:91.700000pt;}
.y91{bottom:94.706667pt;}
.y98{bottom:95.706667pt;}
.y68{bottom:99.366667pt;}
.yad{bottom:105.033333pt;}
.y5d{bottom:110.033333pt;}
.y67{bottom:117.700000pt;}
.yac{bottom:123.700000pt;}
.y23{bottom:125.033333pt;}
.y8c{bottom:130.366667pt;}
.y5c{bottom:134.040000pt;}
.y66{bottom:136.040000pt;}
.y22{bottom:143.373333pt;}
.y5b{bottom:147.026667pt;}
.y65{bottom:154.373333pt;}
.yab{bottom:155.400000pt;}
.y21{bottom:158.400000pt;}
.y8b{bottom:162.066667pt;}
.y9a{bottom:169.400000pt;}
.y5a{bottom:170.733333pt;}
.yaa{bottom:173.733333pt;}
.y8a{bottom:179.066667pt;}
.y64{bottom:186.400000pt;}
.y59{bottom:189.066667pt;}
.ya9{bottom:192.066667pt;}
.y89{bottom:195.733333pt;}
.y4c{bottom:201.733333pt;}
.y58{bottom:207.400000pt;}
.ya8{bottom:210.400000pt;}
.y88{bottom:212.733333pt;}
.y63{bottom:218.066667pt;}
.y4b{bottom:220.400000pt;}
.y57{bottom:220.733333pt;}
.ya7{bottom:229.066667pt;}
.y56{bottom:235.733333pt;}
.y4a{bottom:238.733333pt;}
.y87{bottom:239.733333pt;}
.ya6{bottom:247.400000pt;}
.y62{bottom:249.400000pt;}
.y53{bottom:256.400000pt;}
.y49{bottom:262.400000pt;}
.ya5{bottom:265.733333pt;}
.y48{bottom:275.440000pt;}
.y61{bottom:276.760000pt;}
.y52{bottom:280.440000pt;}
.ya4{bottom:284.106667pt;}
.y47{bottom:293.773333pt;}
.y84{bottom:294.426667pt;}
.ya3{bottom:302.440000pt;}
.y75{bottom:305.440000pt;}
.y51{bottom:312.093333pt;}
.y46{bottom:317.773333pt;}
.ya2{bottom:321.093333pt;}
.y20{bottom:322.773333pt;}
.y83{bottom:326.106667pt;}
.y45{bottom:336.093333pt;}
.y74{bottom:337.106667pt;}
.ya1{bottom:339.426667pt;}
.y1f{bottom:341.106667pt;}
.y50{bottom:343.773333pt;}
.y82{bottom:344.773333pt;}
.y44{bottom:354.426667pt;}
.y4f{bottom:357.440000pt;}
.ya0{bottom:357.773333pt;}
.y1e{bottom:359.440000pt;}
.y73{bottom:364.106667pt;}
.y43{bottom:367.440000pt;}
.y9f{bottom:376.106667pt;}
.y81{bottom:376.440000pt;}
.y1d{bottom:377.773333pt;}
.y41{bottom:382.440000pt;}
.y9e{bottom:394.466667pt;}
.y1c{bottom:396.133333pt;}
.y80{bottom:400.133333pt;}
.y3d{bottom:403.133333pt;}
.y9d{bottom:413.133333pt;}
.y1b{bottom:414.800000pt;}
.y7f{bottom:426.466667pt;}
.y3c{bottom:427.133333pt;}
.y9c{bottom:431.466667pt;}
.y1a{bottom:433.133333pt;}
.y7d{bottom:441.466667pt;}
.y3b{bottom:445.800000pt;}
.y9b{bottom:449.800000pt;}
.y19{bottom:451.466667pt;}
.y7c{bottom:459.133333pt;}
.y3a{bottom:464.133333pt;}
.y97{bottom:464.800000pt;}
.y18{bottom:469.800000pt;}
.y39{bottom:482.466667pt;}
.y17{bottom:488.133333pt;}
.y7b{bottom:496.466667pt;}
.y38{bottom:500.840000pt;}
.y16{bottom:506.506667pt;}
.y7a{bottom:514.840000pt;}
.y37{bottom:519.173333pt;}
.y15{bottom:525.173333pt;}
.y36{bottom:537.840000pt;}
.y14{bottom:543.506667pt;}
.y79{bottom:546.506667pt;}
.y35{bottom:556.173333pt;}
.y13{bottom:561.840000pt;}
.y78{bottom:563.506667pt;}
.y34{bottom:574.506667pt;}
.y12{bottom:580.173333pt;}
.y33{bottom:592.840000pt;}
.y77{bottom:597.173333pt;}
.y11{bottom:598.506667pt;}
.y32{bottom:611.173333pt;}
.y10{bottom:617.200000pt;}
.y76{bottom:624.200000pt;}
.y31{bottom:629.866667pt;}
.y60{bottom:633.200000pt;}
.y30{bottom:648.200000pt;}
.yf{bottom:648.866667pt;}
.y94{bottom:649.200000pt;}
.y5f{bottom:660.200000pt;}
.y86{bottom:660.533333pt;}
.y2f{bottom:666.533333pt;}
.ye{bottom:680.533333pt;}
.y2e{bottom:684.866667pt;}
.y85{bottom:687.866667pt;}
.y2d{bottom:703.200000pt;}
.yd{bottom:712.200000pt;}
.y4e{bottom:714.200000pt;}
.y72{bottom:721.200000pt;}
.y2c{bottom:721.866667pt;}
.y4d{bottom:727.906667pt;}
.yc{bottom:735.893333pt;}
.y2b{bottom:740.240000pt;}
.y71{bottom:752.893333pt;}
.y2a{bottom:758.560000pt;}
.yb{bottom:762.560000pt;}
.y70{bottom:771.226667pt;}
.y29{bottom:776.893333pt;}
.ya{bottom:786.226667pt;}
.y28{bottom:791.893333pt;}
.y6f{bottom:802.893333pt;}
.y9{bottom:817.893333pt;}
.y6e{bottom:826.560000pt;}
.y90{bottom:827.226667pt;}
.y8{bottom:844.266667pt;}
.yb3{bottom:852.266667pt;}
.y6d{bottom:853.266667pt;}
.y7{bottom:862.600000pt;}
.y6c{bottom:868.266667pt;}
.yb2{bottom:870.600000pt;}
.y27{bottom:881.933333pt;}
.y6{bottom:886.600000pt;}
.y6b{bottom:888.933333pt;}
.y26{bottom:900.266667pt;}
.y5{bottom:912.933333pt;}
.y25{bottom:918.600000pt;}
.yb1{bottom:920.600000pt;}
.y4{bottom:931.266667pt;}
.y24{bottom:933.933333pt;}
.yb0{bottom:949.933333pt;}
.y3{bottom:962.960000pt;}
.yaf{bottom:976.293333pt;}
.y2{bottom:981.293333pt;}
.y6a{bottom:994.626667pt;}
.y8e{bottom:1009.626667pt;}
.y1{bottom:1013.293333pt;}
.h12{height:17.000000pt;}
.h13{height:18.666667pt;}
.h8{height:20.000000pt;}
.hc{height:20.033333pt;}
.h5{height:29.791667pt;}
.h4{height:31.416667pt;}
.he{height:35.166667pt;}
.h9{height:40.963542pt;}
.hd{height:41.393229pt;}
.h1{height:44.687500pt;}
.h7{height:45.156250pt;}
.h6{height:46.218750pt;}
.h11{height:47.347708pt;}
.hb{height:47.401042pt;}
.hf{height:47.674479pt;}
.h3{height:51.125000pt;}
.h2{height:52.750000pt;}
.h18{height:57.729167pt;}
.h10{height:65.531250pt;}
.ha{height:74.708333pt;}
.h1a{height:124.166667pt;}
.h17{height:132.166667pt;}
.h19{height:172.166667pt;}
.h15{height:178.026667pt;}
.h14{height:182.400000pt;}
.h16{height:184.400000pt;}
.h0{height:1122.666667pt;}
.w7{width:33.366667pt;}
.w6{width:77.700000pt;}
.w3{width:95.033333pt;}
.w4{width:103.066667pt;}
.w5{width:106.033333pt;}
.w8{width:108.400000pt;}
.w9{width:222.733333pt;}
.wa{width:274.133333pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:5.000000pt;}
.x1e{left:7.333333pt;}
.x19{left:9.333333pt;}
.x12{left:12.653333pt;}
.xa{left:14.373333pt;}
.xb{left:16.373333pt;}
.x14{left:18.333333pt;}
.x8{left:22.700000pt;}
.x18{left:26.000000pt;}
.xe{left:29.333333pt;}
.x16{left:31.373333pt;}
.x17{left:32.666667pt;}
.x1a{left:36.320000pt;}
.x15{left:39.366667pt;}
.x2b{left:43.700000pt;}
.x22{left:54.366667pt;}
.x24{left:90.360000pt;}
.x4{left:94.366655pt;}
.x2{left:103.366655pt;}
.x26{left:115.733333pt;}
.x29{left:145.360000pt;}
.x27{left:150.400000pt;}
.x9{left:189.400000pt;}
.x23{left:202.773333pt;}
.x5{left:214.773322pt;}
.x2a{left:259.786667pt;}
.x28{left:265.786667pt;}
.x2c{left:278.133322pt;}
.xc{left:292.466667pt;}
.x6{left:295.799988pt;}
.x7{left:300.466655pt;}
.x1{left:318.799988pt;}
.x2e{left:333.799988pt;}
.x2d{left:351.839988pt;}
.x3{left:355.173322pt;}
.xd{left:398.506667pt;}
.x25{left:425.506667pt;}
.x2f{left:440.199988pt;}
.xf{left:476.200000pt;}
.x11{left:509.573333pt;}
.x13{left:604.600000pt;}
.x21{left:652.933322pt;}
.x20{left:654.933322pt;}
.x1c{left:656.933322pt;}
.x1f{left:660.933322pt;}
.x1d{left:694.959988pt;}
.x1b{left:699.306655pt;}
}




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