
    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_f97d524b0901d13efff7a43a.woff2')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_b1dbae037d4668af066fef69.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4fcf8e33b9042a5063fc9ae1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_52c2d0814432dcfebee291a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9b76caf9d7bcece62a5ccf55.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5eec713ffceedede60c9410.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fac889de72474230af918125.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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;}
.ls6{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.513600px;}
.ls3{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.828000px;}
.ls9{letter-spacing:2.340000px;}
.lsd{letter-spacing:2.460000px;}
.ls8{letter-spacing:3.060000px;}
.lse{letter-spacing:11.700000px;}
.lsb{letter-spacing:13.860000px;}
.lsc{letter-spacing:14.580000px;}
.lsf{letter-spacing:23.940000px;}
.ls0{letter-spacing:33.984000px;}
.ls4{letter-spacing:41.706720px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.568000px;}
.ws4{word-spacing:-16.506480px;}
.ws9{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.426400px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-2.232000px;}
._0{margin-left:-1.080000px;}
._1{width:1.152000px;}
._4{width:2.808000px;}
._10{width:3.829680px;}
._2{width:4.896000px;}
._3{width:6.624000px;}
._9{width:7.776000px;}
._8{width:8.928000px;}
._7{width:9.936000px;}
._c{width:11.880000px;}
._e{width:12.960000px;}
._11{width:14.256000px;}
._f{width:15.264000px;}
._13{width:16.776000px;}
._1c{width:18.585360px;}
._5{width:19.656000px;}
._1f{width:20.736000px;}
._d{width:21.816000px;}
._b{width:23.400000px;}
._12{width:24.480000px;}
._6{width:25.608000px;}
._1b{width:27.024000px;}
._21{width:28.068000px;}
._15{width:29.232000px;}
._16{width:30.528000px;}
._20{width:31.944000px;}
._17{width:34.704000px;}
._14{width:36.144000px;}
._1d{width:38.376000px;}
._1e{width:39.456000px;}
._18{width:46.656000px;}
._19{width:47.820000px;}
._1a{width:48.864000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.060000px;}
.y2{bottom:75.996000px;}
.y2e{bottom:109.836000px;}
.ye4{bottom:124.236000px;}
.y2d{bottom:127.116000px;}
.y5e{bottom:127.836000px;}
.yb9{bottom:130.536000px;}
.y2c{bottom:144.396000px;}
.ye3{bottom:144.936000px;}
.y9a{bottom:146.736000px;}
.y5d{bottom:148.536000px;}
.y2b{bottom:149.616000px;}
.yb8{bottom:151.230000px;}
.y8f{bottom:161.670000px;}
.y2a{bottom:161.850000px;}
.ye2{bottom:165.630000px;}
.y99{bottom:167.430000px;}
.y5c{bottom:169.230000px;}
.yb7{bottom:171.930000px;}
.y8e{bottom:178.950000px;}
.ye1{bottom:186.330000px;}
.y98{bottom:188.130000px;}
.y5b{bottom:189.930000px;}
.yb6{bottom:192.630000px;}
.y8d{bottom:196.230000px;}
.ye0{bottom:207.030000px;}
.y97{bottom:208.830000px;}
.y5a{bottom:210.630000px;}
.y8c{bottom:213.330000px;}
.ydf{bottom:227.730000px;}
.y96{bottom:229.530000px;}
.y8b{bottom:230.610000px;}
.y59{bottom:231.330000px;}
.yb5{bottom:234.030000px;}
.y29{bottom:237.450000px;}
.y8a{bottom:247.890000px;}
.yde{bottom:248.430000px;}
.y95{bottom:250.230000px;}
.y58{bottom:252.030000px;}
.yb4{bottom:254.730000px;}
.y28{bottom:259.950000px;}
.y89{bottom:265.170000px;}
.ydd{bottom:269.130000px;}
.y94{bottom:270.930000px;}
.y57{bottom:272.730000px;}
.yb3{bottom:275.430000px;}
.y27{bottom:282.450000px;}
.ydc{bottom:289.830000px;}
.y93{bottom:291.630000px;}
.y56{bottom:293.430000px;}
.yb2{bottom:296.130000px;}
.y88{bottom:299.550000px;}
.ydb{bottom:310.530000px;}
.y92{bottom:312.330000px;}
.y55{bottom:314.130000px;}
.y87{bottom:316.830000px;}
.y26{bottom:318.450000px;}
.y86{bottom:322.050000px;}
.yda{bottom:331.275000px;}
.y91{bottom:333.075000px;}
.y85{bottom:334.515000px;}
.y54{bottom:334.875000px;}
.yb1{bottom:337.575000px;}
.y25{bottom:340.995000px;}
.yd9{bottom:351.975000px;}
.y90{bottom:353.775000px;}
.y53{bottom:355.575000px;}
.yb0{bottom:358.275000px;}
.y24{bottom:363.495000px;}
.yd8{bottom:372.675000px;}
.y84{bottom:374.475000px;}
.y52{bottom:376.275000px;}
.yaf{bottom:378.975000px;}
.y23{bottom:385.995000px;}
.yd7{bottom:393.375000px;}
.y83{bottom:395.175000px;}
.y51{bottom:396.975000px;}
.yae{bottom:399.675000px;}
.y22{bottom:408.495000px;}
.yd6{bottom:414.075000px;}
.y82{bottom:415.875000px;}
.y50{bottom:417.675000px;}
.yad{bottom:420.375000px;}
.yd5{bottom:434.775000px;}
.y81{bottom:436.575000px;}
.y4f{bottom:438.375000px;}
.yac{bottom:441.075000px;}
.y21{bottom:444.495000px;}
.yd4{bottom:455.475000px;}
.y80{bottom:457.275000px;}
.y4e{bottom:459.075000px;}
.yab{bottom:461.775000px;}
.y20{bottom:466.995000px;}
.yd3{bottom:476.175000px;}
.y7f{bottom:477.975000px;}
.y4d{bottom:479.775000px;}
.yaa{bottom:482.475000px;}
.y1f{bottom:489.495000px;}
.yd2{bottom:496.875000px;}
.y7e{bottom:498.675000px;}
.y4c{bottom:500.475000px;}
.ya9{bottom:503.175000px;}
.y1e{bottom:511.995000px;}
.yd1{bottom:517.575000px;}
.y7d{bottom:519.375000px;}
.y4b{bottom:521.175000px;}
.ya8{bottom:523.875000px;}
.y1d{bottom:534.495000px;}
.yd0{bottom:538.275000px;}
.y7c{bottom:540.075000px;}
.y4a{bottom:541.875000px;}
.ya7{bottom:544.575000px;}
.y1c{bottom:556.995000px;}
.ycf{bottom:558.975000px;}
.y7b{bottom:560.775000px;}
.y49{bottom:562.575000px;}
.ya6{bottom:565.275000px;}
.yce{bottom:579.675000px;}
.y7a{bottom:581.475000px;}
.y48{bottom:583.275000px;}
.ya5{bottom:585.975000px;}
.y1b{bottom:592.995000px;}
.ycd{bottom:600.405000px;}
.y79{bottom:602.205000px;}
.y47{bottom:604.005000px;}
.ya4{bottom:606.705000px;}
.y1a{bottom:615.525000px;}
.ycc{bottom:620.745000px;}
.y78{bottom:622.905000px;}
.y46{bottom:624.705000px;}
.ya3{bottom:627.405000px;}
.y19{bottom:638.025000px;}
.ycb{bottom:641.445000px;}
.y77{bottom:643.605000px;}
.y45{bottom:645.405000px;}
.y18{bottom:660.525000px;}
.ya2{bottom:661.425000px;}
.yca{bottom:662.505000px;}
.y76{bottom:664.305000px;}
.y44{bottom:666.105000px;}
.yc9{bottom:683.205000px;}
.ya1{bottom:683.925000px;}
.y75{bottom:685.005000px;}
.y43{bottom:686.805000px;}
.y17{bottom:696.525000px;}
.yc8{bottom:703.905000px;}
.y74{bottom:705.705000px;}
.ya0{bottom:706.425000px;}
.y42{bottom:707.505000px;}
.yc7{bottom:724.605000px;}
.y73{bottom:726.405000px;}
.y41{bottom:728.205000px;}
.y9f{bottom:728.925000px;}
.y16{bottom:732.525000px;}
.yc6{bottom:745.305000px;}
.y72{bottom:747.105000px;}
.y40{bottom:748.905000px;}
.y9e{bottom:751.425000px;}
.y15{bottom:755.025000px;}
.yc5{bottom:766.005000px;}
.y71{bottom:767.805000px;}
.y3f{bottom:769.605000px;}
.y9d{bottom:773.925000px;}
.y13{bottom:777.525000px;}
.y14{bottom:784.365000px;}
.yc4{bottom:786.705000px;}
.y70{bottom:788.505000px;}
.y3e{bottom:790.305000px;}
.y9c{bottom:796.425000px;}
.y12{bottom:800.025000px;}
.yc3{bottom:807.405000px;}
.y6f{bottom:809.205000px;}
.y3d{bottom:811.005000px;}
.y9b{bottom:818.925000px;}
.y11{bottom:822.525000px;}
.y6d{bottom:829.905000px;}
.y3c{bottom:831.705000px;}
.y6e{bottom:836.745000px;}
.yc2{bottom:841.425000px;}
.y10{bottom:845.025000px;}
.y6c{bottom:850.605000px;}
.y3b{bottom:852.405000px;}
.yc1{bottom:863.970000px;}
.yf{bottom:867.570000px;}
.y6b{bottom:871.350000px;}
.y3a{bottom:873.150000px;}
.yc0{bottom:886.470000px;}
.ye{bottom:890.070000px;}
.y6a{bottom:892.050000px;}
.y39{bottom:893.850000px;}
.ybf{bottom:908.970000px;}
.y69{bottom:912.750000px;}
.y38{bottom:914.550000px;}
.yd{bottom:925.710000px;}
.y68{bottom:933.450000px;}
.y37{bottom:935.250000px;}
.ybe{bottom:944.970000px;}
.yc{bottom:948.210000px;}
.y67{bottom:954.150000px;}
.y36{bottom:955.950000px;}
.ybd{bottom:967.470000px;}
.y66{bottom:974.850000px;}
.yb{bottom:983.490000px;}
.y35{bottom:989.610000px;}
.ybc{bottom:989.970000px;}
.y65{bottom:995.550000px;}
.y34{bottom:1012.110000px;}
.ybb{bottom:1012.470000px;}
.ya{bottom:1016.250000px;}
.yba{bottom:1034.970000px;}
.y9{bottom:1036.590000px;}
.y64{bottom:1036.950000px;}
.y33{bottom:1048.470000px;}
.y8{bottom:1057.290000px;}
.y63{bottom:1057.650000px;}
.y32{bottom:1070.970000px;}
.y7{bottom:1077.990000px;}
.y62{bottom:1078.350000px;}
.y31{bottom:1093.470000px;}
.y6{bottom:1098.690000px;}
.y61{bottom:1099.050000px;}
.y30{bottom:1115.970000px;}
.y5{bottom:1119.390000px;}
.y60{bottom:1119.750000px;}
.y2f{bottom:1138.500000px;}
.y4{bottom:1140.120000px;}
.y5f{bottom:1140.480000px;}
.y1{bottom:1194.840000px;}
.hb{height:38.158594px;}
.h9{height:47.344922px;}
.he{height:49.992188px;}
.hd{height:58.621992px;}
.hc{height:58.651172px;}
.h5{height:62.327813px;}
.h7{height:64.546875px;}
.h2{height:65.010937px;}
.ha{height:70.628906px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h6{height:74.953125px;}
.h8{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.xf{left:132.516000px;}
.x9{left:154.650000px;}
.xd{left:180.570000px;}
.xa{left:181.650000px;}
.x3{left:192.450000px;}
.xb{left:218.527500px;}
.xc{left:224.670000px;}
.x8{left:230.250000px;}
.x4{left:235.650000px;}
.x5{left:303.015000px;}
.x7{left:337.035000px;}
.xe{left:343.695000px;}
.x2{left:442.365000px;}
.x6{left:446.505000px;}
.x10{left:502.102500px;}
.x11{left:508.245000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.456533pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls9{letter-spacing:2.080000pt;}
.lsd{letter-spacing:2.186667pt;}
.ls8{letter-spacing:2.720000pt;}
.lse{letter-spacing:10.400000pt;}
.lsb{letter-spacing:12.320000pt;}
.lsc{letter-spacing:12.960000pt;}
.lsf{letter-spacing:21.280000pt;}
.ls0{letter-spacing:30.208000pt;}
.ls4{letter-spacing:37.072640pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.616000pt;}
.ws4{word-spacing:-14.672427pt;}
.ws9{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.823467pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-1.984000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.024000pt;}
._4{width:2.496000pt;}
._10{width:3.404160pt;}
._2{width:4.352000pt;}
._3{width:5.888000pt;}
._9{width:6.912000pt;}
._8{width:7.936000pt;}
._7{width:8.832000pt;}
._c{width:10.560000pt;}
._e{width:11.520000pt;}
._11{width:12.672000pt;}
._f{width:13.568000pt;}
._13{width:14.912000pt;}
._1c{width:16.520320pt;}
._5{width:17.472000pt;}
._1f{width:18.432000pt;}
._d{width:19.392000pt;}
._b{width:20.800000pt;}
._12{width:21.760000pt;}
._6{width:22.762667pt;}
._1b{width:24.021333pt;}
._21{width:24.949333pt;}
._15{width:25.984000pt;}
._16{width:27.136000pt;}
._20{width:28.394667pt;}
._17{width:30.848000pt;}
._14{width:32.128000pt;}
._1d{width:34.112000pt;}
._1e{width:35.072000pt;}
._18{width:41.472000pt;}
._19{width:42.506667pt;}
._1a{width:43.434667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.720000pt;}
.y2{bottom:67.552000pt;}
.y2e{bottom:97.632000pt;}
.ye4{bottom:110.432000pt;}
.y2d{bottom:112.992000pt;}
.y5e{bottom:113.632000pt;}
.yb9{bottom:116.032000pt;}
.y2c{bottom:128.352000pt;}
.ye3{bottom:128.832000pt;}
.y9a{bottom:130.432000pt;}
.y5d{bottom:132.032000pt;}
.y2b{bottom:132.992000pt;}
.yb8{bottom:134.426667pt;}
.y8f{bottom:143.706667pt;}
.y2a{bottom:143.866667pt;}
.ye2{bottom:147.226667pt;}
.y99{bottom:148.826667pt;}
.y5c{bottom:150.426667pt;}
.yb7{bottom:152.826667pt;}
.y8e{bottom:159.066667pt;}
.ye1{bottom:165.626667pt;}
.y98{bottom:167.226667pt;}
.y5b{bottom:168.826667pt;}
.yb6{bottom:171.226667pt;}
.y8d{bottom:174.426667pt;}
.ye0{bottom:184.026667pt;}
.y97{bottom:185.626667pt;}
.y5a{bottom:187.226667pt;}
.y8c{bottom:189.626667pt;}
.ydf{bottom:202.426667pt;}
.y96{bottom:204.026667pt;}
.y8b{bottom:204.986667pt;}
.y59{bottom:205.626667pt;}
.yb5{bottom:208.026667pt;}
.y29{bottom:211.066667pt;}
.y8a{bottom:220.346667pt;}
.yde{bottom:220.826667pt;}
.y95{bottom:222.426667pt;}
.y58{bottom:224.026667pt;}
.yb4{bottom:226.426667pt;}
.y28{bottom:231.066667pt;}
.y89{bottom:235.706667pt;}
.ydd{bottom:239.226667pt;}
.y94{bottom:240.826667pt;}
.y57{bottom:242.426667pt;}
.yb3{bottom:244.826667pt;}
.y27{bottom:251.066667pt;}
.ydc{bottom:257.626667pt;}
.y93{bottom:259.226667pt;}
.y56{bottom:260.826667pt;}
.yb2{bottom:263.226667pt;}
.y88{bottom:266.266667pt;}
.ydb{bottom:276.026667pt;}
.y92{bottom:277.626667pt;}
.y55{bottom:279.226667pt;}
.y87{bottom:281.626667pt;}
.y26{bottom:283.066667pt;}
.y86{bottom:286.266667pt;}
.yda{bottom:294.466667pt;}
.y91{bottom:296.066667pt;}
.y85{bottom:297.346667pt;}
.y54{bottom:297.666667pt;}
.yb1{bottom:300.066667pt;}
.y25{bottom:303.106667pt;}
.yd9{bottom:312.866667pt;}
.y90{bottom:314.466667pt;}
.y53{bottom:316.066667pt;}
.yb0{bottom:318.466667pt;}
.y24{bottom:323.106667pt;}
.yd8{bottom:331.266667pt;}
.y84{bottom:332.866667pt;}
.y52{bottom:334.466667pt;}
.yaf{bottom:336.866667pt;}
.y23{bottom:343.106667pt;}
.yd7{bottom:349.666667pt;}
.y83{bottom:351.266667pt;}
.y51{bottom:352.866667pt;}
.yae{bottom:355.266667pt;}
.y22{bottom:363.106667pt;}
.yd6{bottom:368.066667pt;}
.y82{bottom:369.666667pt;}
.y50{bottom:371.266667pt;}
.yad{bottom:373.666667pt;}
.yd5{bottom:386.466667pt;}
.y81{bottom:388.066667pt;}
.y4f{bottom:389.666667pt;}
.yac{bottom:392.066667pt;}
.y21{bottom:395.106667pt;}
.yd4{bottom:404.866667pt;}
.y80{bottom:406.466667pt;}
.y4e{bottom:408.066667pt;}
.yab{bottom:410.466667pt;}
.y20{bottom:415.106667pt;}
.yd3{bottom:423.266667pt;}
.y7f{bottom:424.866667pt;}
.y4d{bottom:426.466667pt;}
.yaa{bottom:428.866667pt;}
.y1f{bottom:435.106667pt;}
.yd2{bottom:441.666667pt;}
.y7e{bottom:443.266667pt;}
.y4c{bottom:444.866667pt;}
.ya9{bottom:447.266667pt;}
.y1e{bottom:455.106667pt;}
.yd1{bottom:460.066667pt;}
.y7d{bottom:461.666667pt;}
.y4b{bottom:463.266667pt;}
.ya8{bottom:465.666667pt;}
.y1d{bottom:475.106667pt;}
.yd0{bottom:478.466667pt;}
.y7c{bottom:480.066667pt;}
.y4a{bottom:481.666667pt;}
.ya7{bottom:484.066667pt;}
.y1c{bottom:495.106667pt;}
.ycf{bottom:496.866667pt;}
.y7b{bottom:498.466667pt;}
.y49{bottom:500.066667pt;}
.ya6{bottom:502.466667pt;}
.yce{bottom:515.266667pt;}
.y7a{bottom:516.866667pt;}
.y48{bottom:518.466667pt;}
.ya5{bottom:520.866667pt;}
.y1b{bottom:527.106667pt;}
.ycd{bottom:533.693333pt;}
.y79{bottom:535.293333pt;}
.y47{bottom:536.893333pt;}
.ya4{bottom:539.293333pt;}
.y1a{bottom:547.133333pt;}
.ycc{bottom:551.773333pt;}
.y78{bottom:553.693333pt;}
.y46{bottom:555.293333pt;}
.ya3{bottom:557.693333pt;}
.y19{bottom:567.133333pt;}
.ycb{bottom:570.173333pt;}
.y77{bottom:572.093333pt;}
.y45{bottom:573.693333pt;}
.y18{bottom:587.133333pt;}
.ya2{bottom:587.933333pt;}
.yca{bottom:588.893333pt;}
.y76{bottom:590.493333pt;}
.y44{bottom:592.093333pt;}
.yc9{bottom:607.293333pt;}
.ya1{bottom:607.933333pt;}
.y75{bottom:608.893333pt;}
.y43{bottom:610.493333pt;}
.y17{bottom:619.133333pt;}
.yc8{bottom:625.693333pt;}
.y74{bottom:627.293333pt;}
.ya0{bottom:627.933333pt;}
.y42{bottom:628.893333pt;}
.yc7{bottom:644.093333pt;}
.y73{bottom:645.693333pt;}
.y41{bottom:647.293333pt;}
.y9f{bottom:647.933333pt;}
.y16{bottom:651.133333pt;}
.yc6{bottom:662.493333pt;}
.y72{bottom:664.093333pt;}
.y40{bottom:665.693333pt;}
.y9e{bottom:667.933333pt;}
.y15{bottom:671.133333pt;}
.yc5{bottom:680.893333pt;}
.y71{bottom:682.493333pt;}
.y3f{bottom:684.093333pt;}
.y9d{bottom:687.933333pt;}
.y13{bottom:691.133333pt;}
.y14{bottom:697.213333pt;}
.yc4{bottom:699.293333pt;}
.y70{bottom:700.893333pt;}
.y3e{bottom:702.493333pt;}
.y9c{bottom:707.933333pt;}
.y12{bottom:711.133333pt;}
.yc3{bottom:717.693333pt;}
.y6f{bottom:719.293333pt;}
.y3d{bottom:720.893333pt;}
.y9b{bottom:727.933333pt;}
.y11{bottom:731.133333pt;}
.y6d{bottom:737.693333pt;}
.y3c{bottom:739.293333pt;}
.y6e{bottom:743.773333pt;}
.yc2{bottom:747.933333pt;}
.y10{bottom:751.133333pt;}
.y6c{bottom:756.093333pt;}
.y3b{bottom:757.693333pt;}
.yc1{bottom:767.973333pt;}
.yf{bottom:771.173333pt;}
.y6b{bottom:774.533333pt;}
.y3a{bottom:776.133333pt;}
.yc0{bottom:787.973333pt;}
.ye{bottom:791.173333pt;}
.y6a{bottom:792.933333pt;}
.y39{bottom:794.533333pt;}
.ybf{bottom:807.973333pt;}
.y69{bottom:811.333333pt;}
.y38{bottom:812.933333pt;}
.yd{bottom:822.853333pt;}
.y68{bottom:829.733333pt;}
.y37{bottom:831.333333pt;}
.ybe{bottom:839.973333pt;}
.yc{bottom:842.853333pt;}
.y67{bottom:848.133333pt;}
.y36{bottom:849.733333pt;}
.ybd{bottom:859.973333pt;}
.y66{bottom:866.533333pt;}
.yb{bottom:874.213333pt;}
.y35{bottom:879.653333pt;}
.ybc{bottom:879.973333pt;}
.y65{bottom:884.933333pt;}
.y34{bottom:899.653333pt;}
.ybb{bottom:899.973333pt;}
.ya{bottom:903.333333pt;}
.yba{bottom:919.973333pt;}
.y9{bottom:921.413333pt;}
.y64{bottom:921.733333pt;}
.y33{bottom:931.973333pt;}
.y8{bottom:939.813333pt;}
.y63{bottom:940.133333pt;}
.y32{bottom:951.973333pt;}
.y7{bottom:958.213333pt;}
.y62{bottom:958.533333pt;}
.y31{bottom:971.973333pt;}
.y6{bottom:976.613333pt;}
.y61{bottom:976.933333pt;}
.y30{bottom:991.973333pt;}
.y5{bottom:995.013333pt;}
.y60{bottom:995.333333pt;}
.y2f{bottom:1012.000000pt;}
.y4{bottom:1013.440000pt;}
.y5f{bottom:1013.760000pt;}
.y1{bottom:1062.080000pt;}
.hb{height:33.918750pt;}
.h9{height:42.084375pt;}
.he{height:44.437500pt;}
.hd{height:52.108438pt;}
.hc{height:52.134375pt;}
.h5{height:55.402500pt;}
.h7{height:57.375000pt;}
.h2{height:57.787500pt;}
.ha{height:62.781250pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h6{height:66.625000pt;}
.h8{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.xf{left:117.792000pt;}
.x9{left:137.466667pt;}
.xd{left:160.506667pt;}
.xa{left:161.466667pt;}
.x3{left:171.066667pt;}
.xb{left:194.246667pt;}
.xc{left:199.706667pt;}
.x8{left:204.666667pt;}
.x4{left:209.466667pt;}
.x5{left:269.346667pt;}
.x7{left:299.586667pt;}
.xe{left:305.506667pt;}
.x2{left:393.213333pt;}
.x6{left:396.893333pt;}
.x10{left:446.313333pt;}
.x11{left:451.773333pt;}
}




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