
    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_bcd5b811912926829a4d94cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901855;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_0bc094d6e1109d21541943a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_4e0d745655bdbdc2b78f1900.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_5792cd9085652427acd50596.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_d8d373995cfe2195107bd8c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928223;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_a01a1394a540af4cc3a0a5ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_eb92e390727b5ee1dcfef190.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_2e2ff0124b4a30547d885508.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_a50dc2de859ec72b747cb020.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_934d8a8e537aaa52032ca560.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8ac39bc5760e10e3651c57b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.496200px;}
.ls14{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.034560px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls5{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.733440px;}
.ls1e{letter-spacing:0.900000px;}
.ls1f{letter-spacing:1.620000px;}
.ls20{letter-spacing:4.500000px;}
.ls1a{letter-spacing:5.220000px;}
.ls1c{letter-spacing:7.380000px;}
.ls1d{letter-spacing:8.820000px;}
.ls21{letter-spacing:18.156000px;}
.ls1b{letter-spacing:20.340000px;}
.ls11{letter-spacing:34.841280px;}
.ls10{letter-spacing:39.881280px;}
.ls12{letter-spacing:39.905280px;}
.ls17{letter-spacing:40.085280px;}
.ls15{letter-spacing:43.685280px;}
.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;}
}
.wsc{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.410720px;}
.ws5{word-spacing:-13.284000px;}
.ws2{word-spacing:-13.229520px;}
.wsd{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.700000px;}
.ws7{word-spacing:-11.563800px;}
.ws4{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
.ws1{word-spacing:0.047040px;}
._1a{margin-left:-4.968000px;}
._4{margin-left:-3.672000px;}
._5{margin-left:-2.538000px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._9{width:3.108000px;}
._16{width:4.183680px;}
._15{width:5.404320px;}
._11{width:6.480000px;}
._14{width:7.506000px;}
._12{width:8.997360px;}
._3{width:10.010640px;}
._2{width:11.640000px;}
._17{width:13.314240px;}
._a{width:14.526000px;}
._10{width:15.828480px;}
._13{width:18.090000px;}
._8{width:19.708320px;}
._7{width:21.378000px;}
._6{width:22.464000px;}
._b{width:23.490000px;}
._f{width:24.682320px;}
._e{width:25.866000px;}
._22{width:26.959680px;}
._23{width:28.252080px;}
._19{width:30.205440px;}
._1e{width:31.666320px;}
._1f{width:33.315120px;}
._18{width:34.577280px;}
._1c{width:36.034560px;}
._1b{width:37.558080px;}
._24{width:38.660160px;}
._21{width:39.942720px;}
._20{width:41.267520px;}
._d{width:42.726000px;}
._c{width:43.794000px;}
._2c{width:56.833920px;}
._28{width:76.573440px;}
._2b{width:96.048000px;}
._2a{width:97.240320px;}
._29{width:130.161600px;}
._25{width:180.239040px;}
._1d{width:199.416000px;}
._26{width:266.152320px;}
._27{width:267.874560px;}
.fc4{color:transparent;}
.fc5{color:rgb(22,37,51);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc7{color:rgb(33,33,33);}
.fc6{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.880000px;}
.y2{bottom:6.480000px;}
.y41{bottom:9.900000px;}
.y42{bottom:11.340000px;}
.y33{bottom:18.540000px;}
.y5{bottom:27.210000px;}
.y8{bottom:28.830000px;}
.y32{bottom:34.020000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y31{bottom:49.545000px;}
.ya{bottom:56.340000px;}
.y50{bottom:60.840000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y30{bottom:65.025000px;}
.y2f{bottom:80.505000px;}
.y2e{bottom:96.165000px;}
.y4f{bottom:110.340000px;}
.y2d{bottom:111.645000px;}
.y4e{bottom:114.840000px;}
.y83{bottom:124.020000px;}
.y4d{bottom:125.100000px;}
.y2c{bottom:127.125000px;}
.y88{bottom:128.520000px;}
.y82{bottom:137.880000px;}
.y87{bottom:138.960000px;}
.y81{bottom:142.380000px;}
.y2b{bottom:142.605000px;}
.y80{bottom:151.740000px;}
.y7f{bottom:156.240000px;}
.y2a{bottom:158.265000px;}
.y4c{bottom:163.800000px;}
.y90{bottom:165.420000px;}
.y7e{bottom:166.500000px;}
.y9e{bottom:169.920000px;}
.y29{bottom:173.745000px;}
.y86{bottom:175.500000px;}
.y8f{bottom:179.280000px;}
.y8e{bottom:183.780000px;}
.y4b{bottom:185.580000px;}
.y28{bottom:189.225000px;}
.y3e{bottom:190.665000px;}
.y9d{bottom:193.140000px;}
.y8d{bottom:194.040000px;}
.y7d{bottom:197.460000px;}
.y9c{bottom:197.640000px;}
.y3d{bottom:204.345000px;}
.y27{bottom:204.705000px;}
.y9b{bottom:206.820000px;}
.y4a{bottom:207.360000px;}
.ya8{bottom:211.350000px;}
.y3c{bottom:218.205000px;}
.y7c{bottom:219.270000px;}
.y26{bottom:220.365000px;}
.y9a{bottom:220.710000px;}
.y99{bottom:225.210000px;}
.y48{bottom:229.350000px;}
.y3b{bottom:232.065000px;}
.y98{bottom:234.570000px;}
.y49{bottom:235.290000px;}
.y25{bottom:235.845000px;}
.ya7{bottom:239.070000px;}
.y7a{bottom:241.050000px;}
.y3a{bottom:245.745000px;}
.y7b{bottom:246.990000px;}
.y97{bottom:248.250000px;}
.ya6{bottom:249.330000px;}
.y47{bottom:251.130000px;}
.y24{bottom:251.325000px;}
.y96{bottom:252.750000px;}
.y39{bottom:259.605000px;}
.y79{bottom:262.830000px;}
.y95{bottom:263.190000px;}
.y23{bottom:266.805000px;}
.y46{bottom:272.910000px;}
.y38{bottom:273.285000px;}
.y22{bottom:282.495000px;}
.y78{bottom:284.610000px;}
.y37{bottom:287.175000px;}
.y45{bottom:294.690000px;}
.y21{bottom:297.975000px;}
.y36{bottom:301.035000px;}
.y77{bottom:306.570000px;}
.y85{bottom:312.510000px;}
.y20{bottom:313.455000px;}
.y35{bottom:314.715000px;}
.y44{bottom:316.470000px;}
.y76{bottom:328.350000px;}
.y1f{bottom:328.935000px;}
.y43{bottom:333.930000px;}
.y8a{bottom:334.290000px;}
.y1e{bottom:344.595000px;}
.y75{bottom:350.130000px;}
.y40{bottom:356.250000px;}
.y1d{bottom:360.075000px;}
.y74{bottom:371.910000px;}
.y1c{bottom:375.555000px;}
.y3f{bottom:387.750000px;}
.y1b{bottom:391.035000px;}
.y73{bottom:393.870000px;}
.y8c{bottom:399.810000px;}
.y15{bottom:403.230000px;}
.y1a{bottom:406.695000px;}
.y72{bottom:415.650000px;}
.y89{bottom:421.590000px;}
.y19{bottom:422.175000px;}
.y71{bottom:437.430000px;}
.y18{bottom:437.655000px;}
.y94{bottom:443.370000px;}
.y17{bottom:453.135000px;}
.y70{bottom:459.255000px;}
.ya5{bottom:465.195000px;}
.y16{bottom:468.795000px;}
.y6f{bottom:481.035000px;}
.y6e{bottom:502.995000px;}
.y93{bottom:508.935000px;}
.y6d{bottom:524.775000px;}
.y6c{bottom:546.555000px;}
.y6b{bottom:568.335000px;}
.y8b{bottom:574.275000px;}
.y6a{bottom:590.295000px;}
.y69{bottom:612.075000px;}
.ya0{bottom:618.015000px;}
.y68{bottom:633.855000px;}
.y67{bottom:655.635000px;}
.y65{bottom:677.415000px;}
.y66{bottom:683.385000px;}
.y64{bottom:699.405000px;}
.y63{bottom:721.185000px;}
.y62{bottom:742.965000px;}
.ya4{bottom:748.905000px;}
.y61{bottom:764.745000px;}
.y60{bottom:786.705000px;}
.y9f{bottom:792.645000px;}
.y5f{bottom:808.485000px;}
.y5e{bottom:830.265000px;}
.ya3{bottom:836.205000px;}
.y5d{bottom:852.045000px;}
.y92{bottom:857.985000px;}
.y5c{bottom:873.825000px;}
.y14{bottom:890.925000px;}
.y5a{bottom:895.785000px;}
.y5b{bottom:901.725000px;}
.y13{bottom:912.165000px;}
.y59{bottom:917.610000px;}
.y84{bottom:923.550000px;}
.y12{bottom:932.010000px;}
.y58{bottom:939.390000px;}
.ya2{bottom:945.330000px;}
.y11{bottom:957.030000px;}
.y57{bottom:961.170000px;}
.y10{bottom:972.330000px;}
.y56{bottom:982.950000px;}
.ya9{bottom:988.890000px;}
.yf{bottom:994.110000px;}
.y55{bottom:1004.910000px;}
.ya1{bottom:1010.850000px;}
.ye{bottom:1015.890000px;}
.y54{bottom:1026.690000px;}
.yd{bottom:1037.670000px;}
.y53{bottom:1048.470000px;}
.yc{bottom:1060.890000px;}
.y52{bottom:1070.250000px;}
.yb{bottom:1086.630000px;}
.y51{bottom:1092.210000px;}
.y91{bottom:1098.150000px;}
.y9{bottom:1111.110000px;}
.y1{bottom:1131.090000px;}
.h14{height:15.480000px;}
.h18{height:21.114844px;}
.hc{height:27.147656px;}
.h17{height:29.158594px;}
.h15{height:31.500000px;}
.h16{height:33.683203px;}
.h12{height:34.036523px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.h8{height:39.147891px;}
.h13{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h11{height:44.507812px;}
.hd{height:46.251562px;}
.h4{height:46.736719px;}
.h7{height:48.224531px;}
.h6{height:49.255313px;}
.h19{height:50.273438px;}
.hb{height:53.224453px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h2{height:77.436000px;}
.he{height:481.395000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:72.000000px;}
.w4{width:209.415000px;}
.w7{width:224.130000px;}
.w8{width:297.750000px;}
.w9{width:391.605000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:893.159973px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x15{left:29.694000px;}
.x6{left:44.685000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x1c{left:111.815987px;}
.x31{left:115.595987px;}
.xf{left:117.035987px;}
.xb{left:124.775987px;}
.x8{left:127.305000px;}
.x52{left:129.275987px;}
.x13{left:131.075987px;}
.x20{left:135.035987px;}
.x18{left:162.029987px;}
.x3{left:171.930000px;}
.x3d{left:180.929973px;}
.xd{left:182.549987px;}
.x12{left:187.049987px;}
.x25{left:189.029987px;}
.x3e{left:191.369987px;}
.x50{left:201.089973px;}
.x51{left:211.529987px;}
.x26{left:216.029987px;}
.x1e{left:227.369973px;}
.x11{left:232.589987px;}
.x27{left:243.029987px;}
.x2d{left:268.814973px;}
.x28{left:270.074987px;}
.x2e{left:274.034987px;}
.x34{left:284.114987px;}
.x29{left:288.974973px;}
.x2a{left:294.194987px;}
.x49{left:304.274973px;}
.x4a{left:314.714987px;}
.xc{left:317.954987px;}
.x1b{left:324.074987px;}
.x45{left:325.154973px;}
.x46{left:335.594987px;}
.x19{left:352.694973px;}
.x1a{left:357.914987px;}
.x35{left:384.014973px;}
.x36{left:394.454987px;}
.x10{left:395.714987px;}
.x39{left:398.954973px;}
.x42{left:406.514973px;}
.x3a{left:409.394987px;}
.x43{left:416.954987px;}
.x44{left:418.934987px;}
.x16{left:421.995000px;}
.x2b{left:445.604973px;}
.xe{left:446.684987px;}
.x2c{left:450.824987px;}
.xa{left:496.184987px;}
.x14{left:567.105000px;}
.x37{left:569.084973px;}
.x4e{left:577.004973px;}
.x38{left:579.524987px;}
.x23{left:586.004973px;}
.x4f{left:587.444987px;}
.x3f{left:589.964987px;}
.x24{left:591.224987px;}
.x5{left:599.865000px;}
.x21{left:606.884973px;}
.x22{left:612.104987px;}
.x4b{left:623.129973px;}
.x4c{left:633.569987px;}
.x3b{left:661.469973px;}
.x3c{left:671.909987px;}
.x32{left:680.369973px;}
.x33{left:690.809987px;}
.x47{left:730.589973px;}
.x48{left:741.029987px;}
.x2f{left:755.429973px;}
.x40{left:757.949973px;}
.x30{left:765.869987px;}
.x4d{left:767.309987px;}
.x41{left:768.389987px;}
.x1d{left:776.309987px;}
.x17{left:778.109987px;}
.x1f{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.441067pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.030720pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls5{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.651947pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:1.440000pt;}
.ls20{letter-spacing:4.000000pt;}
.ls1a{letter-spacing:4.640000pt;}
.ls1c{letter-spacing:6.560000pt;}
.ls1d{letter-spacing:7.840000pt;}
.ls21{letter-spacing:16.138667pt;}
.ls1b{letter-spacing:18.080000pt;}
.ls11{letter-spacing:30.970027pt;}
.ls10{letter-spacing:35.450027pt;}
.ls12{letter-spacing:35.471360pt;}
.ls17{letter-spacing:35.631360pt;}
.ls15{letter-spacing:38.831360pt;}
.wsc{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.920640pt;}
.ws5{word-spacing:-11.808000pt;}
.ws2{word-spacing:-11.759573pt;}
.wsd{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.400000pt;}
.ws7{word-spacing:-10.278933pt;}
.ws4{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
.ws1{word-spacing:0.041813pt;}
._1a{margin-left:-4.416000pt;}
._4{margin-left:-3.264000pt;}
._5{margin-left:-2.256000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._9{width:2.762667pt;}
._16{width:3.718827pt;}
._15{width:4.803840pt;}
._11{width:5.760000pt;}
._14{width:6.672000pt;}
._12{width:7.997653pt;}
._3{width:8.898347pt;}
._2{width:10.346667pt;}
._17{width:11.834880pt;}
._a{width:12.912000pt;}
._10{width:14.069760pt;}
._13{width:16.080000pt;}
._8{width:17.518507pt;}
._7{width:19.002667pt;}
._6{width:19.968000pt;}
._b{width:20.880000pt;}
._f{width:21.939840pt;}
._e{width:22.992000pt;}
._22{width:23.964160pt;}
._23{width:25.112960pt;}
._19{width:26.849280pt;}
._1e{width:28.147840pt;}
._1f{width:29.613440pt;}
._18{width:30.735360pt;}
._1c{width:32.030720pt;}
._1b{width:33.384960pt;}
._24{width:34.364587pt;}
._21{width:35.504640pt;}
._20{width:36.682240pt;}
._d{width:37.978667pt;}
._c{width:38.928000pt;}
._2c{width:50.519040pt;}
._28{width:68.065280pt;}
._2b{width:85.376000pt;}
._2a{width:86.435840pt;}
._29{width:115.699200pt;}
._25{width:160.212480pt;}
._1d{width:177.258667pt;}
._26{width:236.579840pt;}
._27{width:238.110720pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.560000pt;}
.y2{bottom:5.760000pt;}
.y41{bottom:8.800000pt;}
.y42{bottom:10.080000pt;}
.y33{bottom:16.480000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.626667pt;}
.y32{bottom:30.240000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y31{bottom:44.040000pt;}
.ya{bottom:50.080000pt;}
.y50{bottom:54.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y30{bottom:57.800000pt;}
.y2f{bottom:71.560000pt;}
.y2e{bottom:85.480000pt;}
.y4f{bottom:98.080000pt;}
.y2d{bottom:99.240000pt;}
.y4e{bottom:102.080000pt;}
.y83{bottom:110.240000pt;}
.y4d{bottom:111.200000pt;}
.y2c{bottom:113.000000pt;}
.y88{bottom:114.240000pt;}
.y82{bottom:122.560000pt;}
.y87{bottom:123.520000pt;}
.y81{bottom:126.560000pt;}
.y2b{bottom:126.760000pt;}
.y80{bottom:134.880000pt;}
.y7f{bottom:138.880000pt;}
.y2a{bottom:140.680000pt;}
.y4c{bottom:145.600000pt;}
.y90{bottom:147.040000pt;}
.y7e{bottom:148.000000pt;}
.y9e{bottom:151.040000pt;}
.y29{bottom:154.440000pt;}
.y86{bottom:156.000000pt;}
.y8f{bottom:159.360000pt;}
.y8e{bottom:163.360000pt;}
.y4b{bottom:164.960000pt;}
.y28{bottom:168.200000pt;}
.y3e{bottom:169.480000pt;}
.y9d{bottom:171.680000pt;}
.y8d{bottom:172.480000pt;}
.y7d{bottom:175.520000pt;}
.y9c{bottom:175.680000pt;}
.y3d{bottom:181.640000pt;}
.y27{bottom:181.960000pt;}
.y9b{bottom:183.840000pt;}
.y4a{bottom:184.320000pt;}
.ya8{bottom:187.866667pt;}
.y3c{bottom:193.960000pt;}
.y7c{bottom:194.906667pt;}
.y26{bottom:195.880000pt;}
.y9a{bottom:196.186667pt;}
.y99{bottom:200.186667pt;}
.y48{bottom:203.866667pt;}
.y3b{bottom:206.280000pt;}
.y98{bottom:208.506667pt;}
.y49{bottom:209.146667pt;}
.y25{bottom:209.640000pt;}
.ya7{bottom:212.506667pt;}
.y7a{bottom:214.266667pt;}
.y3a{bottom:218.440000pt;}
.y7b{bottom:219.546667pt;}
.y97{bottom:220.666667pt;}
.ya6{bottom:221.626667pt;}
.y47{bottom:223.226667pt;}
.y24{bottom:223.400000pt;}
.y96{bottom:224.666667pt;}
.y39{bottom:230.760000pt;}
.y79{bottom:233.626667pt;}
.y95{bottom:233.946667pt;}
.y23{bottom:237.160000pt;}
.y46{bottom:242.586667pt;}
.y38{bottom:242.920000pt;}
.y22{bottom:251.106667pt;}
.y78{bottom:252.986667pt;}
.y37{bottom:255.266667pt;}
.y45{bottom:261.946667pt;}
.y21{bottom:264.866667pt;}
.y36{bottom:267.586667pt;}
.y77{bottom:272.506667pt;}
.y85{bottom:277.786667pt;}
.y20{bottom:278.626667pt;}
.y35{bottom:279.746667pt;}
.y44{bottom:281.306667pt;}
.y76{bottom:291.866667pt;}
.y1f{bottom:292.386667pt;}
.y43{bottom:296.826667pt;}
.y8a{bottom:297.146667pt;}
.y1e{bottom:306.306667pt;}
.y75{bottom:311.226667pt;}
.y40{bottom:316.666667pt;}
.y1d{bottom:320.066667pt;}
.y74{bottom:330.586667pt;}
.y1c{bottom:333.826667pt;}
.y3f{bottom:344.666667pt;}
.y1b{bottom:347.586667pt;}
.y73{bottom:350.106667pt;}
.y8c{bottom:355.386667pt;}
.y15{bottom:358.426667pt;}
.y1a{bottom:361.506667pt;}
.y72{bottom:369.466667pt;}
.y89{bottom:374.746667pt;}
.y19{bottom:375.266667pt;}
.y71{bottom:388.826667pt;}
.y18{bottom:389.026667pt;}
.y94{bottom:394.106667pt;}
.y17{bottom:402.786667pt;}
.y70{bottom:408.226667pt;}
.ya5{bottom:413.506667pt;}
.y16{bottom:416.706667pt;}
.y6f{bottom:427.586667pt;}
.y6e{bottom:447.106667pt;}
.y93{bottom:452.386667pt;}
.y6d{bottom:466.466667pt;}
.y6c{bottom:485.826667pt;}
.y6b{bottom:505.186667pt;}
.y8b{bottom:510.466667pt;}
.y6a{bottom:524.706667pt;}
.y69{bottom:544.066667pt;}
.ya0{bottom:549.346667pt;}
.y68{bottom:563.426667pt;}
.y67{bottom:582.786667pt;}
.y65{bottom:602.146667pt;}
.y66{bottom:607.453333pt;}
.y64{bottom:621.693333pt;}
.y63{bottom:641.053333pt;}
.y62{bottom:660.413333pt;}
.ya4{bottom:665.693333pt;}
.y61{bottom:679.773333pt;}
.y60{bottom:699.293333pt;}
.y9f{bottom:704.573333pt;}
.y5f{bottom:718.653333pt;}
.y5e{bottom:738.013333pt;}
.ya3{bottom:743.293333pt;}
.y5d{bottom:757.373333pt;}
.y92{bottom:762.653333pt;}
.y5c{bottom:776.733333pt;}
.y14{bottom:791.933333pt;}
.y5a{bottom:796.253333pt;}
.y5b{bottom:801.533333pt;}
.y13{bottom:810.813333pt;}
.y59{bottom:815.653333pt;}
.y84{bottom:820.933333pt;}
.y12{bottom:828.453333pt;}
.y58{bottom:835.013333pt;}
.ya2{bottom:840.293333pt;}
.y11{bottom:850.693333pt;}
.y57{bottom:854.373333pt;}
.y10{bottom:864.293333pt;}
.y56{bottom:873.733333pt;}
.ya9{bottom:879.013333pt;}
.yf{bottom:883.653333pt;}
.y55{bottom:893.253333pt;}
.ya1{bottom:898.533333pt;}
.ye{bottom:903.013333pt;}
.y54{bottom:912.613333pt;}
.yd{bottom:922.373333pt;}
.y53{bottom:931.973333pt;}
.yc{bottom:943.013333pt;}
.y52{bottom:951.333333pt;}
.yb{bottom:965.893333pt;}
.y51{bottom:970.853333pt;}
.y91{bottom:976.133333pt;}
.y9{bottom:987.653333pt;}
.y1{bottom:1005.413333pt;}
.h14{height:13.760000pt;}
.h18{height:18.768750pt;}
.hc{height:24.131250pt;}
.h17{height:25.918750pt;}
.h15{height:28.000000pt;}
.h16{height:29.940625pt;}
.h12{height:30.254687pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.h8{height:34.798125pt;}
.h13{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h11{height:39.562500pt;}
.hd{height:41.112500pt;}
.h4{height:41.543750pt;}
.h7{height:42.866250pt;}
.h6{height:43.782500pt;}
.h19{height:44.687500pt;}
.hb{height:47.310625pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h2{height:68.832000pt;}
.he{height:427.906667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:64.000000pt;}
.w4{width:186.146667pt;}
.w7{width:199.226667pt;}
.w8{width:264.666667pt;}
.w9{width:348.093333pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.919976pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x15{left:26.394667pt;}
.x6{left:39.720000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x1c{left:99.391988pt;}
.x31{left:102.751988pt;}
.xf{left:104.031988pt;}
.xb{left:110.911988pt;}
.x8{left:113.160000pt;}
.x52{left:114.911988pt;}
.x13{left:116.511988pt;}
.x20{left:120.031988pt;}
.x18{left:144.026655pt;}
.x3{left:152.826667pt;}
.x3d{left:160.826643pt;}
.xd{left:162.266655pt;}
.x12{left:166.266655pt;}
.x25{left:168.026655pt;}
.x3e{left:170.106655pt;}
.x50{left:178.746643pt;}
.x51{left:188.026655pt;}
.x26{left:192.026655pt;}
.x1e{left:202.106643pt;}
.x11{left:206.746655pt;}
.x27{left:216.026655pt;}
.x2d{left:238.946643pt;}
.x28{left:240.066655pt;}
.x2e{left:243.586655pt;}
.x34{left:252.546655pt;}
.x29{left:256.866643pt;}
.x2a{left:261.506655pt;}
.x49{left:270.466643pt;}
.x4a{left:279.746655pt;}
.xc{left:282.626655pt;}
.x1b{left:288.066655pt;}
.x45{left:289.026643pt;}
.x46{left:298.306655pt;}
.x19{left:313.506643pt;}
.x1a{left:318.146655pt;}
.x35{left:341.346643pt;}
.x36{left:350.626655pt;}
.x10{left:351.746655pt;}
.x39{left:354.626643pt;}
.x42{left:361.346643pt;}
.x3a{left:363.906655pt;}
.x43{left:370.626655pt;}
.x44{left:372.386655pt;}
.x16{left:375.106667pt;}
.x2b{left:396.093310pt;}
.xe{left:397.053322pt;}
.x2c{left:400.733322pt;}
.xa{left:441.053322pt;}
.x14{left:504.093333pt;}
.x37{left:505.853310pt;}
.x4e{left:512.893310pt;}
.x38{left:515.133322pt;}
.x23{left:520.893310pt;}
.x4f{left:522.173322pt;}
.x3f{left:524.413322pt;}
.x24{left:525.533322pt;}
.x5{left:533.213333pt;}
.x21{left:539.453310pt;}
.x22{left:544.093322pt;}
.x4b{left:553.893310pt;}
.x4c{left:563.173322pt;}
.x3b{left:587.973310pt;}
.x3c{left:597.253322pt;}
.x32{left:604.773310pt;}
.x33{left:614.053322pt;}
.x47{left:649.413310pt;}
.x48{left:658.693322pt;}
.x2f{left:671.493310pt;}
.x40{left:673.733310pt;}
.x30{left:680.773322pt;}
.x4d{left:682.053322pt;}
.x41{left:683.013322pt;}
.x1d{left:690.053322pt;}
.x17{left:691.653322pt;}
.x1f{left:694.533322pt;}
}




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