
    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_ee23525b41f3f50ff3f66b8f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_39be30b029d32b19955c3beb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b7658a4fca66f7686f73fce7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_e772842e7bb2b48b0aa6647f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222168;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_375b0b64fd70c10bb37758f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.148926;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_ccf31e38ac31396115f7662d.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_d0ae6cd005ee85d452a59c32.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148926;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_7e2997eb58a9b41358c995e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a60de3598492f80887e622f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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);}
.v1{vertical-align:-96.480000px;}
.v6{vertical-align:-28.800000px;}
.v5{vertical-align:-13.680000px;}
.v8{vertical-align:-12.240000px;}
.va{vertical-align:-10.080000px;}
.v4{vertical-align:-8.640000px;}
.vb{vertical-align:-6.480000px;}
.ve{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.160000px;}
.vc{vertical-align:6.480000px;}
.v3{vertical-align:8.640000px;}
.v9{vertical-align:10.080000px;}
.v2{vertical-align:12.240000px;}
.v7{vertical-align:15.120000px;}
.vf{vertical-align:17.280000px;}
.ls21{letter-spacing:-0.684000px;}
.ls2c{letter-spacing:-0.390000px;}
.ls15{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.341400px;}
.ls1f{letter-spacing:-0.228000px;}
.ls16{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.106800px;}
.ls22{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls18{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.022320px;}
.ls9{letter-spacing:0.028080px;}
.ls1b{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.090720px;}
.ls20{letter-spacing:0.147000px;}
.ls13{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.330000px;}
.ls1a{letter-spacing:0.341280px;}
.ls17{letter-spacing:0.341400px;}
.lsa{letter-spacing:0.350640px;}
.ls5{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.378600px;}
.ls7{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.613440px;}
.ls23{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.440000px;}
.lsf{letter-spacing:2.700000px;}
.ls10{letter-spacing:3.420000px;}
.ls2a{letter-spacing:3.508560px;}
.ls29{letter-spacing:4.016880px;}
.ls24{letter-spacing:5.130000px;}
.ls25{letter-spacing:5.689440px;}
.ls6{letter-spacing:7.740000px;}
.ls26{letter-spacing:7.849440px;}
.lsd{letter-spacing:9.180000px;}
.lse{letter-spacing:9.360000px;}
.ls27{letter-spacing:10.009440px;}
.ls8{letter-spacing:11.340000px;}
.lsc{letter-spacing:19.260000px;}
.lsb{letter-spacing:21.420000px;}
.ls11{letter-spacing:37.260000px;}
.ls2d{letter-spacing:39.420000px;}
.ls2b{letter-spacing:175.702320px;}
.ls0{letter-spacing:2154.336000px;}
.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;}
}
.ws9{word-spacing:-21.438600px;}
.ws2{word-spacing:-21.420000px;}
.wse{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.041280px;}
.ws8{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.700000px;}
.ws7{word-spacing:-16.613280px;}
.ws6{word-spacing:-16.506480px;}
.wsa{word-spacing:-0.414240px;}
.wsc{word-spacing:-0.231240px;}
.ws3{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.143760px;}
.wsf{word-spacing:0.305760px;}
._6{margin-left:-2397.226800px;}
._9{margin-left:-2302.110480px;}
._e{margin-left:-2297.207280px;}
._f{margin-left:-1854.002640px;}
._b{margin-left:-1696.630560px;}
._5{margin-left:-1574.361120px;}
._41{margin-left:-259.724640px;}
._4c{margin-left:-244.364640px;}
._3f{margin-left:-240.190080px;}
._54{margin-left:-232.716000px;}
._49{margin-left:-214.020000px;}
._51{margin-left:-208.157760px;}
._4f{margin-left:-176.218560px;}
._38{margin-left:-166.025520px;}
._44{margin-left:-164.602320px;}
._50{margin-left:-162.180000px;}
._48{margin-left:-144.712800px;}
._3a{margin-left:-140.167920px;}
._52{margin-left:-133.355760px;}
._3e{margin-left:-132.247920px;}
._42{margin-left:-125.481840px;}
._4b{margin-left:-122.705760px;}
._3c{margin-left:-112.369920px;}
._3d{margin-left:-106.038720px;}
._43{margin-left:-102.061200px;}
._53{margin-left:-99.485760px;}
._4a{margin-left:-98.375040px;}
._4d{margin-left:-97.161360px;}
._40{margin-left:-92.398800px;}
._3b{margin-left:-88.483200px;}
._39{margin-left:-82.980000px;}
._c{margin-left:-59.940000px;}
._1{margin-left:-21.818160px;}
._10{margin-left:-15.300000px;}
._57{margin-left:-11.497200px;}
._58{margin-left:-9.920640px;}
._56{margin-left:-8.105760px;}
._31{margin-left:-6.493200px;}
._1c{margin-left:-5.307120px;}
._1d{margin-left:-3.959280px;}
._a{margin-left:-2.632800px;}
._0{margin-left:-1.179360px;}
._2{width:1.007040px;}
._3{width:2.227440px;}
._7{width:4.127760px;}
._8{width:5.138640px;}
._19{width:7.076160px;}
._1a{width:8.083200px;}
._1b{width:9.274080px;}
._2d{width:10.590000px;}
._22{width:11.776080px;}
._4{width:12.888720px;}
._23{width:14.199120px;}
._24{width:16.089840px;}
._25{width:17.281920px;}
._28{width:18.618240px;}
._2a{width:19.627920px;}
._20{width:22.492080px;}
._16{width:23.755680px;}
._17{width:24.938880px;}
._32{width:26.026320px;}
._29{width:27.442800px;}
._27{width:29.399760px;}
._26{width:31.000320px;}
._21{width:34.285680px;}
._33{width:35.369280px;}
._2f{width:36.469200px;}
._30{width:37.982160px;}
._35{width:39.003120px;}
._36{width:40.962960px;}
._5a{width:42.288480px;}
._1e{width:45.212160px;}
._1f{width:46.212960px;}
._34{width:53.155440px;}
._46{width:55.261440px;}
._2b{width:56.777760px;}
._2c{width:57.807120px;}
._18{width:67.307760px;}
._2e{width:69.076800px;}
._11{width:93.590640px;}
._12{width:94.770000px;}
._13{width:96.040560px;}
._15{width:108.248400px;}
._14{width:109.596240px;}
._59{width:161.576400px;}
._55{width:900.822720px;}
._4e{width:922.109280px;}
._47{width:942.067920px;}
._37{width:1624.747920px;}
._45{width:1627.357440px;}
._d{width:1662.600000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y5a{bottom:88.416000px;}
.y62{bottom:92.916000px;}
.y2b{bottom:98.856000px;}
.y59{bottom:105.696000px;}
.y58{bottom:110.196000px;}
.y68{bottom:110.736000px;}
.y57{bottom:122.976000px;}
.y2a{bottom:123.156000px;}
.y65{bottom:124.236000px;}
.y56{bottom:127.476000px;}
.y67{bottom:134.856000px;}
.y61{bottom:140.256000px;}
.y55{bottom:141.516000px;}
.y60{bottom:144.756000px;}
.y29{bottom:147.276000px;}
.y5f{bottom:158.790000px;}
.y66{bottom:159.150000px;}
.y28{bottom:171.390000px;}
.y5e{bottom:183.270000px;}
.y27{bottom:195.510000px;}
.y54{bottom:207.390000px;}
.y26{bottom:219.630000px;}
.y53{bottom:231.510000px;}
.y25{bottom:243.750000px;}
.y52{bottom:255.630000px;}
.y24{bottom:267.870000px;}
.y51{bottom:279.795000px;}
.y23{bottom:292.215000px;}
.y50{bottom:303.915000px;}
.y22{bottom:316.335000px;}
.y4f{bottom:328.215000px;}
.y21{bottom:340.455000px;}
.y4e{bottom:352.335000px;}
.y20{bottom:364.575000px;}
.y4d{bottom:376.455000px;}
.y5d{bottom:384.015000px;}
.y1f{bottom:388.695000px;}
.y4c{bottom:400.575000px;}
.y1e{bottom:412.815000px;}
.y4b{bottom:424.695000px;}
.y1d{bottom:437.115000px;}
.y49{bottom:448.815000px;}
.y4a{bottom:456.375000px;}
.y1c{bottom:461.235000px;}
.y48{bottom:473.115000px;}
.y47{bottom:497.235000px;}
.y46{bottom:521.355000px;}
.y1b{bottom:533.595000px;}
.y45{bottom:545.475000px;}
.y1a{bottom:557.745000px;}
.y44{bottom:569.625000px;}
.y19{bottom:582.045000px;}
.y43{bottom:593.745000px;}
.y42{bottom:618.045000px;}
.y18{bottom:630.285000px;}
.y41{bottom:642.165000px;}
.y17{bottom:654.405000px;}
.y3f{bottom:666.285000px;}
.y40{bottom:673.845000px;}
.y16{bottom:678.525000px;}
.y3e{bottom:690.405000px;}
.y15{bottom:702.645000px;}
.y3d{bottom:714.525000px;}
.y14{bottom:726.765000px;}
.y3c{bottom:738.645000px;}
.y13{bottom:751.065000px;}
.y3b{bottom:762.765000px;}
.y12{bottom:775.185000px;}
.y3a{bottom:787.065000px;}
.y11{bottom:799.305000px;}
.y39{bottom:811.185000px;}
.y10{bottom:823.425000px;}
.y38{bottom:835.305000px;}
.yf{bottom:847.590000px;}
.y37{bottom:859.470000px;}
.ye{bottom:871.710000px;}
.y36{bottom:883.590000px;}
.yd{bottom:896.010000px;}
.y35{bottom:907.710000px;}
.yc{bottom:920.130000px;}
.y34{bottom:932.010000px;}
.yb{bottom:944.250000px;}
.y33{bottom:956.130000px;}
.y5c{bottom:963.690000px;}
.ya{bottom:968.370000px;}
.y32{bottom:980.250000px;}
.y9{bottom:992.490000px;}
.y31{bottom:1004.370000px;}
.y64{bottom:1007.790000px;}
.y8{bottom:1016.610000px;}
.y30{bottom:1028.490000px;}
.y7{bottom:1040.730000px;}
.y2f{bottom:1052.610000px;}
.y6{bottom:1065.030000px;}
.y2e{bottom:1076.730000px;}
.y2d{bottom:1101.030000px;}
.y5{bottom:1107.150000px;}
.y63{bottom:1108.590000px;}
.y2c{bottom:1125.180000px;}
.y5b{bottom:1132.740000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h8{height:40.550625px;}
.h7{height:52.998047px;}
.h9{height:62.327813px;}
.h6{height:78.604805px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h4{height:85.103789px;}
.ha{height:89.404805px;}
.h5{height:90.844805px;}
.hb{height:95.884805px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:80.279987px;}
.x1{left:85.319987px;}
.x14{left:96.119987px;}
.x4{left:107.315987px;}
.x5{left:122.795987px;}
.x3{left:137.735987px;}
.xd{left:139.355987px;}
.x1b{left:169.949973px;}
.x1c{left:183.629987px;}
.x17{left:191.009973px;}
.xa{left:196.409987px;}
.x18{left:204.689987px;}
.x1e{left:208.469987px;}
.xb{left:213.149987px;}
.x19{left:218.909973px;}
.x1a{left:232.589987px;}
.xc{left:264.809987px;}
.x1f{left:272.549987px;}
.x7{left:302.294987px;}
.x20{left:313.094987px;}
.x9{left:367.994987px;}
.x1d{left:378.974987px;}
.x6{left:387.974987px;}
.x2{left:430.814987px;}
.x8{left:446.474987px;}
.x15{left:518.684973px;}
.x16{left:532.364987px;}
.x12{left:543.704973px;}
.x13{left:557.384987px;}
.xf{left:624.524987px;}
.x10{left:786.029973px;}
.x11{left:799.709987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v6{vertical-align:-25.600000pt;}
.v5{vertical-align:-12.160000pt;}
.v8{vertical-align:-10.880000pt;}
.va{vertical-align:-8.960000pt;}
.v4{vertical-align:-7.680000pt;}
.vb{vertical-align:-5.760000pt;}
.ve{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.920000pt;}
.vc{vertical-align:5.760000pt;}
.v3{vertical-align:7.680000pt;}
.v9{vertical-align:8.960000pt;}
.v2{vertical-align:10.880000pt;}
.v7{vertical-align:13.440000pt;}
.vf{vertical-align:15.360000pt;}
.ls21{letter-spacing:-0.608000pt;}
.ls2c{letter-spacing:-0.346667pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.303467pt;}
.ls1f{letter-spacing:-0.202667pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls22{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls18{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.019840pt;}
.ls9{letter-spacing:0.024960pt;}
.ls1b{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.080640pt;}
.ls20{letter-spacing:0.130667pt;}
.ls13{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.293333pt;}
.ls1a{letter-spacing:0.303360pt;}
.ls17{letter-spacing:0.303467pt;}
.lsa{letter-spacing:0.311680pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.336533pt;}
.ls7{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.545280pt;}
.ls23{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.280000pt;}
.lsf{letter-spacing:2.400000pt;}
.ls10{letter-spacing:3.040000pt;}
.ls2a{letter-spacing:3.118720pt;}
.ls29{letter-spacing:3.570560pt;}
.ls24{letter-spacing:4.560000pt;}
.ls25{letter-spacing:5.057280pt;}
.ls6{letter-spacing:6.880000pt;}
.ls26{letter-spacing:6.977280pt;}
.lsd{letter-spacing:8.160000pt;}
.lse{letter-spacing:8.320000pt;}
.ls27{letter-spacing:8.897280pt;}
.ls8{letter-spacing:10.080000pt;}
.lsc{letter-spacing:17.120000pt;}
.lsb{letter-spacing:19.040000pt;}
.ls11{letter-spacing:33.120000pt;}
.ls2d{letter-spacing:35.040000pt;}
.ls2b{letter-spacing:156.179840pt;}
.ls0{letter-spacing:1914.965333pt;}
.ws9{word-spacing:-19.056533pt;}
.ws2{word-spacing:-19.040000pt;}
.wse{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.703360pt;}
.ws8{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws7{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.672427pt;}
.wsa{word-spacing:-0.368213pt;}
.wsc{word-spacing:-0.205547pt;}
.ws3{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.127787pt;}
.wsf{word-spacing:0.271787pt;}
._6{margin-left:-2130.868267pt;}
._9{margin-left:-2046.320427pt;}
._e{margin-left:-2041.962027pt;}
._f{margin-left:-1648.002347pt;}
._b{margin-left:-1508.116053pt;}
._5{margin-left:-1399.432107pt;}
._41{margin-left:-230.866347pt;}
._4c{margin-left:-217.213013pt;}
._3f{margin-left:-213.502293pt;}
._54{margin-left:-206.858667pt;}
._49{margin-left:-190.240000pt;}
._51{margin-left:-185.029120pt;}
._4f{margin-left:-156.638720pt;}
._38{margin-left:-147.578240pt;}
._44{margin-left:-146.313173pt;}
._50{margin-left:-144.160000pt;}
._48{margin-left:-128.633600pt;}
._3a{margin-left:-124.593707pt;}
._52{margin-left:-118.538453pt;}
._3e{margin-left:-117.553707pt;}
._42{margin-left:-111.539413pt;}
._4b{margin-left:-109.071787pt;}
._3c{margin-left:-99.884373pt;}
._3d{margin-left:-94.256640pt;}
._43{margin-left:-90.721067pt;}
._53{margin-left:-88.431787pt;}
._4a{margin-left:-87.444480pt;}
._4d{margin-left:-86.365653pt;}
._40{margin-left:-82.132267pt;}
._3b{margin-left:-78.651733pt;}
._39{margin-left:-73.760000pt;}
._c{margin-left:-53.280000pt;}
._1{margin-left:-19.393920pt;}
._10{margin-left:-13.600000pt;}
._57{margin-left:-10.219733pt;}
._58{margin-left:-8.818347pt;}
._56{margin-left:-7.205120pt;}
._31{margin-left:-5.771733pt;}
._1c{margin-left:-4.717440pt;}
._1d{margin-left:-3.519360pt;}
._a{margin-left:-2.340267pt;}
._0{margin-left:-1.048320pt;}
._2{width:0.895147pt;}
._3{width:1.979947pt;}
._7{width:3.669120pt;}
._8{width:4.567680pt;}
._19{width:6.289920pt;}
._1a{width:7.185067pt;}
._1b{width:8.243627pt;}
._2d{width:9.413333pt;}
._22{width:10.467627pt;}
._4{width:11.456640pt;}
._23{width:12.621440pt;}
._24{width:14.302080pt;}
._25{width:15.361707pt;}
._28{width:16.549547pt;}
._2a{width:17.447040pt;}
._20{width:19.992960pt;}
._16{width:21.116160pt;}
._17{width:22.167893pt;}
._32{width:23.134507pt;}
._29{width:24.393600pt;}
._27{width:26.133120pt;}
._26{width:27.555840pt;}
._21{width:30.476160pt;}
._33{width:31.439360pt;}
._2f{width:32.417067pt;}
._30{width:33.761920pt;}
._35{width:34.669440pt;}
._36{width:36.411520pt;}
._5a{width:37.589760pt;}
._1e{width:40.188587pt;}
._1f{width:41.078187pt;}
._34{width:47.249280pt;}
._46{width:49.121280pt;}
._2b{width:50.469120pt;}
._2c{width:51.384107pt;}
._18{width:59.829120pt;}
._2e{width:61.401600pt;}
._11{width:83.191680pt;}
._12{width:84.240000pt;}
._13{width:85.369387pt;}
._15{width:96.220800pt;}
._14{width:97.418880pt;}
._59{width:143.623467pt;}
._55{width:800.731307pt;}
._4e{width:819.652693pt;}
._47{width:837.393707pt;}
._37{width:1444.220373pt;}
._45{width:1446.539947pt;}
._d{width:1477.866667pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y5a{bottom:78.592000pt;}
.y62{bottom:82.592000pt;}
.y2b{bottom:87.872000pt;}
.y59{bottom:93.952000pt;}
.y58{bottom:97.952000pt;}
.y68{bottom:98.432000pt;}
.y57{bottom:109.312000pt;}
.y2a{bottom:109.472000pt;}
.y65{bottom:110.432000pt;}
.y56{bottom:113.312000pt;}
.y67{bottom:119.872000pt;}
.y61{bottom:124.672000pt;}
.y55{bottom:125.792000pt;}
.y60{bottom:128.672000pt;}
.y29{bottom:130.912000pt;}
.y5f{bottom:141.146667pt;}
.y66{bottom:141.466667pt;}
.y28{bottom:152.346667pt;}
.y5e{bottom:162.906667pt;}
.y27{bottom:173.786667pt;}
.y54{bottom:184.346667pt;}
.y26{bottom:195.226667pt;}
.y53{bottom:205.786667pt;}
.y25{bottom:216.666667pt;}
.y52{bottom:227.226667pt;}
.y24{bottom:238.106667pt;}
.y51{bottom:248.706667pt;}
.y23{bottom:259.746667pt;}
.y50{bottom:270.146667pt;}
.y22{bottom:281.186667pt;}
.y4f{bottom:291.746667pt;}
.y21{bottom:302.626667pt;}
.y4e{bottom:313.186667pt;}
.y20{bottom:324.066667pt;}
.y4d{bottom:334.626667pt;}
.y5d{bottom:341.346667pt;}
.y1f{bottom:345.506667pt;}
.y4c{bottom:356.066667pt;}
.y1e{bottom:366.946667pt;}
.y4b{bottom:377.506667pt;}
.y1d{bottom:388.546667pt;}
.y49{bottom:398.946667pt;}
.y4a{bottom:405.666667pt;}
.y1c{bottom:409.986667pt;}
.y48{bottom:420.546667pt;}
.y47{bottom:441.986667pt;}
.y46{bottom:463.426667pt;}
.y1b{bottom:474.306667pt;}
.y45{bottom:484.866667pt;}
.y1a{bottom:495.773333pt;}
.y44{bottom:506.333333pt;}
.y19{bottom:517.373333pt;}
.y43{bottom:527.773333pt;}
.y42{bottom:549.373333pt;}
.y18{bottom:560.253333pt;}
.y41{bottom:570.813333pt;}
.y17{bottom:581.693333pt;}
.y3f{bottom:592.253333pt;}
.y40{bottom:598.973333pt;}
.y16{bottom:603.133333pt;}
.y3e{bottom:613.693333pt;}
.y15{bottom:624.573333pt;}
.y3d{bottom:635.133333pt;}
.y14{bottom:646.013333pt;}
.y3c{bottom:656.573333pt;}
.y13{bottom:667.613333pt;}
.y3b{bottom:678.013333pt;}
.y12{bottom:689.053333pt;}
.y3a{bottom:699.613333pt;}
.y11{bottom:710.493333pt;}
.y39{bottom:721.053333pt;}
.y10{bottom:731.933333pt;}
.y38{bottom:742.493333pt;}
.yf{bottom:753.413333pt;}
.y37{bottom:763.973333pt;}
.ye{bottom:774.853333pt;}
.y36{bottom:785.413333pt;}
.yd{bottom:796.453333pt;}
.y35{bottom:806.853333pt;}
.yc{bottom:817.893333pt;}
.y34{bottom:828.453333pt;}
.yb{bottom:839.333333pt;}
.y33{bottom:849.893333pt;}
.y5c{bottom:856.613333pt;}
.ya{bottom:860.773333pt;}
.y32{bottom:871.333333pt;}
.y9{bottom:882.213333pt;}
.y31{bottom:892.773333pt;}
.y64{bottom:895.813333pt;}
.y8{bottom:903.653333pt;}
.y30{bottom:914.213333pt;}
.y7{bottom:925.093333pt;}
.y2f{bottom:935.653333pt;}
.y6{bottom:946.693333pt;}
.y2e{bottom:957.093333pt;}
.y2d{bottom:978.693333pt;}
.y5{bottom:984.133333pt;}
.y63{bottom:985.413333pt;}
.y2c{bottom:1000.160000pt;}
.y5b{bottom:1006.880000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h8{height:36.045000pt;}
.h7{height:47.109375pt;}
.h9{height:55.402500pt;}
.h6{height:69.870937pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h4{height:75.647813pt;}
.ha{height:79.470938pt;}
.h5{height:80.750937pt;}
.hb{height:85.230938pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:71.359988pt;}
.x1{left:75.839988pt;}
.x14{left:85.439988pt;}
.x4{left:95.391988pt;}
.x5{left:109.151988pt;}
.x3{left:122.431988pt;}
.xd{left:123.871988pt;}
.x1b{left:151.066643pt;}
.x1c{left:163.226655pt;}
.x17{left:169.786643pt;}
.xa{left:174.586655pt;}
.x18{left:181.946655pt;}
.x1e{left:185.306655pt;}
.xb{left:189.466655pt;}
.x19{left:194.586643pt;}
.x1a{left:206.746655pt;}
.xc{left:235.386655pt;}
.x1f{left:242.266655pt;}
.x7{left:268.706655pt;}
.x20{left:278.306655pt;}
.x9{left:327.106655pt;}
.x1d{left:336.866655pt;}
.x6{left:344.866655pt;}
.x2{left:382.946655pt;}
.x8{left:396.866655pt;}
.x15{left:461.053310pt;}
.x16{left:473.213322pt;}
.x12{left:483.293310pt;}
.x13{left:495.453322pt;}
.xf{left:555.133322pt;}
.x10{left:698.693310pt;}
.x11{left:710.853322pt;}
}




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