
    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_61e26bcd1771edb85db157b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_518c0a47009aac2166b69f0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_e2bf6f595c3fa5cca38ae77b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_897def7c0a5ade91286fcf07.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_74eeb332dedc3175a68d7ba9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_319b818ff479f982f75a2ed2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.072266;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_632501b46a823ca16aafefe0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_6a0cc6e911ea7e9bfbc995d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_69abeb7e23350b66e02dd6f8.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-2.448000px;}
.ls15{letter-spacing:-1.728000px;}
.ls2f{letter-spacing:-1.584000px;}
.ls17{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls3f{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.936000px;}
.ls24{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.224000px;}
.ls37{letter-spacing:1.440000px;}
.lsd{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.880000px;}
.lsa{letter-spacing:3.600000px;}
.ls21{letter-spacing:6.480000px;}
.ls27{letter-spacing:7.200000px;}
.ls38{letter-spacing:7.920000px;}
.ls20{letter-spacing:8.640000px;}
.ls22{letter-spacing:9.360000px;}
.ls47{letter-spacing:10.224000px;}
.ls40{letter-spacing:10.800000px;}
.ls46{letter-spacing:12.240000px;}
.ls2c{letter-spacing:12.960000px;}
.ls2d{letter-spacing:14.376000px;}
.ls2a{letter-spacing:14.400000px;}
.ls12{letter-spacing:15.120000px;}
.ls28{letter-spacing:16.560000px;}
.ls35{letter-spacing:17.280000px;}
.ls43{letter-spacing:18.000000px;}
.ls29{letter-spacing:18.720000px;}
.ls3a{letter-spacing:19.440000px;}
.ls2e{letter-spacing:19.560000px;}
.ls2b{letter-spacing:20.160000px;}
.ls1d{letter-spacing:20.880000px;}
.ls3{letter-spacing:23.040000px;}
.ls32{letter-spacing:25.920000px;}
.ls1a{letter-spacing:27.360000px;}
.ls13{letter-spacing:28.080000px;}
.ls1e{letter-spacing:30.240000px;}
.lsb{letter-spacing:30.960000px;}
.ls44{letter-spacing:31.680000px;}
.ls1c{letter-spacing:33.840000px;}
.ls11{letter-spacing:36.720000px;}
.ls42{letter-spacing:38.160000px;}
.ls3c{letter-spacing:39.060000px;}
.ls3b{letter-spacing:41.040000px;}
.ls19{letter-spacing:41.760000px;}
.ls33{letter-spacing:47.520000px;}
.ls45{letter-spacing:48.240000px;}
.ls34{letter-spacing:50.400000px;}
.lsf{letter-spacing:55.440000px;}
.lse{letter-spacing:56.160000px;}
.ls1b{letter-spacing:56.880000px;}
.lsc{letter-spacing:64.080000px;}
.ls41{letter-spacing:69.840000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.940000px;}
.wsd{word-spacing:-19.080000px;}
.ws13{word-spacing:-18.936000px;}
.wsa{word-spacing:-18.432000px;}
.wsf{word-spacing:-18.360000px;}
.ws10{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.640000px;}
.ws12{word-spacing:-17.496000px;}
.wsb{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws11{word-spacing:-16.416000px;}
.ws9{word-spacing:-16.272000px;}
.ws14{word-spacing:-16.020000px;}
.wse{word-spacing:-15.552000px;}
.ws1a{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.580000px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-8.640000px;}
._6{margin-left:-7.436160px;}
._2{margin-left:-6.048000px;}
._3{margin-left:-4.536000px;}
._4{margin-left:-2.736000px;}
._1{margin-left:-1.059840px;}
._0{width:1.347840px;}
._5{width:2.644320px;}
._17{width:3.659040px;}
._7{width:4.680000px;}
._e{width:6.552000px;}
._1a{width:7.644000px;}
._f{width:9.144000px;}
._18{width:10.707840px;}
._b{width:11.952000px;}
._c{width:12.972000px;}
._27{width:14.616000px;}
._2a{width:15.660000px;}
._d{width:16.675680px;}
._8{width:19.440000px;}
._a{width:21.332160px;}
._15{width:22.752000px;}
._24{width:24.048000px;}
._1b{width:25.287840px;}
._16{width:26.388000px;}
._14{width:27.720000px;}
._10{width:29.568000px;}
._11{width:30.600000px;}
._2f{width:31.659840px;}
._13{width:33.387840px;}
._12{width:34.560000px;}
._23{width:35.948640px;}
._22{width:37.131840px;}
._2c{width:38.364480px;}
._33{width:40.311360px;}
._2b{width:41.616000px;}
._21{width:42.624000px;}
._30{width:44.300160px;}
._25{width:45.783360px;}
._1f{width:47.088000px;}
._20{width:48.415680px;}
._35{width:50.019840px;}
._32{width:51.416160px;}
._31{width:52.776000px;}
._1e{width:54.828000px;}
._1d{width:55.995840px;}
._2d{width:57.040320px;}
._36{width:58.047360px;}
._26{width:60.099840px;}
._2e{width:61.353120px;}
._1c{width:62.556000px;}
._19{width:63.915840px;}
._34{width:65.108160px;}
._3b{width:66.363840px;}
._38{width:67.403520px;}
._37{width:68.616000px;}
._3c{width:70.056000px;}
._28{width:71.424000px;}
._29{width:72.472320px;}
._46{width:73.595520px;}
._3d{width:76.824000px;}
._40{width:86.780160px;}
._41{width:87.860160px;}
._3f{width:89.772480px;}
._3e{width:90.843840px;}
._39{width:96.768000px;}
._3a{width:97.828320px;}
._43{width:128.463840px;}
._44{width:129.712320px;}
._42{width:130.752000px;}
._45{width:221.019840px;}
.fc8{color:rgb(107,159,37);}
.fc7{color:rgb(70,120,134);}
.fc6{color:transparent;}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.y4{bottom:27.900000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ya{bottom:91.116000px;}
.y44{bottom:128.736000px;}
.y60{bottom:129.276000px;}
.y43{bottom:133.956000px;}
.y38{bottom:139.896000px;}
.y70{bottom:145.836000px;}
.y42{bottom:146.736000px;}
.y6f{bottom:151.050000px;}
.y5f{bottom:153.210000px;}
.y6e{bottom:163.110000px;}
.y37{bottom:163.650000px;}
.y5e{bottom:176.970000px;}
.y6d{bottom:180.390000px;}
.y36{bottom:187.410000px;}
.y6c{bottom:197.670000px;}
.y5d{bottom:200.730000px;}
.y6b{bottom:202.890000px;}
.y35{bottom:211.350000px;}
.y6a{bottom:214.950000px;}
.y5c{bottom:224.490000px;}
.y69{bottom:232.230000px;}
.y34{bottom:235.110000px;}
.y5b{bottom:248.430000px;}
.y68{bottom:249.330000px;}
.y67{bottom:254.550000px;}
.y33{bottom:258.870000px;}
.y66{bottom:267.330000px;}
.y5a{bottom:272.190000px;}
.y32{bottom:282.675000px;}
.y59{bottom:295.995000px;}
.y31{bottom:306.435000px;}
.y58{bottom:319.755000px;}
.y30{bottom:330.375000px;}
.y57{bottom:343.515000px;}
.y2f{bottom:354.135000px;}
.y56{bottom:367.455000px;}
.y2e{bottom:377.895000px;}
.y55{bottom:391.215000px;}
.y2d{bottom:401.655000px;}
.y73{bottom:401.835000px;}
.y54{bottom:414.975000px;}
.y2c{bottom:425.595000px;}
.y53{bottom:438.735000px;}
.y2b{bottom:449.355000px;}
.y52{bottom:462.675000px;}
.y48{bottom:463.395000px;}
.y40{bottom:472.755000px;}
.y2a{bottom:473.115000px;}
.y51{bottom:486.435000px;}
.y47{bottom:487.155000px;}
.y29{bottom:496.875000px;}
.y50{bottom:510.195000px;}
.y46{bottom:510.915000px;}
.y28{bottom:520.815000px;}
.y41{bottom:527.655000px;}
.y4f{bottom:533.955000px;}
.y45{bottom:534.675000px;}
.y27{bottom:544.575000px;}
.y65{bottom:551.415000px;}
.y4e{bottom:557.895000px;}
.y26{bottom:568.365000px;}
.y4d{bottom:581.325000px;}
.y25{bottom:592.125000px;}
.y64{bottom:598.965000px;}
.y4c{bottom:605.445000px;}
.y24{bottom:616.065000px;}
.y4b{bottom:629.205000px;}
.y23{bottom:639.825000px;}
.y63{bottom:646.665000px;}
.y4a{bottom:653.145000px;}
.y3f{bottom:663.225000px;}
.y22{bottom:663.585000px;}
.y49{bottom:676.905000px;}
.y21{bottom:686.985000px;}
.y3e{bottom:687.345000px;}
.y62{bottom:710.925000px;}
.y20{bottom:711.285000px;}
.y1f{bottom:735.045000px;}
.y1e{bottom:758.805000px;}
.y1d{bottom:782.205000px;}
.y3d{bottom:782.565000px;}
.y1c{bottom:806.325000px;}
.y72{bottom:829.905000px;}
.y1b{bottom:830.265000px;}
.y1a{bottom:854.070000px;}
.y19{bottom:877.830000px;}
.y18{bottom:901.590000px;}
.y17{bottom:925.170000px;}
.y3c{bottom:925.530000px;}
.y71{bottom:948.930000px;}
.y16{bottom:949.290000px;}
.y61{bottom:956.130000px;}
.y15{bottom:973.050000px;}
.y14{bottom:996.810000px;}
.y13{bottom:1020.750000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y3b{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y3a{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y39{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h8{height:33.120000px;}
.he{height:38.158594px;}
.hd{height:47.344922px;}
.hc{height:50.484375px;}
.hb{height:54.773438px;}
.hf{height:58.651172px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h10{height:74.004654px;}
.h4{height:82.635820px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w6{width:50.400000px;}
.w4{width:61.590000px;}
.wa{width:92.340000px;}
.w2{width:125.856000px;}
.w3{width:705.525000px;}
.wb{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x7{left:14.580000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3{left:30.239973px;}
.x5{left:71.994000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x27{left:132.515987px;}
.x30{left:159.689987px;}
.x23{left:180.749987px;}
.x12{left:191.369987px;}
.x15{left:221.429987px;}
.x1b{left:222.689987px;}
.x24{left:238.709973px;}
.x25{left:247.169987px;}
.x16{left:280.829987px;}
.x20{left:291.809987px;}
.x17{left:299.234987px;}
.x1c{left:301.214987px;}
.x1d{left:308.414987px;}
.x19{left:312.374987px;}
.x22{left:333.074987px;}
.x26{left:343.694987px;}
.x13{left:346.394987px;}
.x21{left:350.174987px;}
.x1e{left:351.614987px;}
.x14{left:355.394987px;}
.x1f{left:359.714987px;}
.x1a{left:360.794987px;}
.x2e{left:365.474973px;}
.x2f{left:378.614987px;}
.x18{left:457.274987px;}
.x2a{left:573.044973px;}
.x2b{left:586.184987px;}
.x28{left:601.664973px;}
.x29{left:613.544987px;}
.xb{left:619.305000px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.xf{left:721.590000px;}
.x10{left:738.870000px;}
.x2c{left:750.209973px;}
.x2d{left:756.329987px;}
.x8{left:831.390000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-2.176000pt;}
.ls15{letter-spacing:-1.536000pt;}
.ls2f{letter-spacing:-1.408000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3f{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.832000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.088000pt;}
.ls37{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls10{letter-spacing:2.560000pt;}
.lsa{letter-spacing:3.200000pt;}
.ls21{letter-spacing:5.760000pt;}
.ls27{letter-spacing:6.400000pt;}
.ls38{letter-spacing:7.040000pt;}
.ls20{letter-spacing:7.680000pt;}
.ls22{letter-spacing:8.320000pt;}
.ls47{letter-spacing:9.088000pt;}
.ls40{letter-spacing:9.600000pt;}
.ls46{letter-spacing:10.880000pt;}
.ls2c{letter-spacing:11.520000pt;}
.ls2d{letter-spacing:12.778667pt;}
.ls2a{letter-spacing:12.800000pt;}
.ls12{letter-spacing:13.440000pt;}
.ls28{letter-spacing:14.720000pt;}
.ls35{letter-spacing:15.360000pt;}
.ls43{letter-spacing:16.000000pt;}
.ls29{letter-spacing:16.640000pt;}
.ls3a{letter-spacing:17.280000pt;}
.ls2e{letter-spacing:17.386667pt;}
.ls2b{letter-spacing:17.920000pt;}
.ls1d{letter-spacing:18.560000pt;}
.ls3{letter-spacing:20.480000pt;}
.ls32{letter-spacing:23.040000pt;}
.ls1a{letter-spacing:24.320000pt;}
.ls13{letter-spacing:24.960000pt;}
.ls1e{letter-spacing:26.880000pt;}
.lsb{letter-spacing:27.520000pt;}
.ls44{letter-spacing:28.160000pt;}
.ls1c{letter-spacing:30.080000pt;}
.ls11{letter-spacing:32.640000pt;}
.ls42{letter-spacing:33.920000pt;}
.ls3c{letter-spacing:34.720000pt;}
.ls3b{letter-spacing:36.480000pt;}
.ls19{letter-spacing:37.120000pt;}
.ls33{letter-spacing:42.240000pt;}
.ls45{letter-spacing:42.880000pt;}
.ls34{letter-spacing:44.800000pt;}
.lsf{letter-spacing:49.280000pt;}
.lse{letter-spacing:49.920000pt;}
.ls1b{letter-spacing:50.560000pt;}
.lsc{letter-spacing:56.960000pt;}
.ls41{letter-spacing:62.080000pt;}
.ws1{word-spacing:-21.280000pt;}
.wsd{word-spacing:-16.960000pt;}
.ws13{word-spacing:-16.832000pt;}
.wsa{word-spacing:-16.384000pt;}
.wsf{word-spacing:-16.320000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.680000pt;}
.ws12{word-spacing:-15.552000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws11{word-spacing:-14.592000pt;}
.ws9{word-spacing:-14.464000pt;}
.ws14{word-spacing:-14.240000pt;}
.wse{word-spacing:-13.824000pt;}
.ws1a{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws17{word-spacing:-12.960000pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-7.680000pt;}
._6{margin-left:-6.609920pt;}
._2{margin-left:-5.376000pt;}
._3{margin-left:-4.032000pt;}
._4{margin-left:-2.432000pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.198080pt;}
._5{width:2.350507pt;}
._17{width:3.252480pt;}
._7{width:4.160000pt;}
._e{width:5.824000pt;}
._1a{width:6.794667pt;}
._f{width:8.128000pt;}
._18{width:9.518080pt;}
._b{width:10.624000pt;}
._c{width:11.530667pt;}
._27{width:12.992000pt;}
._2a{width:13.920000pt;}
._d{width:14.822827pt;}
._8{width:17.280000pt;}
._a{width:18.961920pt;}
._15{width:20.224000pt;}
._24{width:21.376000pt;}
._1b{width:22.478080pt;}
._16{width:23.456000pt;}
._14{width:24.640000pt;}
._10{width:26.282667pt;}
._11{width:27.200000pt;}
._2f{width:28.142080pt;}
._13{width:29.678080pt;}
._12{width:30.720000pt;}
._23{width:31.954347pt;}
._22{width:33.006080pt;}
._2c{width:34.101760pt;}
._33{width:35.832320pt;}
._2b{width:36.992000pt;}
._21{width:37.888000pt;}
._30{width:39.377920pt;}
._25{width:40.696320pt;}
._1f{width:41.856000pt;}
._20{width:43.036160pt;}
._35{width:44.462080pt;}
._32{width:45.703253pt;}
._31{width:46.912000pt;}
._1e{width:48.736000pt;}
._1d{width:49.774080pt;}
._2d{width:50.702507pt;}
._36{width:51.597653pt;}
._26{width:53.422080pt;}
._2e{width:54.536107pt;}
._1c{width:55.605333pt;}
._19{width:56.814080pt;}
._34{width:57.873920pt;}
._3b{width:58.990080pt;}
._38{width:59.914240pt;}
._37{width:60.992000pt;}
._3c{width:62.272000pt;}
._28{width:63.488000pt;}
._29{width:64.419840pt;}
._46{width:65.418240pt;}
._3d{width:68.288000pt;}
._40{width:77.137920pt;}
._41{width:78.097920pt;}
._3f{width:79.797760pt;}
._3e{width:80.750080pt;}
._39{width:86.016000pt;}
._3a{width:86.958507pt;}
._43{width:114.190080pt;}
._44{width:115.299840pt;}
._42{width:116.224000pt;}
._45{width:196.462080pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.y4{bottom:24.800000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ya{bottom:80.992000pt;}
.y44{bottom:114.432000pt;}
.y60{bottom:114.912000pt;}
.y43{bottom:119.072000pt;}
.y38{bottom:124.352000pt;}
.y70{bottom:129.632000pt;}
.y42{bottom:130.432000pt;}
.y6f{bottom:134.266667pt;}
.y5f{bottom:136.186667pt;}
.y6e{bottom:144.986667pt;}
.y37{bottom:145.466667pt;}
.y5e{bottom:157.306667pt;}
.y6d{bottom:160.346667pt;}
.y36{bottom:166.586667pt;}
.y6c{bottom:175.706667pt;}
.y5d{bottom:178.426667pt;}
.y6b{bottom:180.346667pt;}
.y35{bottom:187.866667pt;}
.y6a{bottom:191.066667pt;}
.y5c{bottom:199.546667pt;}
.y69{bottom:206.426667pt;}
.y34{bottom:208.986667pt;}
.y5b{bottom:220.826667pt;}
.y68{bottom:221.626667pt;}
.y67{bottom:226.266667pt;}
.y33{bottom:230.106667pt;}
.y66{bottom:237.626667pt;}
.y5a{bottom:241.946667pt;}
.y32{bottom:251.266667pt;}
.y59{bottom:263.106667pt;}
.y31{bottom:272.386667pt;}
.y58{bottom:284.226667pt;}
.y30{bottom:293.666667pt;}
.y57{bottom:305.346667pt;}
.y2f{bottom:314.786667pt;}
.y56{bottom:326.626667pt;}
.y2e{bottom:335.906667pt;}
.y55{bottom:347.746667pt;}
.y2d{bottom:357.026667pt;}
.y73{bottom:357.186667pt;}
.y54{bottom:368.866667pt;}
.y2c{bottom:378.306667pt;}
.y53{bottom:389.986667pt;}
.y2b{bottom:399.426667pt;}
.y52{bottom:411.266667pt;}
.y48{bottom:411.906667pt;}
.y40{bottom:420.226667pt;}
.y2a{bottom:420.546667pt;}
.y51{bottom:432.386667pt;}
.y47{bottom:433.026667pt;}
.y29{bottom:441.666667pt;}
.y50{bottom:453.506667pt;}
.y46{bottom:454.146667pt;}
.y28{bottom:462.946667pt;}
.y41{bottom:469.026667pt;}
.y4f{bottom:474.626667pt;}
.y45{bottom:475.266667pt;}
.y27{bottom:484.066667pt;}
.y65{bottom:490.146667pt;}
.y4e{bottom:495.906667pt;}
.y26{bottom:505.213333pt;}
.y4d{bottom:516.733333pt;}
.y25{bottom:526.333333pt;}
.y64{bottom:532.413333pt;}
.y4c{bottom:538.173333pt;}
.y24{bottom:547.613333pt;}
.y4b{bottom:559.293333pt;}
.y23{bottom:568.733333pt;}
.y63{bottom:574.813333pt;}
.y4a{bottom:580.573333pt;}
.y3f{bottom:589.533333pt;}
.y22{bottom:589.853333pt;}
.y49{bottom:601.693333pt;}
.y21{bottom:610.653333pt;}
.y3e{bottom:610.973333pt;}
.y62{bottom:631.933333pt;}
.y20{bottom:632.253333pt;}
.y1f{bottom:653.373333pt;}
.y1e{bottom:674.493333pt;}
.y1d{bottom:695.293333pt;}
.y3d{bottom:695.613333pt;}
.y1c{bottom:716.733333pt;}
.y72{bottom:737.693333pt;}
.y1b{bottom:738.013333pt;}
.y1a{bottom:759.173333pt;}
.y19{bottom:780.293333pt;}
.y18{bottom:801.413333pt;}
.y17{bottom:822.373333pt;}
.y3c{bottom:822.693333pt;}
.y71{bottom:843.493333pt;}
.y16{bottom:843.813333pt;}
.y61{bottom:849.893333pt;}
.y15{bottom:864.933333pt;}
.y14{bottom:886.053333pt;}
.y13{bottom:907.333333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y3b{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y3a{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y39{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h8{height:29.440000pt;}
.he{height:33.918750pt;}
.hd{height:42.084375pt;}
.hc{height:44.875000pt;}
.hb{height:48.687500pt;}
.hf{height:52.134375pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h10{height:65.781915pt;}
.h4{height:73.454062pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w6{width:44.800000pt;}
.w4{width:54.746667pt;}
.wa{width:82.080000pt;}
.w2{width:111.872000pt;}
.w3{width:627.133333pt;}
.wb{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x7{left:12.960000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3{left:26.879976pt;}
.x5{left:63.994667pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x27{left:117.791988pt;}
.x30{left:141.946655pt;}
.x23{left:160.666655pt;}
.x12{left:170.106655pt;}
.x15{left:196.826655pt;}
.x1b{left:197.946655pt;}
.x24{left:212.186643pt;}
.x25{left:219.706655pt;}
.x16{left:249.626655pt;}
.x20{left:259.386655pt;}
.x17{left:265.986655pt;}
.x1c{left:267.746655pt;}
.x1d{left:274.146655pt;}
.x19{left:277.666655pt;}
.x22{left:296.066655pt;}
.x26{left:305.506655pt;}
.x13{left:307.906655pt;}
.x21{left:311.266655pt;}
.x1e{left:312.546655pt;}
.x14{left:315.906655pt;}
.x1f{left:319.746655pt;}
.x1a{left:320.706655pt;}
.x2e{left:324.866643pt;}
.x2f{left:336.546655pt;}
.x18{left:406.466655pt;}
.x2a{left:509.373310pt;}
.x2b{left:521.053322pt;}
.x28{left:534.813310pt;}
.x29{left:545.373322pt;}
.xb{left:550.493333pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.xf{left:641.413333pt;}
.x10{left:656.773333pt;}
.x2c{left:666.853310pt;}
.x2d{left:672.293322pt;}
.x8{left:739.013333pt;}
}




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