
    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_fc75a8efe80902f5eead9d0f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_97b88d693726fe023bbb876b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_8d3991f3c6bc896c21403883.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_3826887346eeb013000e57e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_47aaf876e469fedc8ed45eef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_ac5269f0c8599507497beecd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f5b728c513a2da6d0b5ea2d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_9540d0a458cb85a69ab5cd07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_b44049d1d7bf3705286ce852.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-86.400000px;}
.v1{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.020000px;}
.ls11{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.496200px;}
.ls13{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.041040px;}
.ls10{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.269280px;}
.ls7{letter-spacing:0.269400px;}
.lsf{letter-spacing:0.360000px;}
.lsd{letter-spacing:196.272000px;}
.lsc{letter-spacing:847.848000px;}
.ls4{letter-spacing:849.149760px;}
.ls1{letter-spacing:1553.286720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.488000px;}
.ws6{word-spacing:-16.344000px;}
.ws7{word-spacing:-16.272000px;}
.ws8{word-spacing:-16.128000px;}
.ws9{word-spacing:-15.912000px;}
.ws1{word-spacing:-13.680120px;}
.ws2{word-spacing:-13.229520px;}
.ws0{word-spacing:-12.914520px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-4.321440px;}
._11{margin-left:-2.951280px;}
._0{margin-left:-1.440720px;}
._1{width:1.194960px;}
._9{width:2.754480px;}
._b{width:4.464000px;}
._3{width:5.976000px;}
._4{width:7.141440px;}
._10{width:8.568000px;}
._18{width:9.864000px;}
._12{width:11.448000px;}
._d{width:12.888720px;}
._c{width:14.112000px;}
._1a{width:15.264720px;}
._13{width:17.554800px;}
._e{width:19.152000px;}
._f{width:20.232000px;}
._15{width:21.456000px;}
._14{width:22.536000px;}
._7{width:23.616720px;}
._6{width:25.200000px;}
._8{width:26.424000px;}
._5{width:27.797040px;}
._1c{width:29.192880px;}
._16{width:36.000000px;}
._1b{width:44.136000px;}
._2{width:148.433040px;}
._1d{width:169.284000px;}
._17{width:196.272000px;}
._a{width:385.788000px;}
.fc3{color:transparent;}
.fc5{color:rgb(27,28,29);}
.fc4{color:rgb(46,116,181);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs9{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:4.860000px;}
.y2e{bottom:8.640000px;}
.yf{bottom:57.600000px;}
.y2{bottom:73.290000px;}
.ye{bottom:77.616000px;}
.yd{bottom:95.796000px;}
.yc{bottom:109.656000px;}
.yb{bottom:123.516000px;}
.y2c{bottom:138.636000px;}
.ya5{bottom:147.456000px;}
.ya6{bottom:151.050000px;}
.y2b{bottom:156.990000px;}
.yb7{bottom:160.590000px;}
.y2a{bottom:162.210000px;}
.ya4{bottom:169.410000px;}
.y6c{bottom:169.590000px;}
.y95{bottom:173.010000px;}
.yb8{bottom:174.450000px;}
.yb6{bottom:182.550000px;}
.y29{bottom:189.390000px;}
.ya3{bottom:191.370000px;}
.y6b{bottom:191.550000px;}
.y94{bottom:194.970000px;}
.yb5{bottom:204.690000px;}
.ya2{bottom:213.330000px;}
.y6a{bottom:213.690000px;}
.y93{bottom:216.930000px;}
.yb4{bottom:226.650000px;}
.ya1{bottom:235.290000px;}
.y69{bottom:235.650000px;}
.y92{bottom:238.890000px;}
.yb3{bottom:248.610000px;}
.ya0{bottom:257.250000px;}
.y68{bottom:257.610000px;}
.y91{bottom:260.850000px;}
.yb2{bottom:270.570000px;}
.y9f{bottom:279.210000px;}
.y67{bottom:280.290000px;}
.y90{bottom:282.810000px;}
.yb1{bottom:292.530000px;}
.y9e{bottom:301.170000px;}
.ya8{bottom:301.890000px;}
.y8f{bottom:304.770000px;}
.y66{bottom:305.130000px;}
.yb0{bottom:314.490000px;}
.y9d{bottom:323.130000px;}
.y8e{bottom:326.730000px;}
.y65{bottom:327.090000px;}
.yaf{bottom:336.495000px;}
.y9c{bottom:345.135000px;}
.y8d{bottom:348.915000px;}
.y64{bottom:349.095000px;}
.yae{bottom:358.455000px;}
.y9b{bottom:367.095000px;}
.ya7{bottom:367.995000px;}
.y8c{bottom:370.875000px;}
.y63{bottom:371.055000px;}
.yad{bottom:380.415000px;}
.y9a{bottom:389.055000px;}
.y8b{bottom:392.835000px;}
.y62{bottom:393.015000px;}
.yac{bottom:402.375000px;}
.y99{bottom:411.015000px;}
.y8a{bottom:414.795000px;}
.y61{bottom:414.975000px;}
.yab{bottom:425.235000px;}
.y98{bottom:432.975000px;}
.y45{bottom:434.595000px;}
.y89{bottom:436.755000px;}
.y60{bottom:437.115000px;}
.y28{bottom:445.395000px;}
.y97{bottom:455.115000px;}
.y88{bottom:458.715000px;}
.y5f{bottom:459.075000px;}
.yaa{bottom:459.795000px;}
.y44{bottom:465.555000px;}
.y27{bottom:475.095000px;}
.y96{bottom:477.795000px;}
.y87{bottom:480.675000px;}
.y5e{bottom:481.035000px;}
.ya9{bottom:493.635000px;}
.y43{bottom:496.515000px;}
.y86{bottom:502.635000px;}
.y5d{bottom:502.995000px;}
.y42{bottom:518.475000px;}
.y85{bottom:524.595000px;}
.y5c{bottom:524.955000px;}
.y26{bottom:526.395000px;}
.y41{bottom:540.435000px;}
.y84{bottom:546.555000px;}
.y5b{bottom:546.915000px;}
.y25{bottom:548.355000px;}
.y40{bottom:562.395000px;}
.y83{bottom:568.515000px;}
.y5a{bottom:568.875000px;}
.y24{bottom:570.315000px;}
.y1{bottom:583.815000px;}
.y3f{bottom:584.535000px;}
.y82{bottom:590.475000px;}
.y59{bottom:590.835000px;}
.y23{bottom:592.275000px;}
.y3e{bottom:606.525000px;}
.y81{bottom:612.465000px;}
.y58{bottom:612.825000px;}
.y22{bottom:614.265000px;}
.y3d{bottom:628.485000px;}
.y80{bottom:634.425000px;}
.y57{bottom:634.785000px;}
.y21{bottom:636.225000px;}
.y3c{bottom:650.445000px;}
.y2d{bottom:654.405000px;}
.y7f{bottom:656.565000px;}
.y56{bottom:656.745000px;}
.y20{bottom:658.185000px;}
.y7e{bottom:678.525000px;}
.y55{bottom:678.705000px;}
.y1f{bottom:680.145000px;}
.y3b{bottom:681.405000px;}
.y7d{bottom:700.485000px;}
.y54{bottom:700.665000px;}
.y1e{bottom:702.105000px;}
.y3a{bottom:712.365000px;}
.y7c{bottom:722.445000px;}
.y53{bottom:722.625000px;}
.y1d{bottom:724.065000px;}
.y39{bottom:743.325000px;}
.y7b{bottom:744.405000px;}
.y52{bottom:744.765000px;}
.y1c{bottom:755.025000px;}
.y7a{bottom:766.365000px;}
.y51{bottom:766.725000px;}
.y38{bottom:774.285000px;}
.y1b{bottom:786.165000px;}
.y79{bottom:788.325000px;}
.y50{bottom:788.685000px;}
.y37{bottom:796.245000px;}
.y78{bottom:810.285000px;}
.y4f{bottom:810.645000px;}
.y1a{bottom:816.225000px;}
.y36{bottom:818.205000px;}
.y77{bottom:832.245000px;}
.y4e{bottom:832.605000px;}
.y19{bottom:836.565000px;}
.y35{bottom:840.165000px;}
.y18{bottom:853.305000px;}
.y76{bottom:854.205000px;}
.y4d{bottom:854.565000px;}
.y34{bottom:862.125000px;}
.y17{bottom:872.610000px;}
.y75{bottom:876.210000px;}
.y4c{bottom:876.570000px;}
.y33{bottom:884.130000px;}
.y16{bottom:895.290000px;}
.y74{bottom:898.170000px;}
.y4b{bottom:898.530000px;}
.y32{bottom:906.090000px;}
.y6d{bottom:915.630000px;}
.y73{bottom:920.130000px;}
.y4a{bottom:920.490000px;}
.y15{bottom:921.030000px;}
.y31{bottom:937.230000px;}
.y72{bottom:942.090000px;}
.y49{bottom:942.450000px;}
.y14{bottom:946.590000px;}
.y71{bottom:964.230000px;}
.y48{bottom:964.410000px;}
.y30{bottom:968.190000px;}
.y12{bottom:973.050000px;}
.y13{bottom:980.610000px;}
.y70{bottom:986.190000px;}
.y47{bottom:995.370000px;}
.y2f{bottom:999.150000px;}
.y11{bottom:1002.390000px;}
.y6f{bottom:1008.150000px;}
.y46{bottom:1027.230000px;}
.y10{bottom:1030.110000px;}
.ya{bottom:1050.450000px;}
.y9{bottom:1067.010000px;}
.y8{bottom:1080.690000px;}
.y7{bottom:1094.550000px;}
.y6{bottom:1126.230000px;}
.y5{bottom:1143.540000px;}
.y4{bottom:1160.820000px;}
.y3{bottom:1174.860000px;}
.h14{height:24.300000px;}
.h11{height:35.806641px;}
.h12{height:38.671172px;}
.h9{height:41.238281px;}
.h6{height:50.312812px;}
.hd{height:55.291992px;}
.h13{height:59.439023px;}
.hc{height:61.189805px;}
.h5{height:62.327813px;}
.ha{height:64.331719px;}
.h16{height:65.880000px;}
.h4{height:65.884219px;}
.hf{height:68.554688px;}
.hb{height:71.613281px;}
.h3{height:71.820000px;}
.h7{height:73.722656px;}
.he{height:74.004654px;}
.h10{height:74.953125px;}
.h15{height:86.255508px;}
.h2{height:95.076000px;}
.h8{height:98.051133px;}
.h17{height:358.066406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:35.100000px;}
.w6{width:43.956000px;}
.w2{width:71.850000px;}
.w4{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:10.800000px;}
.x2{left:31.350000px;}
.x4{left:53.999987px;}
.xf{left:58.859987px;}
.x8{left:66.239987px;}
.xc{left:95.975987px;}
.x12{left:97.955987px;}
.x3{left:153.029987px;}
.x5{left:209.909987px;}
.xe{left:270.029987px;}
.xd{left:346.034987px;}
.x9{left:349.814987px;}
.x7{left:369.794987px;}
.x6{left:446.474987px;}
.xa{left:536.504973px;}
.xb{left:543.344987px;}
.x1{left:821.130000px;}
.x10{left:848.880000px;}
@media print{
.v2{vertical-align:-76.800000pt;}
.v1{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.906667pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.441067pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.036480pt;}
.ls10{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.239360pt;}
.ls7{letter-spacing:0.239467pt;}
.lsf{letter-spacing:0.320000pt;}
.lsd{letter-spacing:174.464000pt;}
.lsc{letter-spacing:753.642667pt;}
.ls4{letter-spacing:754.799787pt;}
.ls1{letter-spacing:1380.699307pt;}
.ws5{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws6{word-spacing:-14.528000pt;}
.ws7{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.336000pt;}
.ws9{word-spacing:-14.144000pt;}
.ws1{word-spacing:-12.160107pt;}
.ws2{word-spacing:-11.759573pt;}
.ws0{word-spacing:-11.479573pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-3.841280pt;}
._11{margin-left:-2.623360pt;}
._0{margin-left:-1.280640pt;}
._1{width:1.062187pt;}
._9{width:2.448427pt;}
._b{width:3.968000pt;}
._3{width:5.312000pt;}
._4{width:6.347947pt;}
._10{width:7.616000pt;}
._18{width:8.768000pt;}
._12{width:10.176000pt;}
._d{width:11.456640pt;}
._c{width:12.544000pt;}
._1a{width:13.568640pt;}
._13{width:15.604267pt;}
._e{width:17.024000pt;}
._f{width:17.984000pt;}
._15{width:19.072000pt;}
._14{width:20.032000pt;}
._7{width:20.992640pt;}
._6{width:22.400000pt;}
._8{width:23.488000pt;}
._5{width:24.708480pt;}
._1c{width:25.949227pt;}
._16{width:32.000000pt;}
._1b{width:39.232000pt;}
._2{width:131.940480pt;}
._1d{width:150.474667pt;}
._17{width:174.464000pt;}
._a{width:342.922667pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs9{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:4.320000pt;}
.y2e{bottom:7.680000pt;}
.yf{bottom:51.200000pt;}
.y2{bottom:65.146667pt;}
.ye{bottom:68.992000pt;}
.yd{bottom:85.152000pt;}
.yc{bottom:97.472000pt;}
.yb{bottom:109.792000pt;}
.y2c{bottom:123.232000pt;}
.ya5{bottom:131.072000pt;}
.ya6{bottom:134.266667pt;}
.y2b{bottom:139.546667pt;}
.yb7{bottom:142.746667pt;}
.y2a{bottom:144.186667pt;}
.ya4{bottom:150.586667pt;}
.y6c{bottom:150.746667pt;}
.y95{bottom:153.786667pt;}
.yb8{bottom:155.066667pt;}
.yb6{bottom:162.266667pt;}
.y29{bottom:168.346667pt;}
.ya3{bottom:170.106667pt;}
.y6b{bottom:170.266667pt;}
.y94{bottom:173.306667pt;}
.yb5{bottom:181.946667pt;}
.ya2{bottom:189.626667pt;}
.y6a{bottom:189.946667pt;}
.y93{bottom:192.826667pt;}
.yb4{bottom:201.466667pt;}
.ya1{bottom:209.146667pt;}
.y69{bottom:209.466667pt;}
.y92{bottom:212.346667pt;}
.yb3{bottom:220.986667pt;}
.ya0{bottom:228.666667pt;}
.y68{bottom:228.986667pt;}
.y91{bottom:231.866667pt;}
.yb2{bottom:240.506667pt;}
.y9f{bottom:248.186667pt;}
.y67{bottom:249.146667pt;}
.y90{bottom:251.386667pt;}
.yb1{bottom:260.026667pt;}
.y9e{bottom:267.706667pt;}
.ya8{bottom:268.346667pt;}
.y8f{bottom:270.906667pt;}
.y66{bottom:271.226667pt;}
.yb0{bottom:279.546667pt;}
.y9d{bottom:287.226667pt;}
.y8e{bottom:290.426667pt;}
.y65{bottom:290.746667pt;}
.yaf{bottom:299.106667pt;}
.y9c{bottom:306.786667pt;}
.y8d{bottom:310.146667pt;}
.y64{bottom:310.306667pt;}
.yae{bottom:318.626667pt;}
.y9b{bottom:326.306667pt;}
.ya7{bottom:327.106667pt;}
.y8c{bottom:329.666667pt;}
.y63{bottom:329.826667pt;}
.yad{bottom:338.146667pt;}
.y9a{bottom:345.826667pt;}
.y8b{bottom:349.186667pt;}
.y62{bottom:349.346667pt;}
.yac{bottom:357.666667pt;}
.y99{bottom:365.346667pt;}
.y8a{bottom:368.706667pt;}
.y61{bottom:368.866667pt;}
.yab{bottom:377.986667pt;}
.y98{bottom:384.866667pt;}
.y45{bottom:386.306667pt;}
.y89{bottom:388.226667pt;}
.y60{bottom:388.546667pt;}
.y28{bottom:395.906667pt;}
.y97{bottom:404.546667pt;}
.y88{bottom:407.746667pt;}
.y5f{bottom:408.066667pt;}
.yaa{bottom:408.706667pt;}
.y44{bottom:413.826667pt;}
.y27{bottom:422.306667pt;}
.y96{bottom:424.706667pt;}
.y87{bottom:427.266667pt;}
.y5e{bottom:427.586667pt;}
.ya9{bottom:438.786667pt;}
.y43{bottom:441.346667pt;}
.y86{bottom:446.786667pt;}
.y5d{bottom:447.106667pt;}
.y42{bottom:460.866667pt;}
.y85{bottom:466.306667pt;}
.y5c{bottom:466.626667pt;}
.y26{bottom:467.906667pt;}
.y41{bottom:480.386667pt;}
.y84{bottom:485.826667pt;}
.y5b{bottom:486.146667pt;}
.y25{bottom:487.426667pt;}
.y40{bottom:499.906667pt;}
.y83{bottom:505.346667pt;}
.y5a{bottom:505.666667pt;}
.y24{bottom:506.946667pt;}
.y1{bottom:518.946667pt;}
.y3f{bottom:519.586667pt;}
.y82{bottom:524.866667pt;}
.y59{bottom:525.186667pt;}
.y23{bottom:526.466667pt;}
.y3e{bottom:539.133333pt;}
.y81{bottom:544.413333pt;}
.y58{bottom:544.733333pt;}
.y22{bottom:546.013333pt;}
.y3d{bottom:558.653333pt;}
.y80{bottom:563.933333pt;}
.y57{bottom:564.253333pt;}
.y21{bottom:565.533333pt;}
.y3c{bottom:578.173333pt;}
.y2d{bottom:581.693333pt;}
.y7f{bottom:583.613333pt;}
.y56{bottom:583.773333pt;}
.y20{bottom:585.053333pt;}
.y7e{bottom:603.133333pt;}
.y55{bottom:603.293333pt;}
.y1f{bottom:604.573333pt;}
.y3b{bottom:605.693333pt;}
.y7d{bottom:622.653333pt;}
.y54{bottom:622.813333pt;}
.y1e{bottom:624.093333pt;}
.y3a{bottom:633.213333pt;}
.y7c{bottom:642.173333pt;}
.y53{bottom:642.333333pt;}
.y1d{bottom:643.613333pt;}
.y39{bottom:660.733333pt;}
.y7b{bottom:661.693333pt;}
.y52{bottom:662.013333pt;}
.y1c{bottom:671.133333pt;}
.y7a{bottom:681.213333pt;}
.y51{bottom:681.533333pt;}
.y38{bottom:688.253333pt;}
.y1b{bottom:698.813333pt;}
.y79{bottom:700.733333pt;}
.y50{bottom:701.053333pt;}
.y37{bottom:707.773333pt;}
.y78{bottom:720.253333pt;}
.y4f{bottom:720.573333pt;}
.y1a{bottom:725.533333pt;}
.y36{bottom:727.293333pt;}
.y77{bottom:739.773333pt;}
.y4e{bottom:740.093333pt;}
.y19{bottom:743.613333pt;}
.y35{bottom:746.813333pt;}
.y18{bottom:758.493333pt;}
.y76{bottom:759.293333pt;}
.y4d{bottom:759.613333pt;}
.y34{bottom:766.333333pt;}
.y17{bottom:775.653333pt;}
.y75{bottom:778.853333pt;}
.y4c{bottom:779.173333pt;}
.y33{bottom:785.893333pt;}
.y16{bottom:795.813333pt;}
.y74{bottom:798.373333pt;}
.y4b{bottom:798.693333pt;}
.y32{bottom:805.413333pt;}
.y6d{bottom:813.893333pt;}
.y73{bottom:817.893333pt;}
.y4a{bottom:818.213333pt;}
.y15{bottom:818.693333pt;}
.y31{bottom:833.093333pt;}
.y72{bottom:837.413333pt;}
.y49{bottom:837.733333pt;}
.y14{bottom:841.413333pt;}
.y71{bottom:857.093333pt;}
.y48{bottom:857.253333pt;}
.y30{bottom:860.613333pt;}
.y12{bottom:864.933333pt;}
.y13{bottom:871.653333pt;}
.y70{bottom:876.613333pt;}
.y47{bottom:884.773333pt;}
.y2f{bottom:888.133333pt;}
.y11{bottom:891.013333pt;}
.y6f{bottom:896.133333pt;}
.y46{bottom:913.093333pt;}
.y10{bottom:915.653333pt;}
.ya{bottom:933.733333pt;}
.y9{bottom:948.453333pt;}
.y8{bottom:960.613333pt;}
.y7{bottom:972.933333pt;}
.y6{bottom:1001.093333pt;}
.y5{bottom:1016.480000pt;}
.y4{bottom:1031.840000pt;}
.y3{bottom:1044.320000pt;}
.h14{height:21.600000pt;}
.h11{height:31.828125pt;}
.h12{height:34.374375pt;}
.h9{height:36.656250pt;}
.h6{height:44.722500pt;}
.hd{height:49.148438pt;}
.h13{height:52.834688pt;}
.hc{height:54.390938pt;}
.h5{height:55.402500pt;}
.ha{height:57.183750pt;}
.h16{height:58.560000pt;}
.h4{height:58.563750pt;}
.hf{height:60.937500pt;}
.hb{height:63.656250pt;}
.h3{height:63.840000pt;}
.h7{height:65.531250pt;}
.he{height:65.781915pt;}
.h10{height:66.625000pt;}
.h15{height:76.671562pt;}
.h2{height:84.512000pt;}
.h8{height:87.156562pt;}
.h17{height:318.281250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:31.200000pt;}
.w6{width:39.072000pt;}
.w2{width:63.866667pt;}
.w4{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:9.600000pt;}
.x2{left:27.866667pt;}
.x4{left:47.999988pt;}
.xf{left:52.319988pt;}
.x8{left:58.879988pt;}
.xc{left:85.311988pt;}
.x12{left:87.071988pt;}
.x3{left:136.026655pt;}
.x5{left:186.586655pt;}
.xe{left:240.026655pt;}
.xd{left:307.586655pt;}
.x9{left:310.946655pt;}
.x7{left:328.706655pt;}
.x6{left:396.866655pt;}
.xa{left:476.893310pt;}
.xb{left:482.973322pt;}
.x1{left:729.893333pt;}
.x10{left:754.560000pt;}
}




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