
    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_3327b57b46314200e4098fe5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_9c5593e4e22416d94fdc32f6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_0f20c994e9d89dba5a5875e0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729004;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_ec39b1d8ae29bcc764b889f7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.729004;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_91ce7f420a823e9002b38ade.woff')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_96627b96bcd9c58c5c989546.woff')format("woff");}.ff6{font-family:ff6;line-height:1.163086;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_3134ac469c2fc9d3c2492315.woff')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_45d757f2de8d4b7d141f345b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3bb5278192d49a7bff3487c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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_b003d4cdc50bed7314aca055.woff')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_49957f3a053c71e85dd12da3.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d00e6d5958e7ce24ddcd2cf4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.684082;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_40841913bb21484b48fdb65e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.760742;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_baf5dc81a372e1673d0424b4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_8e5e03f327a9e232433b95dd.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;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_14fa3c21ada9f6f4a2524eba.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3aefb199d920bc60f6c6d20e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.848633;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.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);}
.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;}
.ls6{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015120px;}
.ls2{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.358560px;}
.ls8{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.404640px;}
.lsa{letter-spacing:13.140000px;}
.lsb{letter-spacing:18.900000px;}
.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:-29.090736px;}
.ws2{word-spacing:-29.052000px;}
.ws6{word-spacing:-28.800000px;}
.ws0{word-spacing:-19.368000px;}
.wsc{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.420000px;}
.wse{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.944000px;}
.wsb{word-spacing:-10.902240px;}
.ws7{word-spacing:-10.440000px;}
.wsa{word-spacing:0.000000px;}
.ws5{word-spacing:0.095760px;}
._6{margin-left:-11.743200px;}
._7{margin-left:-6.012000px;}
._b{margin-left:-3.238080px;}
._2{margin-left:-1.360800px;}
._3{width:1.179360px;}
._5{width:2.471760px;}
._4{width:3.583440px;}
._0{width:5.443200px;}
._1{width:6.577200px;}
._9{width:7.938000px;}
._8{width:8.964000px;}
._a{width:10.322640px;}
._10{width:11.358000px;}
._c{width:14.995440px;}
._f{width:16.080768px;}
._e{width:17.226000px;}
._d{width:18.468000px;}
._11{width:20.898000px;}
.fc2{color:rgb(10,80,164);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs5{font-size:45.504000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs8{font-size:120.240000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:18.900000px;}
.y6{bottom:19.620000px;}
.y46{bottom:37.980000px;}
.ya{bottom:61.020000px;}
.y9{bottom:75.096000px;}
.y8{bottom:89.316000px;}
.y7{bottom:103.536000px;}
.y78{bottom:144.396000px;}
.yf{bottom:146.376000px;}
.y86{bottom:148.356000px;}
.y77{bottom:161.490000px;}
.y3b{bottom:162.750000px;}
.ye{bottom:172.110000px;}
.y87{bottom:173.730000px;}
.y76{bottom:178.410000px;}
.y3a{bottom:188.670000px;}
.yd{bottom:188.850000px;}
.y75{bottom:195.510000px;}
.y88{bottom:197.850000px;}
.y39{bottom:205.590000px;}
.y74{bottom:212.430000px;}
.yc{bottom:214.770000px;}
.y89{bottom:221.970000px;}
.y38{bottom:222.690000px;}
.y73{bottom:238.530000px;}
.y37{bottom:239.610000px;}
.yb{bottom:240.510000px;}
.y8a{bottom:246.090000px;}
.y72{bottom:264.270000px;}
.y36{bottom:265.710000px;}
.y8b{bottom:270.390000px;}
.y71{bottom:281.370000px;}
.y35{bottom:291.450000px;}
.y8c{bottom:294.510000px;}
.y70{bottom:298.290000px;}
.y34{bottom:308.550000px;}
.y6f{bottom:315.390000px;}
.y8d{bottom:318.630000px;}
.y33{bottom:325.470000px;}
.y6e{bottom:332.310000px;}
.y32{bottom:342.615000px;}
.y8e{bottom:342.795000px;}
.y6d{bottom:358.275000px;}
.y31{bottom:359.535000px;}
.y8f{bottom:366.915000px;}
.y6c{bottom:384.195000px;}
.y30{bottom:385.455000px;}
.y90{bottom:391.035000px;}
.y6b{bottom:401.115000px;}
.y2f{bottom:411.375000px;}
.y91{bottom:415.155000px;}
.y6a{bottom:418.215000px;}
.y2e{bottom:428.295000px;}
.y69{bottom:435.135000px;}
.y92{bottom:439.275000px;}
.y2d{bottom:445.395000px;}
.y68{bottom:452.235000px;}
.y2c{bottom:462.315000px;}
.y93{bottom:463.395000px;}
.y67{bottom:469.155000px;}
.y16{bottom:473.295000px;}
.y2b{bottom:479.415000px;}
.y15{bottom:486.435000px;}
.y94{bottom:487.515000px;}
.y66{bottom:495.075000px;}
.y14{bottom:499.755000px;}
.y2a{bottom:505.335000px;}
.y95{bottom:511.635000px;}
.y65{bottom:511.995000px;}
.y29{bottom:531.255000px;}
.y64{bottom:537.735000px;}
.y28{bottom:548.175000px;}
.y63{bottom:554.835000px;}
.y27{bottom:565.275000px;}
.y62{bottom:571.755000px;}
.y26{bottom:582.195000px;}
.y61{bottom:588.855000px;}
.y60{bottom:605.775000px;}
.y25{bottom:608.145000px;}
.y5f{bottom:631.725000px;}
.y24{bottom:634.065000px;}
.y5e{bottom:648.465000px;}
.y23{bottom:650.985000px;}
.y22{bottom:668.085000px;}
.y43{bottom:668.625000px;}
.y5d{bottom:674.385000px;}
.y42{bottom:681.765000px;}
.y21{bottom:685.005000px;}
.y5c{bottom:691.305000px;}
.y41{bottom:695.085000px;}
.y85{bottom:699.585000px;}
.y20{bottom:702.105000px;}
.y40{bottom:708.225000px;}
.y5b{bottom:708.405000px;}
.y3f{bottom:721.545000px;}
.y5a{bottom:725.325000px;}
.y1f{bottom:728.025000px;}
.y3e{bottom:735.945000px;}
.y59{bottom:742.425000px;}
.y3d{bottom:752.325000px;}
.y1e{bottom:753.765000px;}
.y58{bottom:759.525000px;}
.y3c{bottom:767.445000px;}
.y1d{bottom:770.865000px;}
.y57{bottom:776.445000px;}
.y1c{bottom:787.785000px;}
.y84{bottom:793.545000px;}
.y56{bottom:802.365000px;}
.y1b{bottom:804.885000px;}
.y83{bottom:810.465000px;}
.y1a{bottom:821.805000px;}
.y82{bottom:827.565000px;}
.y55{bottom:828.285000px;}
.y19{bottom:838.905000px;}
.y81{bottom:844.485000px;}
.y54{bottom:845.205000px;}
.y53{bottom:862.305000px;}
.y80{bottom:870.405000px;}
.y52{bottom:879.270000px;}
.y18{bottom:888.270000px;}
.y51{bottom:896.370000px;}
.y13{bottom:898.170000px;}
.y12{bottom:911.310000px;}
.y50{bottom:913.290000px;}
.y17{bottom:914.370000px;}
.y7f{bottom:930.390000px;}
.y4f{bottom:939.210000px;}
.y7e{bottom:947.310000px;}
.y3{bottom:957.930000px;}
.y11{bottom:963.690000px;}
.y7d{bottom:964.410000px;}
.y4e{bottom:965.130000px;}
.y7c{bottom:981.330000px;}
.y4d{bottom:982.050000px;}
.y2{bottom:983.670000px;}
.y7b{bottom:998.430000px;}
.y4c{bottom:999.150000px;}
.y10{bottom:1003.470000px;}
.y1{bottom:1009.410000px;}
.y7a{bottom:1015.350000px;}
.y4b{bottom:1016.070000px;}
.y4a{bottom:1033.170000px;}
.y79{bottom:1041.270000px;}
.y49{bottom:1050.090000px;}
.y48{bottom:1067.190000px;}
.y45{bottom:1127.310000px;}
.y5{bottom:1127.850000px;}
.y44{bottom:1159.740000px;}
.y4{bottom:1169.280000px;}
.hc{height:29.158594px;}
.hb{height:29.464453px;}
.h6{height:31.672266px;}
.h7{height:31.772812px;}
.ha{height:32.717461px;}
.h14{height:33.683203px;}
.h18{height:33.683211px;}
.h22{height:33.683212px;}
.h1c{height:33.683215px;}
.h1e{height:33.683216px;}
.h17{height:33.683225px;}
.h1a{height:33.683233px;}
.h1b{height:33.683235px;}
.h23{height:33.683247px;}
.h1d{height:33.683251px;}
.h21{height:33.683253px;}
.h1f{height:33.683258px;}
.h24{height:33.683264px;}
.h20{height:33.683293px;}
.h19{height:33.683325px;}
.h13{height:34.036523px;}
.h8{height:36.180000px;}
.hd{height:37.494141px;}
.he{height:37.594125px;}
.hf{height:37.705078px;}
.h12{height:37.805625px;}
.h10{height:38.100586px;}
.h11{height:38.202187px;}
.h16{height:42.164668px;}
.h15{height:47.980898px;}
.h2{height:56.566406px;}
.h5{height:59.439023px;}
.h4{height:77.466797px;}
.h3{height:77.570086px;}
.h9{height:101.601562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:65.699987px;}
.x8{left:69.479987px;}
.x1{left:70.559987px;}
.xc{left:82.439987px;}
.x5{left:224.849987px;}
.x6{left:260.129987px;}
.x7{left:272.369987px;}
.x9{left:366.194987px;}
.x4{left:438.194987px;}
.xa{left:439.994987px;}
.xe{left:442.154987px;}
.xd{left:458.894987px;}
.x2{left:729.869987px;}
.x3{left:769.649987px;}
.x10{left:820.949987px;}
.xf{left:825.269987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.013440pt;}
.ls2{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.318720pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.359680pt;}
.lsa{letter-spacing:11.680000pt;}
.lsb{letter-spacing:16.800000pt;}
.ws1{word-spacing:-25.858432pt;}
.ws2{word-spacing:-25.824000pt;}
.ws6{word-spacing:-25.600000pt;}
.ws0{word-spacing:-17.216000pt;}
.wsc{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.005120pt;}
.ws9{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.040000pt;}
.wse{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.728000pt;}
.wsb{word-spacing:-9.690880pt;}
.ws7{word-spacing:-9.280000pt;}
.wsa{word-spacing:0.000000pt;}
.ws5{word-spacing:0.085120pt;}
._6{margin-left:-10.438400pt;}
._7{margin-left:-5.344000pt;}
._b{margin-left:-2.878293pt;}
._2{margin-left:-1.209600pt;}
._3{width:1.048320pt;}
._5{width:2.197120pt;}
._4{width:3.185280pt;}
._0{width:4.838400pt;}
._1{width:5.846400pt;}
._9{width:7.056000pt;}
._8{width:7.968000pt;}
._a{width:9.175680pt;}
._10{width:10.096000pt;}
._c{width:13.329280pt;}
._f{width:14.294016pt;}
._e{width:15.312000pt;}
._d{width:16.416000pt;}
._11{width:18.576000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs5{font-size:40.448000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs8{font-size:106.880000pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:16.800000pt;}
.y6{bottom:17.440000pt;}
.y46{bottom:33.760000pt;}
.ya{bottom:54.240000pt;}
.y9{bottom:66.752000pt;}
.y8{bottom:79.392000pt;}
.y7{bottom:92.032000pt;}
.y78{bottom:128.352000pt;}
.yf{bottom:130.112000pt;}
.y86{bottom:131.872000pt;}
.y77{bottom:143.546667pt;}
.y3b{bottom:144.666667pt;}
.ye{bottom:152.986667pt;}
.y87{bottom:154.426667pt;}
.y76{bottom:158.586667pt;}
.y3a{bottom:167.706667pt;}
.yd{bottom:167.866667pt;}
.y75{bottom:173.786667pt;}
.y88{bottom:175.866667pt;}
.y39{bottom:182.746667pt;}
.y74{bottom:188.826667pt;}
.yc{bottom:190.906667pt;}
.y89{bottom:197.306667pt;}
.y38{bottom:197.946667pt;}
.y73{bottom:212.026667pt;}
.y37{bottom:212.986667pt;}
.yb{bottom:213.786667pt;}
.y8a{bottom:218.746667pt;}
.y72{bottom:234.906667pt;}
.y36{bottom:236.186667pt;}
.y8b{bottom:240.346667pt;}
.y71{bottom:250.106667pt;}
.y35{bottom:259.066667pt;}
.y8c{bottom:261.786667pt;}
.y70{bottom:265.146667pt;}
.y34{bottom:274.266667pt;}
.y6f{bottom:280.346667pt;}
.y8d{bottom:283.226667pt;}
.y33{bottom:289.306667pt;}
.y6e{bottom:295.386667pt;}
.y32{bottom:304.546667pt;}
.y8e{bottom:304.706667pt;}
.y6d{bottom:318.466667pt;}
.y31{bottom:319.586667pt;}
.y8f{bottom:326.146667pt;}
.y6c{bottom:341.506667pt;}
.y30{bottom:342.626667pt;}
.y90{bottom:347.586667pt;}
.y6b{bottom:356.546667pt;}
.y2f{bottom:365.666667pt;}
.y91{bottom:369.026667pt;}
.y6a{bottom:371.746667pt;}
.y2e{bottom:380.706667pt;}
.y69{bottom:386.786667pt;}
.y92{bottom:390.466667pt;}
.y2d{bottom:395.906667pt;}
.y68{bottom:401.986667pt;}
.y2c{bottom:410.946667pt;}
.y93{bottom:411.906667pt;}
.y67{bottom:417.026667pt;}
.y16{bottom:420.706667pt;}
.y2b{bottom:426.146667pt;}
.y15{bottom:432.386667pt;}
.y94{bottom:433.346667pt;}
.y66{bottom:440.066667pt;}
.y14{bottom:444.226667pt;}
.y2a{bottom:449.186667pt;}
.y95{bottom:454.786667pt;}
.y65{bottom:455.106667pt;}
.y29{bottom:472.226667pt;}
.y64{bottom:477.986667pt;}
.y28{bottom:487.266667pt;}
.y63{bottom:493.186667pt;}
.y27{bottom:502.466667pt;}
.y62{bottom:508.226667pt;}
.y26{bottom:517.506667pt;}
.y61{bottom:523.426667pt;}
.y60{bottom:538.466667pt;}
.y25{bottom:540.573333pt;}
.y5f{bottom:561.533333pt;}
.y24{bottom:563.613333pt;}
.y5e{bottom:576.413333pt;}
.y23{bottom:578.653333pt;}
.y22{bottom:593.853333pt;}
.y43{bottom:594.333333pt;}
.y5d{bottom:599.453333pt;}
.y42{bottom:606.013333pt;}
.y21{bottom:608.893333pt;}
.y5c{bottom:614.493333pt;}
.y41{bottom:617.853333pt;}
.y85{bottom:621.853333pt;}
.y20{bottom:624.093333pt;}
.y40{bottom:629.533333pt;}
.y5b{bottom:629.693333pt;}
.y3f{bottom:641.373333pt;}
.y5a{bottom:644.733333pt;}
.y1f{bottom:647.133333pt;}
.y3e{bottom:654.173333pt;}
.y59{bottom:659.933333pt;}
.y3d{bottom:668.733333pt;}
.y1e{bottom:670.013333pt;}
.y58{bottom:675.133333pt;}
.y3c{bottom:682.173333pt;}
.y1d{bottom:685.213333pt;}
.y57{bottom:690.173333pt;}
.y1c{bottom:700.253333pt;}
.y84{bottom:705.373333pt;}
.y56{bottom:713.213333pt;}
.y1b{bottom:715.453333pt;}
.y83{bottom:720.413333pt;}
.y1a{bottom:730.493333pt;}
.y82{bottom:735.613333pt;}
.y55{bottom:736.253333pt;}
.y19{bottom:745.693333pt;}
.y81{bottom:750.653333pt;}
.y54{bottom:751.293333pt;}
.y53{bottom:766.493333pt;}
.y80{bottom:773.693333pt;}
.y52{bottom:781.573333pt;}
.y18{bottom:789.573333pt;}
.y51{bottom:796.773333pt;}
.y13{bottom:798.373333pt;}
.y12{bottom:810.053333pt;}
.y50{bottom:811.813333pt;}
.y17{bottom:812.773333pt;}
.y7f{bottom:827.013333pt;}
.y4f{bottom:834.853333pt;}
.y7e{bottom:842.053333pt;}
.y3{bottom:851.493333pt;}
.y11{bottom:856.613333pt;}
.y7d{bottom:857.253333pt;}
.y4e{bottom:857.893333pt;}
.y7c{bottom:872.293333pt;}
.y4d{bottom:872.933333pt;}
.y2{bottom:874.373333pt;}
.y7b{bottom:887.493333pt;}
.y4c{bottom:888.133333pt;}
.y10{bottom:891.973333pt;}
.y1{bottom:897.253333pt;}
.y7a{bottom:902.533333pt;}
.y4b{bottom:903.173333pt;}
.y4a{bottom:918.373333pt;}
.y79{bottom:925.573333pt;}
.y49{bottom:933.413333pt;}
.y48{bottom:948.613333pt;}
.y45{bottom:1002.053333pt;}
.y5{bottom:1002.533333pt;}
.y44{bottom:1030.880000pt;}
.y4{bottom:1039.360000pt;}
.hc{height:25.918750pt;}
.hb{height:26.190625pt;}
.h6{height:28.153125pt;}
.h7{height:28.242500pt;}
.ha{height:29.082187pt;}
.h14{height:29.940625pt;}
.h18{height:29.940632pt;}
.h22{height:29.940633pt;}
.h1c{height:29.940635pt;}
.h1e{height:29.940637pt;}
.h17{height:29.940644pt;}
.h1a{height:29.940652pt;}
.h1b{height:29.940653pt;}
.h23{height:29.940664pt;}
.h1d{height:29.940667pt;}
.h21{height:29.940669pt;}
.h1f{height:29.940674pt;}
.h24{height:29.940680pt;}
.h20{height:29.940705pt;}
.h19{height:29.940733pt;}
.h13{height:30.254687pt;}
.h8{height:32.160000pt;}
.hd{height:33.328125pt;}
.he{height:33.417000pt;}
.hf{height:33.515625pt;}
.h12{height:33.605000pt;}
.h10{height:33.867188pt;}
.h11{height:33.957500pt;}
.h16{height:37.479705pt;}
.h15{height:42.649687pt;}
.h2{height:50.281250pt;}
.h5{height:52.834688pt;}
.h4{height:68.859375pt;}
.h3{height:68.951188pt;}
.h9{height:90.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:58.399988pt;}
.x8{left:61.759988pt;}
.x1{left:62.719988pt;}
.xc{left:73.279988pt;}
.x5{left:199.866655pt;}
.x6{left:231.226655pt;}
.x7{left:242.106655pt;}
.x9{left:325.506655pt;}
.x4{left:389.506655pt;}
.xa{left:391.106655pt;}
.xe{left:393.026655pt;}
.xd{left:407.906655pt;}
.x2{left:648.773322pt;}
.x3{left:684.133322pt;}
.x10{left:729.733322pt;}
.xf{left:733.573322pt;}
}




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