
    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_6da138ae45ebe38bf942cc79.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5d67f028221c8ebee346618f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_455e12bb381c1be8947efc69.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_a94d8eee962dcb07401c6f95.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb6c96a90feebc66e42ff969.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cb77f0b9d27ba78004fe4371.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909668;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_4f7b3812936b5920f91c5344.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906738;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_16f204d1f8dd07a10c44941d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.098633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fed9c0f7f339e773ad245269.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988281;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;}
.m2{transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.229747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229747,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-ms-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-webkit-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.294830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294830,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v6{vertical-align:-54.762000px;}
.v7{vertical-align:-30.306000px;}
.vb{vertical-align:-23.640000px;}
.v3{vertical-align:-18.708000px;}
.v2{vertical-align:-13.602000px;}
.v4{vertical-align:-5.952000px;}
.v8{vertical-align:-3.402000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.160000px;}
.va{vertical-align:16.494000px;}
.v1{vertical-align:31.584000px;}
.v5{vertical-align:76.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.084000px;}
.ls5{letter-spacing:0.492948px;}
.ls7{letter-spacing:3.231524px;}
.lsb{letter-spacing:4.417856px;}
.ls8{letter-spacing:6.604659px;}
.ls6{letter-spacing:8.994475px;}
.lsc{letter-spacing:69.820800px;}
.ls4{letter-spacing:81.042000px;}
.ls3{letter-spacing:85.686000px;}
.ls2{letter-spacing:675.327984px;}
.ls1{letter-spacing:685.365984px;}
.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;}
}
.ws5{word-spacing:-49.845042px;}
.ws2{word-spacing:-29.916000px;}
.ws4{word-spacing:-26.570394px;}
.wse{word-spacing:-23.272986px;}
.ws1{word-spacing:-19.929042px;}
.wsd{word-spacing:-16.629972px;}
.ws7{word-spacing:-0.575106px;}
.ws8{word-spacing:-0.082158px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:12.638578px;}
.wsc{word-spacing:405.138000px;}
.wsa{word-spacing:405.144000px;}
.ws3{word-spacing:575.581848px;}
.ws9{word-spacing:588.090000px;}
.wsb{word-spacing:588.096000px;}
._4{margin-left:-2.300424px;}
._0{margin-left:-1.008216px;}
._1{width:1.624656px;}
._7{width:3.734538px;}
._5{width:8.778433px;}
._6{width:10.619930px;}
._8{width:125.526000px;}
._16{width:209.448000px;}
._11{width:233.418000px;}
._13{width:257.616000px;}
._3{width:317.894640px;}
._2{width:351.663558px;}
._17{width:375.006000px;}
._c{width:383.322000px;}
._e{width:435.060000px;}
._14{width:456.810000px;}
._12{width:502.554000px;}
._10{width:516.858000px;}
._a{width:525.024000px;}
._d{width:576.906000px;}
._18{width:583.403970px;}
._15{width:622.644000px;}
._b{width:646.734000px;}
._9{width:666.870000px;}
._f{width:683.670000px;}
._19{width:699.582000px;}
.fc3{color:rgb(204,204,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(152,5,40);}
.fs10{font-size:43.200000px;}
.fs4{font-size:54.084000px;}
.fs3{font-size:55.806000px;}
.fs11{font-size:60.036000px;}
.fs7{font-size:65.988000px;}
.fsf{font-size:67.350000px;}
.fs6{font-size:71.946000px;}
.fsd{font-size:76.136802px;}
.fsb{font-size:82.158000px;}
.fsc{font-size:83.946000px;}
.fs12{font-size:84.018000px;}
.fs2{font-size:95.922000px;}
.fse{font-size:100.602000px;}
.fs9{font-size:108.000000px;}
.fs1{font-size:120.078000px;}
.fs0{font-size:168.036000px;}
.fs5{font-size:179.946000px;}
.fsa{font-size:203.922000px;}
.fs8{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y54{bottom:5.443500px;}
.y55{bottom:5.989500px;}
.y6a{bottom:11.004000px;}
.y9{bottom:14.584500px;}
.y6b{bottom:22.368000px;}
.y53{bottom:30.547500px;}
.y22{bottom:40.182000px;}
.y21{bottom:59.995500px;}
.y48{bottom:61.017000px;}
.y8{bottom:71.178000px;}
.y31{bottom:75.430500px;}
.y4b{bottom:79.002000px;}
.y33{bottom:79.342500px;}
.y20{bottom:82.744500px;}
.y58{bottom:83.466000px;}
.yad{bottom:84.105000px;}
.y30{bottom:85.167000px;}
.y47{bottom:88.441500px;}
.y7{bottom:99.964500px;}
.y4a{bottom:100.602000px;}
.y1f{bottom:104.344500px;}
.y7f{bottom:105.364500px;}
.y32{bottom:108.127500px;}
.y5f{bottom:108.595500px;}
.y2f{bottom:113.953500px;}
.y66{bottom:114.760500px;}
.y57{bottom:114.888000px;}
.y7c{bottom:117.439500px;}
.y87{bottom:121.309500px;}
.y49{bottom:122.202000px;}
.y99{bottom:126.454500px;}
.y1e{bottom:128.580000px;}
.y6{bottom:128.749500px;}
.y5e{bottom:130.195500px;}
.y71{bottom:130.281000px;}
.y7e{bottom:137.764500px;}
.y65{bottom:146.182500px;}
.y64{bottom:147.628500px;}
.y42{bottom:150.604500px;}
.y5d{bottom:151.795500px;}
.y7b{bottom:155.877000px;}
.y86{bottom:156.004500px;}
.y5{bottom:162.382500px;}
.y7d{bottom:170.164500px;}
.y63{bottom:171.865500px;}
.y5c{bottom:173.395500px;}
.y37{bottom:189.595500px;}
.y2e{bottom:190.149000px;}
.y85{bottom:190.744500px;}
.y41{bottom:193.039500px;}
.y62{bottom:196.101000px;}
.y70{bottom:197.802000px;}
.y90{bottom:198.865500px;}
.y52{bottom:199.423500px;}
.y8f{bottom:199.843500px;}
.y8b{bottom:201.288000px;}
.y97{bottom:202.309500px;}
.y93{bottom:203.542500px;}
.y79{bottom:203.967000px;}
.y36{bottom:211.195500px;}
.y2d{bottom:211.749000px;}
.y4{bottom:213.450000px;}
.y18{bottom:216.639000px;}
.y61{bottom:220.338000px;}
.y8e{bottom:221.443500px;}
.y8a{bottom:222.888000px;}
.y17{bottom:223.611000px;}
.y96{bottom:223.909500px;}
.y92{bottom:225.142500px;}
.y84{bottom:225.439500px;}
.yab{bottom:229.947000px;}
.y3{bottom:231.222000px;}
.y35{bottom:232.795500px;}
.y2c{bottom:233.349000px;}
.y6f{bottom:236.538000px;}
.y51{bottom:237.217500px;}
.y78{bottom:242.617500px;}
.y60{bottom:244.573500px;}
.y5b{bottom:251.292000px;}
.y34{bottom:254.395500px;}
.y2b{bottom:254.949000px;}
.y40{bottom:256.734000px;}
.y83{bottom:260.136000px;}
.y50{bottom:268.639500px;}
.y5a{bottom:272.892000px;}
.y46{bottom:273.019500px;}
.y2{bottom:277.314000px;}
.y3f{bottom:278.334000px;}
.y77{bottom:281.395500px;}
.yaa{bottom:282.160500px;}
.y91{bottom:283.437000px;}
.y98{bottom:285.861000px;}
.y59{bottom:294.492000px;}
.y45{bottom:294.619500px;}
.y82{bottom:294.832500px;}
.yc{bottom:300.828000px;}
.y6e{bottom:302.655000px;}
.y1d{bottom:303.081000px;}
.y3e{bottom:303.336000px;}
.y14{bottom:311.628000px;}
.y26{bottom:313.966500px;}
.y44{bottom:316.219500px;}
.y76{bottom:320.131500px;}
.yb{bottom:322.428000px;}
.y3d{bottom:324.936000px;}
.y81{bottom:330.676500px;}
.y80{bottom:331.527000px;}
.ya9{bottom:333.949500px;}
.y9c{bottom:335.821500px;}
.y43{bottom:337.819500px;}
.ya5{bottom:343.261500px;}
.y8d{bottom:348.534000px;}
.y3c{bottom:349.938000px;}
.y95{bottom:351.000000px;}
.y1c{bottom:353.169000px;}
.y75{bottom:357.931500px;}
.y74{bottom:358.782000px;}
.y8c{bottom:370.134000px;}
.y25{bottom:370.474500px;}
.y3b{bottom:371.538000px;}
.y56{bottom:371.665500px;}
.y94{bottom:372.600000px;}
.ye{bottom:385.738500px;}
.y9b{bottom:385.909500px;}
.ya8{bottom:385.951500px;}
.yac{bottom:388.248000px;}
.y6d{bottom:391.393500px;}
.y3a{bottom:393.138000px;}
.y16{bottom:395.178000px;}
.y15{bottom:396.199500px;}
.ya4{bottom:396.241500px;}
.yd{bottom:407.338500px;}
.y2a{bottom:410.400000px;}
.y1b{bottom:411.166500px;}
.y4f{bottom:419.797500px;}
.y24{bottom:420.562500px;}
.y6c{bottom:430.129500px;}
.y9a{bottom:437.911500px;}
.ya7{bottom:437.953500px;}
.ya3{bottom:443.226000px;}
.y29{bottom:458.107500px;}
.y4e{bottom:466.441500px;}
.y73{bottom:467.887500px;}
.y39{bottom:467.929500px;}
.y1a{bottom:469.162500px;}
.y10{bottom:470.694000px;}
.y89{bottom:489.912000px;}
.ya6{bottom:489.955500px;}
.ya2{bottom:491.826000px;}
.y23{bottom:491.868000px;}
.yf{bottom:492.294000px;}
.y68{bottom:505.134000px;}
.y4d{bottom:505.177500px;}
.y28{bottom:505.602000px;}
.y7a{bottom:513.850500px;}
.y72{bottom:514.531500px;}
.y38{bottom:514.573500px;}
.ya1{bottom:520.441500px;}
.y69{bottom:532.132500px;}
.y88{bottom:541.914000px;}
.y19{bottom:541.956000px;}
.ya0{bottom:551.863500px;}
.y67{bottom:553.266000px;}
.y27{bottom:553.309500px;}
.y13{bottom:557.136000px;}
.y12{bottom:576.949500px;}
.y9f{bottom:583.285500px;}
.y4c{bottom:608.839500px;}
.y9e{bottom:614.707500px;}
.ya{bottom:614.835000px;}
.y9d{bottom:640.219500px;}
.y11{bottom:651.360000px;}
.h6{height:37.552465px;}
.h17{height:37.671000px;}
.h20{height:43.766479px;}
.h1f{height:46.287513px;}
.h19{height:46.730640px;}
.h9{height:48.105510px;}
.h12{height:49.017000px;}
.h8{height:52.448915px;}
.h13{height:57.005136px;}
.h16{height:59.630582px;}
.h1c{height:60.608915px;}
.h1d{height:60.782915px;}
.h21{height:61.249450px;}
.h18{height:69.802462px;}
.h4{height:69.927513px;}
.h14{height:70.885345px;}
.h5{height:72.266792px;}
.h15{height:72.428019px;}
.hf{height:74.988281px;}
.hc{height:78.046875px;}
.h1a{height:78.626953px;}
.hd{height:78.732422px;}
.h3{height:87.537331px;}
.h1e{height:95.226422px;}
.h1b{height:116.532000px;}
.h2{height:122.334803px;}
.hb{height:122.498900px;}
.h7{height:131.005608px;}
.h10{height:146.127513px;}
.h11{height:148.460792px;}
.he{height:194.161734px;}
.ha{height:235.880859px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.w5{width:26.787000px;}
.w4{width:333.388500px;}
.w1{width:1440.000000px;}
.w3{width:1440.013500px;}
.w2{width:1440.099000px;}
.w0{width:1440.141732px;}
.x0{left:0.000000px;}
.x3d{left:13.008000px;}
.x2{left:23.938500px;}
.x29{left:38.128500px;}
.x38{left:91.077000px;}
.x10{left:96.136500px;}
.x13{left:106.639500px;}
.x3{left:113.953500px;}
.x2a{left:115.011000px;}
.x47{left:124.582500px;}
.x2b{left:129.111000px;}
.x2c{left:135.547500px;}
.x11{left:149.967000px;}
.x37{left:160.639500px;}
.x22{left:175.053000px;}
.x2d{left:176.446500px;}
.x3e{left:182.452500px;}
.x12{left:183.727500px;}
.x2e{left:198.621000px;}
.x15{left:204.009000px;}
.x2f{left:205.116000px;}
.x58{left:208.006500px;}
.x1c{left:214.809000px;}
.x3f{left:216.213000px;}
.x21{left:219.316500px;}
.x4a{left:221.527500px;}
.x4b{left:241.725000px;}
.x33{left:271.998000px;}
.x30{left:281.881500px;}
.x31{left:289.780500px;}
.x1f{left:298.318500px;}
.x1{left:303.208500px;}
.x17{left:304.441500px;}
.x32{left:322.545000px;}
.x25{left:335.608500px;}
.x14{left:338.967000px;}
.x4c{left:346.323000px;}
.x4d{left:363.841500px;}
.x50{left:367.582500px;}
.x18{left:370.984500px;}
.x35{left:431.532000px;}
.x36{left:434.211000px;}
.x1e{left:449.178000px;}
.x16{left:456.874500px;}
.x39{left:458.745000px;}
.x4e{left:467.334000px;}
.x40{left:474.349500px;}
.x4f{left:487.530000px;}
.x23{left:511.470000px;}
.x28{left:515.082000px;}
.x5a{left:520.228500px;}
.x41{left:528.604500px;}
.x3c{left:548.077500px;}
.x5b{left:553.393500px;}
.x42{left:588.600000px;}
.xe{left:603.141000px;}
.x19{left:606.628500px;}
.x43{left:674.872500px;}
.x24{left:691.582500px;}
.x51{left:703.956000px;}
.x52{left:724.153500px;}
.x57{left:773.178000px;}
.x1d{left:794.097000px;}
.x44{left:799.369500px;}
.x1b{left:809.703000px;}
.x20{left:814.209000px;}
.x1a{left:820.332000px;}
.x53{left:828.580500px;}
.x45{left:845.547000px;}
.x56{left:849.841500px;}
.x3a{left:851.031000px;}
.x4{left:862.384500px;}
.x3b{left:870.336000px;}
.x59{left:874.969500px;}
.x26{left:877.861500px;}
.x27{left:884.494500px;}
.xf{left:909.070500px;}
.x46{left:917.575500px;}
.x34{left:926.758500px;}
.x54{left:949.762500px;}
.x55{left:969.958500px;}
.x48{left:1013.584500px;}
.x5d{left:1018.261500px;}
.xa{left:1036.375500px;}
.xb{left:1037.905500px;}
.x9{left:1053.850500px;}
.x6{left:1057.890000px;}
.x5{left:1059.378000px;}
.x5c{left:1063.758000px;}
.x7{left:1066.393500px;}
.x8{left:1068.903000px;}
.x49{left:1196.164500px;}
.xc{left:1238.896500px;}
.xd{left:1273.890000px;}
@media print{
.v6{vertical-align:-48.677333pt;}
.v7{vertical-align:-26.938667pt;}
.vb{vertical-align:-21.013333pt;}
.v3{vertical-align:-16.629333pt;}
.v2{vertical-align:-12.090667pt;}
.v4{vertical-align:-5.290667pt;}
.v8{vertical-align:-3.024000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.253333pt;}
.va{vertical-align:14.661333pt;}
.v1{vertical-align:28.074667pt;}
.v5{vertical-align:67.733333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.074667pt;}
.ls5{letter-spacing:0.438176pt;}
.ls7{letter-spacing:2.872465pt;}
.lsb{letter-spacing:3.926983pt;}
.ls8{letter-spacing:5.870808pt;}
.ls6{letter-spacing:7.995089pt;}
.lsc{letter-spacing:62.062933pt;}
.ls4{letter-spacing:72.037333pt;}
.ls3{letter-spacing:76.165333pt;}
.ls2{letter-spacing:600.291541pt;}
.ls1{letter-spacing:609.214208pt;}
.ws5{word-spacing:-44.306704pt;}
.ws2{word-spacing:-26.592000pt;}
.ws4{word-spacing:-23.618128pt;}
.wse{word-spacing:-20.687099pt;}
.ws1{word-spacing:-17.714704pt;}
.wsd{word-spacing:-14.782197pt;}
.ws7{word-spacing:-0.511205pt;}
.ws8{word-spacing:-0.073029pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:11.234291pt;}
.wsc{word-spacing:360.122667pt;}
.wsa{word-spacing:360.128000pt;}
.ws3{word-spacing:511.628309pt;}
.ws9{word-spacing:522.746667pt;}
.wsb{word-spacing:522.752000pt;}
._4{margin-left:-2.044821pt;}
._0{margin-left:-0.896192pt;}
._1{width:1.444139pt;}
._7{width:3.319589pt;}
._5{width:7.803052pt;}
._6{width:9.439938pt;}
._8{width:111.578667pt;}
._16{width:186.176000pt;}
._11{width:207.482667pt;}
._13{width:228.992000pt;}
._3{width:282.573013pt;}
._2{width:312.589829pt;}
._17{width:333.338667pt;}
._c{width:340.730667pt;}
._e{width:386.720000pt;}
._14{width:406.053333pt;}
._12{width:446.714667pt;}
._10{width:459.429333pt;}
._a{width:466.688000pt;}
._d{width:512.805333pt;}
._18{width:518.581307pt;}
._15{width:553.461333pt;}
._b{width:574.874667pt;}
._9{width:592.773333pt;}
._f{width:607.706667pt;}
._19{width:621.850667pt;}
.fs10{font-size:38.400000pt;}
.fs4{font-size:48.074667pt;}
.fs3{font-size:49.605333pt;}
.fs11{font-size:53.365333pt;}
.fs7{font-size:58.656000pt;}
.fsf{font-size:59.866667pt;}
.fs6{font-size:63.952000pt;}
.fsd{font-size:67.677158pt;}
.fsb{font-size:73.029333pt;}
.fsc{font-size:74.618667pt;}
.fs12{font-size:74.682667pt;}
.fs2{font-size:85.264000pt;}
.fse{font-size:89.424000pt;}
.fs9{font-size:96.000000pt;}
.fs1{font-size:106.736000pt;}
.fs0{font-size:149.365333pt;}
.fs5{font-size:159.952000pt;}
.fsa{font-size:181.264000pt;}
.fs8{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y54{bottom:4.838667pt;}
.y55{bottom:5.324000pt;}
.y6a{bottom:9.781333pt;}
.y9{bottom:12.964000pt;}
.y6b{bottom:19.882667pt;}
.y53{bottom:27.153333pt;}
.y22{bottom:35.717333pt;}
.y21{bottom:53.329333pt;}
.y48{bottom:54.237333pt;}
.y8{bottom:63.269333pt;}
.y31{bottom:67.049333pt;}
.y4b{bottom:70.224000pt;}
.y33{bottom:70.526667pt;}
.y20{bottom:73.550667pt;}
.y58{bottom:74.192000pt;}
.yad{bottom:74.760000pt;}
.y30{bottom:75.704000pt;}
.y47{bottom:78.614667pt;}
.y7{bottom:88.857333pt;}
.y4a{bottom:89.424000pt;}
.y1f{bottom:92.750667pt;}
.y7f{bottom:93.657333pt;}
.y32{bottom:96.113333pt;}
.y5f{bottom:96.529333pt;}
.y2f{bottom:101.292000pt;}
.y66{bottom:102.009333pt;}
.y57{bottom:102.122667pt;}
.y7c{bottom:104.390667pt;}
.y87{bottom:107.830667pt;}
.y49{bottom:108.624000pt;}
.y99{bottom:112.404000pt;}
.y1e{bottom:114.293333pt;}
.y6{bottom:114.444000pt;}
.y5e{bottom:115.729333pt;}
.y71{bottom:115.805333pt;}
.y7e{bottom:122.457333pt;}
.y65{bottom:129.940000pt;}
.y64{bottom:131.225333pt;}
.y42{bottom:133.870667pt;}
.y5d{bottom:134.929333pt;}
.y7b{bottom:138.557333pt;}
.y86{bottom:138.670667pt;}
.y5{bottom:144.340000pt;}
.y7d{bottom:151.257333pt;}
.y63{bottom:152.769333pt;}
.y5c{bottom:154.129333pt;}
.y37{bottom:168.529333pt;}
.y2e{bottom:169.021333pt;}
.y85{bottom:169.550667pt;}
.y41{bottom:171.590667pt;}
.y62{bottom:174.312000pt;}
.y70{bottom:175.824000pt;}
.y90{bottom:176.769333pt;}
.y52{bottom:177.265333pt;}
.y8f{bottom:177.638667pt;}
.y8b{bottom:178.922667pt;}
.y97{bottom:179.830667pt;}
.y93{bottom:180.926667pt;}
.y79{bottom:181.304000pt;}
.y36{bottom:187.729333pt;}
.y2d{bottom:188.221333pt;}
.y4{bottom:189.733333pt;}
.y18{bottom:192.568000pt;}
.y61{bottom:195.856000pt;}
.y8e{bottom:196.838667pt;}
.y8a{bottom:198.122667pt;}
.y17{bottom:198.765333pt;}
.y96{bottom:199.030667pt;}
.y92{bottom:200.126667pt;}
.y84{bottom:200.390667pt;}
.yab{bottom:204.397333pt;}
.y3{bottom:205.530667pt;}
.y35{bottom:206.929333pt;}
.y2c{bottom:207.421333pt;}
.y6f{bottom:210.256000pt;}
.y51{bottom:210.860000pt;}
.y78{bottom:215.660000pt;}
.y60{bottom:217.398667pt;}
.y5b{bottom:223.370667pt;}
.y34{bottom:226.129333pt;}
.y2b{bottom:226.621333pt;}
.y40{bottom:228.208000pt;}
.y83{bottom:231.232000pt;}
.y50{bottom:238.790667pt;}
.y5a{bottom:242.570667pt;}
.y46{bottom:242.684000pt;}
.y2{bottom:246.501333pt;}
.y3f{bottom:247.408000pt;}
.y77{bottom:250.129333pt;}
.yaa{bottom:250.809333pt;}
.y91{bottom:251.944000pt;}
.y98{bottom:254.098667pt;}
.y59{bottom:261.770667pt;}
.y45{bottom:261.884000pt;}
.y82{bottom:262.073333pt;}
.yc{bottom:267.402667pt;}
.y6e{bottom:269.026667pt;}
.y1d{bottom:269.405333pt;}
.y3e{bottom:269.632000pt;}
.y14{bottom:277.002667pt;}
.y26{bottom:279.081333pt;}
.y44{bottom:281.084000pt;}
.y76{bottom:284.561333pt;}
.yb{bottom:286.602667pt;}
.y3d{bottom:288.832000pt;}
.y81{bottom:293.934667pt;}
.y80{bottom:294.690667pt;}
.ya9{bottom:296.844000pt;}
.y9c{bottom:298.508000pt;}
.y43{bottom:300.284000pt;}
.ya5{bottom:305.121333pt;}
.y8d{bottom:309.808000pt;}
.y3c{bottom:311.056000pt;}
.y95{bottom:312.000000pt;}
.y1c{bottom:313.928000pt;}
.y75{bottom:318.161333pt;}
.y74{bottom:318.917333pt;}
.y8c{bottom:329.008000pt;}
.y25{bottom:329.310667pt;}
.y3b{bottom:330.256000pt;}
.y56{bottom:330.369333pt;}
.y94{bottom:331.200000pt;}
.ye{bottom:342.878667pt;}
.y9b{bottom:343.030667pt;}
.ya8{bottom:343.068000pt;}
.yac{bottom:345.109333pt;}
.y6d{bottom:347.905333pt;}
.y3a{bottom:349.456000pt;}
.y16{bottom:351.269333pt;}
.y15{bottom:352.177333pt;}
.ya4{bottom:352.214667pt;}
.yd{bottom:362.078667pt;}
.y2a{bottom:364.800000pt;}
.y1b{bottom:365.481333pt;}
.y4f{bottom:373.153333pt;}
.y24{bottom:373.833333pt;}
.y6c{bottom:382.337333pt;}
.y9a{bottom:389.254667pt;}
.ya7{bottom:389.292000pt;}
.ya3{bottom:393.978667pt;}
.y29{bottom:407.206667pt;}
.y4e{bottom:414.614667pt;}
.y73{bottom:415.900000pt;}
.y39{bottom:415.937333pt;}
.y1a{bottom:417.033333pt;}
.y10{bottom:418.394667pt;}
.y89{bottom:435.477333pt;}
.ya6{bottom:435.516000pt;}
.ya2{bottom:437.178667pt;}
.y23{bottom:437.216000pt;}
.yf{bottom:437.594667pt;}
.y68{bottom:449.008000pt;}
.y4d{bottom:449.046667pt;}
.y28{bottom:449.424000pt;}
.y7a{bottom:456.756000pt;}
.y72{bottom:457.361333pt;}
.y38{bottom:457.398667pt;}
.ya1{bottom:462.614667pt;}
.y69{bottom:473.006667pt;}
.y88{bottom:481.701333pt;}
.y19{bottom:481.738667pt;}
.ya0{bottom:490.545333pt;}
.y67{bottom:491.792000pt;}
.y27{bottom:491.830667pt;}
.y13{bottom:495.232000pt;}
.y12{bottom:512.844000pt;}
.y9f{bottom:518.476000pt;}
.y4c{bottom:541.190667pt;}
.y9e{bottom:546.406667pt;}
.ya{bottom:546.520000pt;}
.y9d{bottom:569.084000pt;}
.y11{bottom:578.986667pt;}
.h6{height:33.379969pt;}
.h17{height:33.485333pt;}
.h20{height:38.903536pt;}
.h1f{height:41.144456pt;}
.h19{height:41.538346pt;}
.h9{height:42.760453pt;}
.h12{height:43.570667pt;}
.h8{height:46.621258pt;}
.h13{height:50.671232pt;}
.h16{height:53.004961pt;}
.h1c{height:53.874591pt;}
.h1d{height:54.029258pt;}
.h21{height:54.443956pt;}
.h18{height:62.046633pt;}
.h4{height:62.157789pt;}
.h14{height:63.009195pt;}
.h5{height:64.237148pt;}
.h15{height:64.380461pt;}
.hf{height:66.656250pt;}
.hc{height:69.375000pt;}
.h1a{height:69.890625pt;}
.hd{height:69.984375pt;}
.h3{height:77.810961pt;}
.h1e{height:84.645708pt;}
.h1b{height:103.584000pt;}
.h2{height:108.742047pt;}
.hb{height:108.887911pt;}
.h7{height:116.449430pt;}
.h10{height:129.891122pt;}
.h11{height:131.965148pt;}
.he{height:172.588208pt;}
.ha{height:209.671875pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.w5{width:23.810667pt;}
.w4{width:296.345333pt;}
.w1{width:1280.000000pt;}
.w3{width:1280.012000pt;}
.w2{width:1280.088000pt;}
.w0{width:1280.125984pt;}
.x0{left:0.000000pt;}
.x3d{left:11.562667pt;}
.x2{left:21.278667pt;}
.x29{left:33.892000pt;}
.x38{left:80.957333pt;}
.x10{left:85.454667pt;}
.x13{left:94.790667pt;}
.x3{left:101.292000pt;}
.x2a{left:102.232000pt;}
.x47{left:110.740000pt;}
.x2b{left:114.765333pt;}
.x2c{left:120.486667pt;}
.x11{left:133.304000pt;}
.x37{left:142.790667pt;}
.x22{left:155.602667pt;}
.x2d{left:156.841333pt;}
.x3e{left:162.180000pt;}
.x12{left:163.313333pt;}
.x2e{left:176.552000pt;}
.x15{left:181.341333pt;}
.x2f{left:182.325333pt;}
.x58{left:184.894667pt;}
.x1c{left:190.941333pt;}
.x3f{left:192.189333pt;}
.x21{left:194.948000pt;}
.x4a{left:196.913333pt;}
.x4b{left:214.866667pt;}
.x33{left:241.776000pt;}
.x30{left:250.561333pt;}
.x31{left:257.582667pt;}
.x1f{left:265.172000pt;}
.x1{left:269.518667pt;}
.x17{left:270.614667pt;}
.x32{left:286.706667pt;}
.x25{left:298.318667pt;}
.x14{left:301.304000pt;}
.x4c{left:307.842667pt;}
.x4d{left:323.414667pt;}
.x50{left:326.740000pt;}
.x18{left:329.764000pt;}
.x35{left:383.584000pt;}
.x36{left:385.965333pt;}
.x1e{left:399.269333pt;}
.x16{left:406.110667pt;}
.x39{left:407.773333pt;}
.x4e{left:415.408000pt;}
.x40{left:421.644000pt;}
.x4f{left:433.360000pt;}
.x23{left:454.640000pt;}
.x28{left:457.850667pt;}
.x5a{left:462.425333pt;}
.x41{left:469.870667pt;}
.x3c{left:487.180000pt;}
.x5b{left:491.905333pt;}
.x42{left:523.200000pt;}
.xe{left:536.125333pt;}
.x19{left:539.225333pt;}
.x43{left:599.886667pt;}
.x24{left:614.740000pt;}
.x51{left:625.738667pt;}
.x52{left:643.692000pt;}
.x57{left:687.269333pt;}
.x1d{left:705.864000pt;}
.x44{left:710.550667pt;}
.x1b{left:719.736000pt;}
.x20{left:723.741333pt;}
.x1a{left:729.184000pt;}
.x53{left:736.516000pt;}
.x45{left:751.597333pt;}
.x56{left:755.414667pt;}
.x3a{left:756.472000pt;}
.x4{left:766.564000pt;}
.x3b{left:773.632000pt;}
.x59{left:777.750667pt;}
.x26{left:780.321333pt;}
.x27{left:786.217333pt;}
.xf{left:808.062667pt;}
.x46{left:815.622667pt;}
.x34{left:823.785333pt;}
.x54{left:844.233333pt;}
.x55{left:862.185333pt;}
.x48{left:900.964000pt;}
.x5d{left:905.121333pt;}
.xa{left:921.222667pt;}
.xb{left:922.582667pt;}
.x9{left:936.756000pt;}
.x6{left:940.346667pt;}
.x5{left:941.669333pt;}
.x5c{left:945.562667pt;}
.x7{left:947.905333pt;}
.x8{left:950.136000pt;}
.x49{left:1063.257333pt;}
.xc{left:1101.241333pt;}
.xd{left:1132.346667pt;}
}




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