
    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_dbfdf2e2c8236c9ebed2bec8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911621;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_94b1de8647a48ef2d858feee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.903320;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_8ff6f26322c4db362172a692.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_cc59f67342843c69b08bef5d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_05679ddad66609efeb0435e9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.580000;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_1ce911b7cdb8140e28cc7df8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_5760ed79de16c5ceba825080.woff')format("woff");}.ff7{font-family:ff7;line-height:0.829000;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_fd50da1feac2c13f5d3e2914.woff')format("woff");}.ff8{font-family:ff8;line-height:0.685000;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_87ca244719d8ea6229b0a963.woff')format("woff");}.ff9{font-family:ff9;line-height:0.875000;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_04e604e61852ea19420f68fe.woff')format("woff");}.ffa{font-family:ffa;line-height:3.625000;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_8dabf83f4d58c346f1ce5f7f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.580000;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:ffc;src:url('chunks/assets/font_778b8d33e5696dc50baecdc0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.857000;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:ffd;src:url('chunks/assets/font_3412446c4cfde92dbe8c55a1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923000;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);}
.v2{vertical-align:-64.788000px;}
.v7{vertical-align:-26.772000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:26.772000px;}
.va{vertical-align:47.820000px;}
.v1{vertical-align:64.788000px;}
.v5{vertical-align:151.746000px;}
.v4{vertical-align:178.518000px;}
.v9{vertical-align:264.414000px;}
.v8{vertical-align:305.310000px;}
.v3{vertical-align:483.828000px;}
.ls1d{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.004233px;}
.lsf{letter-spacing:0.004262px;}
.ls4{letter-spacing:2.724675px;}
.ls19{letter-spacing:2.730675px;}
.lsd{letter-spacing:3.100950px;}
.ls9{letter-spacing:7.440675px;}
.lsc{letter-spacing:16.774366px;}
.lse{letter-spacing:19.834500px;}
.ls15{letter-spacing:20.169415px;}
.lsb{letter-spacing:26.057669px;}
.ls1c{letter-spacing:28.030710px;}
.ls0{letter-spacing:34.683098px;}
.ls11{letter-spacing:39.520167px;}
.ls3{letter-spacing:40.282450px;}
.ls12{letter-spacing:43.342500px;}
.ls13{letter-spacing:43.588903px;}
.ls1{letter-spacing:44.206645px;}
.ls7{letter-spacing:45.838450px;}
.ls6{letter-spacing:47.392800px;}
.ls10{letter-spacing:50.368903px;}
.ls5{letter-spacing:51.798675px;}
.ls2{letter-spacing:57.190366px;}
.lsa{letter-spacing:59.328675px;}
.ls14{letter-spacing:172.672927px;}
.ls1b{letter-spacing:262.684500px;}
.ls1a{letter-spacing:438.052500px;}
.ls17{letter-spacing:613.461023px;}
.ls18{letter-spacing:914.577023px;}
.ls16{letter-spacing:952.299023px;}
.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;}
}
.ws33{word-spacing:-141.310850px;}
.ws2e{word-spacing:-123.975000px;}
.ws40{word-spacing:-0.257036px;}
.wsc{word-spacing:-0.178490px;}
.ws30{word-spacing:-0.123975px;}
.ws42{word-spacing:0.000000px;}
.ws31{word-spacing:18.472275px;}
.ws32{word-spacing:20.579850px;}
.ws41{word-spacing:27.894375px;}
.ws2a{word-spacing:28.328089px;}
.ws29{word-spacing:28.379974px;}
.wsf{word-spacing:29.807897px;}
.ws3b{word-spacing:31.268358px;}
.ws5{word-spacing:31.583080px;}
.ws3{word-spacing:31.592801px;}
.ws7{word-spacing:31.656896px;}
.ws6{word-spacing:31.726971px;}
.ws4{word-spacing:31.771291px;}
.ws14{word-spacing:32.485253px;}
.wsb{word-spacing:33.913176px;}
.wsa{word-spacing:33.965325px;}
.wse{word-spacing:34.448647px;}
.ws19{word-spacing:34.627138px;}
.wsd{word-spacing:35.162609px;}
.ws26{word-spacing:39.267888px;}
.ws9{word-spacing:40.160340px;}
.ws8{word-spacing:40.177899px;}
.ws17{word-spacing:40.213977px;}
.ws2c{word-spacing:41.052792px;}
.ws2d{word-spacing:41.231282px;}
.ws10{word-spacing:43.194677px;}
.ws11{word-spacing:43.195922px;}
.ws12{word-spacing:43.255106px;}
.ws18{word-spacing:44.444110px;}
.ws34{word-spacing:46.050523px;}
.ws25{word-spacing:46.585994px;}
.ws13{word-spacing:46.764485px;}
.ws2b{word-spacing:47.299956px;}
.ws1{word-spacing:48.189735px;}
.ws3e{word-spacing:48.370898px;}
.ws2f{word-spacing:48.727879px;}
.ws36{word-spacing:49.798822px;}
.ws35{word-spacing:49.892694px;}
.ws37{word-spacing:49.977312px;}
.ws21{word-spacing:50.334293px;}
.ws20{word-spacing:50.352896px;}
.ws15{word-spacing:52.234542px;}
.ws16{word-spacing:52.297687px;}
.ws1a{word-spacing:55.332024px;}
.ws3f{word-spacing:56.402966px;}
.ws2{word-spacing:57.833190px;}
.ws1e{word-spacing:60.329755px;}
.ws1d{word-spacing:60.414939px;}
.ws27{word-spacing:61.043717px;}
.ws23{word-spacing:65.862958px;}
.ws22{word-spacing:77.464834px;}
.ws24{word-spacing:80.499170px;}
.ws1b{word-spacing:95.492364px;}
.ws1c{word-spacing:95.586896px;}
.ws28{word-spacing:105.844807px;}
.ws1f{word-spacing:109.236125px;}
.ws0{word-spacing:118.356120px;}
.ws3d{word-spacing:246.410918px;}
.ws3c{word-spacing:250.779012px;}
.ws3a{word-spacing:255.026918px;}
.ws39{word-spacing:271.175025px;}
.ws38{word-spacing:455.165025px;}
._1c{margin-left:-21.961678px;}
._5{margin-left:-19.061717px;}
._9{margin-left:-16.976437px;}
._27{margin-left:-14.381100px;}
._16{margin-left:-12.887114px;}
._1{margin-left:-11.572598px;}
._8{margin-left:-10.066300px;}
._28{margin-left:-8.547830px;}
._1a{margin-left:-7.496597px;}
._2{margin-left:-6.312326px;}
._0{margin-left:-5.260272px;}
._4{margin-left:-4.208218px;}
._3{margin-left:-3.156163px;}
._6{margin-left:-1.927589px;}
._b{width:1.157298px;}
._e{width:2.716950px;}
._15{width:4.640750px;}
._1f{width:20.103571px;}
._25{width:29.877975px;}
._1d{width:31.321841px;}
._26{width:32.331308px;}
._c{width:33.437468px;}
._d{width:35.125097px;}
._10{width:36.176887px;}
._24{width:41.474935px;}
._11{width:43.815635px;}
._f{width:45.796481px;}
._1b{width:46.974304px;}
._12{width:47.982134px;}
._13{width:49.584526px;}
._14{width:53.480921px;}
._18{width:54.546452px;}
._7{width:57.305186px;}
._23{width:60.829421px;}
._19{width:67.198412px;}
._1e{width:68.554725px;}
._a{width:71.749161px;}
._17{width:79.514249px;}
._20{width:92.062204px;}
._22{width:282.236414px;}
._21{width:307.421410px;}
.fc3{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(79,76,77);}
.fs4{font-size:123.975000px;}
.fs3{font-size:178.490400px;}
.fs1{font-size:214.176600px;}
.fs5{font-size:257.025000px;}
.fs2{font-size:257.036400px;}
.fs0{font-size:526.027200px;}
.y0{bottom:0.000000px;}
.y58{bottom:167.055000px;}
.y57{bottom:216.369000px;}
.y56{bottom:265.684500px;}
.y55{bottom:315.000000px;}
.y54{bottom:364.315500px;}
.y53{bottom:473.206500px;}
.y52{bottom:663.040500px;}
.y51{bottom:718.333500px;}
.y50{bottom:773.626500px;}
.y4f{bottom:828.918000px;}
.y4e{bottom:884.211000px;}
.y4d{bottom:939.504000px;}
.y2c{bottom:953.629500px;}
.y4c{bottom:994.797000px;}
.y4b{bottom:1085.787000px;}
.y2b{bottom:1122.633000px;}
.y4a{bottom:1141.080000px;}
.y2a{bottom:1177.924500px;}
.y49{bottom:1196.373000px;}
.y48{bottom:1298.458500px;}
.y47{bottom:1467.969000px;}
.y46{bottom:1551.982500px;}
.y45{bottom:1618.333500px;}
.y44{bottom:1624.311000px;}
.y43{bottom:1630.288500px;}
.y42{bottom:1684.684500px;}
.y41{bottom:1751.035500px;}
.y40{bottom:1835.878500px;}
.y29{bottom:1900.119000px;}
.y3f{bottom:1964.163000px;}
.y3e{bottom:2019.456000px;}
.y3d{bottom:2092.681500px;}
.y28{bottom:2105.265000px;}
.y24{bottom:2146.737000px;}
.y3c{bottom:2147.974500px;}
.y27{bottom:2160.556500px;}
.y23{bottom:2202.030000px;}
.y26{bottom:2215.849500px;}
.y3b{bottom:2221.200000px;}
.y22{bottom:2257.323000px;}
.y25{bottom:2271.142500px;}
.y3a{bottom:2276.491500px;}
.y21{bottom:2312.614500px;}
.y39{bottom:2347.230000px;}
.y38{bottom:2347.834500px;}
.y20{bottom:2367.907500px;}
.y37{bottom:2382.937500px;}
.y35{bottom:2392.464000px;}
.y1f{bottom:2423.200500px;}
.y36{bottom:2440.143000px;}
.y34{bottom:2536.089000px;}
.y1e{bottom:2545.426500px;}
.y33{bottom:2591.382000px;}
.y1d{bottom:2600.719500px;}
.y32{bottom:2646.675000px;}
.y1c{bottom:2656.012500px;}
.y31{bottom:2701.968000px;}
.y1b{bottom:2711.305500px;}
.y30{bottom:2757.259500px;}
.y1a{bottom:2766.597000px;}
.y19{bottom:2821.890000px;}
.y2f{bottom:2834.863500px;}
.y18{bottom:2877.183000px;}
.y2e{bottom:2890.156500px;}
.y17{bottom:2932.476000px;}
.y2d{bottom:2945.449500px;}
.y16{bottom:2987.769000px;}
.y15{bottom:3083.700000px;}
.y14{bottom:3138.993000px;}
.y13{bottom:3194.284500px;}
.y12{bottom:3294.201000px;}
.y11{bottom:3349.492500px;}
.y10{bottom:3404.785500px;}
.yf{bottom:3460.078500px;}
.ye{bottom:3562.164000px;}
.yd{bottom:3716.217000px;}
.yc{bottom:3771.510000px;}
.yb{bottom:3849.114000px;}
.ya{bottom:3904.407000px;}
.y9{bottom:3959.700000px;}
.y8{bottom:4014.991500px;}
.y7{bottom:4092.595500px;}
.y6{bottom:4147.888500px;}
.y5{bottom:4252.381500px;}
.y4{bottom:4355.601000px;}
.y3{bottom:4498.731000px;}
.y2{bottom:4679.725500px;}
.y1{bottom:4836.636000px;}
.ha{height:84.674925px;}
.h13{height:90.680933px;}
.hc{height:92.981250px;}
.hf{height:122.801395px;}
.h7{height:130.381659px;}
.h6{height:130.555966px;}
.h5{height:132.473344px;}
.h9{height:133.867800px;}
.h8{height:149.462925px;}
.h10{height:150.082800px;}
.h11{height:152.966273px;}
.h3{height:156.658470px;}
.h12{height:178.375966px;}
.h4{height:190.769203px;}
.hb{height:193.282800px;}
.h2{height:390.410813px;}
.he{height:424.184606px;}
.hd{height:602.702606px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:107.272500px;}
.x2{left:116.239500px;}
.x4{left:158.071500px;}
.x27{left:159.192000px;}
.x26{left:163.564500px;}
.xb{left:179.866500px;}
.xc{left:429.037500px;}
.x5{left:437.805000px;}
.xa{left:677.320500px;}
.x6{left:914.110500px;}
.x7{left:936.151500px;}
.x8{left:996.994500px;}
.xd{left:1005.066000px;}
.x9{left:1391.620500px;}
.x3{left:1587.016500px;}
.x25{left:1625.410500px;}
.xf{left:2186.280000px;}
.x1d{left:2194.114500px;}
.x10{left:2216.488500px;}
.x11{left:2252.464500px;}
.x23{left:2402.181000px;}
.x1f{left:2427.159000px;}
.xe{left:2512.896000px;}
.x24{left:2545.818000px;}
.x12{left:2602.321500px;}
.x1e{left:2610.355500px;}
.x15{left:2652.360000px;}
.x14{left:2653.566000px;}
.x13{left:2665.191000px;}
.x20{left:2676.496500px;}
.x17{left:2709.430500px;}
.x16{left:2721.055500px;}
.x21{left:2841.124500px;}
.x19{left:2887.212000px;}
.x18{left:2898.651000px;}
.x1a{left:2902.959000px;}
.x1b{left:2937.952500px;}
.x22{left:3081.031500px;}
.x1c{left:3086.800500px;}
@media print{
.v2{vertical-align:-57.589333pt;}
.v7{vertical-align:-23.797333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:23.797333pt;}
.va{vertical-align:42.506667pt;}
.v1{vertical-align:57.589333pt;}
.v5{vertical-align:134.885333pt;}
.v4{vertical-align:158.682667pt;}
.v9{vertical-align:235.034667pt;}
.v8{vertical-align:271.386667pt;}
.v3{vertical-align:430.069333pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003763pt;}
.lsf{letter-spacing:0.003789pt;}
.ls4{letter-spacing:2.421933pt;}
.ls19{letter-spacing:2.427267pt;}
.lsd{letter-spacing:2.756400pt;}
.ls9{letter-spacing:6.613933pt;}
.lsc{letter-spacing:14.910547pt;}
.lse{letter-spacing:17.630667pt;}
.ls15{letter-spacing:17.928369pt;}
.lsb{letter-spacing:23.162372pt;}
.ls1c{letter-spacing:24.916187pt;}
.ls0{letter-spacing:30.829421pt;}
.ls11{letter-spacing:35.129037pt;}
.ls3{letter-spacing:35.806623pt;}
.ls12{letter-spacing:38.526667pt;}
.ls13{letter-spacing:38.745692pt;}
.ls1{letter-spacing:39.294796pt;}
.ls7{letter-spacing:40.745289pt;}
.ls6{letter-spacing:42.126933pt;}
.ls10{letter-spacing:44.772358pt;}
.ls5{letter-spacing:46.043267pt;}
.ls2{letter-spacing:50.835881pt;}
.lsa{letter-spacing:52.736600pt;}
.ls14{letter-spacing:153.487046pt;}
.ls1b{letter-spacing:233.497333pt;}
.ls1a{letter-spacing:389.380000pt;}
.ls17{letter-spacing:545.298687pt;}
.ls18{letter-spacing:812.957354pt;}
.ls16{letter-spacing:846.488020pt;}
.ws33{word-spacing:-125.609644pt;}
.ws2e{word-spacing:-110.200000pt;}
.ws40{word-spacing:-0.228477pt;}
.wsc{word-spacing:-0.158658pt;}
.ws30{word-spacing:-0.110200pt;}
.ws42{word-spacing:0.000000pt;}
.ws31{word-spacing:16.419800pt;}
.ws32{word-spacing:18.293200pt;}
.ws41{word-spacing:24.795000pt;}
.ws2a{word-spacing:25.180524pt;}
.ws29{word-spacing:25.226643pt;}
.wsf{word-spacing:26.495908pt;}
.ws3b{word-spacing:27.794096pt;}
.ws5{word-spacing:28.073849pt;}
.ws3{word-spacing:28.082490pt;}
.ws7{word-spacing:28.139463pt;}
.ws6{word-spacing:28.201752pt;}
.ws4{word-spacing:28.241148pt;}
.ws14{word-spacing:28.875780pt;}
.wsb{word-spacing:30.145045pt;}
.wsa{word-spacing:30.191400pt;}
.wse{word-spacing:30.621020pt;}
.ws19{word-spacing:30.779678pt;}
.wsd{word-spacing:31.255652pt;}
.ws26{word-spacing:34.904789pt;}
.ws9{word-spacing:35.698080pt;}
.ws8{word-spacing:35.713688pt;}
.ws17{word-spacing:35.745757pt;}
.ws2c{word-spacing:36.491371pt;}
.ws2d{word-spacing:36.650029pt;}
.ws10{word-spacing:38.395268pt;}
.ws11{word-spacing:38.396375pt;}
.ws12{word-spacing:38.448983pt;}
.ws18{word-spacing:39.505875pt;}
.ws34{word-spacing:40.933798pt;}
.ws25{word-spacing:41.409773pt;}
.ws13{word-spacing:41.568431pt;}
.ws2b{word-spacing:42.044405pt;}
.ws1{word-spacing:42.835320pt;}
.ws3e{word-spacing:42.996354pt;}
.ws2f{word-spacing:43.313670pt;}
.ws36{word-spacing:44.265619pt;}
.ws35{word-spacing:44.349062pt;}
.ws37{word-spacing:44.424277pt;}
.ws21{word-spacing:44.741594pt;}
.ws20{word-spacing:44.758129pt;}
.ws15{word-spacing:46.430704pt;}
.ws16{word-spacing:46.486833pt;}
.ws1a{word-spacing:49.184021pt;}
.ws3f{word-spacing:50.135970pt;}
.ws2{word-spacing:51.407280pt;}
.ws1e{word-spacing:53.626449pt;}
.ws1d{word-spacing:53.702168pt;}
.ws27{word-spacing:54.261082pt;}
.ws23{word-spacing:58.544851pt;}
.ws22{word-spacing:68.857630pt;}
.ws24{word-spacing:71.554818pt;}
.ws1b{word-spacing:84.882101pt;}
.ws1c{word-spacing:84.966129pt;}
.ws28{word-spacing:94.084273pt;}
.ws1f{word-spacing:97.098778pt;}
.ws0{word-spacing:105.205440pt;}
.ws3d{word-spacing:219.031927pt;}
.ws3c{word-spacing:222.914677pt;}
.ws3a{word-spacing:226.690594pt;}
.ws39{word-spacing:241.044467pt;}
.ws38{word-spacing:404.591133pt;}
._1c{margin-left:-19.521491pt;}
._5{margin-left:-16.943749pt;}
._9{margin-left:-15.090166pt;}
._27{margin-left:-12.783200pt;}
._16{margin-left:-11.455212pt;}
._1{margin-left:-10.286754pt;}
._8{margin-left:-8.947822pt;}
._28{margin-left:-7.598071pt;}
._1a{margin-left:-6.663642pt;}
._2{margin-left:-5.610957pt;}
._0{margin-left:-4.675797pt;}
._4{margin-left:-3.740638pt;}
._3{margin-left:-2.805478pt;}
._6{margin-left:-1.713413pt;}
._b{width:1.028709pt;}
._e{width:2.415066pt;}
._15{width:4.125111pt;}
._1f{width:17.869841pt;}
._25{width:26.558200pt;}
._1d{width:27.841637pt;}
._26{width:28.738941pt;}
._c{width:29.722194pt;}
._d{width:31.222308pt;}
._10{width:32.157233pt;}
._24{width:36.866609pt;}
._11{width:38.947231pt;}
._f{width:40.707983pt;}
._1b{width:41.754937pt;}
._12{width:42.650786pt;}
._13{width:44.075134pt;}
._14{width:47.538596pt;}
._18{width:48.485735pt;}
._7{width:50.937943pt;}
._23{width:54.070597pt;}
._19{width:59.731922pt;}
._1e{width:60.937533pt;}
._a{width:63.777032pt;}
._17{width:70.679333pt;}
._20{width:81.833070pt;}
._22{width:250.876813pt;}
._21{width:273.263475pt;}
.fs4{font-size:110.200000pt;}
.fs3{font-size:158.658133pt;}
.fs1{font-size:190.379200pt;}
.fs5{font-size:228.466667pt;}
.fs2{font-size:228.476800pt;}
.fs0{font-size:467.579733pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:148.493333pt;}
.y57{bottom:192.328000pt;}
.y56{bottom:236.164000pt;}
.y55{bottom:280.000000pt;}
.y54{bottom:323.836000pt;}
.y53{bottom:420.628000pt;}
.y52{bottom:589.369333pt;}
.y51{bottom:638.518667pt;}
.y50{bottom:687.668000pt;}
.y4f{bottom:736.816000pt;}
.y4e{bottom:785.965333pt;}
.y4d{bottom:835.114667pt;}
.y2c{bottom:847.670667pt;}
.y4c{bottom:884.264000pt;}
.y4b{bottom:965.144000pt;}
.y2b{bottom:997.896000pt;}
.y4a{bottom:1014.293333pt;}
.y2a{bottom:1047.044000pt;}
.y49{bottom:1063.442667pt;}
.y48{bottom:1154.185333pt;}
.y47{bottom:1304.861333pt;}
.y46{bottom:1379.540000pt;}
.y45{bottom:1438.518667pt;}
.y44{bottom:1443.832000pt;}
.y43{bottom:1449.145333pt;}
.y42{bottom:1497.497333pt;}
.y41{bottom:1556.476000pt;}
.y40{bottom:1631.892000pt;}
.y29{bottom:1688.994667pt;}
.y3f{bottom:1745.922667pt;}
.y3e{bottom:1795.072000pt;}
.y3d{bottom:1860.161333pt;}
.y28{bottom:1871.346667pt;}
.y24{bottom:1908.210667pt;}
.y3c{bottom:1909.310667pt;}
.y27{bottom:1920.494667pt;}
.y23{bottom:1957.360000pt;}
.y26{bottom:1969.644000pt;}
.y3b{bottom:1974.400000pt;}
.y22{bottom:2006.509333pt;}
.y25{bottom:2018.793333pt;}
.y3a{bottom:2023.548000pt;}
.y21{bottom:2055.657333pt;}
.y39{bottom:2086.426667pt;}
.y38{bottom:2086.964000pt;}
.y20{bottom:2104.806667pt;}
.y37{bottom:2118.166667pt;}
.y35{bottom:2126.634667pt;}
.y1f{bottom:2153.956000pt;}
.y36{bottom:2169.016000pt;}
.y34{bottom:2254.301333pt;}
.y1e{bottom:2262.601333pt;}
.y33{bottom:2303.450667pt;}
.y1d{bottom:2311.750667pt;}
.y32{bottom:2352.600000pt;}
.y1c{bottom:2360.900000pt;}
.y31{bottom:2401.749333pt;}
.y1b{bottom:2410.049333pt;}
.y30{bottom:2450.897333pt;}
.y1a{bottom:2459.197333pt;}
.y19{bottom:2508.346667pt;}
.y2f{bottom:2519.878667pt;}
.y18{bottom:2557.496000pt;}
.y2e{bottom:2569.028000pt;}
.y17{bottom:2606.645333pt;}
.y2d{bottom:2618.177333pt;}
.y16{bottom:2655.794667pt;}
.y15{bottom:2741.066667pt;}
.y14{bottom:2790.216000pt;}
.y13{bottom:2839.364000pt;}
.y12{bottom:2928.178667pt;}
.y11{bottom:2977.326667pt;}
.y10{bottom:3026.476000pt;}
.yf{bottom:3075.625333pt;}
.ye{bottom:3166.368000pt;}
.yd{bottom:3303.304000pt;}
.yc{bottom:3352.453333pt;}
.yb{bottom:3421.434667pt;}
.ya{bottom:3470.584000pt;}
.y9{bottom:3519.733333pt;}
.y8{bottom:3568.881333pt;}
.y7{bottom:3637.862667pt;}
.y6{bottom:3687.012000pt;}
.y5{bottom:3779.894667pt;}
.y4{bottom:3871.645333pt;}
.y3{bottom:3998.872000pt;}
.y2{bottom:4159.756000pt;}
.y1{bottom:4299.232000pt;}
.ha{height:75.266600pt;}
.h13{height:80.605273pt;}
.hc{height:82.650000pt;}
.hf{height:109.156796pt;}
.h7{height:115.894808pt;}
.h6{height:116.049748pt;}
.h5{height:117.754083pt;}
.h9{height:118.993600pt;}
.h8{height:132.855933pt;}
.h10{height:133.406933pt;}
.h11{height:135.970020pt;}
.h3{height:139.251973pt;}
.h12{height:158.556415pt;}
.h4{height:169.572625pt;}
.hb{height:171.806933pt;}
.h2{height:347.031833pt;}
.he{height:377.052983pt;}
.hd{height:535.735650pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:95.353333pt;}
.x2{left:103.324000pt;}
.x4{left:140.508000pt;}
.x27{left:141.504000pt;}
.x26{left:145.390667pt;}
.xb{left:159.881333pt;}
.xc{left:381.366667pt;}
.x5{left:389.160000pt;}
.xa{left:602.062667pt;}
.x6{left:812.542667pt;}
.x7{left:832.134667pt;}
.x8{left:886.217333pt;}
.xd{left:893.392000pt;}
.x9{left:1236.996000pt;}
.x3{left:1410.681333pt;}
.x25{left:1444.809333pt;}
.xf{left:1943.360000pt;}
.x1d{left:1950.324000pt;}
.x10{left:1970.212000pt;}
.x11{left:2002.190667pt;}
.x23{left:2135.272000pt;}
.x1f{left:2157.474667pt;}
.xe{left:2233.685333pt;}
.x24{left:2262.949333pt;}
.x12{left:2313.174667pt;}
.x1e{left:2320.316000pt;}
.x15{left:2357.653333pt;}
.x14{left:2358.725333pt;}
.x13{left:2369.058667pt;}
.x20{left:2379.108000pt;}
.x17{left:2408.382667pt;}
.x16{left:2418.716000pt;}
.x21{left:2525.444000pt;}
.x19{left:2566.410667pt;}
.x18{left:2576.578667pt;}
.x1a{left:2580.408000pt;}
.x1b{left:2611.513333pt;}
.x22{left:2738.694667pt;}
.x1c{left:2743.822667pt;}
}




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