
    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_9040ec8508599a3bdb038b57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_42ecc516c9516292d5940b88.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_28b2dccd02c998e10b108395.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_9c2c066ca83d6c8b399b9c83.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_96de16aa22736a5a13176332.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_936adb2299a5eeb5a4c9e7bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_165ed1691ab44e03907978a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-63.360600px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.lsc{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.198000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.234000px;}
.ls4{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.720000px;}
.ls7{letter-spacing:33.984000px;}
.ls6{letter-spacing:54.864000px;}
.ls0{letter-spacing:410.004000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.576000px;}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws1{word-spacing:-15.588000px;}
.ws0{word-spacing:-15.282000px;}
.ws2{word-spacing:-15.084000px;}
.ws5{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-4.696560px;}
._1{margin-left:-2.791440px;}
._0{margin-left:-1.258560px;}
._2{width:1.278000px;}
._4{width:2.592000px;}
._14{width:4.392000px;}
._11{width:5.400000px;}
._10{width:6.586560px;}
._1e{width:7.609440px;}
._18{width:8.640000px;}
._7{width:10.224000px;}
._8{width:11.448000px;}
._d{width:13.432320px;}
._c{width:14.506560px;}
._1c{width:15.548880px;}
._f{width:16.560000px;}
._a{width:19.224000px;}
._9{width:20.332560px;}
._15{width:21.456000px;}
._5{width:23.040000px;}
._1b{width:24.426000px;}
._12{width:25.560000px;}
._13{width:26.640000px;}
._b{width:27.720000px;}
._20{width:28.944000px;}
._1d{width:30.312000px;}
._19{width:31.536000px;}
._e{width:32.904000px;}
._1a{width:34.068000px;}
._1f{width:35.568000px;}
._21{width:49.104000px;}
._22{width:50.158560px;}
._17{width:57.289200px;}
._16{width:58.354560px;}
._3{width:82.776000px;}
._23{width:107.136000px;}
._24{width:108.720000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y6{bottom:-27.180000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.500000px;}
.y5{bottom:6.480000px;}
.yc{bottom:7.020000px;}
.ya{bottom:9.540000px;}
.y12{bottom:12.600000px;}
.y7{bottom:19.080000px;}
.y10{bottom:20.160000px;}
.y2{bottom:37.620000px;}
.y4{bottom:40.320000px;}
.y9{bottom:63.540000px;}
.yb{bottom:64.620000px;}
.yd{bottom:68.040000px;}
.yc0{bottom:125.460000px;}
.y6c{bottom:134.460000px;}
.y43{bottom:137.160000px;}
.y9d{bottom:139.680000px;}
.ybf{bottom:146.160000px;}
.y6b{bottom:155.160000px;}
.y42{bottom:157.860000px;}
.y9c{bottom:160.380000px;}
.ybe{bottom:166.860000px;}
.y6a{bottom:175.860000px;}
.y41{bottom:178.560000px;}
.y9b{bottom:181.080000px;}
.ybd{bottom:187.560000px;}
.y69{bottom:196.560000px;}
.y40{bottom:199.290000px;}
.y9a{bottom:201.810000px;}
.ybc{bottom:208.290000px;}
.y68{bottom:217.290000px;}
.y3f{bottom:219.990000px;}
.y99{bottom:222.510000px;}
.ybb{bottom:228.990000px;}
.y67{bottom:237.990000px;}
.y3e{bottom:240.690000px;}
.y98{bottom:243.210000px;}
.yba{bottom:249.690000px;}
.y66{bottom:258.690000px;}
.y3d{bottom:261.390000px;}
.y97{bottom:263.910000px;}
.yb9{bottom:270.390000px;}
.y65{bottom:279.390000px;}
.y3c{bottom:282.090000px;}
.y96{bottom:284.610000px;}
.yb8{bottom:291.090000px;}
.y64{bottom:300.090000px;}
.y3b{bottom:302.790000px;}
.y95{bottom:305.310000px;}
.yb7{bottom:311.790000px;}
.y63{bottom:320.790000px;}
.y3a{bottom:323.490000px;}
.y94{bottom:326.010000px;}
.yb6{bottom:332.490000px;}
.y62{bottom:341.490000px;}
.y39{bottom:344.190000px;}
.y93{bottom:346.710000px;}
.yb5{bottom:353.190000px;}
.y61{bottom:362.190000px;}
.y38{bottom:364.890000px;}
.y92{bottom:367.410000px;}
.yb4{bottom:373.890000px;}
.y60{bottom:382.890000px;}
.y37{bottom:385.590000px;}
.y91{bottom:388.110000px;}
.yb3{bottom:394.590000px;}
.y5f{bottom:403.590000px;}
.y36{bottom:406.290000px;}
.y90{bottom:408.810000px;}
.yb2{bottom:415.290000px;}
.y5e{bottom:424.290000px;}
.y35{bottom:426.990000px;}
.y8f{bottom:429.510000px;}
.yb1{bottom:436.035000px;}
.y5d{bottom:445.035000px;}
.y34{bottom:447.735000px;}
.y8e{bottom:450.255000px;}
.yb0{bottom:456.735000px;}
.y5c{bottom:465.735000px;}
.y33{bottom:468.435000px;}
.y8d{bottom:470.955000px;}
.yaf{bottom:477.435000px;}
.y5b{bottom:486.435000px;}
.y32{bottom:489.135000px;}
.y8c{bottom:491.655000px;}
.yae{bottom:498.135000px;}
.y5a{bottom:507.135000px;}
.y31{bottom:509.835000px;}
.y8b{bottom:512.355000px;}
.yad{bottom:518.835000px;}
.y59{bottom:527.835000px;}
.y30{bottom:530.535000px;}
.y8a{bottom:533.055000px;}
.yac{bottom:539.535000px;}
.y58{bottom:548.535000px;}
.y2f{bottom:551.235000px;}
.y89{bottom:553.755000px;}
.yab{bottom:560.235000px;}
.y57{bottom:569.235000px;}
.y2e{bottom:571.935000px;}
.y88{bottom:574.455000px;}
.yaa{bottom:580.935000px;}
.y56{bottom:589.935000px;}
.y2d{bottom:592.635000px;}
.y87{bottom:595.155000px;}
.ya9{bottom:601.635000px;}
.y55{bottom:610.635000px;}
.y2c{bottom:613.335000px;}
.y86{bottom:615.855000px;}
.y11{bottom:617.475000px;}
.ya8{bottom:622.335000px;}
.y54{bottom:631.335000px;}
.y2b{bottom:634.035000px;}
.y85{bottom:636.555000px;}
.ya7{bottom:643.035000px;}
.y53{bottom:648.075000px;}
.y2a{bottom:654.735000px;}
.y84{bottom:657.255000px;}
.ya6{bottom:663.735000px;}
.y29{bottom:675.465000px;}
.y83{bottom:677.985000px;}
.ya5{bottom:684.465000px;}
.y28{bottom:696.165000px;}
.y82{bottom:698.685000px;}
.ya4{bottom:705.165000px;}
.y27{bottom:716.865000px;}
.y81{bottom:719.385000px;}
.ya3{bottom:725.865000px;}
.y26{bottom:737.565000px;}
.y80{bottom:740.085000px;}
.ya2{bottom:746.565000px;}
.y25{bottom:758.265000px;}
.y7f{bottom:760.785000px;}
.ya1{bottom:767.265000px;}
.y24{bottom:778.965000px;}
.y7e{bottom:781.485000px;}
.ya0{bottom:787.965000px;}
.y23{bottom:799.665000px;}
.y7d{bottom:802.185000px;}
.y9f{bottom:808.665000px;}
.y22{bottom:820.365000px;}
.y7c{bottom:822.885000px;}
.y9e{bottom:829.365000px;}
.y21{bottom:841.065000px;}
.y7b{bottom:843.585000px;}
.y52{bottom:850.065000px;}
.y20{bottom:861.765000px;}
.y7a{bottom:864.285000px;}
.y51{bottom:870.765000px;}
.y79{bottom:884.985000px;}
.y1f{bottom:889.305000px;}
.y50{bottom:891.465000px;}
.y1e{bottom:903.165000px;}
.y78{bottom:905.685000px;}
.y4f{bottom:912.165000px;}
.y77{bottom:926.430000px;}
.y1d{bottom:930.750000px;}
.y4e{bottom:932.910000px;}
.y1c{bottom:944.610000px;}
.y76{bottom:947.130000px;}
.y4d{bottom:953.610000px;}
.y75{bottom:967.830000px;}
.y1b{bottom:972.150000px;}
.y4c{bottom:974.310000px;}
.y1a{bottom:986.010000px;}
.y74{bottom:988.530000px;}
.y4b{bottom:995.010000px;}
.y19{bottom:1006.710000px;}
.y73{bottom:1009.230000px;}
.y4a{bottom:1015.710000px;}
.y18{bottom:1027.410000px;}
.y72{bottom:1029.930000px;}
.y49{bottom:1036.410000px;}
.y17{bottom:1048.110000px;}
.y71{bottom:1051.890000px;}
.y48{bottom:1057.110000px;}
.y16{bottom:1068.810000px;}
.y70{bottom:1073.850000px;}
.y47{bottom:1077.810000px;}
.y15{bottom:1089.510000px;}
.y6f{bottom:1095.810000px;}
.y46{bottom:1098.510000px;}
.y14{bottom:1110.210000px;}
.y6e{bottom:1117.770000px;}
.y45{bottom:1119.210000px;}
.y13{bottom:1130.910000px;}
.y6d{bottom:1138.650000px;}
.y44{bottom:1139.910000px;}
.y1{bottom:1193.040000px;}
.y3{bottom:1206.180000px;}
.yf{bottom:1246.320000px;}
.ye{bottom:1261.980000px;}
.h6{height:19.620000px;}
.ha{height:21.240000px;}
.h8{height:23.760000px;}
.hc{height:28.260000px;}
.h10{height:33.683203px;}
.hb{height:41.726953px;}
.he{height:50.273438px;}
.h9{height:50.274000px;}
.hd{height:50.800781px;}
.h13{height:52.417969px;}
.h2{height:52.740000px;}
.h4{height:56.700000px;}
.hf{height:57.796523px;}
.h12{height:59.343750px;}
.h11{height:61.043203px;}
.h7{height:61.189805px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:84.990000px;}
.w6{width:108.756000px;}
.w9{width:121.680000px;}
.w3{width:135.036000px;}
.w8{width:187.590000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w7{width:204.330000px;}
.w2{width:552.705000px;}
.wa{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:1.440000px;}
.x11{left:10.800000px;}
.x5{left:40.140000px;}
.x7{left:47.340000px;}
.x2{left:48.816000px;}
.x4{left:60.840000px;}
.x6{left:76.140000px;}
.x1{left:87.480000px;}
.xc{left:92.874000px;}
.xd{left:104.034000px;}
.xb{left:106.236000px;}
.x12{left:114.155987px;}
.x16{left:119.195987px;}
.x18{left:135.035987px;}
.x1b{left:146.735987px;}
.x17{left:150.149987px;}
.x19{left:152.309987px;}
.x15{left:296.714987px;}
.x13{left:377.354987px;}
.xe{left:391.035000px;}
.x9{left:420.375000px;}
.x14{left:446.474987px;}
.x1a{left:481.964987px;}
.xf{left:665.070000px;}
.x3{left:733.650000px;}
.xa{left:748.050000px;}
.x10{left:807.990000px;}
@media print{
.v1{vertical-align:-56.320533pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.176000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.208000pt;}
.ls4{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls6{letter-spacing:48.768000pt;}
.ls0{letter-spacing:364.448000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.512000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws1{word-spacing:-13.856000pt;}
.ws0{word-spacing:-13.584000pt;}
.ws2{word-spacing:-13.408000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-4.174720pt;}
._1{margin-left:-2.481280pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.136000pt;}
._4{width:2.304000pt;}
._14{width:3.904000pt;}
._11{width:4.800000pt;}
._10{width:5.854720pt;}
._1e{width:6.763947pt;}
._18{width:7.680000pt;}
._7{width:9.088000pt;}
._8{width:10.176000pt;}
._d{width:11.939840pt;}
._c{width:12.894720pt;}
._1c{width:13.821227pt;}
._f{width:14.720000pt;}
._a{width:17.088000pt;}
._9{width:18.073387pt;}
._15{width:19.072000pt;}
._5{width:20.480000pt;}
._1b{width:21.712000pt;}
._12{width:22.720000pt;}
._13{width:23.680000pt;}
._b{width:24.640000pt;}
._20{width:25.728000pt;}
._1d{width:26.944000pt;}
._19{width:28.032000pt;}
._e{width:29.248000pt;}
._1a{width:30.282667pt;}
._1f{width:31.616000pt;}
._21{width:43.648000pt;}
._22{width:44.585387pt;}
._17{width:50.923733pt;}
._16{width:51.870720pt;}
._3{width:73.578667pt;}
._23{width:95.232000pt;}
._24{width:96.640000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y6{bottom:-24.160000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.000000pt;}
.y5{bottom:5.760000pt;}
.yc{bottom:6.240000pt;}
.ya{bottom:8.480000pt;}
.y12{bottom:11.200000pt;}
.y7{bottom:16.960000pt;}
.y10{bottom:17.920000pt;}
.y2{bottom:33.440000pt;}
.y4{bottom:35.840000pt;}
.y9{bottom:56.480000pt;}
.yb{bottom:57.440000pt;}
.yd{bottom:60.480000pt;}
.yc0{bottom:111.520000pt;}
.y6c{bottom:119.520000pt;}
.y43{bottom:121.920000pt;}
.y9d{bottom:124.160000pt;}
.ybf{bottom:129.920000pt;}
.y6b{bottom:137.920000pt;}
.y42{bottom:140.320000pt;}
.y9c{bottom:142.560000pt;}
.ybe{bottom:148.320000pt;}
.y6a{bottom:156.320000pt;}
.y41{bottom:158.720000pt;}
.y9b{bottom:160.960000pt;}
.ybd{bottom:166.720000pt;}
.y69{bottom:174.720000pt;}
.y40{bottom:177.146667pt;}
.y9a{bottom:179.386667pt;}
.ybc{bottom:185.146667pt;}
.y68{bottom:193.146667pt;}
.y3f{bottom:195.546667pt;}
.y99{bottom:197.786667pt;}
.ybb{bottom:203.546667pt;}
.y67{bottom:211.546667pt;}
.y3e{bottom:213.946667pt;}
.y98{bottom:216.186667pt;}
.yba{bottom:221.946667pt;}
.y66{bottom:229.946667pt;}
.y3d{bottom:232.346667pt;}
.y97{bottom:234.586667pt;}
.yb9{bottom:240.346667pt;}
.y65{bottom:248.346667pt;}
.y3c{bottom:250.746667pt;}
.y96{bottom:252.986667pt;}
.yb8{bottom:258.746667pt;}
.y64{bottom:266.746667pt;}
.y3b{bottom:269.146667pt;}
.y95{bottom:271.386667pt;}
.yb7{bottom:277.146667pt;}
.y63{bottom:285.146667pt;}
.y3a{bottom:287.546667pt;}
.y94{bottom:289.786667pt;}
.yb6{bottom:295.546667pt;}
.y62{bottom:303.546667pt;}
.y39{bottom:305.946667pt;}
.y93{bottom:308.186667pt;}
.yb5{bottom:313.946667pt;}
.y61{bottom:321.946667pt;}
.y38{bottom:324.346667pt;}
.y92{bottom:326.586667pt;}
.yb4{bottom:332.346667pt;}
.y60{bottom:340.346667pt;}
.y37{bottom:342.746667pt;}
.y91{bottom:344.986667pt;}
.yb3{bottom:350.746667pt;}
.y5f{bottom:358.746667pt;}
.y36{bottom:361.146667pt;}
.y90{bottom:363.386667pt;}
.yb2{bottom:369.146667pt;}
.y5e{bottom:377.146667pt;}
.y35{bottom:379.546667pt;}
.y8f{bottom:381.786667pt;}
.yb1{bottom:387.586667pt;}
.y5d{bottom:395.586667pt;}
.y34{bottom:397.986667pt;}
.y8e{bottom:400.226667pt;}
.yb0{bottom:405.986667pt;}
.y5c{bottom:413.986667pt;}
.y33{bottom:416.386667pt;}
.y8d{bottom:418.626667pt;}
.yaf{bottom:424.386667pt;}
.y5b{bottom:432.386667pt;}
.y32{bottom:434.786667pt;}
.y8c{bottom:437.026667pt;}
.yae{bottom:442.786667pt;}
.y5a{bottom:450.786667pt;}
.y31{bottom:453.186667pt;}
.y8b{bottom:455.426667pt;}
.yad{bottom:461.186667pt;}
.y59{bottom:469.186667pt;}
.y30{bottom:471.586667pt;}
.y8a{bottom:473.826667pt;}
.yac{bottom:479.586667pt;}
.y58{bottom:487.586667pt;}
.y2f{bottom:489.986667pt;}
.y89{bottom:492.226667pt;}
.yab{bottom:497.986667pt;}
.y57{bottom:505.986667pt;}
.y2e{bottom:508.386667pt;}
.y88{bottom:510.626667pt;}
.yaa{bottom:516.386667pt;}
.y56{bottom:524.386667pt;}
.y2d{bottom:526.786667pt;}
.y87{bottom:529.026667pt;}
.ya9{bottom:534.786667pt;}
.y55{bottom:542.786667pt;}
.y2c{bottom:545.186667pt;}
.y86{bottom:547.426667pt;}
.y11{bottom:548.866667pt;}
.ya8{bottom:553.186667pt;}
.y54{bottom:561.186667pt;}
.y2b{bottom:563.586667pt;}
.y85{bottom:565.826667pt;}
.ya7{bottom:571.586667pt;}
.y53{bottom:576.066667pt;}
.y2a{bottom:581.986667pt;}
.y84{bottom:584.226667pt;}
.ya6{bottom:589.986667pt;}
.y29{bottom:600.413333pt;}
.y83{bottom:602.653333pt;}
.ya5{bottom:608.413333pt;}
.y28{bottom:618.813333pt;}
.y82{bottom:621.053333pt;}
.ya4{bottom:626.813333pt;}
.y27{bottom:637.213333pt;}
.y81{bottom:639.453333pt;}
.ya3{bottom:645.213333pt;}
.y26{bottom:655.613333pt;}
.y80{bottom:657.853333pt;}
.ya2{bottom:663.613333pt;}
.y25{bottom:674.013333pt;}
.y7f{bottom:676.253333pt;}
.ya1{bottom:682.013333pt;}
.y24{bottom:692.413333pt;}
.y7e{bottom:694.653333pt;}
.ya0{bottom:700.413333pt;}
.y23{bottom:710.813333pt;}
.y7d{bottom:713.053333pt;}
.y9f{bottom:718.813333pt;}
.y22{bottom:729.213333pt;}
.y7c{bottom:731.453333pt;}
.y9e{bottom:737.213333pt;}
.y21{bottom:747.613333pt;}
.y7b{bottom:749.853333pt;}
.y52{bottom:755.613333pt;}
.y20{bottom:766.013333pt;}
.y7a{bottom:768.253333pt;}
.y51{bottom:774.013333pt;}
.y79{bottom:786.653333pt;}
.y1f{bottom:790.493333pt;}
.y50{bottom:792.413333pt;}
.y1e{bottom:802.813333pt;}
.y78{bottom:805.053333pt;}
.y4f{bottom:810.813333pt;}
.y77{bottom:823.493333pt;}
.y1d{bottom:827.333333pt;}
.y4e{bottom:829.253333pt;}
.y1c{bottom:839.653333pt;}
.y76{bottom:841.893333pt;}
.y4d{bottom:847.653333pt;}
.y75{bottom:860.293333pt;}
.y1b{bottom:864.133333pt;}
.y4c{bottom:866.053333pt;}
.y1a{bottom:876.453333pt;}
.y74{bottom:878.693333pt;}
.y4b{bottom:884.453333pt;}
.y19{bottom:894.853333pt;}
.y73{bottom:897.093333pt;}
.y4a{bottom:902.853333pt;}
.y18{bottom:913.253333pt;}
.y72{bottom:915.493333pt;}
.y49{bottom:921.253333pt;}
.y17{bottom:931.653333pt;}
.y71{bottom:935.013333pt;}
.y48{bottom:939.653333pt;}
.y16{bottom:950.053333pt;}
.y70{bottom:954.533333pt;}
.y47{bottom:958.053333pt;}
.y15{bottom:968.453333pt;}
.y6f{bottom:974.053333pt;}
.y46{bottom:976.453333pt;}
.y14{bottom:986.853333pt;}
.y6e{bottom:993.573333pt;}
.y45{bottom:994.853333pt;}
.y13{bottom:1005.253333pt;}
.y6d{bottom:1012.133333pt;}
.y44{bottom:1013.253333pt;}
.y1{bottom:1060.480000pt;}
.y3{bottom:1072.160000pt;}
.yf{bottom:1107.840000pt;}
.ye{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.ha{height:18.880000pt;}
.h8{height:21.120000pt;}
.hc{height:25.120000pt;}
.h10{height:29.940625pt;}
.hb{height:37.090625pt;}
.he{height:44.687500pt;}
.h9{height:44.688000pt;}
.hd{height:45.156250pt;}
.h13{height:46.593750pt;}
.h2{height:46.880000pt;}
.h4{height:50.400000pt;}
.hf{height:51.374688pt;}
.h12{height:52.750000pt;}
.h11{height:54.260625pt;}
.h7{height:54.390938pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:75.546667pt;}
.w6{width:96.672000pt;}
.w9{width:108.160000pt;}
.w3{width:120.032000pt;}
.w8{width:166.746667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w7{width:181.626667pt;}
.w2{width:491.293333pt;}
.wa{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.280000pt;}
.x11{left:9.600000pt;}
.x5{left:35.680000pt;}
.x7{left:42.080000pt;}
.x2{left:43.392000pt;}
.x4{left:54.080000pt;}
.x6{left:67.680000pt;}
.x1{left:77.760000pt;}
.xc{left:82.554667pt;}
.xd{left:92.474667pt;}
.xb{left:94.432000pt;}
.x12{left:101.471988pt;}
.x16{left:105.951988pt;}
.x18{left:120.031988pt;}
.x1b{left:130.431988pt;}
.x17{left:133.466655pt;}
.x19{left:135.386655pt;}
.x15{left:263.746655pt;}
.x13{left:335.426655pt;}
.xe{left:347.586667pt;}
.x9{left:373.666667pt;}
.x14{left:396.866655pt;}
.x1a{left:428.413322pt;}
.xf{left:591.173333pt;}
.x3{left:652.133333pt;}
.xa{left:664.933333pt;}
.x10{left:718.213333pt;}
}




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