
    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_b4826be62a96175ed6587e57.woff')format("woff");}.ff1{font-family:ff1;line-height:1.310547;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_5e5bb7fbf179146da9276570.woff')format("woff");}.ff2{font-family:ff2;line-height:1.310547;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_e1a891e2486f4bc06e37784e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-0.840000px;}
.ls1b{letter-spacing:-0.408000px;}
.ls4{letter-spacing:-0.246000px;}
.ls3{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.168000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.060000px;}
.ls5{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.024000px;}
.lsb{letter-spacing:0.048000px;}
.lse{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.168000px;}
.ls7{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.192000px;}
.lsc{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.420000px;}
.ls11{letter-spacing:1.140000px;}
.ls16{letter-spacing:2.718000px;}
.ls8{letter-spacing:4.140000px;}
.ls15{letter-spacing:5.940000px;}
.ls1{letter-spacing:8.340000px;}
.lsf{letter-spacing:23.940000px;}
.ls10{letter-spacing:58.740000px;}
.ls14{letter-spacing:106.140000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(70,120,134),0 0.015em rgb(70,120,134),0.015em 0 rgb(70,120,134),0 -0.015em  rgb(70,120,134);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(70,120,134);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-21.326187px;}
.ws9{word-spacing:-20.448000px;}
.ws7{word-spacing:-20.256000px;}
.ws6{word-spacing:-20.232000px;}
.wsf{word-spacing:-20.208000px;}
.wse{word-spacing:-20.088000px;}
.wsd{word-spacing:-20.064000px;}
.ws1{word-spacing:-18.546000px;}
.ws2{word-spacing:-18.300000px;}
.wsc{word-spacing:-17.280000px;}
.ws3{word-spacing:-17.040000px;}
.wsa{word-spacing:-16.920000px;}
.ws0{word-spacing:-16.860000px;}
.ws4{word-spacing:-16.800000px;}
.wsb{word-spacing:-16.020000px;}
.ws5{word-spacing:0.000000px;}
._1f{margin-left:-106.080000px;}
._1b{margin-left:-58.650000px;}
._19{margin-left:-23.850000px;}
._16{margin-left:-5.472000px;}
._15{margin-left:-4.464000px;}
._b{margin-left:-2.580000px;}
._0{margin-left:-1.200000px;}
._1{width:1.140000px;}
._2{width:2.160000px;}
._8{width:3.480000px;}
._3{width:5.220000px;}
._4{width:6.300000px;}
._7{width:7.740000px;}
._5{width:8.760000px;}
._6{width:10.080000px;}
._9{width:11.640000px;}
._a{width:12.660000px;}
._10{width:13.692000px;}
._d{width:15.240000px;}
._18{width:16.572000px;}
._c{width:18.120000px;}
._14{width:19.152000px;}
._17{width:21.312000px;}
._13{width:22.380000px;}
._12{width:23.808000px;}
._11{width:24.840000px;}
._f{width:25.896000px;}
._e{width:27.000000px;}
._22{width:29.802000px;}
._23{width:41.352000px;}
._1d{width:42.660000px;}
._1e{width:46.200000px;}
._1a{width:48.120000px;}
._1c{width:82.320000px;}
._26{width:83.880000px;}
._27{width:88.416399px;}
._20{width:129.720000px;}
._21{width:131.220000px;}
._25{width:136.381347px;}
._24{width:137.823331px;}
._29{width:183.888000px;}
._28{width:194.364291px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:63.244921px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.900000px;}
.y2{bottom:4.200000px;}
.y5{bottom:25.500000px;}
.y4{bottom:46.950000px;}
.y3{bottom:68.400000px;}
.y11{bottom:76.237500px;}
.y10{bottom:95.437500px;}
.yf{bottom:116.137500px;}
.y7e{bottom:117.937500px;}
.y5d{bottom:122.137500px;}
.ybd{bottom:129.937500px;}
.ye{bottom:137.737500px;}
.ya9{bottom:143.737500px;}
.y7d{bottom:143.887500px;}
.ybc{bottom:155.895000px;}
.yd{bottom:159.180000px;}
.y5c{bottom:165.180000px;}
.y7c{bottom:169.695000px;}
.yc{bottom:180.795000px;}
.ybb{bottom:181.680000px;}
.y5b{bottom:181.995000px;}
.y7b{bottom:195.495000px;}
.yb{bottom:202.245000px;}
.yba{bottom:207.495000px;}
.y99{bottom:208.245000px;}
.y7a{bottom:221.295000px;}
.ya{bottom:223.845000px;}
.yde{bottom:226.080000px;}
.y98{bottom:229.830000px;}
.yb9{bottom:233.295000px;}
.y9{bottom:245.295000px;}
.y5a{bottom:247.080000px;}
.ya8{bottom:251.295000px;}
.ydd{bottom:256.380000px;}
.yb8{bottom:259.095000px;}
.y97{bottom:266.880000px;}
.yc0{bottom:271.095000px;}
.y79{bottom:272.880000px;}
.ydc{bottom:282.195000px;}
.y8{bottom:283.995000px;}
.y59{bottom:284.895000px;}
.y96{bottom:288.345000px;}
.ya7{bottom:294.330000px;}
.yb7{bottom:296.880000px;}
.y78{bottom:298.695000px;}
.ydb{bottom:308.145000px;}
.ybf{bottom:308.895000px;}
.y95{bottom:309.945000px;}
.y58{bottom:310.695000px;}
.y94{bottom:315.945000px;}
.y34{bottom:318.495000px;}
.yb6{bottom:322.695000px;}
.y77{bottom:324.645000px;}
.ya6{bottom:331.395000px;}
.y93{bottom:332.595000px;}
.yda{bottom:333.945000px;}
.ybe{bottom:334.695000px;}
.y57{bottom:336.645000px;}
.y33{bottom:339.945000px;}
.y76{bottom:350.445000px;}
.ya5{bottom:352.845000px;}
.yb5{bottom:360.630000px;}
.y32{bottom:361.545000px;}
.y56{bottom:362.445000px;}
.yd9{bottom:364.245000px;}
.y92{bottom:369.945000px;}
.ya4{bottom:375.645000px;}
.y75{bottom:376.245000px;}
.y31{bottom:383.025000px;}
.yb4{bottom:386.475000px;}
.y55{bottom:388.275000px;}
.yd8{bottom:390.075000px;}
.y74{bottom:402.075000px;}
.y30{bottom:404.625000px;}
.yb3{bottom:412.275000px;}
.y54{bottom:414.075000px;}
.yd7{bottom:415.875000px;}
.y2f{bottom:426.075000px;}
.y73{bottom:427.875000px;}
.yb2{bottom:438.075000px;}
.y53{bottom:439.875000px;}
.yd6{bottom:441.675000px;}
.y91{bottom:447.375000px;}
.y2e{bottom:447.525000px;}
.yb1{bottom:463.875000px;}
.y52{bottom:465.675000px;}
.y2d{bottom:469.125000px;}
.yd5{bottom:471.975000px;}
.yb0{bottom:489.675000px;}
.y2c{bottom:490.575000px;}
.y51{bottom:491.475000px;}
.yd4{bottom:497.925000px;}
.y2b{bottom:512.175000px;}
.yaf{bottom:515.475000px;}
.y50{bottom:517.425000px;}
.yd3{bottom:523.725000px;}
.y72{bottom:529.425000px;}
.y2a{bottom:533.625000px;}
.yae{bottom:541.425000px;}
.y4f{bottom:543.225000px;}
.yd2{bottom:549.525000px;}
.y29{bottom:555.225000px;}
.yad{bottom:567.225000px;}
.y4e{bottom:569.025000px;}
.y28{bottom:576.675000px;}
.yd1{bottom:579.825000px;}
.y71{bottom:581.025000px;}
.yac{bottom:593.025000px;}
.y4c{bottom:594.825000px;}
.y27{bottom:598.275000px;}
.y4d{bottom:602.325000px;}
.yd0{bottom:605.625000px;}
.y70{bottom:606.825000px;}
.yab{bottom:618.825000px;}
.y26{bottom:619.725000px;}
.y4b{bottom:620.625000px;}
.ycf{bottom:631.425000px;}
.y6f{bottom:632.625000px;}
.y25{bottom:641.325000px;}
.yaa{bottom:644.625000px;}
.y49{bottom:646.425000px;}
.y4a{bottom:653.925000px;}
.yce{bottom:657.225000px;}
.y6e{bottom:658.425000px;}
.y24{bottom:662.775000px;}
.ya3{bottom:670.425000px;}
.y48{bottom:672.225000px;}
.y6d{bottom:684.225000px;}
.y23{bottom:684.375000px;}
.ycd{bottom:687.675000px;}
.ya2{bottom:696.225000px;}
.y47{bottom:698.175000px;}
.y22{bottom:705.825000px;}
.y6c{bottom:710.175000px;}
.ycc{bottom:713.475000px;}
.ya1{bottom:722.175000px;}
.y46{bottom:723.975000px;}
.y21{bottom:727.275000px;}
.y6b{bottom:735.975000px;}
.ycb{bottom:739.320000px;}
.y90{bottom:748.020000px;}
.y20{bottom:748.920000px;}
.y45{bottom:749.820000px;}
.y6a{bottom:761.820000px;}
.yca{bottom:769.620000px;}
.y1f{bottom:770.370000px;}
.y8f{bottom:773.820000px;}
.y44{bottom:775.620000px;}
.ya0{bottom:781.320000px;}
.y69{bottom:787.620000px;}
.y1e{bottom:792.270000px;}
.yc9{bottom:795.420000px;}
.y8d{bottom:799.620000px;}
.y43{bottom:801.420000px;}
.y8e{bottom:807.120000px;}
.y68{bottom:813.420000px;}
.y1d{bottom:815.955000px;}
.yc8{bottom:821.205000px;}
.y8b{bottom:825.420000px;}
.y8c{bottom:832.920000px;}
.y42{bottom:839.205000px;}
.y1c{bottom:839.670000px;}
.y8a{bottom:851.220000px;}
.yc7{bottom:851.670000px;}
.y1b{bottom:863.370000px;}
.y41{bottom:865.170000px;}
.y89{bottom:877.170000px;}
.yc6{bottom:877.470000px;}
.y1a{bottom:887.070000px;}
.y67{bottom:890.970000px;}
.y40{bottom:902.220000px;}
.y88{bottom:902.970000px;}
.yc5{bottom:903.270000px;}
.y19{bottom:910.620000px;}
.y66{bottom:916.770000px;}
.y3f{bottom:923.670000px;}
.y87{bottom:928.770000px;}
.yc4{bottom:933.570000px;}
.y18{bottom:934.320000px;}
.y9f{bottom:936.270000px;}
.y65{bottom:942.570000px;}
.y3e{bottom:945.270000px;}
.y86{bottom:954.570000px;}
.y17{bottom:957.570000px;}
.yc3{bottom:959.370000px;}
.y9e{bottom:962.070000px;}
.y3d{bottom:966.720000px;}
.y64{bottom:968.370000px;}
.y16{bottom:979.920000px;}
.y85{bottom:980.370000px;}
.y9d{bottom:987.870000px;}
.y3c{bottom:988.320000px;}
.yc2{bottom:989.670000px;}
.y63{bottom:994.170000px;}
.y15{bottom:1005.720000px;}
.y84{bottom:1006.170000px;}
.y3b{bottom:1009.770000px;}
.yc1{bottom:1015.470000px;}
.y62{bottom:1019.970000px;}
.y3a{bottom:1031.370000px;}
.y82{bottom:1031.970000px;}
.y14{bottom:1032.270000px;}
.y83{bottom:1039.470000px;}
.y61{bottom:1045.920000px;}
.y39{bottom:1052.820000px;}
.y81{bottom:1057.920000px;}
.y13{bottom:1062.420000px;}
.y9c{bottom:1065.420000px;}
.y60{bottom:1071.720000px;}
.y38{bottom:1074.420000px;}
.y80{bottom:1083.720000px;}
.y9b{bottom:1091.220000px;}
.y12{bottom:1091.370000px;}
.y37{bottom:1095.900000px;}
.y5f{bottom:1097.550000px;}
.y7f{bottom:1109.550000px;}
.y7{bottom:1116.000000px;}
.y36{bottom:1117.500000px;}
.y1{bottom:1134.300000px;}
.y5e{bottom:1135.350000px;}
.y35{bottom:1138.950000px;}
.y9a{bottom:1142.850000px;}
.hc{height:38.794922px;}
.h6{height:43.681641px;}
.hb{height:45.260742px;}
.h5{height:58.192383px;}
.h4{height:62.402344px;}
.h3{height:64.658203px;}
.ha{height:68.155049px;}
.h7{height:71.124023px;}
.h9{height:77.589844px;}
.hd{height:81.786059px;}
.h2{height:85.950000px;}
.h8{height:90.521484px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.w4{width:329.730000px;}
.w2{width:331.875000px;}
.w6{width:892.949973px;}
.w5{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x8{left:104.699987px;}
.x1{left:106.350000px;}
.xc{left:111.299987px;}
.x2d{left:115.349987px;}
.x18{left:149.887487px;}
.x9{left:160.379987px;}
.x14{left:163.829987px;}
.x10{left:167.744973px;}
.x1e{left:169.229987px;}
.x11{left:172.979987px;}
.x2{left:176.895000px;}
.xe{left:182.894973px;}
.xf{left:188.144987px;}
.x26{left:191.579973px;}
.x27{left:202.094987px;}
.x1b{left:203.744973px;}
.x23{left:205.094973px;}
.x15{left:208.994987px;}
.x24{left:211.244987px;}
.x29{left:213.344973px;}
.xd{left:216.494987px;}
.x3b{left:221.279987px;}
.x2a{left:224.579987px;}
.x25{left:227.894987px;}
.x16{left:231.194987px;}
.x2b{left:253.529973px;}
.x38{left:256.244987px;}
.x1f{left:257.279973px;}
.x36{left:260.279987px;}
.x20{left:262.529987px;}
.x2c{left:264.029987px;}
.x41{left:275.279987px;}
.x40{left:306.944987px;}
.x49{left:320.594987px;}
.x12{left:322.394987px;}
.x35{left:326.879987px;}
.x28{left:332.294987px;}
.x21{left:363.194973px;}
.x22{left:369.779987px;}
.x3c{left:386.774987px;}
.x32{left:412.724987px;}
.x1c{left:416.474973px;}
.x1d{left:421.724987px;}
.x3{left:438.225000px;}
.x7{left:446.474987px;}
.x3a{left:448.874987px;}
.x33{left:477.224987px;}
.x5{left:489.075000px;}
.x30{left:520.574987px;}
.x46{left:523.124987px;}
.x2e{left:548.324987px;}
.x47{left:574.274987px;}
.x31{left:584.024987px;}
.x39{left:594.374987px;}
.x3e{left:596.774987px;}
.x3f{left:604.724987px;}
.x2f{left:613.574987px;}
.x37{left:629.324987px;}
.x48{left:632.924987px;}
.xa{left:649.619987px;}
.x3d{left:658.604987px;}
.x43{left:708.269987px;}
.x17{left:712.154987px;}
.x44{left:713.654987px;}
.x13{left:726.869987px;}
.x45{left:729.254987px;}
.x34{left:730.469987px;}
.x19{left:737.219973px;}
.x1a{left:742.469987px;}
.xb{left:751.919987px;}
.x6{left:777.119987px;}
.x42{left:782.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-0.746667pt;}
.ls1b{letter-spacing:-0.362667pt;}
.ls4{letter-spacing:-0.218667pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.149333pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.021333pt;}
.lsb{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.149333pt;}
.ls7{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.170667pt;}
.lsc{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.373333pt;}
.ls11{letter-spacing:1.013333pt;}
.ls16{letter-spacing:2.416000pt;}
.ls8{letter-spacing:3.680000pt;}
.ls15{letter-spacing:5.280000pt;}
.ls1{letter-spacing:7.413333pt;}
.lsf{letter-spacing:21.280000pt;}
.ls10{letter-spacing:52.213333pt;}
.ls14{letter-spacing:94.346667pt;}
.ws8{word-spacing:-18.956611pt;}
.ws9{word-spacing:-18.176000pt;}
.ws7{word-spacing:-18.005333pt;}
.ws6{word-spacing:-17.984000pt;}
.wsf{word-spacing:-17.962667pt;}
.wse{word-spacing:-17.856000pt;}
.wsd{word-spacing:-17.834667pt;}
.ws1{word-spacing:-16.485333pt;}
.ws2{word-spacing:-16.266667pt;}
.wsc{word-spacing:-15.360000pt;}
.ws3{word-spacing:-15.146667pt;}
.wsa{word-spacing:-15.040000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws4{word-spacing:-14.933333pt;}
.wsb{word-spacing:-14.240000pt;}
.ws5{word-spacing:0.000000pt;}
._1f{margin-left:-94.293333pt;}
._1b{margin-left:-52.133333pt;}
._19{margin-left:-21.200000pt;}
._16{margin-left:-4.864000pt;}
._15{margin-left:-3.968000pt;}
._b{margin-left:-2.293333pt;}
._0{margin-left:-1.066667pt;}
._1{width:1.013333pt;}
._2{width:1.920000pt;}
._8{width:3.093333pt;}
._3{width:4.640000pt;}
._4{width:5.600000pt;}
._7{width:6.880000pt;}
._5{width:7.786667pt;}
._6{width:8.960000pt;}
._9{width:10.346667pt;}
._a{width:11.253333pt;}
._10{width:12.170667pt;}
._d{width:13.546667pt;}
._18{width:14.730667pt;}
._c{width:16.106667pt;}
._14{width:17.024000pt;}
._17{width:18.944000pt;}
._13{width:19.893333pt;}
._12{width:21.162667pt;}
._11{width:22.080000pt;}
._f{width:23.018667pt;}
._e{width:24.000000pt;}
._22{width:26.490667pt;}
._23{width:36.757333pt;}
._1d{width:37.920000pt;}
._1e{width:41.066667pt;}
._1a{width:42.773333pt;}
._1c{width:73.173333pt;}
._26{width:74.560000pt;}
._27{width:78.592355pt;}
._20{width:115.306667pt;}
._21{width:116.640000pt;}
._25{width:121.227864pt;}
._24{width:122.509628pt;}
._29{width:163.456000pt;}
._28{width:172.768258pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:56.217707pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.466667pt;}
.y2{bottom:3.733333pt;}
.y5{bottom:22.666667pt;}
.y4{bottom:41.733333pt;}
.y3{bottom:60.800000pt;}
.y11{bottom:67.766667pt;}
.y10{bottom:84.833333pt;}
.yf{bottom:103.233333pt;}
.y7e{bottom:104.833333pt;}
.y5d{bottom:108.566667pt;}
.ybd{bottom:115.500000pt;}
.ye{bottom:122.433333pt;}
.ya9{bottom:127.766667pt;}
.y7d{bottom:127.900000pt;}
.ybc{bottom:138.573333pt;}
.yd{bottom:141.493333pt;}
.y5c{bottom:146.826667pt;}
.y7c{bottom:150.840000pt;}
.yc{bottom:160.706667pt;}
.ybb{bottom:161.493333pt;}
.y5b{bottom:161.773333pt;}
.y7b{bottom:173.773333pt;}
.yb{bottom:179.773333pt;}
.yba{bottom:184.440000pt;}
.y99{bottom:185.106667pt;}
.y7a{bottom:196.706667pt;}
.ya{bottom:198.973333pt;}
.yde{bottom:200.960000pt;}
.y98{bottom:204.293333pt;}
.yb9{bottom:207.373333pt;}
.y9{bottom:218.040000pt;}
.y5a{bottom:219.626667pt;}
.ya8{bottom:223.373333pt;}
.ydd{bottom:227.893333pt;}
.yb8{bottom:230.306667pt;}
.y97{bottom:237.226667pt;}
.yc0{bottom:240.973333pt;}
.y79{bottom:242.560000pt;}
.ydc{bottom:250.840000pt;}
.y8{bottom:252.440000pt;}
.y59{bottom:253.240000pt;}
.y96{bottom:256.306667pt;}
.ya7{bottom:261.626667pt;}
.yb7{bottom:263.893333pt;}
.y78{bottom:265.506667pt;}
.ydb{bottom:273.906667pt;}
.ybf{bottom:274.573333pt;}
.y95{bottom:275.506667pt;}
.y58{bottom:276.173333pt;}
.y94{bottom:280.840000pt;}
.y34{bottom:283.106667pt;}
.yb6{bottom:286.840000pt;}
.y77{bottom:288.573333pt;}
.ya6{bottom:294.573333pt;}
.y93{bottom:295.640000pt;}
.yda{bottom:296.840000pt;}
.ybe{bottom:297.506667pt;}
.y57{bottom:299.240000pt;}
.y33{bottom:302.173333pt;}
.y76{bottom:311.506667pt;}
.ya5{bottom:313.640000pt;}
.yb5{bottom:320.560000pt;}
.y32{bottom:321.373333pt;}
.y56{bottom:322.173333pt;}
.yd9{bottom:323.773333pt;}
.y92{bottom:328.840000pt;}
.ya4{bottom:333.906667pt;}
.y75{bottom:334.440000pt;}
.y31{bottom:340.466667pt;}
.yb4{bottom:343.533333pt;}
.y55{bottom:345.133333pt;}
.yd8{bottom:346.733333pt;}
.y74{bottom:357.400000pt;}
.y30{bottom:359.666667pt;}
.yb3{bottom:366.466667pt;}
.y54{bottom:368.066667pt;}
.yd7{bottom:369.666667pt;}
.y2f{bottom:378.733333pt;}
.y73{bottom:380.333333pt;}
.yb2{bottom:389.400000pt;}
.y53{bottom:391.000000pt;}
.yd6{bottom:392.600000pt;}
.y91{bottom:397.666667pt;}
.y2e{bottom:397.800000pt;}
.yb1{bottom:412.333333pt;}
.y52{bottom:413.933333pt;}
.y2d{bottom:417.000000pt;}
.yd5{bottom:419.533333pt;}
.yb0{bottom:435.266667pt;}
.y2c{bottom:436.066667pt;}
.y51{bottom:436.866667pt;}
.yd4{bottom:442.600000pt;}
.y2b{bottom:455.266667pt;}
.yaf{bottom:458.200000pt;}
.y50{bottom:459.933333pt;}
.yd3{bottom:465.533333pt;}
.y72{bottom:470.600000pt;}
.y2a{bottom:474.333333pt;}
.yae{bottom:481.266667pt;}
.y4f{bottom:482.866667pt;}
.yd2{bottom:488.466667pt;}
.y29{bottom:493.533333pt;}
.yad{bottom:504.200000pt;}
.y4e{bottom:505.800000pt;}
.y28{bottom:512.600000pt;}
.yd1{bottom:515.400000pt;}
.y71{bottom:516.466667pt;}
.yac{bottom:527.133333pt;}
.y4c{bottom:528.733333pt;}
.y27{bottom:531.800000pt;}
.y4d{bottom:535.400000pt;}
.yd0{bottom:538.333333pt;}
.y70{bottom:539.400000pt;}
.yab{bottom:550.066667pt;}
.y26{bottom:550.866667pt;}
.y4b{bottom:551.666667pt;}
.ycf{bottom:561.266667pt;}
.y6f{bottom:562.333333pt;}
.y25{bottom:570.066667pt;}
.yaa{bottom:573.000000pt;}
.y49{bottom:574.600000pt;}
.y4a{bottom:581.266667pt;}
.yce{bottom:584.200000pt;}
.y6e{bottom:585.266667pt;}
.y24{bottom:589.133333pt;}
.ya3{bottom:595.933333pt;}
.y48{bottom:597.533333pt;}
.y6d{bottom:608.200000pt;}
.y23{bottom:608.333333pt;}
.ycd{bottom:611.266667pt;}
.ya2{bottom:618.866667pt;}
.y47{bottom:620.600000pt;}
.y22{bottom:627.400000pt;}
.y6c{bottom:631.266667pt;}
.ycc{bottom:634.200000pt;}
.ya1{bottom:641.933333pt;}
.y46{bottom:643.533333pt;}
.y21{bottom:646.466667pt;}
.y6b{bottom:654.200000pt;}
.ycb{bottom:657.173333pt;}
.y90{bottom:664.906667pt;}
.y20{bottom:665.706667pt;}
.y45{bottom:666.506667pt;}
.y6a{bottom:677.173333pt;}
.yca{bottom:684.106667pt;}
.y1f{bottom:684.773333pt;}
.y8f{bottom:687.840000pt;}
.y44{bottom:689.440000pt;}
.ya0{bottom:694.506667pt;}
.y69{bottom:700.106667pt;}
.y1e{bottom:704.240000pt;}
.yc9{bottom:707.040000pt;}
.y8d{bottom:710.773333pt;}
.y43{bottom:712.373333pt;}
.y8e{bottom:717.440000pt;}
.y68{bottom:723.040000pt;}
.y1d{bottom:725.293333pt;}
.yc8{bottom:729.960000pt;}
.y8b{bottom:733.706667pt;}
.y8c{bottom:740.373333pt;}
.y42{bottom:745.960000pt;}
.y1c{bottom:746.373333pt;}
.y8a{bottom:756.640000pt;}
.yc7{bottom:757.040000pt;}
.y1b{bottom:767.440000pt;}
.y41{bottom:769.040000pt;}
.y89{bottom:779.706667pt;}
.yc6{bottom:779.973333pt;}
.y1a{bottom:788.506667pt;}
.y67{bottom:791.973333pt;}
.y40{bottom:801.973333pt;}
.y88{bottom:802.640000pt;}
.yc5{bottom:802.906667pt;}
.y19{bottom:809.440000pt;}
.y66{bottom:814.906667pt;}
.y3f{bottom:821.040000pt;}
.y87{bottom:825.573333pt;}
.yc4{bottom:829.840000pt;}
.y18{bottom:830.506667pt;}
.y9f{bottom:832.240000pt;}
.y65{bottom:837.840000pt;}
.y3e{bottom:840.240000pt;}
.y86{bottom:848.506667pt;}
.y17{bottom:851.173333pt;}
.yc3{bottom:852.773333pt;}
.y9e{bottom:855.173333pt;}
.y3d{bottom:859.306667pt;}
.y64{bottom:860.773333pt;}
.y16{bottom:871.040000pt;}
.y85{bottom:871.440000pt;}
.y9d{bottom:878.106667pt;}
.y3c{bottom:878.506667pt;}
.yc2{bottom:879.706667pt;}
.y63{bottom:883.706667pt;}
.y15{bottom:893.973333pt;}
.y84{bottom:894.373333pt;}
.y3b{bottom:897.573333pt;}
.yc1{bottom:902.640000pt;}
.y62{bottom:906.640000pt;}
.y3a{bottom:916.773333pt;}
.y82{bottom:917.306667pt;}
.y14{bottom:917.573333pt;}
.y83{bottom:923.973333pt;}
.y61{bottom:929.706667pt;}
.y39{bottom:935.840000pt;}
.y81{bottom:940.373333pt;}
.y13{bottom:944.373333pt;}
.y9c{bottom:947.040000pt;}
.y60{bottom:952.640000pt;}
.y38{bottom:955.040000pt;}
.y80{bottom:963.306667pt;}
.y9b{bottom:969.973333pt;}
.y12{bottom:970.106667pt;}
.y37{bottom:974.133333pt;}
.y5f{bottom:975.600000pt;}
.y7f{bottom:986.266667pt;}
.y7{bottom:992.000000pt;}
.y36{bottom:993.333333pt;}
.y1{bottom:1008.266667pt;}
.y5e{bottom:1009.200000pt;}
.y35{bottom:1012.400000pt;}
.y9a{bottom:1015.866667pt;}
.hc{height:34.484375pt;}
.h6{height:38.828125pt;}
.hb{height:40.231771pt;}
.h5{height:51.726562pt;}
.h4{height:55.468750pt;}
.h3{height:57.473958pt;}
.ha{height:60.582266pt;}
.h7{height:63.221354pt;}
.h9{height:68.968750pt;}
.hd{height:72.698719pt;}
.h2{height:76.400000pt;}
.h8{height:80.463542pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.w4{width:293.093333pt;}
.w2{width:295.000000pt;}
.w6{width:793.733310pt;}
.w5{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x8{left:93.066655pt;}
.x1{left:94.533333pt;}
.xc{left:98.933322pt;}
.x2d{left:102.533322pt;}
.x18{left:133.233322pt;}
.x9{left:142.559988pt;}
.x14{left:145.626655pt;}
.x10{left:149.106643pt;}
.x1e{left:150.426655pt;}
.x11{left:153.759988pt;}
.x2{left:157.240000pt;}
.xe{left:162.573310pt;}
.xf{left:167.239988pt;}
.x26{left:170.293310pt;}
.x27{left:179.639988pt;}
.x1b{left:181.106643pt;}
.x23{left:182.306643pt;}
.x15{left:185.773322pt;}
.x24{left:187.773322pt;}
.x29{left:189.639976pt;}
.xd{left:192.439988pt;}
.x3b{left:196.693322pt;}
.x2a{left:199.626655pt;}
.x25{left:202.573322pt;}
.x16{left:205.506655pt;}
.x2b{left:225.359976pt;}
.x38{left:227.773322pt;}
.x1f{left:228.693310pt;}
.x36{left:231.359988pt;}
.x20{left:233.359988pt;}
.x2c{left:234.693322pt;}
.x41{left:244.693322pt;}
.x40{left:272.839988pt;}
.x49{left:284.973322pt;}
.x12{left:286.573322pt;}
.x35{left:290.559988pt;}
.x28{left:295.373322pt;}
.x21{left:322.839976pt;}
.x22{left:328.693322pt;}
.x3c{left:343.799988pt;}
.x32{left:366.866655pt;}
.x1c{left:370.199976pt;}
.x1d{left:374.866655pt;}
.x3{left:389.533333pt;}
.x7{left:396.866655pt;}
.x3a{left:398.999988pt;}
.x33{left:424.199988pt;}
.x5{left:434.733333pt;}
.x30{left:462.733322pt;}
.x46{left:464.999988pt;}
.x2e{left:487.399988pt;}
.x47{left:510.466655pt;}
.x31{left:519.133322pt;}
.x39{left:528.333322pt;}
.x3e{left:530.466655pt;}
.x3f{left:537.533322pt;}
.x2f{left:545.399988pt;}
.x37{left:559.399988pt;}
.x48{left:562.599988pt;}
.xa{left:577.439988pt;}
.x3d{left:585.426655pt;}
.x43{left:629.573322pt;}
.x17{left:633.026655pt;}
.x44{left:634.359988pt;}
.x13{left:646.106655pt;}
.x45{left:648.226655pt;}
.x34{left:649.306655pt;}
.x19{left:655.306643pt;}
.x1a{left:659.973322pt;}
.xb{left:668.373322pt;}
.x6{left:690.773322pt;}
.x42{left:695.173322pt;}
}




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