
    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_c7d9c5e562ffc486c469453c.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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_af16a6265a742ba9befbf62b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f60dd46356d6ca843ba53b31.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ebee430a5651bd1f555f3265.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_9cc72f1870e6f7c3d98de6dc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2157a23c786c0cfad31d7317.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_31bdc067b0d528f7a1aba0bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_368b9d652900d2543297be77.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_92d1fb6a1cf3a2d51ba69c59.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b5fec0fd8d619f874953a52b.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_053853fe3ba1502f7571e317.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_c39e2bb69f4615aba4de213b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976562;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-25.380000px;}
.ls26{letter-spacing:-24.660000px;}
.lsa{letter-spacing:-22.957906px;}
.ls8{letter-spacing:-21.780000px;}
.ls24{letter-spacing:-19.620000px;}
.ls28{letter-spacing:-1.050000px;}
.lsd{letter-spacing:-0.900000px;}
.ls2e{letter-spacing:-0.738000px;}
.ls2a{letter-spacing:-0.684000px;}
.ls9{letter-spacing:-0.378600px;}
.lsc{letter-spacing:-0.369600px;}
.ls23{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.322800px;}
.ls33{letter-spacing:-0.189735px;}
.ls17{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.037440px;}
.ls12{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.004080px;}
.ls1c{letter-spacing:0.013440px;}
.ls3{letter-spacing:0.028080px;}
.ls1d{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.037440px;}
.ls2c{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.148080px;}
.ls10{letter-spacing:0.157440px;}
.ls1a{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.181440px;}
.ls13{letter-spacing:0.208080px;}
.ls5{letter-spacing:0.217440px;}
.ls32{letter-spacing:0.252720px;}
.ls7{letter-spacing:0.341400px;}
.ls29{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.378720px;}
.ls30{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.504000px;}
.ls18{letter-spacing:1.260000px;}
.ls2d{letter-spacing:3.420000px;}
.ls27{letter-spacing:4.140000px;}
.ls22{letter-spacing:6.300000px;}
.ls11{letter-spacing:7.020000px;}
.ls34{letter-spacing:8.460000px;}
.ls35{letter-spacing:9.180000px;}
.ls19{letter-spacing:10.620000px;}
.lse{letter-spacing:11.460000px;}
.ls31{letter-spacing:21.420000px;}
.ls2b{letter-spacing:25.740000px;}
.ls36{letter-spacing:26.460000px;}
.ls1e{letter-spacing:32.741280px;}
.ls16{letter-spacing:43.237440px;}
.ls2f{letter-spacing:44.981280px;}
.ls1{letter-spacing:48.204000px;}
.ls20{letter-spacing:76.537440px;}
.ls38{letter-spacing:83.861280px;}
.ls1f{letter-spacing:87.337440px;}
.ls21{letter-spacing:134.857440px;}
.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;}
}
.wsb{word-spacing:-24.300000px;}
.ws1{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.041280px;}
.wsc{word-spacing:-21.022560px;}
.wse{word-spacing:-20.737200px;}
.ws8{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.690400px;}
.ws2{word-spacing:-20.681400px;}
.wsf{word-spacing:-20.376000px;}
.wsd{word-spacing:-20.322000px;}
.ws9{word-spacing:-20.010000px;}
.ws3{word-spacing:0.000000px;}
._33{margin-left:-92.880000px;}
._34{margin-left:-88.200000px;}
._25{margin-left:-81.160080px;}
._2c{margin-left:-64.440000px;}
._30{margin-left:-59.400000px;}
._2b{margin-left:-45.540000px;}
._2d{margin-left:-40.320000px;}
._2f{margin-left:-34.020000px;}
._31{margin-left:-30.240000px;}
._39{margin-left:-16.871215px;}
._35{margin-left:-10.458720px;}
._1e{margin-left:-6.653280px;}
._1d{margin-left:-5.644080px;}
._6{margin-left:-3.959280px;}
._7{margin-left:-2.918160px;}
._1{margin-left:-1.158720px;}
._2{width:1.038720px;}
._0{width:2.208000px;}
._f{width:3.430560px;}
._e{width:4.801680px;}
._8{width:6.318000px;}
._18{width:7.632000px;}
._17{width:8.641200px;}
._13{width:9.856080px;}
._12{width:10.866960px;}
._20{width:11.948640px;}
._a{width:13.057200px;}
._b{width:14.513040px;}
._14{width:15.850080px;}
._5{width:17.248560px;}
._15{width:18.280080px;}
._16{width:19.485600px;}
._21{width:21.333120px;}
._9{width:22.742880px;}
._c{width:24.682320px;}
._d{width:25.945920px;}
._10{width:27.883440px;}
._11{width:29.442720px;}
._3a{width:30.462000px;}
._38{width:31.485120px;}
._22{width:32.769360px;}
._23{width:35.296560px;}
._1f{width:36.812880px;}
._24{width:37.821360px;}
._36{width:39.255840px;}
._37{width:40.404000px;}
._1c{width:41.530320px;}
._3b{width:42.669360px;}
._1b{width:45.216240px;}
._19{width:46.500480px;}
._1a{width:47.511360px;}
._26{width:52.124160px;}
._27{width:53.156640px;}
._29{width:54.417840px;}
._3{width:55.935360px;}
._4{width:57.510720px;}
._28{width:75.142080px;}
._2e{width:97.327200px;}
._2a{width:102.334320px;}
._32{width:126.114960px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:88.795869px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.y8{bottom:44.640000px;}
.y57{bottom:95.256000px;}
.y35{bottom:114.516000px;}
.y63{bottom:117.936000px;}
.y56{bottom:122.976000px;}
.y34{bottom:142.416000px;}
.y55{bottom:150.870000px;}
.y62{bottom:157.710000px;}
.y33{bottom:166.530000px;}
.y54{bottom:178.590000px;}
.y32{bottom:190.650000px;}
.y61{bottom:197.490000px;}
.y53{bottom:206.310000px;}
.y31{bottom:214.770000px;}
.y52{bottom:234.030000px;}
.y60{bottom:237.090000px;}
.y30{bottom:238.890000px;}
.y51{bottom:261.930000px;}
.y2f{bottom:263.010000px;}
.y5f{bottom:276.870000px;}
.y2e{bottom:287.310000px;}
.y50{bottom:289.650000px;}
.y2d{bottom:311.430000px;}
.y5e{bottom:316.650000px;}
.y4f{bottom:317.370000px;}
.y2c{bottom:335.550000px;}
.y4e{bottom:345.135000px;}
.y5d{bottom:356.475000px;}
.y2b{bottom:359.715000px;}
.y4d{bottom:373.035000px;}
.y2a{bottom:383.835000px;}
.y5c{bottom:396.255000px;}
.y4c{bottom:400.755000px;}
.y29{bottom:407.955000px;}
.y4b{bottom:428.475000px;}
.y28{bottom:435.855000px;}
.y5b{bottom:436.035000px;}
.y4a{bottom:456.375000px;}
.y27{bottom:463.575000px;}
.y5a{bottom:475.815000px;}
.y49{bottom:484.095000px;}
.y26{bottom:487.695000px;}
.y25{bottom:511.815000px;}
.y59{bottom:515.595000px;}
.y24{bottom:535.935000px;}
.y48{bottom:539.535000px;}
.y58{bottom:555.375000px;}
.y23{bottom:560.055000px;}
.y47{bottom:567.435000px;}
.y22{bottom:584.355000px;}
.y46{bottom:595.155000px;}
.y21{bottom:608.505000px;}
.y45{bottom:622.905000px;}
.y20{bottom:632.625000px;}
.y44{bottom:650.805000px;}
.y1f{bottom:656.745000px;}
.y43{bottom:678.525000px;}
.y1e{bottom:680.865000px;}
.y1d{bottom:704.985000px;}
.y42{bottom:706.245000px;}
.y1c{bottom:729.285000px;}
.y41{bottom:733.965000px;}
.y1b{bottom:753.405000px;}
.y40{bottom:761.865000px;}
.y1a{bottom:777.525000px;}
.y3f{bottom:789.585000px;}
.y19{bottom:801.645000px;}
.y3e{bottom:817.305000px;}
.y18{bottom:825.765000px;}
.y3d{bottom:845.025000px;}
.y17{bottom:849.885000px;}
.y3c{bottom:872.970000px;}
.y16{bottom:874.050000px;}
.y15{bottom:898.350000px;}
.y3b{bottom:900.690000px;}
.y14{bottom:922.470000px;}
.y3a{bottom:928.410000px;}
.y13{bottom:946.590000px;}
.y39{bottom:956.310000px;}
.y12{bottom:970.710000px;}
.y38{bottom:984.030000px;}
.y11{bottom:994.830000px;}
.y37{bottom:1011.750000px;}
.y10{bottom:1018.950000px;}
.y36{bottom:1039.470000px;}
.yf{bottom:1043.250000px;}
.ye{bottom:1067.370000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.h2{height:41.400000px;}
.h4{height:53.709961px;}
.h10{height:58.819922px;}
.hc{height:60.136655px;}
.hf{height:61.654163px;}
.h13{height:64.084922px;}
.h6{height:66.757500px;}
.hd{height:68.362734px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.he{height:82.635820px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.h11{height:86.585445px;}
.h12{height:87.695156px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x22{left:19.800000px;}
.x8{left:25.380000px;}
.x1{left:31.860000px;}
.x2{left:44.460000px;}
.x5{left:59.970000px;}
.x7{left:84.959987px;}
.x13{left:99.755987px;}
.x12{left:127.475987px;}
.xf{left:155.909987px;}
.x1a{left:170.489987px;}
.x1b{left:179.849987px;}
.x1c{left:199.649987px;}
.x1d{left:206.489987px;}
.x10{left:239.249987px;}
.xe{left:268.049987px;}
.x19{left:275.249987px;}
.xa{left:283.214987px;}
.xb{left:293.834987px;}
.xc{left:342.794987px;}
.x11{left:368.894987px;}
.x1e{left:369.974987px;}
.x1f{left:379.334987px;}
.x18{left:389.234987px;}
.x16{left:391.574987px;}
.x17{left:402.194987px;}
.x23{left:409.394987px;}
.x24{left:422.894987px;}
.xd{left:446.474987px;}
.x25{left:470.984987px;}
.x26{left:483.224987px;}
.x20{left:516.884987px;}
.x21{left:526.244987px;}
.x3{left:530.205000px;}
.x14{left:774.509987px;}
.x15{left:781.349987px;}
.x4{left:792.690000px;}
.x9{left:797.550000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-22.560000pt;}
.ls26{letter-spacing:-21.920000pt;}
.lsa{letter-spacing:-20.407028pt;}
.ls8{letter-spacing:-19.360000pt;}
.ls24{letter-spacing:-17.440000pt;}
.ls28{letter-spacing:-0.933333pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls2e{letter-spacing:-0.656000pt;}
.ls2a{letter-spacing:-0.608000pt;}
.ls9{letter-spacing:-0.336533pt;}
.lsc{letter-spacing:-0.328533pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.286933pt;}
.ls33{letter-spacing:-0.168653pt;}
.ls17{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.033280pt;}
.ls12{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.003627pt;}
.ls1c{letter-spacing:0.011947pt;}
.ls3{letter-spacing:0.024960pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.033280pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.131627pt;}
.ls10{letter-spacing:0.139947pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.161280pt;}
.ls13{letter-spacing:0.184960pt;}
.ls5{letter-spacing:0.193280pt;}
.ls32{letter-spacing:0.224640pt;}
.ls7{letter-spacing:0.303467pt;}
.ls29{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.336640pt;}
.ls30{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.448000pt;}
.ls18{letter-spacing:1.120000pt;}
.ls2d{letter-spacing:3.040000pt;}
.ls27{letter-spacing:3.680000pt;}
.ls22{letter-spacing:5.600000pt;}
.ls11{letter-spacing:6.240000pt;}
.ls34{letter-spacing:7.520000pt;}
.ls35{letter-spacing:8.160000pt;}
.ls19{letter-spacing:9.440000pt;}
.lse{letter-spacing:10.186667pt;}
.ls31{letter-spacing:19.040000pt;}
.ls2b{letter-spacing:22.880000pt;}
.ls36{letter-spacing:23.520000pt;}
.ls1e{letter-spacing:29.103360pt;}
.ls16{letter-spacing:38.433280pt;}
.ls2f{letter-spacing:39.983360pt;}
.ls1{letter-spacing:42.848000pt;}
.ls20{letter-spacing:68.033280pt;}
.ls38{letter-spacing:74.543360pt;}
.ls1f{letter-spacing:77.633280pt;}
.ls21{letter-spacing:119.873280pt;}
.wsb{word-spacing:-21.600000pt;}
.ws1{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.031467pt;}
.ws7{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.703360pt;}
.wsc{word-spacing:-18.686720pt;}
.wse{word-spacing:-18.433067pt;}
.ws8{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.391467pt;}
.ws2{word-spacing:-18.383467pt;}
.wsf{word-spacing:-18.112000pt;}
.wsd{word-spacing:-18.064000pt;}
.ws9{word-spacing:-17.786667pt;}
.ws3{word-spacing:0.000000pt;}
._33{margin-left:-82.560000pt;}
._34{margin-left:-78.400000pt;}
._25{margin-left:-72.142293pt;}
._2c{margin-left:-57.280000pt;}
._30{margin-left:-52.800000pt;}
._2b{margin-left:-40.480000pt;}
._2d{margin-left:-35.840000pt;}
._2f{margin-left:-30.240000pt;}
._31{margin-left:-26.880000pt;}
._39{margin-left:-14.996636pt;}
._35{margin-left:-9.296640pt;}
._1e{margin-left:-5.914027pt;}
._1d{margin-left:-5.016960pt;}
._6{margin-left:-3.519360pt;}
._7{margin-left:-2.593920pt;}
._1{margin-left:-1.029973pt;}
._2{width:0.923307pt;}
._0{width:1.962667pt;}
._f{width:3.049387pt;}
._e{width:4.268160pt;}
._8{width:5.616000pt;}
._18{width:6.784000pt;}
._17{width:7.681067pt;}
._13{width:8.760960pt;}
._12{width:9.659520pt;}
._20{width:10.621013pt;}
._a{width:11.606400pt;}
._b{width:12.900480pt;}
._14{width:14.088960pt;}
._5{width:15.332053pt;}
._15{width:16.248960pt;}
._16{width:17.320533pt;}
._21{width:18.962773pt;}
._9{width:20.215893pt;}
._c{width:21.939840pt;}
._d{width:23.063040pt;}
._10{width:24.785280pt;}
._11{width:26.171307pt;}
._3a{width:27.077333pt;}
._38{width:27.986773pt;}
._22{width:29.128320pt;}
._23{width:31.374720pt;}
._1f{width:32.722560pt;}
._24{width:33.618987pt;}
._36{width:34.894080pt;}
._37{width:35.914667pt;}
._1c{width:36.915840pt;}
._3b{width:37.928320pt;}
._1b{width:40.192213pt;}
._19{width:41.333760pt;}
._1a{width:42.232320pt;}
._26{width:46.332587pt;}
._27{width:47.250347pt;}
._29{width:48.371413pt;}
._3{width:49.720320pt;}
._4{width:51.120640pt;}
._28{width:66.792960pt;}
._2e{width:86.513067pt;}
._2a{width:90.963840pt;}
._32{width:112.102187pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:78.929661pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.y8{bottom:39.680000pt;}
.y57{bottom:84.672000pt;}
.y35{bottom:101.792000pt;}
.y63{bottom:104.832000pt;}
.y56{bottom:109.312000pt;}
.y34{bottom:126.592000pt;}
.y55{bottom:134.106667pt;}
.y62{bottom:140.186667pt;}
.y33{bottom:148.026667pt;}
.y54{bottom:158.746667pt;}
.y32{bottom:169.466667pt;}
.y61{bottom:175.546667pt;}
.y53{bottom:183.386667pt;}
.y31{bottom:190.906667pt;}
.y52{bottom:208.026667pt;}
.y60{bottom:210.746667pt;}
.y30{bottom:212.346667pt;}
.y51{bottom:232.826667pt;}
.y2f{bottom:233.786667pt;}
.y5f{bottom:246.106667pt;}
.y2e{bottom:255.386667pt;}
.y50{bottom:257.466667pt;}
.y2d{bottom:276.826667pt;}
.y5e{bottom:281.466667pt;}
.y4f{bottom:282.106667pt;}
.y2c{bottom:298.266667pt;}
.y4e{bottom:306.786667pt;}
.y5d{bottom:316.866667pt;}
.y2b{bottom:319.746667pt;}
.y4d{bottom:331.586667pt;}
.y2a{bottom:341.186667pt;}
.y5c{bottom:352.226667pt;}
.y4c{bottom:356.226667pt;}
.y29{bottom:362.626667pt;}
.y4b{bottom:380.866667pt;}
.y28{bottom:387.426667pt;}
.y5b{bottom:387.586667pt;}
.y4a{bottom:405.666667pt;}
.y27{bottom:412.066667pt;}
.y5a{bottom:422.946667pt;}
.y49{bottom:430.306667pt;}
.y26{bottom:433.506667pt;}
.y25{bottom:454.946667pt;}
.y59{bottom:458.306667pt;}
.y24{bottom:476.386667pt;}
.y48{bottom:479.586667pt;}
.y58{bottom:493.666667pt;}
.y23{bottom:497.826667pt;}
.y47{bottom:504.386667pt;}
.y22{bottom:519.426667pt;}
.y46{bottom:529.026667pt;}
.y21{bottom:540.893333pt;}
.y45{bottom:553.693333pt;}
.y20{bottom:562.333333pt;}
.y44{bottom:578.493333pt;}
.y1f{bottom:583.773333pt;}
.y43{bottom:603.133333pt;}
.y1e{bottom:605.213333pt;}
.y1d{bottom:626.653333pt;}
.y42{bottom:627.773333pt;}
.y1c{bottom:648.253333pt;}
.y41{bottom:652.413333pt;}
.y1b{bottom:669.693333pt;}
.y40{bottom:677.213333pt;}
.y1a{bottom:691.133333pt;}
.y3f{bottom:701.853333pt;}
.y19{bottom:712.573333pt;}
.y3e{bottom:726.493333pt;}
.y18{bottom:734.013333pt;}
.y3d{bottom:751.133333pt;}
.y17{bottom:755.453333pt;}
.y3c{bottom:775.973333pt;}
.y16{bottom:776.933333pt;}
.y15{bottom:798.533333pt;}
.y3b{bottom:800.613333pt;}
.y14{bottom:819.973333pt;}
.y3a{bottom:825.253333pt;}
.y13{bottom:841.413333pt;}
.y39{bottom:850.053333pt;}
.y12{bottom:862.853333pt;}
.y38{bottom:874.693333pt;}
.y11{bottom:884.293333pt;}
.y37{bottom:899.333333pt;}
.y10{bottom:905.733333pt;}
.y36{bottom:923.973333pt;}
.yf{bottom:927.333333pt;}
.ye{bottom:948.773333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.h2{height:36.800000pt;}
.h4{height:47.742188pt;}
.h10{height:52.284375pt;}
.hc{height:53.454805pt;}
.hf{height:54.803700pt;}
.h13{height:56.964375pt;}
.h6{height:59.340000pt;}
.hd{height:60.766875pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.he{height:73.454062pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.h11{height:76.964840pt;}
.h12{height:77.951250pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x22{left:17.600000pt;}
.x8{left:22.560000pt;}
.x1{left:28.320000pt;}
.x2{left:39.520000pt;}
.x5{left:53.306667pt;}
.x7{left:75.519988pt;}
.x13{left:88.671988pt;}
.x12{left:113.311988pt;}
.xf{left:138.586655pt;}
.x1a{left:151.546655pt;}
.x1b{left:159.866655pt;}
.x1c{left:177.466655pt;}
.x1d{left:183.546655pt;}
.x10{left:212.666655pt;}
.xe{left:238.266655pt;}
.x19{left:244.666655pt;}
.xa{left:251.746655pt;}
.xb{left:261.186655pt;}
.xc{left:304.706655pt;}
.x11{left:327.906655pt;}
.x1e{left:328.866655pt;}
.x1f{left:337.186655pt;}
.x18{left:345.986655pt;}
.x16{left:348.066655pt;}
.x17{left:357.506655pt;}
.x23{left:363.906655pt;}
.x24{left:375.906655pt;}
.xd{left:396.866655pt;}
.x25{left:418.653322pt;}
.x26{left:429.533322pt;}
.x20{left:459.453322pt;}
.x21{left:467.773322pt;}
.x3{left:471.293333pt;}
.x14{left:688.453322pt;}
.x15{left:694.533322pt;}
.x4{left:704.613333pt;}
.x9{left:708.933333pt;}
}




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