
    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_c8c556b5b01baef0d3aa26aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_86a827ab146ca5fafde91138.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_7ade71bdd7d7b54f34650a95.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6f2c87314fe24e4cfe7d960c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_eba4de058f61ab2d4c84c877.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_72ea2be7263b890cfc1c6798.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_e76da959a32f38c8ebf04b8d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_e23d381d814d3ffc6125a57d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.948000px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270600px;}
.ls9{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.226200px;}
.ls18{letter-spacing:-0.205800px;}
.ls12{letter-spacing:-0.192000px;}
.ls4{letter-spacing:-0.184200px;}
.ls13{letter-spacing:-0.129600px;}
.lsc{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.012960px;}
.ls10{letter-spacing:0.067200px;}
.lsd{letter-spacing:0.068880px;}
.ls11{letter-spacing:0.110400px;}
.ls0{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.211800px;}
.lse{letter-spacing:0.237600px;}
.lsa{letter-spacing:0.328200px;}
.ls5{letter-spacing:0.348000px;}
.lsf{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.514080px;}
.ls16{letter-spacing:0.532800px;}
.ls19{letter-spacing:0.732000px;}
.ls14{letter-spacing:1.080000px;}
.ls1{letter-spacing:202.852800px;}
.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:-48.240000px;}
.wsf{word-spacing:-13.359000px;}
.wsb{word-spacing:-13.257600px;}
.ws9{word-spacing:-13.214400px;}
.wse{word-spacing:-13.160160px;}
.wsd{word-spacing:-13.147200px;}
.ws8{word-spacing:-13.040400px;}
.ws0{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.342200px;}
.ws7{word-spacing:-9.092400px;}
.wsc{word-spacing:-8.553600px;}
.wsa{word-spacing:-8.347800px;}
.ws2{word-spacing:-7.884000px;}
.ws3{word-spacing:-7.632000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-202.672800px;}
._5{margin-left:-8.390160px;}
._12{margin-left:-3.180960px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._16{width:2.151120px;}
._4{width:3.296400px;}
._8{width:4.728480px;}
._13{width:6.035760px;}
._9{width:7.357920px;}
._19{width:8.605440px;}
._c{width:10.159200px;}
._b{width:11.570400px;}
._1d{width:12.885600px;}
._d{width:14.768160px;}
._a{width:16.135200px;}
._1c{width:17.433120px;}
._1a{width:19.242720px;}
._e{width:20.617200px;}
._f{width:21.894480px;}
._1b{width:23.672400px;}
._18{width:25.189440px;}
._17{width:26.473680px;}
._21{width:27.788400px;}
._20{width:28.804320px;}
._15{width:34.182720px;}
._7{width:37.648800px;}
._14{width:45.298080px;}
._1e{width:46.898280px;}
._11{width:65.669520px;}
._10{width:67.007520px;}
._0{width:75.000000px;}
._23{width:90.334560px;}
._24{width:123.454560px;}
._3{width:181.620000px;}
._22{width:183.278160px;}
._25{width:203.207280px;}
._1f{width:1056.007200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:56.340000px;}
.y55{bottom:56.520000px;}
.y6{bottom:70.056000px;}
.y52{bottom:74.880000px;}
.y51{bottom:88.380000px;}
.y50{bottom:98.820000px;}
.y4f{bottom:109.440000px;}
.y40{bottom:116.496000px;}
.y90{bottom:120.636000px;}
.y4e{bottom:127.080000px;}
.y3f{bottom:134.136000px;}
.y8f{bottom:138.276000px;}
.yc1{bottom:144.396000px;}
.y3e{bottom:151.770000px;}
.y8e{bottom:155.730000px;}
.yc0{bottom:161.850000px;}
.y3d{bottom:169.410000px;}
.y8d{bottom:173.370000px;}
.ybf{bottom:179.490000px;}
.y4d{bottom:180.000000px;}
.y3c{bottom:186.870000px;}
.y8c{bottom:191.010000px;}
.y4c{bottom:194.040000px;}
.ybe{bottom:197.130000px;}
.y3b{bottom:204.510000px;}
.y4b{bottom:208.080000px;}
.y8b{bottom:208.470000px;}
.ybd{bottom:214.770000px;}
.y4a{bottom:222.120000px;}
.y3a{bottom:222.150000px;}
.y8a{bottom:226.110000px;}
.ybc{bottom:232.230000px;}
.y49{bottom:234.765000px;}
.y39{bottom:239.610000px;}
.y48{bottom:243.405000px;}
.y89{bottom:243.750000px;}
.ybb{bottom:249.870000px;}
.y38{bottom:257.250000px;}
.y47{bottom:257.445000px;}
.y88{bottom:261.210000px;}
.yba{bottom:267.510000px;}
.y46{bottom:271.485000px;}
.y37{bottom:274.890000px;}
.yeb{bottom:277.410000px;}
.y87{bottom:278.850000px;}
.yb9{bottom:284.970000px;}
.y45{bottom:285.525000px;}
.y36{bottom:292.350000px;}
.yea{bottom:295.050000px;}
.y86{bottom:296.490000px;}
.y44{bottom:299.565000px;}
.yb8{bottom:302.610000px;}
.y35{bottom:309.990000px;}
.y43{bottom:312.165000px;}
.ye9{bottom:312.510000px;}
.y85{bottom:314.130000px;}
.yb7{bottom:320.250000px;}
.y42{bottom:323.325000px;}
.y34{bottom:327.630000px;}
.ye8{bottom:330.150000px;}
.y84{bottom:331.590000px;}
.yb6{bottom:337.755000px;}
.y33{bottom:345.315000px;}
.ye7{bottom:347.835000px;}
.y83{bottom:349.275000px;}
.yb5{bottom:355.395000px;}
.y32{bottom:362.775000px;}
.ye6{bottom:365.295000px;}
.y82{bottom:366.915000px;}
.yb4{bottom:373.035000px;}
.y31{bottom:380.415000px;}
.ye5{bottom:382.935000px;}
.y81{bottom:384.375000px;}
.yb3{bottom:390.675000px;}
.y30{bottom:398.055000px;}
.ye4{bottom:400.575000px;}
.y80{bottom:402.015000px;}
.yb2{bottom:408.135000px;}
.y2f{bottom:415.515000px;}
.ye3{bottom:418.215000px;}
.y7f{bottom:419.655000px;}
.yb1{bottom:425.775000px;}
.y2e{bottom:433.155000px;}
.ye2{bottom:435.675000px;}
.y7e{bottom:437.115000px;}
.yb0{bottom:443.415000px;}
.y2d{bottom:450.795000px;}
.ye1{bottom:453.315000px;}
.y7d{bottom:454.755000px;}
.yaf{bottom:460.875000px;}
.y2c{bottom:468.255000px;}
.ye0{bottom:470.955000px;}
.y7c{bottom:472.395000px;}
.yae{bottom:478.515000px;}
.y2b{bottom:485.895000px;}
.ydf{bottom:488.415000px;}
.y7b{bottom:490.035000px;}
.yad{bottom:496.155000px;}
.y2a{bottom:503.535000px;}
.yde{bottom:506.055000px;}
.y7a{bottom:507.495000px;}
.yac{bottom:513.615000px;}
.y29{bottom:520.995000px;}
.ydd{bottom:523.695000px;}
.y79{bottom:525.135000px;}
.yab{bottom:531.255000px;}
.y28{bottom:538.635000px;}
.ydc{bottom:541.155000px;}
.y78{bottom:542.775000px;}
.yaa{bottom:548.895000px;}
.y27{bottom:556.275000px;}
.ydb{bottom:558.795000px;}
.y77{bottom:560.235000px;}
.ya9{bottom:566.535000px;}
.y26{bottom:573.915000px;}
.yda{bottom:576.435000px;}
.y76{bottom:577.875000px;}
.ya8{bottom:583.995000px;}
.y25{bottom:591.375000px;}
.yd9{bottom:594.075000px;}
.y75{bottom:595.515000px;}
.ya7{bottom:601.635000px;}
.y24{bottom:611.205000px;}
.yd8{bottom:611.565000px;}
.y74{bottom:613.005000px;}
.ya6{bottom:619.305000px;}
.y23{bottom:628.845000px;}
.yd7{bottom:629.205000px;}
.y73{bottom:630.645000px;}
.ya5{bottom:636.765000px;}
.y41{bottom:638.565000px;}
.y22{bottom:646.485000px;}
.yd6{bottom:646.845000px;}
.y72{bottom:648.285000px;}
.ya4{bottom:654.405000px;}
.y21{bottom:664.125000px;}
.yd5{bottom:664.305000px;}
.y71{bottom:665.745000px;}
.ya3{bottom:672.045000px;}
.y20{bottom:681.585000px;}
.yd4{bottom:681.945000px;}
.y70{bottom:683.385000px;}
.ya2{bottom:689.505000px;}
.y1f{bottom:699.225000px;}
.yd3{bottom:699.585000px;}
.y6f{bottom:701.025000px;}
.ya1{bottom:707.145000px;}
.y1e{bottom:716.865000px;}
.yd2{bottom:717.045000px;}
.y6e{bottom:718.665000px;}
.ya0{bottom:724.785000px;}
.y1d{bottom:734.325000px;}
.yd1{bottom:734.685000px;}
.y6d{bottom:736.125000px;}
.y9f{bottom:742.245000px;}
.y1c{bottom:751.965000px;}
.yd0{bottom:752.325000px;}
.y6c{bottom:753.765000px;}
.y9e{bottom:759.885000px;}
.y1b{bottom:769.605000px;}
.ycf{bottom:769.965000px;}
.y6b{bottom:771.405000px;}
.y9d{bottom:777.525000px;}
.y1a{bottom:787.065000px;}
.yce{bottom:787.425000px;}
.y6a{bottom:788.865000px;}
.y9c{bottom:795.165000px;}
.y19{bottom:804.705000px;}
.ycd{bottom:805.065000px;}
.y69{bottom:806.505000px;}
.y9b{bottom:809.205000px;}
.y18{bottom:822.345000px;}
.ycc{bottom:822.705000px;}
.y68{bottom:824.145000px;}
.y17{bottom:839.985000px;}
.ycb{bottom:840.165000px;}
.y67{bottom:841.605000px;}
.y16{bottom:857.445000px;}
.yca{bottom:857.805000px;}
.y66{bottom:859.245000px;}
.y15{bottom:875.130000px;}
.yc9{bottom:875.490000px;}
.y65{bottom:876.930000px;}
.y14{bottom:892.770000px;}
.yc8{bottom:892.950000px;}
.y64{bottom:894.570000px;}
.y13{bottom:910.230000px;}
.yc7{bottom:910.590000px;}
.y63{bottom:912.030000px;}
.y12{bottom:927.870000px;}
.yc6{bottom:928.230000px;}
.y62{bottom:929.670000px;}
.y11{bottom:945.510000px;}
.yc5{bottom:945.690000px;}
.y61{bottom:947.310000px;}
.y10{bottom:962.970000px;}
.yc4{bottom:963.330000px;}
.y60{bottom:964.770000px;}
.yf{bottom:980.610000px;}
.yc3{bottom:980.970000px;}
.y5f{bottom:982.410000px;}
.ye{bottom:998.250000px;}
.yc2{bottom:998.610000px;}
.y5e{bottom:1000.050000px;}
.yd{bottom:1015.890000px;}
.y9a{bottom:1016.070000px;}
.y5d{bottom:1017.510000px;}
.yc{bottom:1033.350000px;}
.y99{bottom:1033.710000px;}
.y5c{bottom:1035.150000px;}
.yb{bottom:1050.990000px;}
.y98{bottom:1051.350000px;}
.y5b{bottom:1052.790000px;}
.y97{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y5a{bottom:1070.430000px;}
.y96{bottom:1086.450000px;}
.y59{bottom:1087.890000px;}
.y9{bottom:1092.390000px;}
.y95{bottom:1104.090000px;}
.y58{bottom:1105.530000px;}
.y8{bottom:1114.350000px;}
.y94{bottom:1121.550000px;}
.y57{bottom:1123.170000px;}
.y5{bottom:1135.050000px;}
.y93{bottom:1139.220000px;}
.y56{bottom:1140.660000px;}
.y4{bottom:1150.740000px;}
.y92{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y54{bottom:1175.220000px;}
.y91{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y53{bottom:1197.540000px;}
.ha{height:20.024297px;}
.hc{height:20.117109px;}
.he{height:30.480469px;}
.h4{height:33.683203px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.hb{height:40.843828px;}
.h9{height:45.720703px;}
.hf{height:50.273438px;}
.h7{height:50.364141px;}
.h5{height:50.597578px;}
.h10{height:58.819922px;}
.hd{height:60.960938px;}
.h6{height:65.837812px;}
.h8{height:336.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:221.970000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x2{left:109.475987px;}
.x3{left:129.095987px;}
.xa{left:134.994000px;}
.xe{left:150.509987px;}
.x9{left:162.029987px;}
.x6{left:210.269987px;}
.x5{left:250.409987px;}
.x4{left:263.909987px;}
.xf{left:267.509987px;}
.x8{left:344.414987px;}
.xd{left:348.014987px;}
.x7{left:446.474987px;}
.xb{left:524.444987px;}
.xc{left:696.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.842667pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240533pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.201067pt;}
.ls18{letter-spacing:-0.182933pt;}
.ls12{letter-spacing:-0.170667pt;}
.ls4{letter-spacing:-0.163733pt;}
.ls13{letter-spacing:-0.115200pt;}
.lsc{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.011520pt;}
.ls10{letter-spacing:0.059733pt;}
.lsd{letter-spacing:0.061227pt;}
.ls11{letter-spacing:0.098133pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.188267pt;}
.lse{letter-spacing:0.211200pt;}
.lsa{letter-spacing:0.291733pt;}
.ls5{letter-spacing:0.309333pt;}
.lsf{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.456960pt;}
.ls16{letter-spacing:0.473600pt;}
.ls19{letter-spacing:0.650667pt;}
.ls14{letter-spacing:0.960000pt;}
.ls1{letter-spacing:180.313600pt;}
.ws1{word-spacing:-42.880000pt;}
.wsf{word-spacing:-11.874667pt;}
.wsb{word-spacing:-11.784533pt;}
.ws9{word-spacing:-11.746133pt;}
.wse{word-spacing:-11.697920pt;}
.wsd{word-spacing:-11.686400pt;}
.ws8{word-spacing:-11.591467pt;}
.ws0{word-spacing:-10.720000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.193067pt;}
.ws7{word-spacing:-8.082133pt;}
.wsc{word-spacing:-7.603200pt;}
.wsa{word-spacing:-7.420267pt;}
.ws2{word-spacing:-7.008000pt;}
.ws3{word-spacing:-6.784000pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-180.153600pt;}
._5{margin-left:-7.457920pt;}
._12{margin-left:-2.827520pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._16{width:1.912107pt;}
._4{width:2.930133pt;}
._8{width:4.203093pt;}
._13{width:5.365120pt;}
._9{width:6.540373pt;}
._19{width:7.649280pt;}
._c{width:9.030400pt;}
._b{width:10.284800pt;}
._1d{width:11.453867pt;}
._d{width:13.127253pt;}
._a{width:14.342400pt;}
._1c{width:15.496107pt;}
._1a{width:17.104640pt;}
._e{width:18.326400pt;}
._f{width:19.461760pt;}
._1b{width:21.042133pt;}
._18{width:22.390613pt;}
._17{width:23.532160pt;}
._21{width:24.700800pt;}
._20{width:25.603840pt;}
._15{width:30.384640pt;}
._7{width:33.465600pt;}
._14{width:40.264960pt;}
._1e{width:41.687360pt;}
._11{width:58.372907pt;}
._10{width:59.562240pt;}
._0{width:66.666667pt;}
._23{width:80.297387pt;}
._24{width:109.737387pt;}
._3{width:161.440000pt;}
._22{width:162.913920pt;}
._25{width:180.628693pt;}
._1f{width:938.673067pt;}
.fs5{font-size:21.120000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:50.080000pt;}
.y55{bottom:50.240000pt;}
.y6{bottom:62.272000pt;}
.y52{bottom:66.560000pt;}
.y51{bottom:78.560000pt;}
.y50{bottom:87.840000pt;}
.y4f{bottom:97.280000pt;}
.y40{bottom:103.552000pt;}
.y90{bottom:107.232000pt;}
.y4e{bottom:112.960000pt;}
.y3f{bottom:119.232000pt;}
.y8f{bottom:122.912000pt;}
.yc1{bottom:128.352000pt;}
.y3e{bottom:134.906667pt;}
.y8e{bottom:138.426667pt;}
.yc0{bottom:143.866667pt;}
.y3d{bottom:150.586667pt;}
.y8d{bottom:154.106667pt;}
.ybf{bottom:159.546667pt;}
.y4d{bottom:160.000000pt;}
.y3c{bottom:166.106667pt;}
.y8c{bottom:169.786667pt;}
.y4c{bottom:172.480000pt;}
.ybe{bottom:175.226667pt;}
.y3b{bottom:181.786667pt;}
.y4b{bottom:184.960000pt;}
.y8b{bottom:185.306667pt;}
.ybd{bottom:190.906667pt;}
.y4a{bottom:197.440000pt;}
.y3a{bottom:197.466667pt;}
.y8a{bottom:200.986667pt;}
.ybc{bottom:206.426667pt;}
.y49{bottom:208.680000pt;}
.y39{bottom:212.986667pt;}
.y48{bottom:216.360000pt;}
.y89{bottom:216.666667pt;}
.ybb{bottom:222.106667pt;}
.y38{bottom:228.666667pt;}
.y47{bottom:228.840000pt;}
.y88{bottom:232.186667pt;}
.yba{bottom:237.786667pt;}
.y46{bottom:241.320000pt;}
.y37{bottom:244.346667pt;}
.yeb{bottom:246.586667pt;}
.y87{bottom:247.866667pt;}
.yb9{bottom:253.306667pt;}
.y45{bottom:253.800000pt;}
.y36{bottom:259.866667pt;}
.yea{bottom:262.266667pt;}
.y86{bottom:263.546667pt;}
.y44{bottom:266.280000pt;}
.yb8{bottom:268.986667pt;}
.y35{bottom:275.546667pt;}
.y43{bottom:277.480000pt;}
.ye9{bottom:277.786667pt;}
.y85{bottom:279.226667pt;}
.yb7{bottom:284.666667pt;}
.y42{bottom:287.400000pt;}
.y34{bottom:291.226667pt;}
.ye8{bottom:293.466667pt;}
.y84{bottom:294.746667pt;}
.yb6{bottom:300.226667pt;}
.y33{bottom:306.946667pt;}
.ye7{bottom:309.186667pt;}
.y83{bottom:310.466667pt;}
.yb5{bottom:315.906667pt;}
.y32{bottom:322.466667pt;}
.ye6{bottom:324.706667pt;}
.y82{bottom:326.146667pt;}
.yb4{bottom:331.586667pt;}
.y31{bottom:338.146667pt;}
.ye5{bottom:340.386667pt;}
.y81{bottom:341.666667pt;}
.yb3{bottom:347.266667pt;}
.y30{bottom:353.826667pt;}
.ye4{bottom:356.066667pt;}
.y80{bottom:357.346667pt;}
.yb2{bottom:362.786667pt;}
.y2f{bottom:369.346667pt;}
.ye3{bottom:371.746667pt;}
.y7f{bottom:373.026667pt;}
.yb1{bottom:378.466667pt;}
.y2e{bottom:385.026667pt;}
.ye2{bottom:387.266667pt;}
.y7e{bottom:388.546667pt;}
.yb0{bottom:394.146667pt;}
.y2d{bottom:400.706667pt;}
.ye1{bottom:402.946667pt;}
.y7d{bottom:404.226667pt;}
.yaf{bottom:409.666667pt;}
.y2c{bottom:416.226667pt;}
.ye0{bottom:418.626667pt;}
.y7c{bottom:419.906667pt;}
.yae{bottom:425.346667pt;}
.y2b{bottom:431.906667pt;}
.ydf{bottom:434.146667pt;}
.y7b{bottom:435.586667pt;}
.yad{bottom:441.026667pt;}
.y2a{bottom:447.586667pt;}
.yde{bottom:449.826667pt;}
.y7a{bottom:451.106667pt;}
.yac{bottom:456.546667pt;}
.y29{bottom:463.106667pt;}
.ydd{bottom:465.506667pt;}
.y79{bottom:466.786667pt;}
.yab{bottom:472.226667pt;}
.y28{bottom:478.786667pt;}
.ydc{bottom:481.026667pt;}
.y78{bottom:482.466667pt;}
.yaa{bottom:487.906667pt;}
.y27{bottom:494.466667pt;}
.ydb{bottom:496.706667pt;}
.y77{bottom:497.986667pt;}
.ya9{bottom:503.586667pt;}
.y26{bottom:510.146667pt;}
.yda{bottom:512.386667pt;}
.y76{bottom:513.666667pt;}
.ya8{bottom:519.106667pt;}
.y25{bottom:525.666667pt;}
.yd9{bottom:528.066667pt;}
.y75{bottom:529.346667pt;}
.ya7{bottom:534.786667pt;}
.y24{bottom:543.293333pt;}
.yd8{bottom:543.613333pt;}
.y74{bottom:544.893333pt;}
.ya6{bottom:550.493333pt;}
.y23{bottom:558.973333pt;}
.yd7{bottom:559.293333pt;}
.y73{bottom:560.573333pt;}
.ya5{bottom:566.013333pt;}
.y41{bottom:567.613333pt;}
.y22{bottom:574.653333pt;}
.yd6{bottom:574.973333pt;}
.y72{bottom:576.253333pt;}
.ya4{bottom:581.693333pt;}
.y21{bottom:590.333333pt;}
.yd5{bottom:590.493333pt;}
.y71{bottom:591.773333pt;}
.ya3{bottom:597.373333pt;}
.y20{bottom:605.853333pt;}
.yd4{bottom:606.173333pt;}
.y70{bottom:607.453333pt;}
.ya2{bottom:612.893333pt;}
.y1f{bottom:621.533333pt;}
.yd3{bottom:621.853333pt;}
.y6f{bottom:623.133333pt;}
.ya1{bottom:628.573333pt;}
.y1e{bottom:637.213333pt;}
.yd2{bottom:637.373333pt;}
.y6e{bottom:638.813333pt;}
.ya0{bottom:644.253333pt;}
.y1d{bottom:652.733333pt;}
.yd1{bottom:653.053333pt;}
.y6d{bottom:654.333333pt;}
.y9f{bottom:659.773333pt;}
.y1c{bottom:668.413333pt;}
.yd0{bottom:668.733333pt;}
.y6c{bottom:670.013333pt;}
.y9e{bottom:675.453333pt;}
.y1b{bottom:684.093333pt;}
.ycf{bottom:684.413333pt;}
.y6b{bottom:685.693333pt;}
.y9d{bottom:691.133333pt;}
.y1a{bottom:699.613333pt;}
.yce{bottom:699.933333pt;}
.y6a{bottom:701.213333pt;}
.y9c{bottom:706.813333pt;}
.y19{bottom:715.293333pt;}
.ycd{bottom:715.613333pt;}
.y69{bottom:716.893333pt;}
.y9b{bottom:719.293333pt;}
.y18{bottom:730.973333pt;}
.ycc{bottom:731.293333pt;}
.y68{bottom:732.573333pt;}
.y17{bottom:746.653333pt;}
.ycb{bottom:746.813333pt;}
.y67{bottom:748.093333pt;}
.y16{bottom:762.173333pt;}
.yca{bottom:762.493333pt;}
.y66{bottom:763.773333pt;}
.y15{bottom:777.893333pt;}
.yc9{bottom:778.213333pt;}
.y65{bottom:779.493333pt;}
.y14{bottom:793.573333pt;}
.yc8{bottom:793.733333pt;}
.y64{bottom:795.173333pt;}
.y13{bottom:809.093333pt;}
.yc7{bottom:809.413333pt;}
.y63{bottom:810.693333pt;}
.y12{bottom:824.773333pt;}
.yc6{bottom:825.093333pt;}
.y62{bottom:826.373333pt;}
.y11{bottom:840.453333pt;}
.yc5{bottom:840.613333pt;}
.y61{bottom:842.053333pt;}
.y10{bottom:855.973333pt;}
.yc4{bottom:856.293333pt;}
.y60{bottom:857.573333pt;}
.yf{bottom:871.653333pt;}
.yc3{bottom:871.973333pt;}
.y5f{bottom:873.253333pt;}
.ye{bottom:887.333333pt;}
.yc2{bottom:887.653333pt;}
.y5e{bottom:888.933333pt;}
.yd{bottom:903.013333pt;}
.y9a{bottom:903.173333pt;}
.y5d{bottom:904.453333pt;}
.yc{bottom:918.533333pt;}
.y99{bottom:918.853333pt;}
.y5c{bottom:920.133333pt;}
.yb{bottom:934.213333pt;}
.y98{bottom:934.533333pt;}
.y5b{bottom:935.813333pt;}
.y97{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y5a{bottom:951.493333pt;}
.y96{bottom:965.733333pt;}
.y59{bottom:967.013333pt;}
.y9{bottom:971.013333pt;}
.y95{bottom:981.413333pt;}
.y58{bottom:982.693333pt;}
.y8{bottom:990.533333pt;}
.y94{bottom:996.933333pt;}
.y57{bottom:998.373333pt;}
.y5{bottom:1008.933333pt;}
.y93{bottom:1012.640000pt;}
.y56{bottom:1013.920000pt;}
.y4{bottom:1022.880000pt;}
.y92{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y54{bottom:1044.640000pt;}
.y91{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y53{bottom:1064.480000pt;}
.ha{height:17.799375pt;}
.hc{height:17.881875pt;}
.he{height:27.093750pt;}
.h4{height:29.940625pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.hb{height:36.305625pt;}
.h9{height:40.640625pt;}
.hf{height:44.687500pt;}
.h7{height:44.768125pt;}
.h5{height:44.975625pt;}
.h10{height:52.284375pt;}
.hd{height:54.187500pt;}
.h6{height:58.522500pt;}
.h8{height:298.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:97.311988pt;}
.x3{left:114.751988pt;}
.xa{left:119.994667pt;}
.xe{left:133.786655pt;}
.x9{left:144.026655pt;}
.x6{left:186.906655pt;}
.x5{left:222.586655pt;}
.x4{left:234.586655pt;}
.xf{left:237.786655pt;}
.x8{left:306.146655pt;}
.xd{left:309.346655pt;}
.x7{left:396.866655pt;}
.xb{left:466.173322pt;}
.xc{left:619.013322pt;}
}




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