
    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_5b489a6b775bea249b88a78e.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_58e5787d4b921f5a981f25c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_7bbbb93e5a69bdeba9f67479.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.682617;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_daadc7ff34487b8d8b595c38.woff2')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_19492e4d1fb7cb16c1bf9cf1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3abf31854a8d475986cb1d32.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_a3315e73583e794ad3686f6f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d1d373df5fbb2f64e371cc42.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_549c2f95d9d18eb3b9d56d25.woff2')format("woff");}.ffa{font-family:ffa;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.lse{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.326640px;}
.ls6{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.378720px;}
.lsf{letter-spacing:0.414600px;}
.ls1{letter-spacing:0.597600px;}
.ls9{letter-spacing:40.986720px;}
.lsa{letter-spacing:64.026720px;}
.ls11{letter-spacing:83.442720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-30.060000px;}
.ws2{word-spacing:-23.940000px;}
.ws6{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.060000px;}
.ws3{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.000000px;}
.wse{word-spacing:-16.974600px;}
.wsc{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.297800px;}
.wsf{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.220000px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-7.888320px;}
._1a{margin-left:-6.251280px;}
._6{margin-left:-4.627440px;}
._f{margin-left:-3.592080px;}
._1{margin-left:-2.509920px;}
._2{margin-left:-1.494000px;}
._0{width:1.015920px;}
._4{width:2.403600px;}
._d{width:3.665520px;}
._5{width:5.513280px;}
._1b{width:6.526560px;}
._9{width:7.589520px;}
._7{width:9.322560px;}
._10{width:11.165040px;}
._e{width:13.161120px;}
._19{width:14.918160px;}
._a{width:16.075440px;}
._b{width:17.552640px;}
._15{width:18.790800px;}
._14{width:19.872000px;}
._13{width:21.498480px;}
._1c{width:22.604880px;}
._c{width:23.605200px;}
._8{width:25.457760px;}
._12{width:26.460000px;}
._16{width:27.667200px;}
._21{width:29.940480px;}
._20{width:31.194960px;}
._1e{width:32.998320px;}
._11{width:34.047360px;}
._1d{width:35.449680px;}
._18{width:36.895680px;}
._17{width:37.904880px;}
._1f{width:39.074400px;}
._23{width:53.467200px;}
._22{width:55.019520px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:111.456000px;}
.yc4{bottom:139.896000px;}
.y9b{bottom:150.330000px;}
.y65{bottom:152.130000px;}
.y34{bottom:153.570000px;}
.yc3{bottom:158.970000px;}
.ye9{bottom:162.030000px;}
.y9a{bottom:169.230000px;}
.y64{bottom:171.030000px;}
.y33{bottom:172.470000px;}
.yc2{bottom:177.870000px;}
.ye8{bottom:179.130000px;}
.y99{bottom:188.310000px;}
.y63{bottom:189.930000px;}
.y32{bottom:191.550000px;}
.ye7{bottom:196.410000px;}
.yc1{bottom:196.950000px;}
.y98{bottom:207.210000px;}
.y62{bottom:208.830000px;}
.y77{bottom:209.010000px;}
.y31{bottom:210.450000px;}
.ye6{bottom:213.690000px;}
.yc0{bottom:215.850000px;}
.y97{bottom:226.290000px;}
.y76{bottom:227.910000px;}
.y30{bottom:229.350000px;}
.ye5{bottom:230.970000px;}
.ybf{bottom:234.750000px;}
.y96{bottom:245.190000px;}
.y75{bottom:246.810000px;}
.ye4{bottom:248.250000px;}
.y2f{bottom:248.430000px;}
.y61{bottom:249.330000px;}
.ybe{bottom:253.830000px;}
.y95{bottom:264.090000px;}
.ye3{bottom:265.890000px;}
.y2e{bottom:267.330000px;}
.y60{bottom:272.370000px;}
.ybd{bottom:272.730000px;}
.y94{bottom:283.170000px;}
.ye2{bottom:284.790000px;}
.y2d{bottom:286.410000px;}
.y74{bottom:287.310000px;}
.y5f{bottom:291.810000px;}
.y93{bottom:302.070000px;}
.ye1{bottom:305.130000px;}
.y2c{bottom:305.310000px;}
.y5e{bottom:310.710000px;}
.y92{bottom:321.150000px;}
.y2b{bottom:324.390000px;}
.ye0{bottom:324.570000px;}
.y5d{bottom:329.790000px;}
.y91{bottom:340.095000px;}
.y2a{bottom:343.335000px;}
.ydf{bottom:343.515000px;}
.y5c{bottom:348.735000px;}
.y90{bottom:358.995000px;}
.y29{bottom:362.235000px;}
.yde{bottom:362.595000px;}
.y5b{bottom:367.635000px;}
.y8f{bottom:378.075000px;}
.y28{bottom:381.315000px;}
.ydd{bottom:381.495000px;}
.y5a{bottom:386.715000px;}
.y8e{bottom:396.975000px;}
.y27{bottom:400.215000px;}
.ydc{bottom:400.395000px;}
.y59{bottom:405.615000px;}
.y8d{bottom:415.695000px;}
.y26{bottom:419.295000px;}
.ydb{bottom:419.475000px;}
.y73{bottom:424.515000px;}
.y58{bottom:424.695000px;}
.y8c{bottom:435.675000px;}
.y25{bottom:438.195000px;}
.yda{bottom:438.375000px;}
.y57{bottom:443.595000px;}
.y72{bottom:445.395000px;}
.y24{bottom:457.095000px;}
.yd9{bottom:457.455000px;}
.y8b{bottom:459.075000px;}
.y56{bottom:462.495000px;}
.y71{bottom:464.295000px;}
.y23{bottom:476.175000px;}
.yd8{bottom:477.075000px;}
.y8a{bottom:478.155000px;}
.y55{bottom:481.395000px;}
.ybc{bottom:482.295000px;}
.y70{bottom:483.195000px;}
.y22{bottom:495.075000px;}
.y89{bottom:497.055000px;}
.yd7{bottom:500.475000px;}
.y54{bottom:502.275000px;}
.ybb{bottom:505.695000px;}
.y21{bottom:514.155000px;}
.y88{bottom:515.955000px;}
.yd6{bottom:519.555000px;}
.y53{bottom:521.175000px;}
.yba{bottom:524.595000px;}
.y20{bottom:533.055000px;}
.y87{bottom:535.035000px;}
.yd5{bottom:538.455000px;}
.y52{bottom:540.255000px;}
.yb9{bottom:543.675000px;}
.y1f{bottom:553.395000px;}
.y86{bottom:553.935000px;}
.yd4{bottom:557.355000px;}
.y51{bottom:559.155000px;}
.yb8{bottom:562.575000px;}
.y85{bottom:573.015000px;}
.y1e{bottom:573.375000px;}
.yd3{bottom:577.155000px;}
.y50{bottom:578.055000px;}
.yb7{bottom:581.655000px;}
.y84{bottom:591.915000px;}
.y1d{bottom:596.955000px;}
.y4f{bottom:597.135000px;}
.yb6{bottom:600.555000px;}
.y83{bottom:610.845000px;}
.y1c{bottom:615.525000px;}
.y4e{bottom:616.065000px;}
.yb5{bottom:619.485000px;}
.y82{bottom:629.925000px;}
.y1b{bottom:632.805000px;}
.y4d{bottom:635.145000px;}
.y6f{bottom:636.765000px;}
.yb4{bottom:638.565000px;}
.y81{bottom:648.465000px;}
.y1a{bottom:652.245000px;}
.y4c{bottom:654.045000px;}
.y6e{bottom:655.845000px;}
.yb3{bottom:657.465000px;}
.y80{bottom:668.445000px;}
.y4b{bottom:672.945000px;}
.y19{bottom:674.745000px;}
.yb2{bottom:676.185000px;}
.yd2{bottom:676.545000px;}
.y4a{bottom:692.025000px;}
.y6d{bottom:693.645000px;}
.y18{bottom:694.725000px;}
.yd1{bottom:695.445000px;}
.yb1{bottom:696.165000px;}
.y49{bottom:710.925000px;}
.y17{bottom:712.005000px;}
.y6c{bottom:712.725000px;}
.yd0{bottom:714.345000px;}
.yb0{bottom:719.565000px;}
.y16{bottom:729.285000px;}
.y7f{bottom:730.005000px;}
.y48{bottom:731.625000px;}
.ycf{bottom:733.425000px;}
.yaf{bottom:740.265000px;}
.y15{bottom:746.565000px;}
.yfe{bottom:746.745000px;}
.y7e{bottom:748.905000px;}
.y47{bottom:750.705000px;}
.yce{bottom:752.325000px;}
.yae{bottom:759.345000px;}
.y14{bottom:763.845000px;}
.yfd{bottom:764.025000px;}
.y7d{bottom:767.805000px;}
.y46{bottom:769.605000px;}
.ycd{bottom:771.405000px;}
.yad{bottom:778.245000px;}
.y13{bottom:780.945000px;}
.yfc{bottom:781.305000px;}
.y7c{bottom:786.885000px;}
.y45{bottom:788.505000px;}
.ycc{bottom:790.305000px;}
.yac{bottom:797.145000px;}
.y12{bottom:798.225000px;}
.yfb{bottom:798.585000px;}
.y7b{bottom:805.785000px;}
.y44{bottom:807.585000px;}
.ycb{bottom:809.205000px;}
.y11{bottom:815.505000px;}
.yfa{bottom:815.685000px;}
.yab{bottom:816.045000px;}
.y7a{bottom:824.865000px;}
.y43{bottom:826.485000px;}
.yca{bottom:828.285000px;}
.y10{bottom:832.785000px;}
.yf9{bottom:832.965000px;}
.yaa{bottom:836.925000px;}
.y79{bottom:843.765000px;}
.y42{bottom:845.565000px;}
.yc9{bottom:847.185000px;}
.yf{bottom:850.065000px;}
.yf8{bottom:850.245000px;}
.ya9{bottom:855.825000px;}
.y78{bottom:862.665000px;}
.y41{bottom:864.465000px;}
.yc8{bottom:866.265000px;}
.ye{bottom:867.345000px;}
.yf7{bottom:867.525000px;}
.ya8{bottom:874.950000px;}
.y40{bottom:883.590000px;}
.yd{bottom:884.490000px;}
.yc7{bottom:885.210000px;}
.ya7{bottom:893.850000px;}
.yc{bottom:901.770000px;}
.y3f{bottom:902.490000px;}
.yc6{bottom:904.290000px;}
.yf6{bottom:905.910000px;}
.ya6{bottom:912.390000px;}
.yb{bottom:919.050000px;}
.y3e{bottom:921.390000px;}
.yc5{bottom:923.190000px;}
.yf5{bottom:924.450000px;}
.ya5{bottom:931.650000px;}
.ya{bottom:936.870000px;}
.y3d{bottom:940.470000px;}
.yf4{bottom:941.730000px;}
.y6b{bottom:942.090000px;}
.ya4{bottom:952.530000px;}
.y9{bottom:958.830000px;}
.yf3{bottom:959.010000px;}
.y3c{bottom:959.370000px;}
.y6a{bottom:961.170000px;}
.ya3{bottom:971.430000px;}
.yf2{bottom:976.290000px;}
.y8{bottom:978.450000px;}
.y69{bottom:980.070000px;}
.ya2{bottom:990.510000px;}
.yf1{bottom:993.390000px;}
.y3b{bottom:997.350000px;}
.y7{bottom:999.150000px;}
.ya1{bottom:1009.410000px;}
.yf0{bottom:1010.670000px;}
.y3a{bottom:1016.250000px;}
.y68{bottom:1018.050000px;}
.y6{bottom:1020.210000px;}
.yef{bottom:1027.950000px;}
.ya0{bottom:1028.310000px;}
.y39{bottom:1035.330000px;}
.y67{bottom:1036.950000px;}
.y5{bottom:1042.530000px;}
.yee{bottom:1045.230000px;}
.y9f{bottom:1047.390000px;}
.y38{bottom:1054.230000px;}
.y66{bottom:1056.030000px;}
.yed{bottom:1062.510000px;}
.y9e{bottom:1066.290000px;}
.y4{bottom:1068.270000px;}
.y37{bottom:1074.930000px;}
.yec{bottom:1079.790000px;}
.y9d{bottom:1086.990000px;}
.y36{bottom:1094.010000px;}
.yeb{bottom:1096.890000px;}
.y3{bottom:1101.930000px;}
.y9c{bottom:1108.410000px;}
.y35{bottom:1112.910000px;}
.yea{bottom:1114.170000px;}
.y1{bottom:1141.200000px;}
.h8{height:58.621992px;}
.h2{height:58.651172px;}
.hd{height:61.423863px;}
.h9{height:65.010937px;}
.h6{height:66.757500px;}
.h5{height:70.664062px;}
.hc{height:72.562500px;}
.hb{height:74.953125px;}
.h7{height:76.279219px;}
.h4{height:76.317188px;}
.h3{height:81.432070px;}
.ha{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:123.155987px;}
.x2{left:125.135987px;}
.x1{left:138.815987px;}
.x9{left:144.395987px;}
.xc{left:150.149987px;}
.xa{left:165.629987px;}
.xb{left:177.149987px;}
.x6{left:221.429987px;}
.x4{left:234.029987px;}
.x5{left:346.214987px;}
.x3{left:447.374987px;}
.x8{left:755.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.290347pt;}
.ls6{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.336640pt;}
.lsf{letter-spacing:0.368533pt;}
.ls1{letter-spacing:0.531200pt;}
.ls9{letter-spacing:36.432640pt;}
.lsa{letter-spacing:56.912640pt;}
.ls11{letter-spacing:74.171307pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-26.720000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws6{word-spacing:-19.040000pt;}
.wsb{word-spacing:-18.720000pt;}
.ws3{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.088533pt;}
.wsc{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.486933pt;}
.wsf{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.640000pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-7.011840pt;}
._1a{margin-left:-5.556693pt;}
._6{margin-left:-4.113280pt;}
._f{margin-left:-3.192960pt;}
._1{margin-left:-2.231040pt;}
._2{margin-left:-1.328000pt;}
._0{width:0.903040pt;}
._4{width:2.136533pt;}
._d{width:3.258240pt;}
._5{width:4.900693pt;}
._1b{width:5.801387pt;}
._9{width:6.746240pt;}
._7{width:8.286720pt;}
._10{width:9.924480pt;}
._e{width:11.698773pt;}
._19{width:13.260587pt;}
._a{width:14.289280pt;}
._b{width:15.602347pt;}
._15{width:16.702933pt;}
._14{width:17.664000pt;}
._13{width:19.109760pt;}
._1c{width:20.093227pt;}
._c{width:20.982400pt;}
._8{width:22.629120pt;}
._12{width:23.520000pt;}
._16{width:24.593067pt;}
._21{width:26.613760pt;}
._20{width:27.728853pt;}
._1e{width:29.331840pt;}
._11{width:30.264320pt;}
._1d{width:31.510827pt;}
._18{width:32.796160pt;}
._17{width:33.693227pt;}
._1f{width:34.732800pt;}
._23{width:47.526400pt;}
._22{width:48.906240pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:99.072000pt;}
.yc4{bottom:124.352000pt;}
.y9b{bottom:133.626667pt;}
.y65{bottom:135.226667pt;}
.y34{bottom:136.506667pt;}
.yc3{bottom:141.306667pt;}
.ye9{bottom:144.026667pt;}
.y9a{bottom:150.426667pt;}
.y64{bottom:152.026667pt;}
.y33{bottom:153.306667pt;}
.yc2{bottom:158.106667pt;}
.ye8{bottom:159.226667pt;}
.y99{bottom:167.386667pt;}
.y63{bottom:168.826667pt;}
.y32{bottom:170.266667pt;}
.ye7{bottom:174.586667pt;}
.yc1{bottom:175.066667pt;}
.y98{bottom:184.186667pt;}
.y62{bottom:185.626667pt;}
.y77{bottom:185.786667pt;}
.y31{bottom:187.066667pt;}
.ye6{bottom:189.946667pt;}
.yc0{bottom:191.866667pt;}
.y97{bottom:201.146667pt;}
.y76{bottom:202.586667pt;}
.y30{bottom:203.866667pt;}
.ye5{bottom:205.306667pt;}
.ybf{bottom:208.666667pt;}
.y96{bottom:217.946667pt;}
.y75{bottom:219.386667pt;}
.ye4{bottom:220.666667pt;}
.y2f{bottom:220.826667pt;}
.y61{bottom:221.626667pt;}
.ybe{bottom:225.626667pt;}
.y95{bottom:234.746667pt;}
.ye3{bottom:236.346667pt;}
.y2e{bottom:237.626667pt;}
.y60{bottom:242.106667pt;}
.ybd{bottom:242.426667pt;}
.y94{bottom:251.706667pt;}
.ye2{bottom:253.146667pt;}
.y2d{bottom:254.586667pt;}
.y74{bottom:255.386667pt;}
.y5f{bottom:259.386667pt;}
.y93{bottom:268.506667pt;}
.ye1{bottom:271.226667pt;}
.y2c{bottom:271.386667pt;}
.y5e{bottom:276.186667pt;}
.y92{bottom:285.466667pt;}
.y2b{bottom:288.346667pt;}
.ye0{bottom:288.506667pt;}
.y5d{bottom:293.146667pt;}
.y91{bottom:302.306667pt;}
.y2a{bottom:305.186667pt;}
.ydf{bottom:305.346667pt;}
.y5c{bottom:309.986667pt;}
.y90{bottom:319.106667pt;}
.y29{bottom:321.986667pt;}
.yde{bottom:322.306667pt;}
.y5b{bottom:326.786667pt;}
.y8f{bottom:336.066667pt;}
.y28{bottom:338.946667pt;}
.ydd{bottom:339.106667pt;}
.y5a{bottom:343.746667pt;}
.y8e{bottom:352.866667pt;}
.y27{bottom:355.746667pt;}
.ydc{bottom:355.906667pt;}
.y59{bottom:360.546667pt;}
.y8d{bottom:369.506667pt;}
.y26{bottom:372.706667pt;}
.ydb{bottom:372.866667pt;}
.y73{bottom:377.346667pt;}
.y58{bottom:377.506667pt;}
.y8c{bottom:387.266667pt;}
.y25{bottom:389.506667pt;}
.yda{bottom:389.666667pt;}
.y57{bottom:394.306667pt;}
.y72{bottom:395.906667pt;}
.y24{bottom:406.306667pt;}
.yd9{bottom:406.626667pt;}
.y8b{bottom:408.066667pt;}
.y56{bottom:411.106667pt;}
.y71{bottom:412.706667pt;}
.y23{bottom:423.266667pt;}
.yd8{bottom:424.066667pt;}
.y8a{bottom:425.026667pt;}
.y55{bottom:427.906667pt;}
.ybc{bottom:428.706667pt;}
.y70{bottom:429.506667pt;}
.y22{bottom:440.066667pt;}
.y89{bottom:441.826667pt;}
.yd7{bottom:444.866667pt;}
.y54{bottom:446.466667pt;}
.ybb{bottom:449.506667pt;}
.y21{bottom:457.026667pt;}
.y88{bottom:458.626667pt;}
.yd6{bottom:461.826667pt;}
.y53{bottom:463.266667pt;}
.yba{bottom:466.306667pt;}
.y20{bottom:473.826667pt;}
.y87{bottom:475.586667pt;}
.yd5{bottom:478.626667pt;}
.y52{bottom:480.226667pt;}
.yb9{bottom:483.266667pt;}
.y1f{bottom:491.906667pt;}
.y86{bottom:492.386667pt;}
.yd4{bottom:495.426667pt;}
.y51{bottom:497.026667pt;}
.yb8{bottom:500.066667pt;}
.y85{bottom:509.346667pt;}
.y1e{bottom:509.666667pt;}
.yd3{bottom:513.026667pt;}
.y50{bottom:513.826667pt;}
.yb7{bottom:517.026667pt;}
.y84{bottom:526.146667pt;}
.y1d{bottom:530.626667pt;}
.y4f{bottom:530.786667pt;}
.yb6{bottom:533.826667pt;}
.y83{bottom:542.973333pt;}
.y1c{bottom:547.133333pt;}
.y4e{bottom:547.613333pt;}
.yb5{bottom:550.653333pt;}
.y82{bottom:559.933333pt;}
.y1b{bottom:562.493333pt;}
.y4d{bottom:564.573333pt;}
.y6f{bottom:566.013333pt;}
.yb4{bottom:567.613333pt;}
.y81{bottom:576.413333pt;}
.y1a{bottom:579.773333pt;}
.y4c{bottom:581.373333pt;}
.y6e{bottom:582.973333pt;}
.yb3{bottom:584.413333pt;}
.y80{bottom:594.173333pt;}
.y4b{bottom:598.173333pt;}
.y19{bottom:599.773333pt;}
.yb2{bottom:601.053333pt;}
.yd2{bottom:601.373333pt;}
.y4a{bottom:615.133333pt;}
.y6d{bottom:616.573333pt;}
.y18{bottom:617.533333pt;}
.yd1{bottom:618.173333pt;}
.yb1{bottom:618.813333pt;}
.y49{bottom:631.933333pt;}
.y17{bottom:632.893333pt;}
.y6c{bottom:633.533333pt;}
.yd0{bottom:634.973333pt;}
.yb0{bottom:639.613333pt;}
.y16{bottom:648.253333pt;}
.y7f{bottom:648.893333pt;}
.y48{bottom:650.333333pt;}
.ycf{bottom:651.933333pt;}
.yaf{bottom:658.013333pt;}
.y15{bottom:663.613333pt;}
.yfe{bottom:663.773333pt;}
.y7e{bottom:665.693333pt;}
.y47{bottom:667.293333pt;}
.yce{bottom:668.733333pt;}
.yae{bottom:674.973333pt;}
.y14{bottom:678.973333pt;}
.yfd{bottom:679.133333pt;}
.y7d{bottom:682.493333pt;}
.y46{bottom:684.093333pt;}
.ycd{bottom:685.693333pt;}
.yad{bottom:691.773333pt;}
.y13{bottom:694.173333pt;}
.yfc{bottom:694.493333pt;}
.y7c{bottom:699.453333pt;}
.y45{bottom:700.893333pt;}
.ycc{bottom:702.493333pt;}
.yac{bottom:708.573333pt;}
.y12{bottom:709.533333pt;}
.yfb{bottom:709.853333pt;}
.y7b{bottom:716.253333pt;}
.y44{bottom:717.853333pt;}
.ycb{bottom:719.293333pt;}
.y11{bottom:724.893333pt;}
.yfa{bottom:725.053333pt;}
.yab{bottom:725.373333pt;}
.y7a{bottom:733.213333pt;}
.y43{bottom:734.653333pt;}
.yca{bottom:736.253333pt;}
.y10{bottom:740.253333pt;}
.yf9{bottom:740.413333pt;}
.yaa{bottom:743.933333pt;}
.y79{bottom:750.013333pt;}
.y42{bottom:751.613333pt;}
.yc9{bottom:753.053333pt;}
.yf{bottom:755.613333pt;}
.yf8{bottom:755.773333pt;}
.ya9{bottom:760.733333pt;}
.y78{bottom:766.813333pt;}
.y41{bottom:768.413333pt;}
.yc8{bottom:770.013333pt;}
.ye{bottom:770.973333pt;}
.yf7{bottom:771.133333pt;}
.ya8{bottom:777.733333pt;}
.y40{bottom:785.413333pt;}
.yd{bottom:786.213333pt;}
.yc7{bottom:786.853333pt;}
.ya7{bottom:794.533333pt;}
.yc{bottom:801.573333pt;}
.y3f{bottom:802.213333pt;}
.yc6{bottom:803.813333pt;}
.yf6{bottom:805.253333pt;}
.ya6{bottom:811.013333pt;}
.yb{bottom:816.933333pt;}
.y3e{bottom:819.013333pt;}
.yc5{bottom:820.613333pt;}
.yf5{bottom:821.733333pt;}
.ya5{bottom:828.133333pt;}
.ya{bottom:832.773333pt;}
.y3d{bottom:835.973333pt;}
.yf4{bottom:837.093333pt;}
.y6b{bottom:837.413333pt;}
.ya4{bottom:846.693333pt;}
.y9{bottom:852.293333pt;}
.yf3{bottom:852.453333pt;}
.y3c{bottom:852.773333pt;}
.y6a{bottom:854.373333pt;}
.ya3{bottom:863.493333pt;}
.yf2{bottom:867.813333pt;}
.y8{bottom:869.733333pt;}
.y69{bottom:871.173333pt;}
.ya2{bottom:880.453333pt;}
.yf1{bottom:883.013333pt;}
.y3b{bottom:886.533333pt;}
.y7{bottom:888.133333pt;}
.ya1{bottom:897.253333pt;}
.yf0{bottom:898.373333pt;}
.y3a{bottom:903.333333pt;}
.y68{bottom:904.933333pt;}
.y6{bottom:906.853333pt;}
.yef{bottom:913.733333pt;}
.ya0{bottom:914.053333pt;}
.y39{bottom:920.293333pt;}
.y67{bottom:921.733333pt;}
.y5{bottom:926.693333pt;}
.yee{bottom:929.093333pt;}
.y9f{bottom:931.013333pt;}
.y38{bottom:937.093333pt;}
.y66{bottom:938.693333pt;}
.yed{bottom:944.453333pt;}
.y9e{bottom:947.813333pt;}
.y4{bottom:949.573333pt;}
.y37{bottom:955.493333pt;}
.yec{bottom:959.813333pt;}
.y9d{bottom:966.213333pt;}
.y36{bottom:972.453333pt;}
.yeb{bottom:975.013333pt;}
.y3{bottom:979.493333pt;}
.y9c{bottom:985.253333pt;}
.y35{bottom:989.253333pt;}
.yea{bottom:990.373333pt;}
.y1{bottom:1014.400000pt;}
.h8{height:52.108438pt;}
.h2{height:52.134375pt;}
.hd{height:54.598989pt;}
.h9{height:57.787500pt;}
.h6{height:59.340000pt;}
.h5{height:62.812500pt;}
.hc{height:64.500000pt;}
.hb{height:66.625000pt;}
.h7{height:67.803750pt;}
.h4{height:67.837500pt;}
.h3{height:72.384062pt;}
.ha{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:109.471988pt;}
.x2{left:111.231988pt;}
.x1{left:123.391988pt;}
.x9{left:128.351988pt;}
.xc{left:133.466655pt;}
.xa{left:147.226655pt;}
.xb{left:157.466655pt;}
.x6{left:196.826655pt;}
.x4{left:208.026655pt;}
.x5{left:307.746655pt;}
.x3{left:397.666655pt;}
.x8{left:671.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; }
  