
    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_9114cbdc0af9736fdd504f8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_c73e328e2cfc6b4b696f920a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_99b39df9733df7143693e1f2.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3bbc501e0f7991a3c24fcb1f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4ec935738edde3ec241eeb3b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b05b0a69fc12fdfdaf7206f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_fcf29b861c5f4ec768f6a9d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.835938;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_eab332d757c20e7b6ea5e163.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-63.756000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.789360px;}
.ls9{letter-spacing:-0.706560px;}
.lse{letter-spacing:-0.651360px;}
.lsb{letter-spacing:-0.543168px;}
.ls4{letter-spacing:-0.529920px;}
.ls6{letter-spacing:-0.411792px;}
.ls3{letter-spacing:-0.397440px;}
.ls10{letter-spacing:-0.333960px;}
.lsf{letter-spacing:-0.320712px;}
.lsc{letter-spacing:-0.264960px;}
.ls7{letter-spacing:-0.095496px;}
.ls12{letter-spacing:-0.010598px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000001px;}
.ls15{letter-spacing:0.010598px;}
.ls8{letter-spacing:0.069000px;}
.lsa{letter-spacing:0.121992px;}
.ls13{letter-spacing:0.126960px;}
.ls1{letter-spacing:0.230528px;}
.ls14{letter-spacing:0.296976px;}
.ls16{letter-spacing:0.307464px;}
.ls5{letter-spacing:0.544272px;}
.ls0{letter-spacing:77.644320px;}
.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;}
}
.wsb{word-spacing:-14.678894px;}
.ws9{word-spacing:-14.668406px;}
.wsa{word-spacing:-14.382029px;}
.ws8{word-spacing:-14.360832px;}
.ws6{word-spacing:-14.106470px;}
.ws7{word-spacing:-14.037470px;}
.ws4{word-spacing:-13.841621px;}
.ws5{word-spacing:-13.229453px;}
.ws0{word-spacing:-11.186390px;}
.ws2{word-spacing:-10.546622px;}
.ws1{word-spacing:-10.230326px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-4.570560px;}
._1{margin-left:-2.715840px;}
._5{margin-left:-1.258560px;}
._4{width:1.656000px;}
._10{width:2.836838px;}
._f{width:4.574976px;}
._7{width:5.696640px;}
._6{width:7.087680px;}
._b{width:8.261199px;}
._a{width:9.315385px;}
._3{width:10.929600px;}
._0{width:11.989440px;}
._15{width:13.022784px;}
._e{width:14.848358px;}
._12{width:15.948384px;}
._11{width:16.983053px;}
._16{width:18.046426px;}
._14{width:19.236096px;}
._13{width:20.780813px;}
._d{width:26.021722px;}
._9{width:179.808480px;}
._8{width:180.967680px;}
._c{width:2334.126000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.419200px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:54.979200px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:60.940800px;}
.fs5{font-size:63.590400px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:4.802400px;}
.y1a{bottom:19.540800px;}
.y1f{bottom:43.050000px;}
.y1e{bottom:58.050000px;}
.y1d{bottom:73.050000px;}
.y1c{bottom:83.550000px;}
.y1{bottom:101.025000px;}
.y9b{bottom:108.468000px;}
.y51{bottom:109.296000px;}
.y50{bottom:128.671200px;}
.y9a{bottom:129.499200px;}
.y78{bottom:135.460800px;}
.y4f{bottom:148.046400px;}
.y99{bottom:150.364800px;}
.y77{bottom:156.326400px;}
.y4e{bottom:167.421600px;}
.y98{bottom:182.353200px;}
.y4d{bottom:186.824400px;}
.y76{bottom:188.314800px;}
.y4c{bottom:207.690000px;}
.y75{bottom:209.180400px;}
.y97{bottom:214.314000px;}
.y4b{bottom:228.555600px;}
.y74{bottom:230.046000px;}
.y96{bottom:246.274800px;}
.y4a{bottom:249.421200px;}
.y73{bottom:251.077200px;}
.y95{bottom:267.140400px;}
.y49{bottom:270.452400px;}
.y72{bottom:282.872400px;}
.y48{bottom:291.318000px;}
.y94{bottom:299.101200px;}
.y71{bottom:302.744400px;}
.y47{bottom:312.183600px;}
.y93{bottom:319.966800px;}
.y18{bottom:324.934800px;}
.y46{bottom:332.883600px;}
.y70{bottom:334.042800px;}
.y92{bottom:340.832400px;}
.y45{bottom:351.430800px;}
.y6f{bottom:354.908400px;}
.y17{bottom:360.538800px;}
.y91{bottom:361.863600px;}
.y44{bottom:369.978000px;}
.y6e{bottom:375.774000px;}
.y43{bottom:388.525200px;}
.y90{bottom:393.658800px;}
.y16{bottom:395.025000px;}
.y6d{bottom:396.846600px;}
.y42{bottom:407.113800px;}
.y8f{bottom:414.731400px;}
.y6c{bottom:417.712200px;}
.y41{bottom:425.661000px;}
.y15{bottom:427.979400px;}
.y8e{bottom:435.597000px;}
.y6b{bottom:438.577800px;}
.y40{bottom:444.042600px;}
.y14{bottom:459.774600px;}
.y3f{bottom:462.589800px;}
.y8d{bottom:467.557800px;}
.y6a{bottom:470.373000px;}
.yaf{bottom:473.519400px;}
.y3e{bottom:481.137000px;}
.y8c{bottom:499.518600px;}
.y3d{bottom:499.684200px;}
.y69{bottom:501.505800px;}
.yae{bottom:504.652200px;}
.y13{bottom:514.422600px;}
.y3c{bottom:518.231400px;}
.y8b{bottom:531.479400px;}
.y68{bottom:532.473000px;}
.yad{bottom:535.619400px;}
.y3b{bottom:536.778600px;}
.y12{bottom:550.026600px;}
.y67{bottom:552.345000px;}
.y3a{bottom:555.325800px;}
.y19{bottom:563.449200px;}
.yac{bottom:566.586600px;}
.y39{bottom:573.873000px;}
.y11{bottom:580.165800px;}
.y66{bottom:583.477800px;}
.y8a{bottom:584.305800px;}
.y38{bottom:592.420200px;}
.yab{bottom:597.719400px;}
.y65{bottom:603.349800px;}
.y10{bottom:610.305000px;}
.y37{bottom:610.967400px;}
.y89{bottom:616.294200px;}
.yaa{bottom:618.778200px;}
.y36{bottom:629.376600px;}
.y64{bottom:634.675800px;}
.yf{bottom:645.936600px;}
.y35{bottom:647.923800px;}
.y88{bottom:648.255000px;}
.ya9{bottom:650.739000px;}
.y63{bottom:654.382200px;}
.y34{bottom:666.471000px;}
.y87{bottom:669.120600px;}
.ye{bottom:676.075800px;}
.ya8{bottom:682.534200px;}
.y33{bottom:685.018200px;}
.y62{bottom:685.680600px;}
.y86{bottom:701.081400px;}
.y32{bottom:703.565400px;}
.y61{bottom:705.552600px;}
.yd{bottom:711.845400px;}
.ya7{bottom:714.495000px;}
.y85{bottom:721.947000px;}
.y31{bottom:722.112600px;}
.y60{bottom:725.424600px;}
.ya6{bottom:734.367000px;}
.y30{bottom:740.659800px;}
.yc{bottom:747.449400px;}
.y84{bottom:753.907800px;}
.ya5{bottom:754.239000px;}
.y5f{bottom:756.723000px;}
.y2f{bottom:759.207000px;}
.ya4{bottom:774.276600px;}
.y5e{bottom:776.595000px;}
.y2e{bottom:777.754200px;}
.yb{bottom:783.053400px;}
.y83{bottom:785.868600px;}
.ya3{bottom:794.479800px;}
.y2d{bottom:796.135800px;}
.ya{bottom:804.912600px;}
.y5d{bottom:807.727800px;}
.y2c{bottom:814.683000px;}
.ya2{bottom:815.511000px;}
.y82{bottom:817.829400px;}
.y2b{bottom:833.271600px;}
.y5c{bottom:838.736400px;}
.y9{bottom:840.723600px;}
.ya1{bottom:847.513200px;}
.y2a{bottom:851.818800px;}
.y5b{bottom:858.608400px;}
.y81{bottom:859.602000px;}
.y8{bottom:862.582800px;}
.y29{bottom:870.366000px;}
.y5a{bottom:878.646000px;}
.ya0{bottom:879.308400px;}
.y80{bottom:880.633200px;}
.y7{bottom:884.276400px;}
.y28{bottom:888.913200px;}
.y59{bottom:898.683600px;}
.y7f{bottom:901.498800px;}
.y27{bottom:907.460400px;}
.y9f{bottom:911.269200px;}
.y6{bottom:920.046000px;}
.y26{bottom:926.007600px;}
.y58{bottom:929.816400px;}
.y9e{bottom:932.300400px;}
.y7e{bottom:933.459600px;}
.y5{bottom:941.905200px;}
.y25{bottom:944.554800px;}
.ybc{bottom:946.500000px;}
.y57{bottom:949.688400px;}
.y7d{bottom:954.325200px;}
.y24{bottom:963.102000px;}
.y9d{bottom:964.261200px;}
.ybb{bottom:969.000000px;}
.y56{bottom:969.726000px;}
.y4{bottom:977.509200px;}
.y23{bottom:981.483600px;}
.yba{bottom:984.000000px;}
.y7c{bottom:986.286000px;}
.y55{bottom:989.598000px;}
.y9c{bottom:996.056400px;}
.yb9{bottom:999.000000px;}
.y22{bottom:1000.030800px;}
.y7b{bottom:1007.151600px;}
.y54{bottom:1009.635600px;}
.y3{bottom:1013.113200px;}
.yb8{bottom:1014.000000px;}
.y21{bottom:1018.578000px;}
.y7a{bottom:1028.017200px;}
.yb7{bottom:1029.000000px;}
.y53{bottom:1029.673200px;}
.yb6{bottom:1044.000000px;}
.y2{bottom:1048.882800px;}
.y79{bottom:1049.048400px;}
.y52{bottom:1049.710800px;}
.y20{bottom:1049.876400px;}
.yb5{bottom:1059.000000px;}
.yb4{bottom:1074.000000px;}
.yb3{bottom:1089.000000px;}
.yb2{bottom:1113.000000px;}
.yb1{bottom:1137.000000px;}
.yb0{bottom:1161.000000px;}
.h6{height:29.977481px;}
.h5{height:31.132800px;}
.h7{height:43.804688px;}
.h9{height:47.223169px;}
.hb{height:49.276350px;}
.h8{height:50.258306px;}
.ha{height:52.443450px;}
.h4{height:56.509954px;}
.h3{height:59.706563px;}
.hd{height:62.578125px;}
.hc{height:87.609375px;}
.h2{height:1161.849600px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:577.585200px;}
.w2{width:821.541588px;}
.w4{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:1.656000px;}
.x1{left:35.715012px;}
.xd{left:54.000000px;}
.xa{left:55.500000px;}
.x3{left:117.443508px;}
.x5{left:136.984308px;}
.x7{left:153.489720px;}
.x4{left:166.289988px;}
.xc{left:170.820000px;}
.x2{left:283.741788px;}
.x9{left:366.370680px;}
.xb{left:443.325000px;}
.x6{left:698.169588px;}
@media print{
.v1{vertical-align:-56.672000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.701653pt;}
.ls9{letter-spacing:-0.628053pt;}
.lse{letter-spacing:-0.578987pt;}
.lsb{letter-spacing:-0.482816pt;}
.ls4{letter-spacing:-0.471040pt;}
.ls6{letter-spacing:-0.366037pt;}
.ls3{letter-spacing:-0.353280pt;}
.ls10{letter-spacing:-0.296853pt;}
.lsf{letter-spacing:-0.285077pt;}
.lsc{letter-spacing:-0.235520pt;}
.ls7{letter-spacing:-0.084885pt;}
.ls12{letter-spacing:-0.009421pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000001pt;}
.ls15{letter-spacing:0.009421pt;}
.ls8{letter-spacing:0.061333pt;}
.lsa{letter-spacing:0.108437pt;}
.ls13{letter-spacing:0.112853pt;}
.ls1{letter-spacing:0.204914pt;}
.ls14{letter-spacing:0.263979pt;}
.ls16{letter-spacing:0.273301pt;}
.ls5{letter-spacing:0.483797pt;}
.ls0{letter-spacing:69.017173pt;}
.wsb{word-spacing:-13.047906pt;}
.ws9{word-spacing:-13.038583pt;}
.wsa{word-spacing:-12.784026pt;}
.ws8{word-spacing:-12.765184pt;}
.ws6{word-spacing:-12.539085pt;}
.ws7{word-spacing:-12.477751pt;}
.ws4{word-spacing:-12.303663pt;}
.ws5{word-spacing:-11.759514pt;}
.ws0{word-spacing:-9.943458pt;}
.ws2{word-spacing:-9.374775pt;}
.ws1{word-spacing:-9.093623pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-4.062720pt;}
._1{margin-left:-2.414080pt;}
._5{margin-left:-1.118720pt;}
._4{width:1.472000pt;}
._10{width:2.521634pt;}
._f{width:4.066645pt;}
._7{width:5.063680pt;}
._6{width:6.300160pt;}
._b{width:7.343288pt;}
._a{width:8.280342pt;}
._3{width:9.715200pt;}
._0{width:10.657280pt;}
._15{width:11.575808pt;}
._e{width:13.198541pt;}
._12{width:14.176341pt;}
._11{width:15.096047pt;}
._16{width:16.041267pt;}
._14{width:17.098752pt;}
._13{width:18.471834pt;}
._d{width:23.130419pt;}
._9{width:159.829760pt;}
._8{width:160.860160pt;}
._c{width:2074.778667pt;}
.fs2{font-size:34.150400pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:48.870400pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:54.169600pt;}
.fs5{font-size:56.524800pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:4.268800pt;}
.y1a{bottom:17.369600pt;}
.y1f{bottom:38.266667pt;}
.y1e{bottom:51.600000pt;}
.y1d{bottom:64.933333pt;}
.y1c{bottom:74.266667pt;}
.y1{bottom:89.800000pt;}
.y9b{bottom:96.416000pt;}
.y51{bottom:97.152000pt;}
.y50{bottom:114.374400pt;}
.y9a{bottom:115.110400pt;}
.y78{bottom:120.409600pt;}
.y4f{bottom:131.596800pt;}
.y99{bottom:133.657600pt;}
.y77{bottom:138.956800pt;}
.y4e{bottom:148.819200pt;}
.y98{bottom:162.091733pt;}
.y4d{bottom:166.066133pt;}
.y76{bottom:167.390933pt;}
.y4c{bottom:184.613333pt;}
.y75{bottom:185.938133pt;}
.y97{bottom:190.501333pt;}
.y4b{bottom:203.160533pt;}
.y74{bottom:204.485333pt;}
.y96{bottom:218.910933pt;}
.y4a{bottom:221.707733pt;}
.y73{bottom:223.179733pt;}
.y95{bottom:237.458133pt;}
.y49{bottom:240.402133pt;}
.y72{bottom:251.442133pt;}
.y48{bottom:258.949333pt;}
.y94{bottom:265.867733pt;}
.y71{bottom:269.106133pt;}
.y47{bottom:277.496533pt;}
.y93{bottom:284.414933pt;}
.y18{bottom:288.830933pt;}
.y46{bottom:295.896533pt;}
.y70{bottom:296.926933pt;}
.y92{bottom:302.962133pt;}
.y45{bottom:312.382933pt;}
.y6f{bottom:315.474133pt;}
.y17{bottom:320.478933pt;}
.y91{bottom:321.656533pt;}
.y44{bottom:328.869333pt;}
.y6e{bottom:334.021333pt;}
.y43{bottom:345.355733pt;}
.y90{bottom:349.918933pt;}
.y16{bottom:351.133333pt;}
.y6d{bottom:352.752533pt;}
.y42{bottom:361.878933pt;}
.y8f{bottom:368.650133pt;}
.y6c{bottom:371.299733pt;}
.y41{bottom:378.365333pt;}
.y15{bottom:380.426133pt;}
.y8e{bottom:387.197333pt;}
.y6b{bottom:389.846933pt;}
.y40{bottom:394.704533pt;}
.y14{bottom:408.688533pt;}
.y3f{bottom:411.190933pt;}
.y8d{bottom:415.606933pt;}
.y6a{bottom:418.109333pt;}
.yaf{bottom:420.906133pt;}
.y3e{bottom:427.677333pt;}
.y8c{bottom:444.016533pt;}
.y3d{bottom:444.163733pt;}
.y69{bottom:445.782933pt;}
.yae{bottom:448.579733pt;}
.y13{bottom:457.264533pt;}
.y3c{bottom:460.650133pt;}
.y8b{bottom:472.426133pt;}
.y68{bottom:473.309333pt;}
.yad{bottom:476.106133pt;}
.y3b{bottom:477.136533pt;}
.y12{bottom:488.912533pt;}
.y67{bottom:490.973333pt;}
.y3a{bottom:493.622933pt;}
.y19{bottom:500.843733pt;}
.yac{bottom:503.632533pt;}
.y39{bottom:510.109333pt;}
.y11{bottom:515.702933pt;}
.y66{bottom:518.646933pt;}
.y8a{bottom:519.382933pt;}
.y38{bottom:526.595733pt;}
.yab{bottom:531.306133pt;}
.y65{bottom:536.310933pt;}
.y10{bottom:542.493333pt;}
.y37{bottom:543.082133pt;}
.y89{bottom:547.817067pt;}
.yaa{bottom:550.025067pt;}
.y36{bottom:559.445867pt;}
.y64{bottom:564.156267pt;}
.yf{bottom:574.165867pt;}
.y35{bottom:575.932267pt;}
.y88{bottom:576.226667pt;}
.ya9{bottom:578.434667pt;}
.y63{bottom:581.673067pt;}
.y34{bottom:592.418667pt;}
.y87{bottom:594.773867pt;}
.ye{bottom:600.956267pt;}
.ya8{bottom:606.697067pt;}
.y33{bottom:608.905067pt;}
.y62{bottom:609.493867pt;}
.y86{bottom:623.183467pt;}
.y32{bottom:625.391467pt;}
.y61{bottom:627.157867pt;}
.yd{bottom:632.751467pt;}
.ya7{bottom:635.106667pt;}
.y85{bottom:641.730667pt;}
.y31{bottom:641.877867pt;}
.y60{bottom:644.821867pt;}
.ya6{bottom:652.770667pt;}
.y30{bottom:658.364267pt;}
.yc{bottom:664.399467pt;}
.y84{bottom:670.140267pt;}
.ya5{bottom:670.434667pt;}
.y5f{bottom:672.642667pt;}
.y2f{bottom:674.850667pt;}
.ya4{bottom:688.245867pt;}
.y5e{bottom:690.306667pt;}
.y2e{bottom:691.337067pt;}
.yb{bottom:696.047467pt;}
.y83{bottom:698.549867pt;}
.ya3{bottom:706.204267pt;}
.y2d{bottom:707.676267pt;}
.ya{bottom:715.477867pt;}
.y5d{bottom:717.980267pt;}
.y2c{bottom:724.162667pt;}
.ya2{bottom:724.898667pt;}
.y82{bottom:726.959467pt;}
.y2b{bottom:740.685867pt;}
.y5c{bottom:745.543467pt;}
.y9{bottom:747.309867pt;}
.ya1{bottom:753.345067pt;}
.y2a{bottom:757.172267pt;}
.y5b{bottom:763.207467pt;}
.y81{bottom:764.090667pt;}
.y8{bottom:766.740267pt;}
.y29{bottom:773.658667pt;}
.y5a{bottom:781.018667pt;}
.ya0{bottom:781.607467pt;}
.y80{bottom:782.785067pt;}
.y7{bottom:786.023467pt;}
.y28{bottom:790.145067pt;}
.y59{bottom:798.829867pt;}
.y7f{bottom:801.332267pt;}
.y27{bottom:806.631467pt;}
.y9f{bottom:810.017067pt;}
.y6{bottom:817.818667pt;}
.y26{bottom:823.117867pt;}
.y58{bottom:826.503467pt;}
.y9e{bottom:828.711467pt;}
.y7e{bottom:829.741867pt;}
.y5{bottom:837.249067pt;}
.y25{bottom:839.604267pt;}
.ybc{bottom:841.333333pt;}
.y57{bottom:844.167467pt;}
.y7d{bottom:848.289067pt;}
.y24{bottom:856.090667pt;}
.y9d{bottom:857.121067pt;}
.ybb{bottom:861.333333pt;}
.y56{bottom:861.978667pt;}
.y4{bottom:868.897067pt;}
.y23{bottom:872.429867pt;}
.yba{bottom:874.666667pt;}
.y7c{bottom:876.698667pt;}
.y55{bottom:879.642667pt;}
.y9c{bottom:885.383467pt;}
.yb9{bottom:888.000000pt;}
.y22{bottom:888.916267pt;}
.y7b{bottom:895.245867pt;}
.y54{bottom:897.453867pt;}
.y3{bottom:900.545067pt;}
.yb8{bottom:901.333333pt;}
.y21{bottom:905.402667pt;}
.y7a{bottom:913.793067pt;}
.yb7{bottom:914.666667pt;}
.y53{bottom:915.265067pt;}
.yb6{bottom:928.000000pt;}
.y2{bottom:932.340267pt;}
.y79{bottom:932.487467pt;}
.y52{bottom:933.076267pt;}
.y20{bottom:933.223467pt;}
.yb5{bottom:941.333333pt;}
.yb4{bottom:954.666667pt;}
.yb3{bottom:968.000000pt;}
.yb2{bottom:989.333333pt;}
.yb1{bottom:1010.666667pt;}
.yb0{bottom:1032.000000pt;}
.h6{height:26.646650pt;}
.h5{height:27.673600pt;}
.h7{height:38.937500pt;}
.h9{height:41.976150pt;}
.hb{height:43.801200pt;}
.h8{height:44.674050pt;}
.ha{height:46.616400pt;}
.h4{height:50.231070pt;}
.h3{height:53.072500pt;}
.hd{height:55.625000pt;}
.hc{height:77.875000pt;}
.h2{height:1032.755200pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:513.409067pt;}
.w2{width:730.259189pt;}
.w4{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.472000pt;}
.x1{left:31.746678pt;}
.xd{left:48.000000pt;}
.xa{left:49.333333pt;}
.x3{left:104.394229pt;}
.x5{left:121.763829pt;}
.x7{left:136.435307pt;}
.x4{left:147.813322pt;}
.xc{left:151.840000pt;}
.x2{left:252.214922pt;}
.x9{left:325.662827pt;}
.xb{left:394.066667pt;}
.x6{left:620.595189pt;}
}




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