
    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_ca3f7fe8ced66c500868c562.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_b16596287af04f64e260bad0.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_0de290b43976c39a19894aa3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9a3fd5a0a863641148d0e982.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_a724c88b7fdb3b56a0f66c91.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a719e1aa20e476d5195a2799.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dae2d7b1c91963af76d3a461.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_d2b6e90d71ca1b90b0222b2f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970703;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_7333550f7e14cabac82a4c9d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.lse{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:5.760000px;}
.lsb{letter-spacing:6.480000px;}
.lsa{letter-spacing:8.640000px;}
.lsd{letter-spacing:14.400000px;}
.ls6{letter-spacing:15.120000px;}
.ls10{letter-spacing:17.424000px;}
.ls8{letter-spacing:20.880000px;}
.ls9{letter-spacing:25.200000px;}
.ls1{letter-spacing:30.960000px;}
.ls2{letter-spacing:41.760000px;}
.lsf{letter-spacing:53.424000px;}
.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;}
}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.584000px;}
._0{width:1.104000px;}
._7{width:2.400000px;}
._16{width:3.408000px;}
._19{width:5.112000px;}
._1a{width:6.612000px;}
._1b{width:8.244000px;}
._1d{width:9.756000px;}
._3{width:10.800000px;}
._4{width:12.384000px;}
._5{width:14.328000px;}
._6{width:15.552000px;}
._1e{width:16.560000px;}
._2{width:19.200000px;}
._22{width:20.592000px;}
._1c{width:21.600000px;}
._15{width:23.328000px;}
._17{width:24.840000px;}
._18{width:26.184000px;}
._20{width:27.720000px;}
._26{width:28.980000px;}
._12{width:30.024000px;}
._28{width:31.248000px;}
._c{width:32.256000px;}
._b{width:33.264000px;}
._a{width:34.560000px;}
._9{width:35.712000px;}
._25{width:36.948000px;}
._23{width:37.956000px;}
._21{width:39.732000px;}
._13{width:41.688000px;}
._14{width:43.044000px;}
._f{width:44.400000px;}
._10{width:45.492000px;}
._24{width:49.008000px;}
._e{width:50.184000px;}
._29{width:51.768000px;}
._2a{width:52.776000px;}
._2e{width:54.000000px;}
._2d{width:55.032000px;}
._1f{width:60.552000px;}
._11{width:61.848000px;}
._8{width:67.104000px;}
._31{width:68.520000px;}
._d{width:78.912000px;}
._27{width:81.216000px;}
._30{width:102.432000px;}
._2b{width:104.064000px;}
._2c{width:105.192000px;}
._2f{width:222.672000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc6{color:rgb(85,85,85);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y3e{bottom:7.020000px;}
.y48{bottom:7.380000px;}
.y4f{bottom:7.410000px;}
.y43{bottom:7.560000px;}
.y46{bottom:30.780000px;}
.y4d{bottom:30.810000px;}
.y3d{bottom:30.960000px;}
.y47{bottom:31.140000px;}
.y4e{bottom:31.170000px;}
.y42{bottom:31.320000px;}
.y9a{bottom:31.350000px;}
.y4a{bottom:54.714000px;}
.y40{bottom:54.720000px;}
.y97{bottom:54.750000px;}
.y8d{bottom:54.900000px;}
.y4b{bottom:55.074000px;}
.y41{bottom:55.080000px;}
.y99{bottom:55.110000px;}
.y92{bottom:55.125000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y8b{bottom:78.300000px;}
.y96{bottom:78.510000px;}
.y8c{bottom:78.660000px;}
.y98{bottom:78.870000px;}
.y91{bottom:78.885000px;}
.y8f{bottom:102.285000px;}
.y90{bottom:102.645000px;}
.y49{bottom:102.816000px;}
.y74{bottom:110.196000px;}
.yca{bottom:113.616000px;}
.y38{bottom:113.976000px;}
.ycb{bottom:115.416000px;}
.y87{bottom:116.136000px;}
.y73{bottom:133.956000px;}
.yc9{bottom:135.756000px;}
.y31{bottom:137.736000px;}
.y86{bottom:139.896000px;}
.yab{bottom:155.910000px;}
.y72{bottom:157.890000px;}
.yc8{bottom:159.510000px;}
.y30{bottom:161.490000px;}
.y85{bottom:163.650000px;}
.y45{bottom:174.990000px;}
.yaa{bottom:179.850000px;}
.y71{bottom:181.650000px;}
.yc7{bottom:183.270000px;}
.y2f{bottom:185.430000px;}
.y84{bottom:187.590000px;}
.ya9{bottom:203.970000px;}
.y70{bottom:205.410000px;}
.yc6{bottom:207.030000px;}
.y2e{bottom:209.190000px;}
.y83{bottom:211.350000px;}
.y44{bottom:223.230000px;}
.ya8{bottom:227.730000px;}
.y6f{bottom:229.170000px;}
.yc5{bottom:230.970000px;}
.y2d{bottom:232.950000px;}
.y82{bottom:234.750000px;}
.ya7{bottom:251.490000px;}
.y6e{bottom:253.110000px;}
.yc4{bottom:254.370000px;}
.y2c{bottom:256.710000px;}
.y81{bottom:258.870000px;}
.ya6{bottom:275.250000px;}
.y6d{bottom:276.870000px;}
.yc3{bottom:278.130000px;}
.y2b{bottom:280.650000px;}
.y80{bottom:282.855000px;}
.y3f{bottom:295.455000px;}
.ya5{bottom:299.235000px;}
.y6c{bottom:300.675000px;}
.yc2{bottom:302.295000px;}
.y2a{bottom:304.455000px;}
.y7f{bottom:306.615000px;}
.ya4{bottom:322.995000px;}
.y6b{bottom:324.435000px;}
.yc1{bottom:326.235000px;}
.y37{bottom:327.855000px;}
.y29{bottom:328.215000px;}
.y7e{bottom:330.015000px;}
.ya3{bottom:346.755000px;}
.y6a{bottom:348.375000px;}
.yc0{bottom:349.995000px;}
.y28{bottom:351.975000px;}
.y7d{bottom:354.135000px;}
.y3c{bottom:367.635000px;}
.ya2{bottom:370.515000px;}
.y69{bottom:372.135000px;}
.ybf{bottom:373.755000px;}
.y27{bottom:375.915000px;}
.y7c{bottom:378.075000px;}
.ya1{bottom:394.455000px;}
.y68{bottom:395.895000px;}
.ybe{bottom:397.515000px;}
.y26{bottom:399.675000px;}
.y7b{bottom:401.835000px;}
.ya0{bottom:418.215000px;}
.y67{bottom:419.655000px;}
.ybd{bottom:421.275000px;}
.y3b{bottom:423.075000px;}
.y25{bottom:423.435000px;}
.y7a{bottom:425.595000px;}
.y9f{bottom:441.975000px;}
.y66{bottom:443.595000px;}
.ybc{bottom:445.215000px;}
.y3a{bottom:446.835000px;}
.y24{bottom:447.195000px;}
.y79{bottom:449.355000px;}
.y9e{bottom:465.735000px;}
.y65{bottom:467.355000px;}
.ybb{bottom:468.975000px;}
.y23{bottom:471.135000px;}
.y78{bottom:473.295000px;}
.y9d{bottom:489.675000px;}
.y64{bottom:491.115000px;}
.y77{bottom:492.735000px;}
.y22{bottom:494.895000px;}
.y9c{bottom:513.075000px;}
.y63{bottom:514.875000px;}
.yba{bottom:516.495000px;}
.y21{bottom:518.655000px;}
.y9b{bottom:537.195000px;}
.y62{bottom:538.635000px;}
.yb9{bottom:540.435000px;}
.y20{bottom:542.415000px;}
.y95{bottom:554.295000px;}
.y61{bottom:562.575000px;}
.yb8{bottom:564.195000px;}
.y1f{bottom:566.385000px;}
.y60{bottom:586.365000px;}
.yb7{bottom:587.985000px;}
.y1e{bottom:590.145000px;}
.y5f{bottom:610.125000px;}
.yb6{bottom:611.745000px;}
.y1d{bottom:613.905000px;}
.y5e{bottom:633.885000px;}
.yb5{bottom:635.685000px;}
.y39{bottom:637.305000px;}
.y1c{bottom:637.665000px;}
.y94{bottom:650.265000px;}
.y5d{bottom:657.465000px;}
.yb4{bottom:659.445000px;}
.y1b{bottom:661.425000px;}
.y5c{bottom:681.585000px;}
.yb3{bottom:683.205000px;}
.y1a{bottom:685.365000px;}
.y5b{bottom:705.345000px;}
.yb2{bottom:706.965000px;}
.y19{bottom:709.125000px;}
.y93{bottom:722.445000px;}
.y5a{bottom:729.105000px;}
.yb1{bottom:730.545000px;}
.y18{bottom:732.885000px;}
.y59{bottom:753.045000px;}
.yb0{bottom:754.665000px;}
.y17{bottom:756.645000px;}
.y58{bottom:776.805000px;}
.yaf{bottom:778.425000px;}
.y16{bottom:780.585000px;}
.y8e{bottom:794.625000px;}
.y57{bottom:800.565000px;}
.yae{bottom:802.185000px;}
.y15{bottom:804.345000px;}
.y56{bottom:824.325000px;}
.yad{bottom:826.125000px;}
.y14{bottom:828.105000px;}
.yac{bottom:845.745000px;}
.y55{bottom:848.310000px;}
.y13{bottom:851.910000px;}
.y54{bottom:872.070000px;}
.y12{bottom:875.850000px;}
.y53{bottom:895.830000px;}
.y11{bottom:899.610000px;}
.y52{bottom:912.930000px;}
.y8a{bottom:914.550000px;}
.y76{bottom:923.010000px;}
.y10{bottom:923.370000px;}
.y75{bottom:946.770000px;}
.yf{bottom:947.130000px;}
.ye{bottom:971.070000px;}
.y51{bottom:985.110000px;}
.yd{bottom:994.470000px;}
.y36{bottom:994.830000px;}
.y89{bottom:1010.490000px;}
.yc{bottom:1018.590000px;}
.yb{bottom:1042.350000px;}
.y50{bottom:1057.290000px;}
.ya{bottom:1065.930000px;}
.y35{bottom:1066.290000px;}
.y88{bottom:1089.690000px;}
.y9{bottom:1090.050000px;}
.y8{bottom:1113.450000px;}
.y34{bottom:1113.810000px;}
.y4c{bottom:1129.470000px;}
.y7{bottom:1137.240000px;}
.y33{bottom:1137.600000px;}
.y6{bottom:1161.180000px;}
.y32{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.he{height:47.520000px;}
.hf{height:47.556000px;}
.hb{height:47.700000px;}
.ha{height:50.273438px;}
.h6{height:50.800781px;}
.h10{height:52.171875px;}
.h9{height:59.343750px;}
.h15{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.hc{height:71.460000px;}
.hd{height:71.496000px;}
.h4{height:72.562500px;}
.h14{height:74.004654px;}
.h11{height:95.040000px;}
.h13{height:95.256000px;}
.h12{height:119.016000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.w7{width:150.660000px;}
.w4{width:151.020000px;}
.w8{width:170.490000px;}
.w5{width:171.210000px;}
.wd{width:181.290000px;}
.wa{width:181.650000px;}
.we{width:195.150000px;}
.wb{width:196.050000px;}
.wf{width:314.310000px;}
.wc{width:314.670000px;}
.w9{width:376.455000px;}
.w6{width:376.815000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:5.040000px;}
.x3b{left:8.280000px;}
.x40{left:9.720000px;}
.x28{left:12.420000px;}
.x23{left:13.860000px;}
.x18{left:16.020000px;}
.x1f{left:17.100000px;}
.x27{left:18.900000px;}
.x2b{left:20.160000px;}
.x1b{left:23.040000px;}
.x12{left:24.660000px;}
.x24{left:25.920000px;}
.x3d{left:27.180000px;}
.x1d{left:28.485000px;}
.x25{left:29.925000px;}
.x35{left:32.214000px;}
.x21{left:34.605000px;}
.x41{left:36.540000px;}
.x3f{left:38.880000px;}
.x19{left:40.185000px;}
.x3c{left:41.220000px;}
.x2d{left:43.785000px;}
.x14{left:46.485000px;}
.x22{left:47.745000px;}
.x15{left:50.625000px;}
.x2a{left:53.505000px;}
.x1e{left:55.665000px;}
.x36{left:58.134000px;}
.x42{left:60.300000px;}
.x1c{left:61.734000px;}
.x3e{left:64.620000px;}
.x17{left:66.450000px;}
.x2e{left:68.430000px;}
.x38{left:72.540000px;}
.x43{left:75.060000px;}
.x1a{left:78.330000px;}
.x3a{left:86.220000px;}
.x2c{left:94.710000px;}
.x26{left:99.750000px;}
.x29{left:104.970000px;}
.x2f{left:108.390000px;}
.x11{left:119.916000px;}
.xf{left:127.655987px;}
.x6{left:130.175987px;}
.x47{left:138.275987px;}
.x20{left:150.150000px;}
.x3{left:159.689987px;}
.x10{left:170.129987px;}
.xe{left:180.749987px;}
.x44{left:190.829987px;}
.x30{left:228.449987px;}
.x33{left:246.449987px;}
.x13{left:270.930000px;}
.xc{left:295.994987px;}
.x45{left:300.134987px;}
.x37{left:301.575000px;}
.x9{left:324.074987px;}
.xd{left:327.674987px;}
.xa{left:337.034987px;}
.x31{left:342.434987px;}
.x8{left:353.774987px;}
.xb{left:378.974987px;}
.x7{left:391.034987px;}
.x1{left:439.815000px;}
.x16{left:442.155000px;}
.x5{left:478.514987px;}
.x39{left:497.625000px;}
.x34{left:505.004987px;}
.x46{left:714.569987px;}
.x32{left:825.449987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:5.120000pt;}
.lsb{letter-spacing:5.760000pt;}
.lsa{letter-spacing:7.680000pt;}
.lsd{letter-spacing:12.800000pt;}
.ls6{letter-spacing:13.440000pt;}
.ls10{letter-spacing:15.488000pt;}
.ls8{letter-spacing:18.560000pt;}
.ls9{letter-spacing:22.400000pt;}
.ls1{letter-spacing:27.520000pt;}
.ls2{letter-spacing:37.120000pt;}
.lsf{letter-spacing:47.488000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.408000pt;}
._0{width:0.981333pt;}
._7{width:2.133333pt;}
._16{width:3.029333pt;}
._19{width:4.544000pt;}
._1a{width:5.877333pt;}
._1b{width:7.328000pt;}
._1d{width:8.672000pt;}
._3{width:9.600000pt;}
._4{width:11.008000pt;}
._5{width:12.736000pt;}
._6{width:13.824000pt;}
._1e{width:14.720000pt;}
._2{width:17.066667pt;}
._22{width:18.304000pt;}
._1c{width:19.200000pt;}
._15{width:20.736000pt;}
._17{width:22.080000pt;}
._18{width:23.274667pt;}
._20{width:24.640000pt;}
._26{width:25.760000pt;}
._12{width:26.688000pt;}
._28{width:27.776000pt;}
._c{width:28.672000pt;}
._b{width:29.568000pt;}
._a{width:30.720000pt;}
._9{width:31.744000pt;}
._25{width:32.842667pt;}
._23{width:33.738667pt;}
._21{width:35.317333pt;}
._13{width:37.056000pt;}
._14{width:38.261333pt;}
._f{width:39.466667pt;}
._10{width:40.437333pt;}
._24{width:43.562667pt;}
._e{width:44.608000pt;}
._29{width:46.016000pt;}
._2a{width:46.912000pt;}
._2e{width:48.000000pt;}
._2d{width:48.917333pt;}
._1f{width:53.824000pt;}
._11{width:54.976000pt;}
._8{width:59.648000pt;}
._31{width:60.906667pt;}
._d{width:70.144000pt;}
._27{width:72.192000pt;}
._30{width:91.050667pt;}
._2b{width:92.501333pt;}
._2c{width:93.504000pt;}
._2f{width:197.930667pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y3e{bottom:6.240000pt;}
.y48{bottom:6.560000pt;}
.y4f{bottom:6.586667pt;}
.y43{bottom:6.720000pt;}
.y46{bottom:27.360000pt;}
.y4d{bottom:27.386667pt;}
.y3d{bottom:27.520000pt;}
.y47{bottom:27.680000pt;}
.y4e{bottom:27.706667pt;}
.y42{bottom:27.840000pt;}
.y9a{bottom:27.866667pt;}
.y4a{bottom:48.634667pt;}
.y40{bottom:48.640000pt;}
.y97{bottom:48.666667pt;}
.y8d{bottom:48.800000pt;}
.y4b{bottom:48.954667pt;}
.y41{bottom:48.960000pt;}
.y99{bottom:48.986667pt;}
.y92{bottom:49.000000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y8b{bottom:69.600000pt;}
.y96{bottom:69.786667pt;}
.y8c{bottom:69.920000pt;}
.y98{bottom:70.106667pt;}
.y91{bottom:70.120000pt;}
.y8f{bottom:90.920000pt;}
.y90{bottom:91.240000pt;}
.y49{bottom:91.392000pt;}
.y74{bottom:97.952000pt;}
.yca{bottom:100.992000pt;}
.y38{bottom:101.312000pt;}
.ycb{bottom:102.592000pt;}
.y87{bottom:103.232000pt;}
.y73{bottom:119.072000pt;}
.yc9{bottom:120.672000pt;}
.y31{bottom:122.432000pt;}
.y86{bottom:124.352000pt;}
.yab{bottom:138.586667pt;}
.y72{bottom:140.346667pt;}
.yc8{bottom:141.786667pt;}
.y30{bottom:143.546667pt;}
.y85{bottom:145.466667pt;}
.y45{bottom:155.546667pt;}
.yaa{bottom:159.866667pt;}
.y71{bottom:161.466667pt;}
.yc7{bottom:162.906667pt;}
.y2f{bottom:164.826667pt;}
.y84{bottom:166.746667pt;}
.ya9{bottom:181.306667pt;}
.y70{bottom:182.586667pt;}
.yc6{bottom:184.026667pt;}
.y2e{bottom:185.946667pt;}
.y83{bottom:187.866667pt;}
.y44{bottom:198.426667pt;}
.ya8{bottom:202.426667pt;}
.y6f{bottom:203.706667pt;}
.yc5{bottom:205.306667pt;}
.y2d{bottom:207.066667pt;}
.y82{bottom:208.666667pt;}
.ya7{bottom:223.546667pt;}
.y6e{bottom:224.986667pt;}
.yc4{bottom:226.106667pt;}
.y2c{bottom:228.186667pt;}
.y81{bottom:230.106667pt;}
.ya6{bottom:244.666667pt;}
.y6d{bottom:246.106667pt;}
.yc3{bottom:247.226667pt;}
.y2b{bottom:249.466667pt;}
.y80{bottom:251.426667pt;}
.y3f{bottom:262.626667pt;}
.ya5{bottom:265.986667pt;}
.y6c{bottom:267.266667pt;}
.yc2{bottom:268.706667pt;}
.y2a{bottom:270.626667pt;}
.y7f{bottom:272.546667pt;}
.ya4{bottom:287.106667pt;}
.y6b{bottom:288.386667pt;}
.yc1{bottom:289.986667pt;}
.y37{bottom:291.426667pt;}
.y29{bottom:291.746667pt;}
.y7e{bottom:293.346667pt;}
.ya3{bottom:308.226667pt;}
.y6a{bottom:309.666667pt;}
.yc0{bottom:311.106667pt;}
.y28{bottom:312.866667pt;}
.y7d{bottom:314.786667pt;}
.y3c{bottom:326.786667pt;}
.ya2{bottom:329.346667pt;}
.y69{bottom:330.786667pt;}
.ybf{bottom:332.226667pt;}
.y27{bottom:334.146667pt;}
.y7c{bottom:336.066667pt;}
.ya1{bottom:350.626667pt;}
.y68{bottom:351.906667pt;}
.ybe{bottom:353.346667pt;}
.y26{bottom:355.266667pt;}
.y7b{bottom:357.186667pt;}
.ya0{bottom:371.746667pt;}
.y67{bottom:373.026667pt;}
.ybd{bottom:374.466667pt;}
.y3b{bottom:376.066667pt;}
.y25{bottom:376.386667pt;}
.y7a{bottom:378.306667pt;}
.y9f{bottom:392.866667pt;}
.y66{bottom:394.306667pt;}
.ybc{bottom:395.746667pt;}
.y3a{bottom:397.186667pt;}
.y24{bottom:397.506667pt;}
.y79{bottom:399.426667pt;}
.y9e{bottom:413.986667pt;}
.y65{bottom:415.426667pt;}
.ybb{bottom:416.866667pt;}
.y23{bottom:418.786667pt;}
.y78{bottom:420.706667pt;}
.y9d{bottom:435.266667pt;}
.y64{bottom:436.546667pt;}
.y77{bottom:437.986667pt;}
.y22{bottom:439.906667pt;}
.y9c{bottom:456.066667pt;}
.y63{bottom:457.666667pt;}
.yba{bottom:459.106667pt;}
.y21{bottom:461.026667pt;}
.y9b{bottom:477.506667pt;}
.y62{bottom:478.786667pt;}
.yb9{bottom:480.386667pt;}
.y20{bottom:482.146667pt;}
.y95{bottom:492.706667pt;}
.y61{bottom:500.066667pt;}
.yb8{bottom:501.506667pt;}
.y1f{bottom:503.453333pt;}
.y60{bottom:521.213333pt;}
.yb7{bottom:522.653333pt;}
.y1e{bottom:524.573333pt;}
.y5f{bottom:542.333333pt;}
.yb6{bottom:543.773333pt;}
.y1d{bottom:545.693333pt;}
.y5e{bottom:563.453333pt;}
.yb5{bottom:565.053333pt;}
.y39{bottom:566.493333pt;}
.y1c{bottom:566.813333pt;}
.y94{bottom:578.013333pt;}
.y5d{bottom:584.413333pt;}
.yb4{bottom:586.173333pt;}
.y1b{bottom:587.933333pt;}
.y5c{bottom:605.853333pt;}
.yb3{bottom:607.293333pt;}
.y1a{bottom:609.213333pt;}
.y5b{bottom:626.973333pt;}
.yb2{bottom:628.413333pt;}
.y19{bottom:630.333333pt;}
.y93{bottom:642.173333pt;}
.y5a{bottom:648.093333pt;}
.yb1{bottom:649.373333pt;}
.y18{bottom:651.453333pt;}
.y59{bottom:669.373333pt;}
.yb0{bottom:670.813333pt;}
.y17{bottom:672.573333pt;}
.y58{bottom:690.493333pt;}
.yaf{bottom:691.933333pt;}
.y16{bottom:693.853333pt;}
.y8e{bottom:706.333333pt;}
.y57{bottom:711.613333pt;}
.yae{bottom:713.053333pt;}
.y15{bottom:714.973333pt;}
.y56{bottom:732.733333pt;}
.yad{bottom:734.333333pt;}
.y14{bottom:736.093333pt;}
.yac{bottom:751.773333pt;}
.y55{bottom:754.053333pt;}
.y13{bottom:757.253333pt;}
.y54{bottom:775.173333pt;}
.y12{bottom:778.533333pt;}
.y53{bottom:796.293333pt;}
.y11{bottom:799.653333pt;}
.y52{bottom:811.493333pt;}
.y8a{bottom:812.933333pt;}
.y76{bottom:820.453333pt;}
.y10{bottom:820.773333pt;}
.y75{bottom:841.573333pt;}
.yf{bottom:841.893333pt;}
.ye{bottom:863.173333pt;}
.y51{bottom:875.653333pt;}
.yd{bottom:883.973333pt;}
.y36{bottom:884.293333pt;}
.y89{bottom:898.213333pt;}
.yc{bottom:905.413333pt;}
.yb{bottom:926.533333pt;}
.y50{bottom:939.813333pt;}
.ya{bottom:947.493333pt;}
.y35{bottom:947.813333pt;}
.y88{bottom:968.613333pt;}
.y9{bottom:968.933333pt;}
.y8{bottom:989.733333pt;}
.y34{bottom:990.053333pt;}
.y4c{bottom:1003.973333pt;}
.y7{bottom:1010.880000pt;}
.y33{bottom:1011.200000pt;}
.y6{bottom:1032.160000pt;}
.y32{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.he{height:42.240000pt;}
.hf{height:42.272000pt;}
.hb{height:42.400000pt;}
.ha{height:44.687500pt;}
.h6{height:45.156250pt;}
.h10{height:46.375000pt;}
.h9{height:52.750000pt;}
.h15{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.hc{height:63.520000pt;}
.hd{height:63.552000pt;}
.h4{height:64.500000pt;}
.h14{height:65.781915pt;}
.h11{height:84.480000pt;}
.h13{height:84.672000pt;}
.h12{height:105.792000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.w7{width:133.920000pt;}
.w4{width:134.240000pt;}
.w8{width:151.546667pt;}
.w5{width:152.186667pt;}
.wd{width:161.146667pt;}
.wa{width:161.466667pt;}
.we{width:173.466667pt;}
.wb{width:174.266667pt;}
.wf{width:279.386667pt;}
.wc{width:279.706667pt;}
.w9{width:334.626667pt;}
.w6{width:334.946667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.480000pt;}
.x3b{left:7.360000pt;}
.x40{left:8.640000pt;}
.x28{left:11.040000pt;}
.x23{left:12.320000pt;}
.x18{left:14.240000pt;}
.x1f{left:15.200000pt;}
.x27{left:16.800000pt;}
.x2b{left:17.920000pt;}
.x1b{left:20.480000pt;}
.x12{left:21.920000pt;}
.x24{left:23.040000pt;}
.x3d{left:24.160000pt;}
.x1d{left:25.320000pt;}
.x25{left:26.600000pt;}
.x35{left:28.634667pt;}
.x21{left:30.760000pt;}
.x41{left:32.480000pt;}
.x3f{left:34.560000pt;}
.x19{left:35.720000pt;}
.x3c{left:36.640000pt;}
.x2d{left:38.920000pt;}
.x14{left:41.320000pt;}
.x22{left:42.440000pt;}
.x15{left:45.000000pt;}
.x2a{left:47.560000pt;}
.x1e{left:49.480000pt;}
.x36{left:51.674667pt;}
.x42{left:53.600000pt;}
.x1c{left:54.874667pt;}
.x3e{left:57.440000pt;}
.x17{left:59.066667pt;}
.x2e{left:60.826667pt;}
.x38{left:64.480000pt;}
.x43{left:66.720000pt;}
.x1a{left:69.626667pt;}
.x3a{left:76.640000pt;}
.x2c{left:84.186667pt;}
.x26{left:88.666667pt;}
.x29{left:93.306667pt;}
.x2f{left:96.346667pt;}
.x11{left:106.592000pt;}
.xf{left:113.471988pt;}
.x6{left:115.711988pt;}
.x47{left:122.911988pt;}
.x20{left:133.466667pt;}
.x3{left:141.946655pt;}
.x10{left:151.226655pt;}
.xe{left:160.666655pt;}
.x44{left:169.626655pt;}
.x30{left:203.066655pt;}
.x33{left:219.066655pt;}
.x13{left:240.826667pt;}
.xc{left:263.106655pt;}
.x45{left:266.786655pt;}
.x37{left:268.066667pt;}
.x9{left:288.066655pt;}
.xd{left:291.266655pt;}
.xa{left:299.586655pt;}
.x31{left:304.386655pt;}
.x8{left:314.466655pt;}
.xb{left:336.866655pt;}
.x7{left:347.586655pt;}
.x1{left:390.946667pt;}
.x16{left:393.026667pt;}
.x5{left:425.346655pt;}
.x39{left:442.333333pt;}
.x34{left:448.893322pt;}
.x46{left:635.173322pt;}
.x32{left:733.733322pt;}
.x4{left:737.253322pt;}
}




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