
    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_6ea05acd7fd122e97053ee1a.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_5a7fc5de411da4786bc9c839.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_97e4dc2ef9ef03730d2ff64d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_81ede797b995d95a063765d2.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_bee2dbec95f98f6b02a9710d.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_56ee11b429e4255aa8899561.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a1376b1da7db52c4ca31bb25.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_5612cee93622b9dd60b861a9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a69556dc4f747bcbecb9287c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls11{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.382800px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.924000px;}
.ls6{letter-spacing:1.440000px;}
.ls1{letter-spacing:2.160000px;}
.lsc{letter-spacing:3.600000px;}
.lsd{letter-spacing:5.040000px;}
.lse{letter-spacing:7.920000px;}
.lsf{letter-spacing:17.424000px;}
.lsa{letter-spacing:53.424000px;}
.ls9{letter-spacing:137.064000px;}
.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;}
}
.ws6{word-spacing:-19.440000px;}
.ws1{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-12.366720px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:59.550240px;}
.ws4{word-spacing:466.050240px;}
._17{margin-left:-4.659840px;}
._c{margin-left:-3.522720px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.341440px;}
._4{width:3.375840px;}
._5{width:5.143200px;}
._9{width:6.463680px;}
._12{width:7.519680px;}
._e{width:8.858880px;}
._d{width:9.970560px;}
._7{width:11.905920px;}
._18{width:13.066560px;}
._6{width:14.184000px;}
._8{width:15.240960px;}
._b{width:16.966080px;}
._a{width:20.064960px;}
._13{width:21.531360px;}
._14{width:23.037120px;}
._1b{width:24.416160px;}
._1d{width:25.949280px;}
._1c{width:27.098400px;}
._1a{width:28.840320px;}
._19{width:29.891520px;}
._21{width:32.336160px;}
._20{width:33.650400px;}
._15{width:39.689760px;}
._16{width:41.140320px;}
._f{width:43.738560px;}
._11{width:45.119040px;}
._10{width:46.238880px;}
._23{width:47.789280px;}
._1e{width:82.834560px;}
._1f{width:144.953280px;}
._22{width:227.621280px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y8d{bottom:13.065000px;}
.y86{bottom:30.600000px;}
.yaf{bottom:50.220000px;}
.y8{bottom:57.240000px;}
.y87{bottom:69.690000px;}
.y5{bottom:73.476000px;}
.y85{bottom:91.770000px;}
.y84{bottom:107.385000px;}
.y88{bottom:108.795000px;}
.yab{bottom:113.796000px;}
.y34{bottom:115.596000px;}
.y83{bottom:123.045000px;}
.y80{bottom:128.196000px;}
.yaa{bottom:137.556000px;}
.y33{bottom:139.356000px;}
.y89{bottom:147.885000px;}
.y7f{bottom:152.310000px;}
.y5f{bottom:155.190000px;}
.ya9{bottom:161.310000px;}
.y32{bottom:162.750000px;}
.y7e{bottom:176.070000px;}
.y5e{bottom:179.310000px;}
.ya8{bottom:185.430000px;}
.y8a{bottom:186.945000px;}
.y31{bottom:187.230000px;}
.y7d{bottom:199.875000px;}
.y5d{bottom:203.115000px;}
.ya7{bottom:209.235000px;}
.y30{bottom:211.035000px;}
.yae{bottom:219.390000px;}
.y7c{bottom:223.635000px;}
.y8b{bottom:226.050000px;}
.y5c{bottom:226.875000px;}
.ya6{bottom:232.995000px;}
.y2f{bottom:234.795000px;}
.y7b{bottom:247.395000px;}
.y5b{bottom:250.635000px;}
.yad{bottom:251.895000px;}
.y82{bottom:255.930000px;}
.ya5{bottom:256.755000px;}
.y2e{bottom:258.555000px;}
.y8c{bottom:265.140000px;}
.y7a{bottom:271.155000px;}
.y5a{bottom:274.395000px;}
.ya4{bottom:280.515000px;}
.y2d{bottom:282.315000px;}
.y79{bottom:294.915000px;}
.yb0{bottom:298.050000px;}
.y59{bottom:298.155000px;}
.ya3{bottom:304.275000px;}
.y2c{bottom:306.075000px;}
.y78{bottom:318.675000px;}
.y58{bottom:321.945000px;}
.ya2{bottom:327.705000px;}
.y2b{bottom:329.865000px;}
.y77{bottom:342.465000px;}
.y57{bottom:345.705000px;}
.ya1{bottom:351.465000px;}
.y2a{bottom:353.625000px;}
.y76{bottom:366.585000px;}
.y56{bottom:369.825000px;}
.ya0{bottom:375.945000px;}
.y29{bottom:377.745000px;}
.y75{bottom:390.345000px;}
.y55{bottom:393.585000px;}
.y9f{bottom:399.705000px;}
.y28{bottom:401.505000px;}
.y74{bottom:414.105000px;}
.y54{bottom:417.345000px;}
.y9e{bottom:423.465000px;}
.y27{bottom:425.265000px;}
.y73{bottom:437.865000px;}
.y53{bottom:441.105000px;}
.y9d{bottom:447.270000px;}
.y26{bottom:449.070000px;}
.y72{bottom:461.670000px;}
.y52{bottom:464.910000px;}
.y9c{bottom:471.030000px;}
.y25{bottom:472.830000px;}
.y71{bottom:485.430000px;}
.y51{bottom:488.670000px;}
.y9b{bottom:494.790000px;}
.y24{bottom:496.590000px;}
.y70{bottom:509.190000px;}
.y50{bottom:512.430000px;}
.y9a{bottom:518.550000px;}
.y23{bottom:520.350000px;}
.y6f{bottom:532.950000px;}
.y4f{bottom:536.190000px;}
.y99{bottom:542.310000px;}
.y22{bottom:544.110000px;}
.y6e{bottom:557.070000px;}
.y4e{bottom:559.950000px;}
.y98{bottom:566.430000px;}
.y21{bottom:568.230000px;}
.y6d{bottom:580.860000px;}
.y4d{bottom:583.740000px;}
.yb1{bottom:584.100000px;}
.y97{bottom:589.860000px;}
.y20{bottom:592.020000px;}
.y6c{bottom:604.620000px;}
.y4c{bottom:607.860000px;}
.y96{bottom:613.980000px;}
.y1f{bottom:615.780000px;}
.y6b{bottom:628.380000px;}
.y4b{bottom:631.620000px;}
.y95{bottom:637.740000px;}
.y1e{bottom:639.540000px;}
.y6a{bottom:652.140000px;}
.y4a{bottom:655.380000px;}
.y94{bottom:661.500000px;}
.y1d{bottom:663.300000px;}
.y69{bottom:675.900000px;}
.y49{bottom:679.140000px;}
.y93{bottom:685.260000px;}
.y1c{bottom:687.060000px;}
.y68{bottom:699.690000px;}
.y48{bottom:702.930000px;}
.y92{bottom:709.050000px;}
.y1b{bottom:710.850000px;}
.y67{bottom:723.450000px;}
.y47{bottom:726.690000px;}
.y91{bottom:732.810000px;}
.y1a{bottom:734.610000px;}
.y66{bottom:747.210000px;}
.y46{bottom:750.450000px;}
.y90{bottom:756.210000px;}
.y19{bottom:758.010000px;}
.y65{bottom:770.970000px;}
.y45{bottom:774.570000px;}
.y8f{bottom:780.330000px;}
.y18{bottom:782.490000px;}
.y64{bottom:794.730000px;}
.y44{bottom:798.330000px;}
.y8e{bottom:799.770000px;}
.yac{bottom:800.280000px;}
.y17{bottom:806.250000px;}
.y63{bottom:818.490000px;}
.y43{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.y62{bottom:842.295000px;}
.y42{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y61{bottom:866.055000px;}
.y41{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.y60{bottom:885.855000px;}
.y81{bottom:885.960000px;}
.y40{bottom:893.415000px;}
.y13{bottom:901.335000px;}
.y3f{bottom:917.175000px;}
.y12{bottom:924.735000px;}
.y3e{bottom:940.935000px;}
.y11{bottom:948.495000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:973.005000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.765000px;}
.y3b{bottom:1012.605000px;}
.ye{bottom:1020.525000px;}
.y3a{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y39{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y36{bottom:1131.450000px;}
.y9{bottom:1149.090000px;}
.y35{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.he{height:41.494219px;}
.h11{height:42.402656px;}
.h7{height:50.229844px;}
.hc{height:50.484375px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.hf{height:74.004654px;}
.h9{height:75.251250px;}
.h8{height:97.233750px;}
.hd{height:285.480000px;}
.h10{height:323.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w3{width:298.905000px;}
.w6{width:540.000000px;}
.w5{width:568.080000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1e{left:9.975000px;}
.x1d{left:16.815000px;}
.x8{left:38.550000px;}
.x5{left:95.796000px;}
.x19{left:97.485000px;}
.x1f{left:105.690000px;}
.xd{left:120.635987px;}
.x23{left:127.835987px;}
.x11{left:149.111987px;}
.xa{left:164.954987px;}
.x22{left:176.114987px;}
.x18{left:188.280000px;}
.x25{left:193.140000px;}
.x21{left:194.474987px;}
.x3{left:196.274987px;}
.x1a{left:215.430000px;}
.x15{left:236.624987px;}
.xb{left:241.664987px;}
.x26{left:249.870000px;}
.x17{left:257.864987px;}
.x24{left:275.940000px;}
.x13{left:287.024987px;}
.x6{left:290.634000px;}
.x14{left:293.504987px;}
.xc{left:314.744987px;}
.x10{left:322.664987px;}
.x16{left:324.464987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x1b{left:353.850000px;}
.xf{left:379.589987px;}
.x7{left:394.710000px;}
.xe{left:405.509987px;}
.x1c{left:480.390000px;}
.x9{left:498.780000px;}
.x20{left:716.684987px;}
.x12{left:758.084987px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.340267pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.821333pt;}
.ls6{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.920000pt;}
.lsc{letter-spacing:3.200000pt;}
.lsd{letter-spacing:4.480000pt;}
.lse{letter-spacing:7.040000pt;}
.lsf{letter-spacing:15.488000pt;}
.lsa{letter-spacing:47.488000pt;}
.ls9{letter-spacing:121.834667pt;}
.ws6{word-spacing:-17.280000pt;}
.ws1{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-10.992640pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:52.933547pt;}
.ws4{word-spacing:414.266880pt;}
._17{margin-left:-4.142080pt;}
._c{margin-left:-3.131307pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.081280pt;}
._4{width:3.000747pt;}
._5{width:4.571733pt;}
._9{width:5.745493pt;}
._12{width:6.684160pt;}
._e{width:7.874560pt;}
._d{width:8.862720pt;}
._7{width:10.583040pt;}
._18{width:11.614720pt;}
._6{width:12.608000pt;}
._8{width:13.547520pt;}
._b{width:15.080960pt;}
._a{width:17.835520pt;}
._13{width:19.138987pt;}
._14{width:20.477440pt;}
._1b{width:21.703253pt;}
._1d{width:23.066027pt;}
._1c{width:24.087467pt;}
._1a{width:25.635840pt;}
._19{width:26.570240pt;}
._21{width:28.743253pt;}
._20{width:29.911467pt;}
._15{width:35.279787pt;}
._16{width:36.569173pt;}
._f{width:38.878720pt;}
._11{width:40.105813pt;}
._10{width:41.101227pt;}
._23{width:42.479360pt;}
._1e{width:73.630720pt;}
._1f{width:128.847360pt;}
._22{width:202.330027pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y8d{bottom:11.613333pt;}
.y86{bottom:27.200000pt;}
.yaf{bottom:44.640000pt;}
.y8{bottom:50.880000pt;}
.y87{bottom:61.946667pt;}
.y5{bottom:65.312000pt;}
.y85{bottom:81.573333pt;}
.y84{bottom:95.453333pt;}
.y88{bottom:96.706667pt;}
.yab{bottom:101.152000pt;}
.y34{bottom:102.752000pt;}
.y83{bottom:109.373333pt;}
.y80{bottom:113.952000pt;}
.yaa{bottom:122.272000pt;}
.y33{bottom:123.872000pt;}
.y89{bottom:131.453333pt;}
.y7f{bottom:135.386667pt;}
.y5f{bottom:137.946667pt;}
.ya9{bottom:143.386667pt;}
.y32{bottom:144.666667pt;}
.y7e{bottom:156.506667pt;}
.y5e{bottom:159.386667pt;}
.ya8{bottom:164.826667pt;}
.y8a{bottom:166.173333pt;}
.y31{bottom:166.426667pt;}
.y7d{bottom:177.666667pt;}
.y5d{bottom:180.546667pt;}
.ya7{bottom:185.986667pt;}
.y30{bottom:187.586667pt;}
.yae{bottom:195.013333pt;}
.y7c{bottom:198.786667pt;}
.y8b{bottom:200.933333pt;}
.y5c{bottom:201.666667pt;}
.ya6{bottom:207.106667pt;}
.y2f{bottom:208.706667pt;}
.y7b{bottom:219.906667pt;}
.y5b{bottom:222.786667pt;}
.yad{bottom:223.906667pt;}
.y82{bottom:227.493333pt;}
.ya5{bottom:228.226667pt;}
.y2e{bottom:229.826667pt;}
.y8c{bottom:235.680000pt;}
.y7a{bottom:241.026667pt;}
.y5a{bottom:243.906667pt;}
.ya4{bottom:249.346667pt;}
.y2d{bottom:250.946667pt;}
.y79{bottom:262.146667pt;}
.yb0{bottom:264.933333pt;}
.y59{bottom:265.026667pt;}
.ya3{bottom:270.466667pt;}
.y2c{bottom:272.066667pt;}
.y78{bottom:283.266667pt;}
.y58{bottom:286.173333pt;}
.ya2{bottom:291.293333pt;}
.y2b{bottom:293.213333pt;}
.y77{bottom:304.413333pt;}
.y57{bottom:307.293333pt;}
.ya1{bottom:312.413333pt;}
.y2a{bottom:314.333333pt;}
.y76{bottom:325.853333pt;}
.y56{bottom:328.733333pt;}
.ya0{bottom:334.173333pt;}
.y29{bottom:335.773333pt;}
.y75{bottom:346.973333pt;}
.y55{bottom:349.853333pt;}
.y9f{bottom:355.293333pt;}
.y28{bottom:356.893333pt;}
.y74{bottom:368.093333pt;}
.y54{bottom:370.973333pt;}
.y9e{bottom:376.413333pt;}
.y27{bottom:378.013333pt;}
.y73{bottom:389.213333pt;}
.y53{bottom:392.093333pt;}
.y9d{bottom:397.573333pt;}
.y26{bottom:399.173333pt;}
.y72{bottom:410.373333pt;}
.y52{bottom:413.253333pt;}
.y9c{bottom:418.693333pt;}
.y25{bottom:420.293333pt;}
.y71{bottom:431.493333pt;}
.y51{bottom:434.373333pt;}
.y9b{bottom:439.813333pt;}
.y24{bottom:441.413333pt;}
.y70{bottom:452.613333pt;}
.y50{bottom:455.493333pt;}
.y9a{bottom:460.933333pt;}
.y23{bottom:462.533333pt;}
.y6f{bottom:473.733333pt;}
.y4f{bottom:476.613333pt;}
.y99{bottom:482.053333pt;}
.y22{bottom:483.653333pt;}
.y6e{bottom:495.173333pt;}
.y4e{bottom:497.733333pt;}
.y98{bottom:503.493333pt;}
.y21{bottom:505.093333pt;}
.y6d{bottom:516.320000pt;}
.y4d{bottom:518.880000pt;}
.yb1{bottom:519.200000pt;}
.y97{bottom:524.320000pt;}
.y20{bottom:526.240000pt;}
.y6c{bottom:537.440000pt;}
.y4c{bottom:540.320000pt;}
.y96{bottom:545.760000pt;}
.y1f{bottom:547.360000pt;}
.y6b{bottom:558.560000pt;}
.y4b{bottom:561.440000pt;}
.y95{bottom:566.880000pt;}
.y1e{bottom:568.480000pt;}
.y6a{bottom:579.680000pt;}
.y4a{bottom:582.560000pt;}
.y94{bottom:588.000000pt;}
.y1d{bottom:589.600000pt;}
.y69{bottom:600.800000pt;}
.y49{bottom:603.680000pt;}
.y93{bottom:609.120000pt;}
.y1c{bottom:610.720000pt;}
.y68{bottom:621.946667pt;}
.y48{bottom:624.826667pt;}
.y92{bottom:630.266667pt;}
.y1b{bottom:631.866667pt;}
.y67{bottom:643.066667pt;}
.y47{bottom:645.946667pt;}
.y91{bottom:651.386667pt;}
.y1a{bottom:652.986667pt;}
.y66{bottom:664.186667pt;}
.y46{bottom:667.066667pt;}
.y90{bottom:672.186667pt;}
.y19{bottom:673.786667pt;}
.y65{bottom:685.306667pt;}
.y45{bottom:688.506667pt;}
.y8f{bottom:693.626667pt;}
.y18{bottom:695.546667pt;}
.y64{bottom:706.426667pt;}
.y44{bottom:709.626667pt;}
.y8e{bottom:710.906667pt;}
.yac{bottom:711.360000pt;}
.y17{bottom:716.666667pt;}
.y63{bottom:727.546667pt;}
.y43{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.y62{bottom:748.706667pt;}
.y42{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y61{bottom:769.826667pt;}
.y41{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.y60{bottom:787.426667pt;}
.y81{bottom:787.520000pt;}
.y40{bottom:794.146667pt;}
.y13{bottom:801.186667pt;}
.y3f{bottom:815.266667pt;}
.y12{bottom:821.986667pt;}
.y3e{bottom:836.386667pt;}
.y11{bottom:843.106667pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.893333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:886.013333pt;}
.y3b{bottom:900.093333pt;}
.ye{bottom:907.133333pt;}
.y3a{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y39{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y36{bottom:1005.733333pt;}
.y9{bottom:1021.413333pt;}
.y35{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.he{height:36.883750pt;}
.h11{height:37.691250pt;}
.h7{height:44.648750pt;}
.hc{height:44.875000pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.hf{height:65.781915pt;}
.h9{height:66.890000pt;}
.h8{height:86.430000pt;}
.hd{height:253.760000pt;}
.h10{height:287.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w3{width:265.693333pt;}
.w6{width:480.000000pt;}
.w5{width:504.960000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1e{left:8.866667pt;}
.x1d{left:14.946667pt;}
.x8{left:34.266667pt;}
.x5{left:85.152000pt;}
.x19{left:86.653333pt;}
.x1f{left:93.946667pt;}
.xd{left:107.231988pt;}
.x23{left:113.631988pt;}
.x11{left:132.543988pt;}
.xa{left:146.626655pt;}
.x22{left:156.546655pt;}
.x18{left:167.360000pt;}
.x25{left:171.680000pt;}
.x21{left:172.866655pt;}
.x3{left:174.466655pt;}
.x1a{left:191.493333pt;}
.x15{left:210.333322pt;}
.xb{left:214.813322pt;}
.x26{left:222.106667pt;}
.x17{left:229.213322pt;}
.x24{left:245.280000pt;}
.x13{left:255.133322pt;}
.x6{left:258.341333pt;}
.x14{left:260.893322pt;}
.xc{left:279.773322pt;}
.x10{left:286.813322pt;}
.x16{left:288.413322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x1b{left:314.533333pt;}
.xf{left:337.413322pt;}
.x7{left:350.853333pt;}
.xe{left:360.453322pt;}
.x1c{left:427.013333pt;}
.x9{left:443.360000pt;}
.x20{left:637.053322pt;}
.x12{left:673.853322pt;}
.x1{left:709.053322pt;}
}




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