
    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_436b5a473eb945422c04c0fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_05e1709147cefbc8b08171e1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_602899f21d237db209672a29.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941895;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_6a9836a52d6858cccb51ed86.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a50758daeb2a3237813f5429.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_9a3b4ab3fbd8b4434f59ec4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953125;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_a51501df5cc069c6e493c970.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7701de1360a8c2e6d2cf39f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-60.900000px;}
.vb{vertical-align:-48.360000px;}
.v9{vertical-align:-45.360000px;}
.v4{vertical-align:-10.200000px;}
.va{vertical-align:-4.740000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.v8{vertical-align:70.980000px;}
.v6{vertical-align:81.240000px;}
.v3{vertical-align:96.600000px;}
.v7{vertical-align:142.140000px;}
.lsd{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.310200px;}
.lsa{letter-spacing:-0.229800px;}
.ls4{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.166200px;}
.lsc{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.087000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.037440px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.lsb{letter-spacing:54.144000px;}
.ls2{letter-spacing:380.569680px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-21.096000px;}
.ws4{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.022560px;}
.ws5{word-spacing:-19.038240px;}
.ws13{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.856000px;}
.ws10{word-spacing:-16.304544px;}
.ws11{word-spacing:-16.272000px;}
.wsd{word-spacing:-13.505760px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:-1.723680px;}
.ws6{word-spacing:-0.540000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:161.856480px;}
.wsc{word-spacing:188.054400px;}
.wse{word-spacing:306.031440px;}
.wsb{word-spacing:311.056200px;}
.wsa{word-spacing:311.308200px;}
.wsf{word-spacing:442.794960px;}
._4{margin-left:-5.328000px;}
._3{margin-left:-3.984000px;}
._f{margin-left:-2.141760px;}
._0{margin-left:-1.126080px;}
._1{width:1.218000px;}
._2{width:2.403840px;}
._9{width:3.678480px;}
._e{width:4.920000px;}
._10{width:6.008640px;}
._c{width:7.370160px;}
._d{width:8.973840px;}
._14{width:10.553760px;}
._11{width:12.049920px;}
._8{width:13.366080px;}
._12{width:14.427840px;}
._13{width:15.696000px;}
._7{width:16.796160px;}
._a{width:21.312000px;}
._b{width:22.392000px;}
._19{width:24.179760px;}
._16{width:25.992000px;}
._1c{width:32.472000px;}
._17{width:34.704000px;}
._18{width:36.306000px;}
._22{width:42.912000px;}
._21{width:44.544000px;}
._5{width:48.000000px;}
._6{width:49.056000px;}
._1d{width:66.312000px;}
._1e{width:68.184000px;}
._1b{width:99.942240px;}
._1f{width:105.408000px;}
._20{width:106.488000px;}
._1a{width:148.188960px;}
._15{width:151.074720px;}
.fc8{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc7{color:rgb(68,84,106);}
.fc5{color:rgb(32,33,36);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fs3{font-size:95.760000px;}
.y72{bottom:-36.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:1.365000px;}
.y71{bottom:9.000000px;}
.y6{bottom:10.620000px;}
.y7{bottom:11.340000px;}
.y93{bottom:17.208000px;}
.y6b{bottom:18.330000px;}
.y64{bottom:18.975000px;}
.y59{bottom:41.115000px;}
.y6a{bottom:42.480000px;}
.y92{bottom:42.840000px;}
.y5e{bottom:50.790000px;}
.y8{bottom:57.420000px;}
.y88{bottom:59.040000px;}
.y53{bottom:64.185000px;}
.y66{bottom:68.685000px;}
.y8d{bottom:70.095000px;}
.y58{bottom:71.355000px;}
.y62{bottom:72.285000px;}
.y5{bottom:73.836000px;}
.y87{bottom:78.555000px;}
.y5d{bottom:82.650000px;}
.y57{bottom:92.955000px;}
.y67{bottom:94.065000px;}
.y61{bottom:95.325000px;}
.y52{bottom:96.045000px;}
.y86{bottom:96.870000px;}
.y7e{bottom:102.276000px;}
.y8c{bottom:103.500000px;}
.y5c{bottom:105.690000px;}
.ybe{bottom:107.676000px;}
.y56{bottom:114.735000px;}
.y34{bottom:115.596000px;}
.y6c{bottom:116.205000px;}
.y8e{bottom:116.385000px;}
.y60{bottom:118.365000px;}
.y51{bottom:119.085000px;}
.y68{bottom:119.445000px;}
.y4c{bottom:125.136000px;}
.y85{bottom:127.260000px;}
.y5b{bottom:128.730000px;}
.y94{bottom:129.630000px;}
.ybd{bottom:131.616000px;}
.y55{bottom:136.515000px;}
.y33{bottom:139.536000px;}
.y6e{bottom:141.450000px;}
.y50{bottom:142.125000px;}
.y69{bottom:144.825000px;}
.y5f{bottom:148.785000px;}
.y6d{bottom:149.040000px;}
.y4b{bottom:149.076000px;}
.ybc{bottom:155.370000px;}
.y5a{bottom:159.150000px;}
.y80{bottom:160.635000px;}
.y98{bottom:161.025000px;}
.y8f{bottom:162.690000px;}
.y32{bottom:163.290000px;}
.y4f{bottom:164.085000px;}
.y54{bottom:166.575000px;}
.y95{bottom:171.540000px;}
.y4a{bottom:172.830000px;}
.ybb{bottom:179.130000px;}
.y31{bottom:187.050000px;}
.y81{bottom:189.510000px;}
.y49{bottom:196.590000px;}
.y97{bottom:200.265000px;}
.yba{bottom:202.890000px;}
.y8b{bottom:207.000000px;}
.y90{bottom:209.010000px;}
.y30{bottom:210.810000px;}
.y48{bottom:216.030000px;}
.y65{bottom:216.360000px;}
.y82{bottom:218.805000px;}
.yb9{bottom:226.830000px;}
.y2f{bottom:234.750000px;}
.y8a{bottom:239.430000px;}
.y4e{bottom:241.770000px;}
.y83{bottom:248.580000px;}
.yb8{bottom:250.590000px;}
.y91{bottom:255.315000px;}
.y2e{bottom:258.510000px;}
.y96{bottom:273.495000px;}
.yb7{bottom:274.350000px;}
.y89{bottom:275.250000px;}
.y84{bottom:278.820000px;}
.y2d{bottom:282.270000px;}
.yb6{bottom:298.110000px;}
.y2c{bottom:306.030000px;}
.yb5{bottom:322.050000px;}
.y2b{bottom:329.970000px;}
.yb4{bottom:345.855000px;}
.y2a{bottom:353.775000px;}
.yb3{bottom:369.615000px;}
.y29{bottom:377.535000px;}
.yb2{bottom:393.375000px;}
.y28{bottom:401.295000px;}
.y7d{bottom:406.695000px;}
.yb1{bottom:417.315000px;}
.y27{bottom:425.235000px;}
.y7c{bottom:430.455000px;}
.yb0{bottom:441.075000px;}
.y47{bottom:446.295000px;}
.y26{bottom:448.995000px;}
.y70{bottom:453.855000px;}
.y7b{bottom:454.215000px;}
.yaf{bottom:464.835000px;}
.y46{bottom:470.055000px;}
.y25{bottom:472.755000px;}
.y7a{bottom:478.155000px;}
.yae{bottom:488.235000px;}
.y45{bottom:493.635000px;}
.y24{bottom:496.515000px;}
.y79{bottom:501.915000px;}
.yad{bottom:511.995000px;}
.y44{bottom:517.755000px;}
.y23{bottom:520.455000px;}
.y78{bottom:525.675000px;}
.yac{bottom:536.295000px;}
.y43{bottom:541.515000px;}
.y22{bottom:544.215000px;}
.y77{bottom:549.435000px;}
.yab{bottom:560.055000px;}
.y42{bottom:565.275000px;}
.y21{bottom:567.975000px;}
.y76{bottom:573.375000px;}
.yaa{bottom:583.815000px;}
.y41{bottom:589.215000px;}
.y20{bottom:591.735000px;}
.y75{bottom:597.135000px;}
.ya9{bottom:607.605000px;}
.y40{bottom:613.005000px;}
.y1f{bottom:615.705000px;}
.y74{bottom:616.605000px;}
.y7f{bottom:618.300000px;}
.y63{bottom:629.460000px;}
.ya8{bottom:631.545000px;}
.y3f{bottom:632.445000px;}
.y1e{bottom:639.465000px;}
.ya7{bottom:655.305000px;}
.y1d{bottom:663.225000px;}
.y4d{bottom:673.020000px;}
.y3e{bottom:676.005000px;}
.ya6{bottom:679.065000px;}
.y1c{bottom:686.985000px;}
.ya5{bottom:702.825000px;}
.y1b{bottom:710.745000px;}
.ya4{bottom:726.765000px;}
.y1a{bottom:734.685000px;}
.ya3{bottom:750.525000px;}
.y19{bottom:758.445000px;}
.ya2{bottom:774.285000px;}
.y18{bottom:782.205000px;}
.ya1{bottom:798.045000px;}
.y17{bottom:805.605000px;}
.ya0{bottom:821.625000px;}
.y16{bottom:829.545000px;}
.y9f{bottom:845.745000px;}
.y15{bottom:853.665000px;}
.y9e{bottom:869.505000px;}
.y14{bottom:877.470000px;}
.y9d{bottom:893.310000px;}
.y13{bottom:901.230000px;}
.y9c{bottom:917.250000px;}
.y12{bottom:925.170000px;}
.y9b{bottom:941.010000px;}
.y11{bottom:948.930000px;}
.y3d{bottom:964.410000px;}
.y9a{bottom:964.770000px;}
.y10{bottom:972.690000px;}
.y73{bottom:988.170000px;}
.y3c{bottom:988.530000px;}
.yf{bottom:996.090000px;}
.y3b{bottom:1012.290000px;}
.ye{bottom:1020.390000px;}
.y3a{bottom:1036.230000px;}
.yd{bottom:1044.150000px;}
.y39{bottom:1059.990000px;}
.yc{bottom:1067.550000px;}
.y38{bottom:1083.750000px;}
.yb{bottom:1091.670000px;}
.y37{bottom:1107.510000px;}
.ya{bottom:1117.590000px;}
.y36{bottom:1131.450000px;}
.y9{bottom:1149.300000px;}
.y99{bottom:1154.880000px;}
.y35{bottom:1155.240000px;}
.y4{bottom:1195.020000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.140000px;}
.h5{height:27.000000px;}
.h16{height:28.080000px;}
.hf{height:43.560000px;}
.h12{height:45.637031px;}
.h19{height:46.308164px;}
.h7{height:50.585625px;}
.h4{height:54.421875px;}
.h1c{height:54.984375px;}
.h1b{height:55.094344px;}
.hd{height:65.277773px;}
.h10{height:65.389359px;}
.h3{height:66.757500px;}
.ha{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h1d{height:74.004654px;}
.h14{height:74.204648px;}
.h9{height:74.704922px;}
.h17{height:82.676953px;}
.hc{height:84.898125px;}
.he{height:85.043250px;}
.h8{height:96.508125px;}
.h13{height:181.498125px;}
.h15{height:216.344648px;}
.h11{height:222.660000px;}
.hb{height:284.400000px;}
.h1a{height:295.920000px;}
.h18{height:362.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w5{width:298.650000px;}
.w3{width:298.830000px;}
.w9{width:605.160000px;}
.w8{width:669.420000px;}
.w7{width:683.025000px;}
.w6{width:683.100000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:6.588000px;}
.x39{left:10.944000px;}
.x28{left:14.220000px;}
.x38{left:15.696000px;}
.x37{left:18.036000px;}
.x44{left:20.850000px;}
.x36{left:27.900000px;}
.x43{left:29.955000px;}
.x42{left:39.030000px;}
.x8{left:43.020000px;}
.x3a{left:46.470000px;}
.x2a{left:54.435000px;}
.x2b{left:62.610000px;}
.x2c{left:91.950000px;}
.x5{left:95.796000px;}
.xe{left:101.555987px;}
.x27{left:104.400000px;}
.xa{left:110.555987px;}
.x45{left:113.910000px;}
.x3e{left:117.615000px;}
.x46{left:120.705000px;}
.x2d{left:122.505000px;}
.x4d{left:127.835987px;}
.x48{left:130.575000px;}
.x30{left:132.336000px;}
.xd{left:141.875987px;}
.x41{left:143.820000px;}
.xc{left:148.895987px;}
.xb{left:174.809987px;}
.x31{left:179.679000px;}
.x3{left:195.869987px;}
.x47{left:204.840000px;}
.x49{left:217.590000px;}
.x18{left:232.919987px;}
.x14{left:237.809987px;}
.x17{left:243.539987px;}
.x3f{left:246.315000px;}
.x19{left:253.439987px;}
.x2f{left:262.185000px;}
.x6{left:290.739000px;}
.x26{left:300.239987px;}
.x4a{left:304.200000px;}
.x33{left:313.814987px;}
.x10{left:322.274987px;}
.xf{left:326.954987px;}
.x2{left:333.254987px;}
.x3b{left:337.350000px;}
.x32{left:341.529000px;}
.x4{left:342.614987px;}
.x1d{left:351.104987px;}
.x3c{left:360.210000px;}
.x1b{left:362.264987px;}
.x1a{left:363.524987px;}
.x1c{left:367.304987px;}
.x1e{left:376.664987px;}
.x1f{left:378.284987px;}
.x4b{left:391.215000px;}
.x7{left:394.635000px;}
.x16{left:419.219987px;}
.x21{left:487.364987px;}
.x4c{left:489.210000px;}
.x9{left:498.705000px;}
.x3d{left:499.965000px;}
.x20{left:504.284987px;}
.x23{left:514.364987px;}
.x22{left:525.524987px;}
.x40{left:542.490000px;}
.x2e{left:557.790000px;}
.x25{left:620.309987px;}
.x24{left:631.469987px;}
.x11{left:711.869987px;}
.x13{left:747.149987px;}
.x35{left:749.129987px;}
.x12{left:753.629987px;}
.x34{left:781.889987px;}
.x15{left:788.549987px;}
.x1{left:797.369987px;}
@media print{
.v5{vertical-align:-54.133333pt;}
.vb{vertical-align:-42.986667pt;}
.v9{vertical-align:-40.320000pt;}
.v4{vertical-align:-9.066667pt;}
.va{vertical-align:-4.213333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.v8{vertical-align:63.093333pt;}
.v6{vertical-align:72.213333pt;}
.v3{vertical-align:85.866667pt;}
.v7{vertical-align:126.346667pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.275733pt;}
.lsa{letter-spacing:-0.204267pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.147733pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.077333pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.033280pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsb{letter-spacing:48.128000pt;}
.ls2{letter-spacing:338.284160pt;}
.ws7{word-spacing:-18.752000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.686720pt;}
.ws5{word-spacing:-16.922880pt;}
.ws13{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws10{word-spacing:-14.492928pt;}
.ws11{word-spacing:-14.464000pt;}
.wsd{word-spacing:-12.005120pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:-1.532160pt;}
.ws6{word-spacing:-0.480000pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:143.872427pt;}
.wsc{word-spacing:167.159467pt;}
.wse{word-spacing:272.027947pt;}
.wsb{word-spacing:276.494400pt;}
.wsa{word-spacing:276.718400pt;}
.wsf{word-spacing:393.595520pt;}
._4{margin-left:-4.736000pt;}
._3{margin-left:-3.541333pt;}
._f{margin-left:-1.903787pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.082667pt;}
._2{width:2.136747pt;}
._9{width:3.269760pt;}
._e{width:4.373333pt;}
._10{width:5.341013pt;}
._c{width:6.551253pt;}
._d{width:7.976747pt;}
._14{width:9.381120pt;}
._11{width:10.711040pt;}
._8{width:11.880960pt;}
._12{width:12.824747pt;}
._13{width:13.952000pt;}
._7{width:14.929920pt;}
._a{width:18.944000pt;}
._b{width:19.904000pt;}
._19{width:21.493120pt;}
._16{width:23.104000pt;}
._1c{width:28.864000pt;}
._17{width:30.848000pt;}
._18{width:32.272000pt;}
._22{width:38.144000pt;}
._21{width:39.594667pt;}
._5{width:42.666667pt;}
._6{width:43.605333pt;}
._1d{width:58.944000pt;}
._1e{width:60.608000pt;}
._1b{width:88.837547pt;}
._1f{width:93.696000pt;}
._20{width:94.656000pt;}
._1a{width:131.723520pt;}
._15{width:134.288640pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fs3{font-size:85.120000pt;}
.y72{bottom:-32.000000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:1.213333pt;}
.y71{bottom:8.000000pt;}
.y6{bottom:9.440000pt;}
.y7{bottom:10.080000pt;}
.y93{bottom:15.296000pt;}
.y6b{bottom:16.293333pt;}
.y64{bottom:16.866667pt;}
.y59{bottom:36.546667pt;}
.y6a{bottom:37.760000pt;}
.y92{bottom:38.080000pt;}
.y5e{bottom:45.146667pt;}
.y8{bottom:51.040000pt;}
.y88{bottom:52.480000pt;}
.y53{bottom:57.053333pt;}
.y66{bottom:61.053333pt;}
.y8d{bottom:62.306667pt;}
.y58{bottom:63.426667pt;}
.y62{bottom:64.253333pt;}
.y5{bottom:65.632000pt;}
.y87{bottom:69.826667pt;}
.y5d{bottom:73.466667pt;}
.y57{bottom:82.626667pt;}
.y67{bottom:83.613333pt;}
.y61{bottom:84.733333pt;}
.y52{bottom:85.373333pt;}
.y86{bottom:86.106667pt;}
.y7e{bottom:90.912000pt;}
.y8c{bottom:92.000000pt;}
.y5c{bottom:93.946667pt;}
.ybe{bottom:95.712000pt;}
.y56{bottom:101.986667pt;}
.y34{bottom:102.752000pt;}
.y6c{bottom:103.293333pt;}
.y8e{bottom:103.453333pt;}
.y60{bottom:105.213333pt;}
.y51{bottom:105.853333pt;}
.y68{bottom:106.173333pt;}
.y4c{bottom:111.232000pt;}
.y85{bottom:113.120000pt;}
.y5b{bottom:114.426667pt;}
.y94{bottom:115.226667pt;}
.ybd{bottom:116.992000pt;}
.y55{bottom:121.346667pt;}
.y33{bottom:124.032000pt;}
.y6e{bottom:125.733333pt;}
.y50{bottom:126.333333pt;}
.y69{bottom:128.733333pt;}
.y5f{bottom:132.253333pt;}
.y6d{bottom:132.480000pt;}
.y4b{bottom:132.512000pt;}
.ybc{bottom:138.106667pt;}
.y5a{bottom:141.466667pt;}
.y80{bottom:142.786667pt;}
.y98{bottom:143.133333pt;}
.y8f{bottom:144.613333pt;}
.y32{bottom:145.146667pt;}
.y4f{bottom:145.853333pt;}
.y54{bottom:148.066667pt;}
.y95{bottom:152.480000pt;}
.y4a{bottom:153.626667pt;}
.ybb{bottom:159.226667pt;}
.y31{bottom:166.266667pt;}
.y81{bottom:168.453333pt;}
.y49{bottom:174.746667pt;}
.y97{bottom:178.013333pt;}
.yba{bottom:180.346667pt;}
.y8b{bottom:184.000000pt;}
.y90{bottom:185.786667pt;}
.y30{bottom:187.386667pt;}
.y48{bottom:192.026667pt;}
.y65{bottom:192.320000pt;}
.y82{bottom:194.493333pt;}
.yb9{bottom:201.626667pt;}
.y2f{bottom:208.666667pt;}
.y8a{bottom:212.826667pt;}
.y4e{bottom:214.906667pt;}
.y83{bottom:220.960000pt;}
.yb8{bottom:222.746667pt;}
.y91{bottom:226.946667pt;}
.y2e{bottom:229.786667pt;}
.y96{bottom:243.106667pt;}
.yb7{bottom:243.866667pt;}
.y89{bottom:244.666667pt;}
.y84{bottom:247.840000pt;}
.y2d{bottom:250.906667pt;}
.yb6{bottom:264.986667pt;}
.y2c{bottom:272.026667pt;}
.yb5{bottom:286.266667pt;}
.y2b{bottom:293.306667pt;}
.yb4{bottom:307.426667pt;}
.y2a{bottom:314.466667pt;}
.yb3{bottom:328.546667pt;}
.y29{bottom:335.586667pt;}
.yb2{bottom:349.666667pt;}
.y28{bottom:356.706667pt;}
.y7d{bottom:361.506667pt;}
.yb1{bottom:370.946667pt;}
.y27{bottom:377.986667pt;}
.y7c{bottom:382.626667pt;}
.yb0{bottom:392.066667pt;}
.y47{bottom:396.706667pt;}
.y26{bottom:399.106667pt;}
.y70{bottom:403.426667pt;}
.y7b{bottom:403.746667pt;}
.yaf{bottom:413.186667pt;}
.y46{bottom:417.826667pt;}
.y25{bottom:420.226667pt;}
.y7a{bottom:425.026667pt;}
.yae{bottom:433.986667pt;}
.y45{bottom:438.786667pt;}
.y24{bottom:441.346667pt;}
.y79{bottom:446.146667pt;}
.yad{bottom:455.106667pt;}
.y44{bottom:460.226667pt;}
.y23{bottom:462.626667pt;}
.y78{bottom:467.266667pt;}
.yac{bottom:476.706667pt;}
.y43{bottom:481.346667pt;}
.y22{bottom:483.746667pt;}
.y77{bottom:488.386667pt;}
.yab{bottom:497.826667pt;}
.y42{bottom:502.466667pt;}
.y21{bottom:504.866667pt;}
.y76{bottom:509.666667pt;}
.yaa{bottom:518.946667pt;}
.y41{bottom:523.746667pt;}
.y20{bottom:525.986667pt;}
.y75{bottom:530.786667pt;}
.ya9{bottom:540.093333pt;}
.y40{bottom:544.893333pt;}
.y1f{bottom:547.293333pt;}
.y74{bottom:548.093333pt;}
.y7f{bottom:549.600000pt;}
.y63{bottom:559.520000pt;}
.ya8{bottom:561.373333pt;}
.y3f{bottom:562.173333pt;}
.y1e{bottom:568.413333pt;}
.ya7{bottom:582.493333pt;}
.y1d{bottom:589.533333pt;}
.y4d{bottom:598.240000pt;}
.y3e{bottom:600.893333pt;}
.ya6{bottom:603.613333pt;}
.y1c{bottom:610.653333pt;}
.ya5{bottom:624.733333pt;}
.y1b{bottom:631.773333pt;}
.ya4{bottom:646.013333pt;}
.y1a{bottom:653.053333pt;}
.ya3{bottom:667.133333pt;}
.y19{bottom:674.173333pt;}
.ya2{bottom:688.253333pt;}
.y18{bottom:695.293333pt;}
.ya1{bottom:709.373333pt;}
.y17{bottom:716.093333pt;}
.ya0{bottom:730.333333pt;}
.y16{bottom:737.373333pt;}
.y9f{bottom:751.773333pt;}
.y15{bottom:758.813333pt;}
.y9e{bottom:772.893333pt;}
.y14{bottom:779.973333pt;}
.y9d{bottom:794.053333pt;}
.y13{bottom:801.093333pt;}
.y9c{bottom:815.333333pt;}
.y12{bottom:822.373333pt;}
.y9b{bottom:836.453333pt;}
.y11{bottom:843.493333pt;}
.y3d{bottom:857.253333pt;}
.y9a{bottom:857.573333pt;}
.y10{bottom:864.613333pt;}
.y73{bottom:878.373333pt;}
.y3c{bottom:878.693333pt;}
.yf{bottom:885.413333pt;}
.y3b{bottom:899.813333pt;}
.ye{bottom:907.013333pt;}
.y3a{bottom:921.093333pt;}
.yd{bottom:928.133333pt;}
.y39{bottom:942.213333pt;}
.yc{bottom:948.933333pt;}
.y38{bottom:963.333333pt;}
.yb{bottom:970.373333pt;}
.y37{bottom:984.453333pt;}
.ya{bottom:993.413333pt;}
.y36{bottom:1005.733333pt;}
.y9{bottom:1021.600000pt;}
.y99{bottom:1026.560000pt;}
.y35{bottom:1026.880000pt;}
.y4{bottom:1062.240000pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.680000pt;}
.h5{height:24.000000pt;}
.h16{height:24.960000pt;}
.hf{height:38.720000pt;}
.h12{height:40.566250pt;}
.h19{height:41.162813pt;}
.h7{height:44.965000pt;}
.h4{height:48.375000pt;}
.h1c{height:48.875000pt;}
.h1b{height:48.972750pt;}
.hd{height:58.024687pt;}
.h10{height:58.123875pt;}
.h3{height:59.340000pt;}
.ha{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h1d{height:65.781915pt;}
.h14{height:65.959688pt;}
.h9{height:66.404375pt;}
.h17{height:73.490625pt;}
.hc{height:75.465000pt;}
.he{height:75.594000pt;}
.h8{height:85.785000pt;}
.h13{height:161.331667pt;}
.h15{height:192.306354pt;}
.h11{height:197.920000pt;}
.hb{height:252.800000pt;}
.h1a{height:263.040000pt;}
.h18{height:322.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w5{width:265.466667pt;}
.w3{width:265.626667pt;}
.w9{width:537.920000pt;}
.w8{width:595.040000pt;}
.w7{width:607.133333pt;}
.w6{width:607.200000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:5.856000pt;}
.x39{left:9.728000pt;}
.x28{left:12.640000pt;}
.x38{left:13.952000pt;}
.x37{left:16.032000pt;}
.x44{left:18.533333pt;}
.x36{left:24.800000pt;}
.x43{left:26.626667pt;}
.x42{left:34.693333pt;}
.x8{left:38.240000pt;}
.x3a{left:41.306667pt;}
.x2a{left:48.386667pt;}
.x2b{left:55.653333pt;}
.x2c{left:81.733333pt;}
.x5{left:85.152000pt;}
.xe{left:90.271988pt;}
.x27{left:92.800000pt;}
.xa{left:98.271988pt;}
.x45{left:101.253333pt;}
.x3e{left:104.546667pt;}
.x46{left:107.293333pt;}
.x2d{left:108.893333pt;}
.x4d{left:113.631988pt;}
.x48{left:116.066667pt;}
.x30{left:117.632000pt;}
.xd{left:126.111988pt;}
.x41{left:127.840000pt;}
.xc{left:132.351988pt;}
.xb{left:155.386655pt;}
.x31{left:159.714667pt;}
.x3{left:174.106655pt;}
.x47{left:182.080000pt;}
.x49{left:193.413333pt;}
.x18{left:207.039988pt;}
.x14{left:211.386655pt;}
.x17{left:216.479988pt;}
.x3f{left:218.946667pt;}
.x19{left:225.279988pt;}
.x2f{left:233.053333pt;}
.x6{left:258.434667pt;}
.x26{left:266.879988pt;}
.x4a{left:270.400000pt;}
.x33{left:278.946655pt;}
.x10{left:286.466655pt;}
.xf{left:290.626655pt;}
.x2{left:296.226655pt;}
.x3b{left:299.866667pt;}
.x32{left:303.581333pt;}
.x4{left:304.546655pt;}
.x1d{left:312.093322pt;}
.x3c{left:320.186667pt;}
.x1b{left:322.013322pt;}
.x1a{left:323.133322pt;}
.x1c{left:326.493322pt;}
.x1e{left:334.813322pt;}
.x1f{left:336.253322pt;}
.x4b{left:347.746667pt;}
.x7{left:350.786667pt;}
.x16{left:372.639988pt;}
.x21{left:433.213322pt;}
.x4c{left:434.853333pt;}
.x9{left:443.293333pt;}
.x3d{left:444.413333pt;}
.x20{left:448.253322pt;}
.x23{left:457.213322pt;}
.x22{left:467.133322pt;}
.x40{left:482.213333pt;}
.x2e{left:495.813333pt;}
.x25{left:551.386655pt;}
.x24{left:561.306655pt;}
.x11{left:632.773322pt;}
.x13{left:664.133322pt;}
.x35{left:665.893322pt;}
.x12{left:669.893322pt;}
.x34{left:695.013322pt;}
.x15{left:700.933322pt;}
.x1{left:708.773322pt;}
}




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