
    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_00004713108eb00aa62cdb27.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_326c1c27ca0e722e0c80be6f.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_7ec0a1631eaec31c404293c1.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_cacb096fffcfe7feee82508d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_81ecb96e164225c25b822628.woff')format("woff");}.ff5{font-family:ff5;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;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls17{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls12{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.ls10{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.600000px;}
.ls14{letter-spacing:2.940000px;}
.ls15{letter-spacing:3.000000px;}
.ls11{letter-spacing:27.660000px;}
.ls13{letter-spacing:93.120000px;}
.lsf{letter-spacing:123.120000px;}
.lse{letter-spacing:126.720000px;}
.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;}
}
.wsb{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.880000px;}
.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;}
._1d{margin-left:-4.392000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._5{width:2.148000px;}
._2a{width:3.150000px;}
._14{width:4.164000px;}
._1c{width:5.202000px;}
._12{width:6.264000px;}
._13{width:7.704000px;}
._19{width:9.054000px;}
._4{width:10.518000px;}
._6{width:12.216000px;}
._7{width:13.224000px;}
._8{width:15.078000px;}
._9{width:16.548000px;}
._25{width:19.728000px;}
._23{width:20.982000px;}
._15{width:22.104000px;}
._16{width:23.112000px;}
._1b{width:24.264000px;}
._24{width:26.064000px;}
._18{width:27.072000px;}
._17{width:28.080000px;}
._10{width:29.808000px;}
._11{width:30.816000px;}
._1a{width:32.112000px;}
._d{width:33.120000px;}
._e{width:34.158000px;}
._1f{width:35.208000px;}
._a{width:36.432000px;}
._20{width:38.376000px;}
._1e{width:39.672000px;}
._21{width:40.680000px;}
._f{width:41.760000px;}
._22{width:43.056000px;}
._2b{width:45.792000px;}
._2c{width:46.872000px;}
._b{width:51.552000px;}
._c{width:52.560000px;}
._29{width:53.712000px;}
._26{width:54.792000px;}
._30{width:56.460000px;}
._27{width:57.816000px;}
._28{width:58.824000px;}
._2d{width:64.080000px;}
._2e{width:65.448000px;}
._31{width:67.536000px;}
._32{width:69.336000px;}
._2f{width:83.940000px;}
.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;}
.y19{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.y94{bottom:5.850000px;}
.y98{bottom:5.865000px;}
.yb{bottom:6.000000px;}
.y92{bottom:6.600000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y18{bottom:24.600000px;}
.y97{bottom:25.665000px;}
.y95{bottom:25.800000px;}
.y91{bottom:26.550000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y17{bottom:45.300000px;}
.y90{bottom:46.350000px;}
.y3{bottom:57.637500px;}
.y16{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y15{bottom:86.700000px;}
.y8e{bottom:107.437500px;}
.y85{bottom:116.437500px;}
.yea{bottom:121.237500px;}
.yb7{bottom:122.887500px;}
.y65{bottom:126.637500px;}
.y3a{bottom:127.237500px;}
.y8d{bottom:131.287500px;}
.y84{bottom:140.137500px;}
.ye9{bottom:144.937500px;}
.yb6{bottom:146.737500px;}
.y64{bottom:150.495000px;}
.y39{bottom:150.930000px;}
.y8c{bottom:154.995000px;}
.y83{bottom:163.995000px;}
.ye8{bottom:165.045000px;}
.yb5{bottom:170.595000px;}
.y63{bottom:174.345000px;}
.y38{bottom:174.795000px;}
.y8b{bottom:178.830000px;}
.ye7{bottom:182.295000px;}
.y82{bottom:187.845000px;}
.yb4{bottom:194.445000px;}
.y62{bottom:198.195000px;}
.y37{bottom:198.630000px;}
.ye6{bottom:199.545000px;}
.y8a{bottom:202.695000px;}
.y81{bottom:211.545000px;}
.ye5{bottom:216.795000px;}
.yb3{bottom:218.145000px;}
.y61{bottom:221.895000px;}
.y36{bottom:222.495000px;}
.y89{bottom:226.380000px;}
.ye4{bottom:234.045000px;}
.y80{bottom:235.395000px;}
.yb2{bottom:241.995000px;}
.y60{bottom:245.745000px;}
.y35{bottom:246.195000px;}
.ye3{bottom:251.295000px;}
.y7f{bottom:259.245000px;}
.yb1{bottom:265.845000px;}
.ye2{bottom:268.545000px;}
.y5f{bottom:269.595000px;}
.y34{bottom:270.045000px;}
.y7e{bottom:282.945000px;}
.ye1{bottom:285.795000px;}
.yb0{bottom:289.545000px;}
.y5e{bottom:293.295000px;}
.y33{bottom:293.880000px;}
.ye0{bottom:303.045000px;}
.y7d{bottom:306.795000px;}
.yaf{bottom:313.380000px;}
.y5d{bottom:317.130000px;}
.y32{bottom:317.580000px;}
.ydf{bottom:320.295000px;}
.y7c{bottom:330.630000px;}
.yae{bottom:337.245000px;}
.yde{bottom:337.545000px;}
.y5c{bottom:340.995000px;}
.y31{bottom:341.445000px;}
.y7b{bottom:354.495000px;}
.ydd{bottom:354.795000px;}
.yad{bottom:360.945000px;}
.y5b{bottom:364.695000px;}
.y30{bottom:365.295000px;}
.ydc{bottom:372.045000px;}
.y7a{bottom:378.195000px;}
.yac{bottom:384.825000px;}
.y5a{bottom:388.575000px;}
.y2f{bottom:389.025000px;}
.ydb{bottom:389.325000px;}
.y79{bottom:402.075000px;}
.yda{bottom:406.575000px;}
.yab{bottom:408.675000px;}
.y59{bottom:412.425000px;}
.y2e{bottom:412.875000px;}
.yd9{bottom:423.825000px;}
.y78{bottom:425.925000px;}
.yaa{bottom:432.375000px;}
.y58{bottom:436.125000px;}
.y2d{bottom:436.725000px;}
.yd8{bottom:441.075000px;}
.y77{bottom:449.625000px;}
.ya9{bottom:456.225000px;}
.yd7{bottom:458.325000px;}
.y57{bottom:459.975000px;}
.y2c{bottom:460.425000px;}
.y76{bottom:473.475000px;}
.yd6{bottom:475.575000px;}
.ya8{bottom:480.075000px;}
.y56{bottom:483.825000px;}
.y2b{bottom:484.275000px;}
.yd5{bottom:492.825000px;}
.y75{bottom:497.325000px;}
.ya7{bottom:503.775000px;}
.y55{bottom:507.525000px;}
.y2a{bottom:508.125000px;}
.yd4{bottom:510.075000px;}
.y74{bottom:521.025000px;}
.yd3{bottom:527.325000px;}
.ya6{bottom:527.625000px;}
.y54{bottom:531.375000px;}
.y29{bottom:531.825000px;}
.y88{bottom:534.975000px;}
.yd2{bottom:544.575000px;}
.y73{bottom:544.875000px;}
.ya5{bottom:551.475000px;}
.y53{bottom:555.225000px;}
.y28{bottom:555.675000px;}
.y87{bottom:558.675000px;}
.yd1{bottom:561.825000px;}
.y72{bottom:568.725000px;}
.ya4{bottom:575.325000px;}
.y86{bottom:578.625000px;}
.y52{bottom:579.075000px;}
.y27{bottom:579.525000px;}
.y71{bottom:592.425000px;}
.yd0{bottom:596.325000px;}
.ya3{bottom:599.025000px;}
.y51{bottom:602.775000px;}
.y26{bottom:603.225000px;}
.ycf{bottom:613.575000px;}
.y70{bottom:616.275000px;}
.ya2{bottom:622.875000px;}
.y50{bottom:626.625000px;}
.y25{bottom:627.075000px;}
.yce{bottom:630.825000px;}
.y6f{bottom:640.125000px;}
.ya1{bottom:646.725000px;}
.ycd{bottom:648.075000px;}
.y4f{bottom:650.475000px;}
.y24{bottom:650.925000px;}
.y6e{bottom:663.825000px;}
.ycc{bottom:665.325000px;}
.ya0{bottom:670.425000px;}
.y4e{bottom:674.175000px;}
.y23{bottom:674.775000px;}
.ycb{bottom:682.575000px;}
.y6d{bottom:687.675000px;}
.y9f{bottom:694.275000px;}
.y4d{bottom:698.025000px;}
.y22{bottom:698.475000px;}
.yca{bottom:699.825000px;}
.y6c{bottom:711.525000px;}
.yc9{bottom:717.075000px;}
.y9e{bottom:718.125000px;}
.y4c{bottom:721.875000px;}
.y21{bottom:722.325000px;}
.yc8{bottom:734.325000px;}
.y6b{bottom:735.225000px;}
.y9d{bottom:741.870000px;}
.y4b{bottom:745.620000px;}
.y20{bottom:746.220000px;}
.yc7{bottom:751.620000px;}
.y6a{bottom:759.120000px;}
.y9c{bottom:765.720000px;}
.yc6{bottom:768.870000px;}
.y4a{bottom:769.470000px;}
.y1f{bottom:769.920000px;}
.y69{bottom:782.970000px;}
.yc5{bottom:786.120000px;}
.y9b{bottom:789.570000px;}
.y49{bottom:793.320000px;}
.y1e{bottom:793.770000px;}
.yc4{bottom:803.370000px;}
.y68{bottom:806.820000px;}
.y9a{bottom:813.270000px;}
.y48{bottom:817.020000px;}
.y1d{bottom:817.620000px;}
.yc3{bottom:820.620000px;}
.y67{bottom:830.520000px;}
.y99{bottom:830.820000px;}
.yc2{bottom:837.870000px;}
.y47{bottom:840.870000px;}
.y1c{bottom:850.320000px;}
.y66{bottom:850.470000px;}
.y96{bottom:851.505000px;}
.yc1{bottom:855.120000px;}
.y46{bottom:864.720000px;}
.y1b{bottom:867.120000px;}
.yc0{bottom:872.370000px;}
.y45{bottom:888.420000px;}
.ybf{bottom:889.620000px;}
.y8f{bottom:891.870000px;}
.ybe{bottom:906.870000px;}
.y1a{bottom:908.520000px;}
.y44{bottom:912.270000px;}
.ybd{bottom:924.120000px;}
.y14{bottom:929.220000px;}
.y93{bottom:932.370000px;}
.y43{bottom:936.120000px;}
.ybc{bottom:941.370000px;}
.ybb{bottom:958.620000px;}
.y42{bottom:959.970000px;}
.yba{bottom:975.870000px;}
.y41{bottom:983.670000px;}
.yb9{bottom:993.120000px;}
.y40{bottom:1007.520000px;}
.yb8{bottom:1010.370000px;}
.y3f{bottom:1031.370000px;}
.y13{bottom:1036.320000px;}
.y3e{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y3d{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3c{bottom:1102.800000px;}
.yf{bottom:1117.650000px;}
.y3b{bottom:1126.500000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h12{height:19.800000px;}
.h15{height:19.950000px;}
.he{height:20.700000px;}
.h14{height:39.600000px;}
.h13{height:39.750000px;}
.hf{height:41.400000px;}
.h17{height:42.070312px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h10{height:60.300000px;}
.h11{height:60.468750px;}
.h16{height:61.670545px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h2{height:82.441406px;}
.hd{height:103.485000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.we{width:53.100000px;}
.wc{width:67.350000px;}
.wb{width:87.750000px;}
.w9{width:90.187500px;}
.wd{width:90.487500px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.wa{width:300.930000px;}
.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;}
.x18{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x19{left:95.699987px;}
.x17{left:100.200000px;}
.x16{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x1e{left:134.287500px;}
.x10{left:147.787487px;}
.x1f{left:222.795000px;}
.x20{left:290.895000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x21{left:382.125000px;}
.x1a{left:457.274987px;}
.x22{left:464.174987px;}
.x13{left:504.224987px;}
.x1b{left:510.374987px;}
.xc{left:625.425000px;}
.x14{left:650.669987px;}
.x11{left:660.569987px;}
.x12{left:671.654987px;}
.xf{left:713.655000px;}
.x2{left:819.119987px;}
.x1c{left:833.669987px;}
.x15{left:850.619987px;}
.x1d{left:856.754987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls17{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls12{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls10{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.533333pt;}
.ls14{letter-spacing:2.613333pt;}
.ls15{letter-spacing:2.666667pt;}
.ls11{letter-spacing:24.586667pt;}
.ls13{letter-spacing:82.773333pt;}
.lsf{letter-spacing:109.440000pt;}
.lse{letter-spacing:112.640000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.226667pt;}
.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;}
._1d{margin-left:-3.904000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._5{width:1.909333pt;}
._2a{width:2.800000pt;}
._14{width:3.701333pt;}
._1c{width:4.624000pt;}
._12{width:5.568000pt;}
._13{width:6.848000pt;}
._19{width:8.048000pt;}
._4{width:9.349333pt;}
._6{width:10.858667pt;}
._7{width:11.754667pt;}
._8{width:13.402667pt;}
._9{width:14.709333pt;}
._25{width:17.536000pt;}
._23{width:18.650667pt;}
._15{width:19.648000pt;}
._16{width:20.544000pt;}
._1b{width:21.568000pt;}
._24{width:23.168000pt;}
._18{width:24.064000pt;}
._17{width:24.960000pt;}
._10{width:26.496000pt;}
._11{width:27.392000pt;}
._1a{width:28.544000pt;}
._d{width:29.440000pt;}
._e{width:30.362667pt;}
._1f{width:31.296000pt;}
._a{width:32.384000pt;}
._20{width:34.112000pt;}
._1e{width:35.264000pt;}
._21{width:36.160000pt;}
._f{width:37.120000pt;}
._22{width:38.272000pt;}
._2b{width:40.704000pt;}
._2c{width:41.664000pt;}
._b{width:45.824000pt;}
._c{width:46.720000pt;}
._29{width:47.744000pt;}
._26{width:48.704000pt;}
._30{width:50.186667pt;}
._27{width:51.392000pt;}
._28{width:52.288000pt;}
._2d{width:56.960000pt;}
._2e{width:58.176000pt;}
._31{width:60.032000pt;}
._32{width:61.632000pt;}
._2f{width:74.613333pt;}
.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;}
.y19{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.y94{bottom:5.200000pt;}
.y98{bottom:5.213333pt;}
.yb{bottom:5.333333pt;}
.y92{bottom:5.866667pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y18{bottom:21.866667pt;}
.y97{bottom:22.813333pt;}
.y95{bottom:22.933333pt;}
.y91{bottom:23.600000pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y17{bottom:40.266667pt;}
.y90{bottom:41.200000pt;}
.y3{bottom:51.233333pt;}
.y16{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y15{bottom:77.066667pt;}
.y8e{bottom:95.500000pt;}
.y85{bottom:103.500000pt;}
.yea{bottom:107.766667pt;}
.yb7{bottom:109.233333pt;}
.y65{bottom:112.566667pt;}
.y3a{bottom:113.100000pt;}
.y8d{bottom:116.700000pt;}
.y84{bottom:124.566667pt;}
.ye9{bottom:128.833333pt;}
.yb6{bottom:130.433333pt;}
.y64{bottom:133.773333pt;}
.y39{bottom:134.160000pt;}
.y8c{bottom:137.773333pt;}
.y83{bottom:145.773333pt;}
.ye8{bottom:146.706667pt;}
.yb5{bottom:151.640000pt;}
.y63{bottom:154.973333pt;}
.y38{bottom:155.373333pt;}
.y8b{bottom:158.960000pt;}
.ye7{bottom:162.040000pt;}
.y82{bottom:166.973333pt;}
.yb4{bottom:172.840000pt;}
.y62{bottom:176.173333pt;}
.y37{bottom:176.560000pt;}
.ye6{bottom:177.373333pt;}
.y8a{bottom:180.173333pt;}
.y81{bottom:188.040000pt;}
.ye5{bottom:192.706667pt;}
.yb3{bottom:193.906667pt;}
.y61{bottom:197.240000pt;}
.y36{bottom:197.773333pt;}
.y89{bottom:201.226667pt;}
.ye4{bottom:208.040000pt;}
.y80{bottom:209.240000pt;}
.yb2{bottom:215.106667pt;}
.y60{bottom:218.440000pt;}
.y35{bottom:218.840000pt;}
.ye3{bottom:223.373333pt;}
.y7f{bottom:230.440000pt;}
.yb1{bottom:236.306667pt;}
.ye2{bottom:238.706667pt;}
.y5f{bottom:239.640000pt;}
.y34{bottom:240.040000pt;}
.y7e{bottom:251.506667pt;}
.ye1{bottom:254.040000pt;}
.yb0{bottom:257.373333pt;}
.y5e{bottom:260.706667pt;}
.y33{bottom:261.226667pt;}
.ye0{bottom:269.373333pt;}
.y7d{bottom:272.706667pt;}
.yaf{bottom:278.560000pt;}
.y5d{bottom:281.893333pt;}
.y32{bottom:282.293333pt;}
.ydf{bottom:284.706667pt;}
.y7c{bottom:293.893333pt;}
.yae{bottom:299.773333pt;}
.yde{bottom:300.040000pt;}
.y5c{bottom:303.106667pt;}
.y31{bottom:303.506667pt;}
.y7b{bottom:315.106667pt;}
.ydd{bottom:315.373333pt;}
.yad{bottom:320.840000pt;}
.y5b{bottom:324.173333pt;}
.y30{bottom:324.706667pt;}
.ydc{bottom:330.706667pt;}
.y7a{bottom:336.173333pt;}
.yac{bottom:342.066667pt;}
.y5a{bottom:345.400000pt;}
.y2f{bottom:345.800000pt;}
.ydb{bottom:346.066667pt;}
.y79{bottom:357.400000pt;}
.yda{bottom:361.400000pt;}
.yab{bottom:363.266667pt;}
.y59{bottom:366.600000pt;}
.y2e{bottom:367.000000pt;}
.yd9{bottom:376.733333pt;}
.y78{bottom:378.600000pt;}
.yaa{bottom:384.333333pt;}
.y58{bottom:387.666667pt;}
.y2d{bottom:388.200000pt;}
.yd8{bottom:392.066667pt;}
.y77{bottom:399.666667pt;}
.ya9{bottom:405.533333pt;}
.yd7{bottom:407.400000pt;}
.y57{bottom:408.866667pt;}
.y2c{bottom:409.266667pt;}
.y76{bottom:420.866667pt;}
.yd6{bottom:422.733333pt;}
.ya8{bottom:426.733333pt;}
.y56{bottom:430.066667pt;}
.y2b{bottom:430.466667pt;}
.yd5{bottom:438.066667pt;}
.y75{bottom:442.066667pt;}
.ya7{bottom:447.800000pt;}
.y55{bottom:451.133333pt;}
.y2a{bottom:451.666667pt;}
.yd4{bottom:453.400000pt;}
.y74{bottom:463.133333pt;}
.yd3{bottom:468.733333pt;}
.ya6{bottom:469.000000pt;}
.y54{bottom:472.333333pt;}
.y29{bottom:472.733333pt;}
.y88{bottom:475.533333pt;}
.yd2{bottom:484.066667pt;}
.y73{bottom:484.333333pt;}
.ya5{bottom:490.200000pt;}
.y53{bottom:493.533333pt;}
.y28{bottom:493.933333pt;}
.y87{bottom:496.600000pt;}
.yd1{bottom:499.400000pt;}
.y72{bottom:505.533333pt;}
.ya4{bottom:511.400000pt;}
.y86{bottom:514.333333pt;}
.y52{bottom:514.733333pt;}
.y27{bottom:515.133333pt;}
.y71{bottom:526.600000pt;}
.yd0{bottom:530.066667pt;}
.ya3{bottom:532.466667pt;}
.y51{bottom:535.800000pt;}
.y26{bottom:536.200000pt;}
.ycf{bottom:545.400000pt;}
.y70{bottom:547.800000pt;}
.ya2{bottom:553.666667pt;}
.y50{bottom:557.000000pt;}
.y25{bottom:557.400000pt;}
.yce{bottom:560.733333pt;}
.y6f{bottom:569.000000pt;}
.ya1{bottom:574.866667pt;}
.ycd{bottom:576.066667pt;}
.y4f{bottom:578.200000pt;}
.y24{bottom:578.600000pt;}
.y6e{bottom:590.066667pt;}
.ycc{bottom:591.400000pt;}
.ya0{bottom:595.933333pt;}
.y4e{bottom:599.266667pt;}
.y23{bottom:599.800000pt;}
.ycb{bottom:606.733333pt;}
.y6d{bottom:611.266667pt;}
.y9f{bottom:617.133333pt;}
.y4d{bottom:620.466667pt;}
.y22{bottom:620.866667pt;}
.yca{bottom:622.066667pt;}
.y6c{bottom:632.466667pt;}
.yc9{bottom:637.400000pt;}
.y9e{bottom:638.333333pt;}
.y4c{bottom:641.666667pt;}
.y21{bottom:642.066667pt;}
.yc8{bottom:652.733333pt;}
.y6b{bottom:653.533333pt;}
.y9d{bottom:659.440000pt;}
.y4b{bottom:662.773333pt;}
.y20{bottom:663.306667pt;}
.yc7{bottom:668.106667pt;}
.y6a{bottom:674.773333pt;}
.y9c{bottom:680.640000pt;}
.yc6{bottom:683.440000pt;}
.y4a{bottom:683.973333pt;}
.y1f{bottom:684.373333pt;}
.y69{bottom:695.973333pt;}
.yc5{bottom:698.773333pt;}
.y9b{bottom:701.840000pt;}
.y49{bottom:705.173333pt;}
.y1e{bottom:705.573333pt;}
.yc4{bottom:714.106667pt;}
.y68{bottom:717.173333pt;}
.y9a{bottom:722.906667pt;}
.y48{bottom:726.240000pt;}
.y1d{bottom:726.773333pt;}
.yc3{bottom:729.440000pt;}
.y67{bottom:738.240000pt;}
.y99{bottom:738.506667pt;}
.yc2{bottom:744.773333pt;}
.y47{bottom:747.440000pt;}
.y1c{bottom:755.840000pt;}
.y66{bottom:755.973333pt;}
.y96{bottom:756.893333pt;}
.yc1{bottom:760.106667pt;}
.y46{bottom:768.640000pt;}
.y1b{bottom:770.773333pt;}
.yc0{bottom:775.440000pt;}
.y45{bottom:789.706667pt;}
.ybf{bottom:790.773333pt;}
.y8f{bottom:792.773333pt;}
.ybe{bottom:806.106667pt;}
.y1a{bottom:807.573333pt;}
.y44{bottom:810.906667pt;}
.ybd{bottom:821.440000pt;}
.y14{bottom:825.973333pt;}
.y93{bottom:828.773333pt;}
.y43{bottom:832.106667pt;}
.ybc{bottom:836.773333pt;}
.ybb{bottom:852.106667pt;}
.y42{bottom:853.306667pt;}
.yba{bottom:867.440000pt;}
.y41{bottom:874.373333pt;}
.yb9{bottom:882.773333pt;}
.y40{bottom:895.573333pt;}
.yb8{bottom:898.106667pt;}
.y3f{bottom:916.773333pt;}
.y13{bottom:921.173333pt;}
.y3e{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y3d{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3c{bottom:980.266667pt;}
.yf{bottom:993.466667pt;}
.y3b{bottom:1001.333333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h12{height:17.600000pt;}
.h15{height:17.733333pt;}
.he{height:18.400000pt;}
.h14{height:35.200000pt;}
.h13{height:35.333333pt;}
.hf{height:36.800000pt;}
.h17{height:37.395833pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h10{height:53.600000pt;}
.h11{height:53.750000pt;}
.h16{height:54.818262pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h2{height:73.281250pt;}
.hd{height:91.986667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.we{width:47.200000pt;}
.wc{width:59.866667pt;}
.wb{width:78.000000pt;}
.w9{width:80.166667pt;}
.wd{width:80.433333pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.wa{width:267.493333pt;}
.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;}
.x18{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x19{left:85.066655pt;}
.x17{left:89.066667pt;}
.x16{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x1e{left:119.366667pt;}
.x10{left:131.366655pt;}
.x1f{left:198.040000pt;}
.x20{left:258.573333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x21{left:339.666667pt;}
.x1a{left:406.466655pt;}
.x22{left:412.599988pt;}
.x13{left:448.199988pt;}
.x1b{left:453.666655pt;}
.xc{left:555.933333pt;}
.x14{left:578.373322pt;}
.x11{left:587.173322pt;}
.x12{left:597.026655pt;}
.xf{left:634.360000pt;}
.x2{left:728.106655pt;}
.x1c{left:741.039988pt;}
.x15{left:756.106655pt;}
.x1d{left:761.559988pt;}
}




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