
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_d39fddece519f0173455ae3d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c505ae984ce1844ca07a1fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_8b48746c0513532ab27bad40.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a5ccab022b475c8a23059750.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f663553048429cec14b550a2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0257219e8c08c63d2fbdf8a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.912109;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_e4339f2ac8335634ce33c293.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ed73526b9e1777dd643adcfa.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_95a8d9d1672169523dec28e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_c56fdbdd1be71727910791c2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_69ee23102889ee041fe300cd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_95ac9833018f5e36735279ae.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e6f54030504c7d99579d4979.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.747559;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);}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls13{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.942000px;}
.ls7{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.089400px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.020160px;}
.ls12{letter-spacing:0.032160px;}
.lse{letter-spacing:0.466560px;}
.ls0{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.032000px;}
.ls1{letter-spacing:2.160000px;}
.lsf{letter-spacing:3.600000px;}
.ls2{letter-spacing:7.920000px;}
.ls10{letter-spacing:12.420000px;}
.ls4{letter-spacing:15.120000px;}
.ls3{letter-spacing:16.560000px;}
.ls11{letter-spacing:46.546560px;}
.lsc{letter-spacing:201.024000px;}
.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;}
}
.ws1{word-spacing:-26.171520px;}
.ws9{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-7.622400px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._8{width:4.534560px;}
._5{width:6.145920px;}
._6{width:7.277760px;}
._7{width:8.769600px;}
._9{width:10.725120px;}
._a{width:11.753280px;}
._b{width:13.789440px;}
._e{width:16.390080px;}
._c{width:18.455040px;}
._d{width:200.880000px;}
._10{width:1435.778880px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:5.760000px;}
.fs7{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs5{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y55{bottom:3.235500px;}
.y69{bottom:3.585000px;}
.y60{bottom:3.600000px;}
.y63{bottom:3.945000px;}
.y5{bottom:3.960000px;}
.y57{bottom:5.370000px;}
.y48{bottom:5.395500px;}
.y2{bottom:7.920000px;}
.y54{bottom:18.715500px;}
.y8c{bottom:20.880000px;}
.y4{bottom:21.240000px;}
.y92{bottom:23.040000px;}
.y53{bottom:34.195500px;}
.y47{bottom:34.915500px;}
.y40{bottom:38.160000px;}
.y91{bottom:40.365000px;}
.y3{bottom:44.280000px;}
.y93{bottom:49.005000px;}
.y52{bottom:51.871500px;}
.y3f{bottom:55.440000px;}
.y46{bottom:55.831500px;}
.y7{bottom:57.636000px;}
.y90{bottom:57.645000px;}
.y51{bottom:67.714500px;}
.y45{bottom:68.794500px;}
.y3e{bottom:72.360000px;}
.y8f{bottom:74.925000px;}
.y50{bottom:83.194500px;}
.y3d{bottom:89.640000px;}
.y44{bottom:90.754500px;}
.y41{bottom:91.120500px;}
.y99{bottom:93.636000px;}
.y79{bottom:95.076000px;}
.y4f{bottom:96.154500px;}
.y4e{bottom:102.274500px;}
.y78{bottom:112.356000px;}
.y3c{bottom:116.280000px;}
.y4d{bottom:118.114500px;}
.y77{bottom:129.636000px;}
.y4c{bottom:133.594500px;}
.y3b{bottom:133.605000px;}
.y76{bottom:146.952000px;}
.y4b{bottom:149.074500px;}
.y3a{bottom:150.885000px;}
.y43{bottom:153.034500px;}
.y42{bottom:163.834500px;}
.y75{bottom:164.235000px;}
.y4a{bottom:164.914500px;}
.y39{bottom:168.165000px;}
.y49{bottom:180.034500px;}
.y74{bottom:181.515000px;}
.y38{bottom:185.445000px;}
.y73{bottom:198.795000px;}
.y37{bottom:202.725000px;}
.y72{bottom:216.075000px;}
.y36{bottom:219.645000px;}
.y71{bottom:232.995000px;}
.y35{bottom:245.925000px;}
.y70{bottom:250.275000px;}
.y34{bottom:263.235000px;}
.y6f{bottom:267.555000px;}
.y33{bottom:280.515000px;}
.y11{bottom:284.505000px;}
.y6e{bottom:284.865000px;}
.y32{bottom:297.795000px;}
.y6d{bottom:302.145000px;}
.y1f{bottom:302.475000px;}
.y31{bottom:314.715000px;}
.y6c{bottom:319.425000px;}
.y1e{bottom:326.595000px;}
.y30{bottom:341.355000px;}
.y6b{bottom:341.745000px;}
.y1d{bottom:350.715000px;}
.y2f{bottom:358.635000px;}
.y98{bottom:365.505000px;}
.y1c{bottom:375.195000px;}
.y2e{bottom:375.915000px;}
.y8e{bottom:379.905000px;}
.y2d{bottom:393.225000px;}
.y97{bottom:397.905000px;}
.y1b{bottom:399.345000px;}
.y2c{bottom:410.505000px;}
.y96{bottom:415.950000px;}
.y1a{bottom:423.465000px;}
.y2b{bottom:427.785000px;}
.y95{bottom:433.950000px;}
.y2a{bottom:445.065000px;}
.y19{bottom:447.585000px;}
.y94{bottom:451.950000px;}
.y29{bottom:461.985000px;}
.y8d{bottom:469.950000px;}
.y18{bottom:471.705000px;}
.y28{bottom:478.905000px;}
.y8b{bottom:487.950000px;}
.y17{bottom:495.825000px;}
.y27{bottom:504.825000px;}
.y16{bottom:519.990000px;}
.y26{bottom:520.710000px;}
.y8a{bottom:526.830000px;}
.y25{bottom:536.190000px;}
.y15{bottom:544.110000px;}
.y89{bottom:544.140000px;}
.y24{bottom:551.670000px;}
.yb0{bottom:562.500000px;}
.y23{bottom:567.150000px;}
.y14{bottom:568.230000px;}
.y88{bottom:570.780000px;}
.yaf{bottom:579.780000px;}
.y22{bottom:582.630000px;}
.y87{bottom:587.700000px;}
.y13{bottom:592.350000px;}
.yae{bottom:597.060000px;}
.y21{bottom:598.110000px;}
.y86{bottom:604.980000px;}
.y20{bottom:613.230000px;}
.yad{bottom:614.340000px;}
.y12{bottom:616.470000px;}
.y85{bottom:622.260000px;}
.yac{bottom:631.620000px;}
.y84{bottom:639.180000px;}
.yab{bottom:648.900000px;}
.y83{bottom:661.860000px;}
.yaa{bottom:666.180000px;}
.ya9{bottom:683.130000px;}
.ya8{bottom:700.410000px;}
.ya7{bottom:717.690000px;}
.ya6{bottom:734.970000px;}
.ya5{bottom:752.250000px;}
.ya4{bottom:769.530000px;}
.ya3{bottom:786.450000px;}
.ya2{bottom:813.135000px;}
.y6a{bottom:822.855000px;}
.ya1{bottom:830.415000px;}
.y68{bottom:836.910000px;}
.ya0{bottom:847.695000px;}
.y67{bottom:854.910000px;}
.y9f{bottom:864.975000px;}
.y66{bottom:872.910000px;}
.y9e{bottom:882.255000px;}
.y65{bottom:890.910000px;}
.y9d{bottom:899.175000px;}
.y64{bottom:908.910000px;}
.y9c{bottom:916.455000px;}
.y10{bottom:922.935000px;}
.y62{bottom:926.910000px;}
.yf{bottom:930.855000px;}
.y9b{bottom:933.765000px;}
.y5f{bottom:944.925000px;}
.ye{bottom:948.165000px;}
.y9a{bottom:951.045000px;}
.y61{bottom:962.925000px;}
.y82{bottom:968.325000px;}
.yd{bottom:972.285000px;}
.yc{bottom:982.725000px;}
.y5e{bottom:984.525000px;}
.y81{bottom:985.605000px;}
.y5d{bottom:1001.805000px;}
.y80{bottom:1002.885000px;}
.yb{bottom:1006.845000px;}
.ya{bottom:1016.565000px;}
.y5c{bottom:1019.085000px;}
.y7f{bottom:1020.165000px;}
.y7e{bottom:1037.445000px;}
.y9{bottom:1045.005000px;}
.y5b{bottom:1045.725000px;}
.y7d{bottom:1054.725000px;}
.y5a{bottom:1063.005000px;}
.y8{bottom:1069.530000px;}
.y7c{bottom:1072.050000px;}
.y59{bottom:1079.610000px;}
.y7b{bottom:1088.970000px;}
.y56{bottom:1091.520000px;}
.y7a{bottom:1105.890000px;}
.y58{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h14{height:5.650313px;}
.h19{height:17.265000px;}
.h1a{height:17.280000px;}
.h1d{height:17.310000px;}
.hb{height:18.372656px;}
.h6{height:24.348516px;}
.h15{height:27.720000px;}
.h12{height:29.678906px;}
.h1b{height:34.545000px;}
.h18{height:35.265000px;}
.h9{height:38.158594px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.hf{height:53.677969px;}
.h13{height:55.147500px;}
.h5{height:59.357813px;}
.ha{height:60.952500px;}
.h1e{height:62.163910px;}
.h17{height:62.960625px;}
.h16{height:63.455625px;}
.h7{height:63.577969px;}
.h10{height:65.518594px;}
.h3{height:65.884219px;}
.h8{height:66.543750px;}
.h2{height:81.390000px;}
.h1c{height:107.310000px;}
.h4{height:116.640000px;}
.h11{height:192.645000px;}
.hc{height:625.830000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:77.782500px;}
.wb{width:80.316000px;}
.w10{width:81.756000px;}
.w7{width:91.440000px;}
.wa{width:93.990000px;}
.w9{width:99.390000px;}
.w2{width:103.702500px;}
.w12{width:104.445000px;}
.w11{width:105.861000px;}
.we{width:115.245000px;}
.w4{width:132.502500px;}
.wf{width:145.830000px;}
.w6{width:163.080000px;}
.wc{width:225.045000px;}
.w8{width:500.925000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x18{left:8.266500px;}
.x40{left:9.360000px;}
.x2d{left:10.785000px;}
.x3a{left:11.880000px;}
.x4{left:13.305000px;}
.x36{left:14.782500px;}
.x3d{left:16.215000px;}
.x16{left:17.266500px;}
.x1c{left:18.346500px;}
.x5{left:19.425000px;}
.x42{left:20.542500px;}
.x2e{left:22.680000px;}
.x2b{left:24.840000px;}
.x32{left:26.280000px;}
.x17{left:29.146500px;}
.x29{left:32.040000px;}
.x27{left:34.560000px;}
.x30{left:35.640000px;}
.x3e{left:38.535000px;}
.x44{left:41.055000px;}
.x11{left:43.906500px;}
.x41{left:45.030000px;}
.x1d{left:47.542500px;}
.x6{left:48.615000px;}
.x12{left:50.782500px;}
.x43{left:51.840000px;}
.x15{left:54.022500px;}
.x10{left:55.102500px;}
.x3f{left:59.400000px;}
.x1a{left:62.295000px;}
.x14{left:73.105500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x31{left:89.310000px;}
.xa{left:90.756000px;}
.x2f{left:92.910000px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x1b{left:106.945500px;}
.xc{left:109.476000px;}
.x46{left:113.436000px;}
.x13{left:124.585500px;}
.x35{left:128.556000px;}
.x20{left:140.472000px;}
.x26{left:147.645000px;}
.x24{left:150.210000px;}
.x3{left:182.250000px;}
.x37{left:207.810000px;}
.x19{left:218.970000px;}
.x22{left:234.825000px;}
.x25{left:242.385000px;}
.x38{left:324.150000px;}
.x28{left:342.510000px;}
.x23{left:406.620000px;}
.x21{left:409.860000px;}
.x2a{left:437.220000px;}
.x9{left:454.140000px;}
.x39{left:470.700000px;}
.x2c{left:518.265000px;}
.xd{left:525.090000px;}
.x3b{left:553.185000px;}
.xe{left:577.335000px;}
.x33{left:643.575000px;}
.x3c{left:659.790000px;}
.x45{left:665.925000px;}
.x34{left:672.765000px;}
.xb{left:673.845000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.837333pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.017920pt;}
.ls12{letter-spacing:0.028587pt;}
.lse{letter-spacing:0.414720pt;}
.ls0{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.917333pt;}
.ls1{letter-spacing:1.920000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls2{letter-spacing:7.040000pt;}
.ls10{letter-spacing:11.040000pt;}
.ls4{letter-spacing:13.440000pt;}
.ls3{letter-spacing:14.720000pt;}
.ls11{letter-spacing:41.374720pt;}
.lsc{letter-spacing:178.688000pt;}
.ws1{word-spacing:-23.263573pt;}
.ws9{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-6.775467pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._8{width:4.030720pt;}
._5{width:5.463040pt;}
._6{width:6.469120pt;}
._7{width:7.795200pt;}
._9{width:9.533440pt;}
._a{width:10.447360pt;}
._b{width:12.257280pt;}
._e{width:14.568960pt;}
._c{width:16.404480pt;}
._d{width:178.560000pt;}
._10{width:1276.247893pt;}
.fsc{font-size:5.120000pt;}
.fs7{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs5{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:2.876000pt;}
.y69{bottom:3.186667pt;}
.y60{bottom:3.200000pt;}
.y63{bottom:3.506667pt;}
.y5{bottom:3.520000pt;}
.y57{bottom:4.773333pt;}
.y48{bottom:4.796000pt;}
.y2{bottom:7.040000pt;}
.y54{bottom:16.636000pt;}
.y8c{bottom:18.560000pt;}
.y4{bottom:18.880000pt;}
.y92{bottom:20.480000pt;}
.y53{bottom:30.396000pt;}
.y47{bottom:31.036000pt;}
.y40{bottom:33.920000pt;}
.y91{bottom:35.880000pt;}
.y3{bottom:39.360000pt;}
.y93{bottom:43.560000pt;}
.y52{bottom:46.108000pt;}
.y3f{bottom:49.280000pt;}
.y46{bottom:49.628000pt;}
.y7{bottom:51.232000pt;}
.y90{bottom:51.240000pt;}
.y51{bottom:60.190667pt;}
.y45{bottom:61.150667pt;}
.y3e{bottom:64.320000pt;}
.y8f{bottom:66.600000pt;}
.y50{bottom:73.950667pt;}
.y3d{bottom:79.680000pt;}
.y44{bottom:80.670667pt;}
.y41{bottom:80.996000pt;}
.y99{bottom:83.232000pt;}
.y79{bottom:84.512000pt;}
.y4f{bottom:85.470667pt;}
.y4e{bottom:90.910667pt;}
.y78{bottom:99.872000pt;}
.y3c{bottom:103.360000pt;}
.y4d{bottom:104.990667pt;}
.y77{bottom:115.232000pt;}
.y4c{bottom:118.750667pt;}
.y3b{bottom:118.760000pt;}
.y76{bottom:130.624000pt;}
.y4b{bottom:132.510667pt;}
.y3a{bottom:134.120000pt;}
.y43{bottom:136.030667pt;}
.y42{bottom:145.630667pt;}
.y75{bottom:145.986667pt;}
.y4a{bottom:146.590667pt;}
.y39{bottom:149.480000pt;}
.y49{bottom:160.030667pt;}
.y74{bottom:161.346667pt;}
.y38{bottom:164.840000pt;}
.y73{bottom:176.706667pt;}
.y37{bottom:180.200000pt;}
.y72{bottom:192.066667pt;}
.y36{bottom:195.240000pt;}
.y71{bottom:207.106667pt;}
.y35{bottom:218.600000pt;}
.y70{bottom:222.466667pt;}
.y34{bottom:233.986667pt;}
.y6f{bottom:237.826667pt;}
.y33{bottom:249.346667pt;}
.y11{bottom:252.893333pt;}
.y6e{bottom:253.213333pt;}
.y32{bottom:264.706667pt;}
.y6d{bottom:268.573333pt;}
.y1f{bottom:268.866667pt;}
.y31{bottom:279.746667pt;}
.y6c{bottom:283.933333pt;}
.y1e{bottom:290.306667pt;}
.y30{bottom:303.426667pt;}
.y6b{bottom:303.773333pt;}
.y1d{bottom:311.746667pt;}
.y2f{bottom:318.786667pt;}
.y98{bottom:324.893333pt;}
.y1c{bottom:333.506667pt;}
.y2e{bottom:334.146667pt;}
.y8e{bottom:337.693333pt;}
.y2d{bottom:349.533333pt;}
.y97{bottom:353.693333pt;}
.y1b{bottom:354.973333pt;}
.y2c{bottom:364.893333pt;}
.y96{bottom:369.733333pt;}
.y1a{bottom:376.413333pt;}
.y2b{bottom:380.253333pt;}
.y95{bottom:385.733333pt;}
.y2a{bottom:395.613333pt;}
.y19{bottom:397.853333pt;}
.y94{bottom:401.733333pt;}
.y29{bottom:410.653333pt;}
.y8d{bottom:417.733333pt;}
.y18{bottom:419.293333pt;}
.y28{bottom:425.693333pt;}
.y8b{bottom:433.733333pt;}
.y17{bottom:440.733333pt;}
.y27{bottom:448.733333pt;}
.y16{bottom:462.213333pt;}
.y26{bottom:462.853333pt;}
.y8a{bottom:468.293333pt;}
.y25{bottom:476.613333pt;}
.y15{bottom:483.653333pt;}
.y89{bottom:483.680000pt;}
.y24{bottom:490.373333pt;}
.yb0{bottom:500.000000pt;}
.y23{bottom:504.133333pt;}
.y14{bottom:505.093333pt;}
.y88{bottom:507.360000pt;}
.yaf{bottom:515.360000pt;}
.y22{bottom:517.893333pt;}
.y87{bottom:522.400000pt;}
.y13{bottom:526.533333pt;}
.yae{bottom:530.720000pt;}
.y21{bottom:531.653333pt;}
.y86{bottom:537.760000pt;}
.y20{bottom:545.093333pt;}
.yad{bottom:546.080000pt;}
.y12{bottom:547.973333pt;}
.y85{bottom:553.120000pt;}
.yac{bottom:561.440000pt;}
.y84{bottom:568.160000pt;}
.yab{bottom:576.800000pt;}
.y83{bottom:588.320000pt;}
.yaa{bottom:592.160000pt;}
.ya9{bottom:607.226667pt;}
.ya8{bottom:622.586667pt;}
.ya7{bottom:637.946667pt;}
.ya6{bottom:653.306667pt;}
.ya5{bottom:668.666667pt;}
.ya4{bottom:684.026667pt;}
.ya3{bottom:699.066667pt;}
.ya2{bottom:722.786667pt;}
.y6a{bottom:731.426667pt;}
.ya1{bottom:738.146667pt;}
.y68{bottom:743.920000pt;}
.ya0{bottom:753.506667pt;}
.y67{bottom:759.920000pt;}
.y9f{bottom:768.866667pt;}
.y66{bottom:775.920000pt;}
.y9e{bottom:784.226667pt;}
.y65{bottom:791.920000pt;}
.y9d{bottom:799.266667pt;}
.y64{bottom:807.920000pt;}
.y9c{bottom:814.626667pt;}
.y10{bottom:820.386667pt;}
.y62{bottom:823.920000pt;}
.yf{bottom:827.426667pt;}
.y9b{bottom:830.013333pt;}
.y5f{bottom:839.933333pt;}
.ye{bottom:842.813333pt;}
.y9a{bottom:845.373333pt;}
.y61{bottom:855.933333pt;}
.y82{bottom:860.733333pt;}
.yd{bottom:864.253333pt;}
.yc{bottom:873.533333pt;}
.y5e{bottom:875.133333pt;}
.y81{bottom:876.093333pt;}
.y5d{bottom:890.493333pt;}
.y80{bottom:891.453333pt;}
.yb{bottom:894.973333pt;}
.ya{bottom:903.613333pt;}
.y5c{bottom:905.853333pt;}
.y7f{bottom:906.813333pt;}
.y7e{bottom:922.173333pt;}
.y9{bottom:928.893333pt;}
.y5b{bottom:929.533333pt;}
.y7d{bottom:937.533333pt;}
.y5a{bottom:944.893333pt;}
.y8{bottom:950.693333pt;}
.y7c{bottom:952.933333pt;}
.y59{bottom:959.653333pt;}
.y7b{bottom:967.973333pt;}
.y56{bottom:970.240000pt;}
.y7a{bottom:983.013333pt;}
.y58{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h14{height:5.022500pt;}
.h19{height:15.346667pt;}
.h1a{height:15.360000pt;}
.h1d{height:15.386667pt;}
.hb{height:16.331250pt;}
.h6{height:21.643125pt;}
.h15{height:24.640000pt;}
.h12{height:26.381250pt;}
.h1b{height:30.706667pt;}
.h18{height:31.346667pt;}
.h9{height:33.918750pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.hf{height:47.713750pt;}
.h13{height:49.020000pt;}
.h5{height:52.762500pt;}
.ha{height:54.180000pt;}
.h1e{height:55.256809pt;}
.h17{height:55.965000pt;}
.h16{height:56.405000pt;}
.h7{height:56.513750pt;}
.h10{height:58.238750pt;}
.h3{height:58.563750pt;}
.h8{height:59.150000pt;}
.h2{height:72.346667pt;}
.h1c{height:95.386667pt;}
.h4{height:103.680000pt;}
.h11{height:171.240000pt;}
.hc{height:556.293333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:69.140000pt;}
.wb{width:71.392000pt;}
.w10{width:72.672000pt;}
.w7{width:81.280000pt;}
.wa{width:83.546667pt;}
.w9{width:88.346667pt;}
.w2{width:92.180000pt;}
.w12{width:92.840000pt;}
.w11{width:94.098667pt;}
.we{width:102.440000pt;}
.w4{width:117.780000pt;}
.wf{width:129.626667pt;}
.w6{width:144.960000pt;}
.wc{width:200.040000pt;}
.w8{width:445.266667pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x18{left:7.348000pt;}
.x40{left:8.320000pt;}
.x2d{left:9.586667pt;}
.x3a{left:10.560000pt;}
.x4{left:11.826667pt;}
.x36{left:13.140000pt;}
.x3d{left:14.413333pt;}
.x16{left:15.348000pt;}
.x1c{left:16.308000pt;}
.x5{left:17.266667pt;}
.x42{left:18.260000pt;}
.x2e{left:20.160000pt;}
.x2b{left:22.080000pt;}
.x32{left:23.360000pt;}
.x17{left:25.908000pt;}
.x29{left:28.480000pt;}
.x27{left:30.720000pt;}
.x30{left:31.680000pt;}
.x3e{left:34.253333pt;}
.x44{left:36.493333pt;}
.x11{left:39.028000pt;}
.x41{left:40.026667pt;}
.x1d{left:42.260000pt;}
.x6{left:43.213333pt;}
.x12{left:45.140000pt;}
.x43{left:46.080000pt;}
.x15{left:48.020000pt;}
.x10{left:48.980000pt;}
.x3f{left:52.800000pt;}
.x1a{left:55.373333pt;}
.x14{left:64.982667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x31{left:79.386667pt;}
.xa{left:80.672000pt;}
.x2f{left:82.586667pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x1b{left:95.062667pt;}
.xc{left:97.312000pt;}
.x46{left:100.832000pt;}
.x13{left:110.742667pt;}
.x35{left:114.272000pt;}
.x20{left:124.864000pt;}
.x26{left:131.240000pt;}
.x24{left:133.520000pt;}
.x3{left:162.000000pt;}
.x37{left:184.720000pt;}
.x19{left:194.640000pt;}
.x22{left:208.733333pt;}
.x25{left:215.453333pt;}
.x38{left:288.133333pt;}
.x28{left:304.453333pt;}
.x23{left:361.440000pt;}
.x21{left:364.320000pt;}
.x2a{left:388.640000pt;}
.x9{left:403.680000pt;}
.x39{left:418.400000pt;}
.x2c{left:460.680000pt;}
.xd{left:466.746667pt;}
.x3b{left:491.720000pt;}
.xe{left:513.186667pt;}
.x33{left:572.066667pt;}
.x3c{left:586.480000pt;}
.x45{left:591.933333pt;}
.x34{left:598.013333pt;}
.xb{left:598.973333pt;}
.x8{left:697.573333pt;}
.xf{left:717.413333pt;}
}




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