
    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_c714a96edaa24b146e5983e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_29563c1fe5f3a23cd87eb14f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_5b972d2582c545131985221a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_69fa329ea8ce9694a92dbbe6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_8795cb550c844de0a0df099f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_3fec8fb75858ac8e004503fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_22363ea04d91cffe5ca80a58.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_778b305078d43fd24971edd1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-5.058000px;}
.ls15{letter-spacing:-1.332000px;}
.ls16{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.612000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls17{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018720px;}
.ls18{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.262200px;}
.lse{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.511800px;}
.ls19{letter-spacing:0.513600px;}
.ls1c{letter-spacing:11.466720px;}
.ls1d{letter-spacing:14.580000px;}
.ls13{letter-spacing:15.300000px;}
.ls2{letter-spacing:15.840000px;}
.ls1{letter-spacing:16.493760px;}
.ls0{letter-spacing:16.560000px;}
.ls1b{letter-spacing:41.706720px;}
.lsf{letter-spacing:46.026720px;}
.ls10{letter-spacing:64.002720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.733600px;}
.wse{word-spacing:-14.328000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-1006.277760px;}
._7{margin-left:-577.969920px;}
._b{margin-left:-17.912880px;}
._c{margin-left:-15.670800px;}
._4{margin-left:-8.213760px;}
._f{margin-left:-6.690240px;}
._9{margin-left:-5.262480px;}
._a{margin-left:-3.841920px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._d{width:2.797680px;}
._10{width:4.673040px;}
._14{width:6.116400px;}
._e{width:7.285200px;}
._17{width:8.496000px;}
._15{width:9.740880px;}
._16{width:11.115360px;}
._19{width:12.489840px;}
._18{width:13.565520px;}
._12{width:16.489680px;}
._11{width:17.928000px;}
._22{width:19.003680px;}
._35{width:20.106960px;}
._13{width:21.197280px;}
._25{width:22.230720px;}
._1b{width:23.400960px;}
._1c{width:24.996960px;}
._1e{width:26.473680px;}
._1f{width:27.506880px;}
._1d{width:29.461680px;}
._21{width:30.716640px;}
._20{width:31.911840px;}
._23{width:33.834240px;}
._26{width:35.198640px;}
._33{width:39.620880px;}
._2d{width:51.822000px;}
._2e{width:52.827840px;}
._2b{width:59.538240px;}
._28{width:61.851600px;}
._29{width:68.245920px;}
._2a{width:81.403200px;}
._38{width:85.994640px;}
._36{width:103.728960px;}
._37{width:111.163680px;}
._24{width:118.563840px;}
._31{width:126.462240px;}
._30{width:128.244960px;}
._34{width:138.055680px;}
._2c{width:152.208720px;}
._32{width:153.354240px;}
._2f{width:187.681680px;}
._27{width:293.365440px;}
._1a{width:315.592560px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:6.300000px;}
.yc3{bottom:6.330000px;}
.y90{bottom:18.000000px;}
.y89{bottom:18.030000px;}
.y8e{bottom:29.700000px;}
.y8a{bottom:29.730000px;}
.yc0{bottom:33.690000px;}
.y8f{bottom:41.400000px;}
.y8d{bottom:53.100000px;}
.yc2{bottom:53.130000px;}
.y6{bottom:60.300000px;}
.yc1{bottom:76.530000px;}
.y5c{bottom:89.280000px;}
.y96{bottom:98.100000px;}
.ybe{bottom:100.260000px;}
.y2c{bottom:100.800000px;}
.y7f{bottom:103.680000px;}
.y5b{bottom:112.680000px;}
.ybd{bottom:123.660000px;}
.y2b{bottom:124.200000px;}
.y7e{bottom:126.540000px;}
.y87{bottom:127.080000px;}
.y5a{bottom:136.080000px;}
.ybf{bottom:145.440000px;}
.ybc{bottom:147.060000px;}
.y2a{bottom:147.600000px;}
.y7d{bottom:150.480000px;}
.y59{bottom:159.510000px;}
.ybb{bottom:170.490000px;}
.y29{bottom:171.030000px;}
.y7c{bottom:173.910000px;}
.y95{bottom:174.270000px;}
.y58{bottom:182.910000px;}
.yba{bottom:193.890000px;}
.y28{bottom:194.430000px;}
.y7b{bottom:197.310000px;}
.y57{bottom:206.310000px;}
.yb9{bottom:217.290000px;}
.y27{bottom:217.830000px;}
.y7a{bottom:220.170000px;}
.y86{bottom:220.710000px;}
.y56{bottom:229.710000px;}
.yb8{bottom:240.690000px;}
.y26{bottom:241.230000px;}
.y79{bottom:244.110000px;}
.y94{bottom:250.590000px;}
.y55{bottom:253.110000px;}
.yb7{bottom:264.090000px;}
.y25{bottom:264.630000px;}
.y78{bottom:267.510000px;}
.y54{bottom:276.510000px;}
.yb6{bottom:287.490000px;}
.y24{bottom:288.030000px;}
.y77{bottom:290.370000px;}
.y85{bottom:290.910000px;}
.y53{bottom:299.910000px;}
.yb5{bottom:310.890000px;}
.y23{bottom:311.430000px;}
.y76{bottom:314.310000px;}
.y52{bottom:323.310000px;}
.y93{bottom:326.730000px;}
.yb4{bottom:334.290000px;}
.y22{bottom:334.830000px;}
.y75{bottom:337.710000px;}
.y51{bottom:346.710000px;}
.y21{bottom:358.230000px;}
.y74{bottom:361.110000px;}
.yb3{bottom:366.690000px;}
.y50{bottom:370.110000px;}
.y20{bottom:381.630000px;}
.y73{bottom:384.510000px;}
.yb2{bottom:390.090000px;}
.y4f{bottom:393.510000px;}
.y92{bottom:402.915000px;}
.y1f{bottom:405.075000px;}
.y72{bottom:407.415000px;}
.y84{bottom:407.955000px;}
.yb1{bottom:413.535000px;}
.y4e{bottom:416.955000px;}
.y1e{bottom:428.475000px;}
.y71{bottom:431.355000px;}
.yb0{bottom:436.935000px;}
.y4d{bottom:440.355000px;}
.y1d{bottom:454.035000px;}
.y70{bottom:454.215000px;}
.y83{bottom:454.755000px;}
.yaf{bottom:460.335000px;}
.y4c{bottom:463.755000px;}
.y6f{bottom:478.155000px;}
.y91{bottom:479.235000px;}
.y1c{bottom:486.435000px;}
.y4b{bottom:487.155000px;}
.yae{bottom:492.735000px;}
.y6e{bottom:501.555000px;}
.y1b{bottom:509.835000px;}
.y4a{bottom:510.555000px;}
.yad{bottom:516.135000px;}
.y6d{bottom:524.955000px;}
.y1a{bottom:533.235000px;}
.y49{bottom:533.955000px;}
.yac{bottom:539.535000px;}
.y6c{bottom:548.355000px;}
.y8c{bottom:555.375000px;}
.y19{bottom:556.635000px;}
.y48{bottom:557.355000px;}
.y6b{bottom:571.215000px;}
.y82{bottom:571.755000px;}
.yab{bottom:571.935000px;}
.y18{bottom:580.035000px;}
.y47{bottom:580.755000px;}
.y6a{bottom:595.155000px;}
.yaa{bottom:595.335000px;}
.y17{bottom:603.435000px;}
.y46{bottom:604.155000px;}
.y69{bottom:618.555000px;}
.ya9{bottom:618.735000px;}
.y16{bottom:626.835000px;}
.y45{bottom:627.555000px;}
.y88{bottom:631.515000px;}
.y68{bottom:641.955000px;}
.ya8{bottom:642.135000px;}
.y15{bottom:650.265000px;}
.y44{bottom:650.985000px;}
.y67{bottom:664.845000px;}
.y81{bottom:665.385000px;}
.ya7{bottom:665.565000px;}
.y14{bottom:673.665000px;}
.y43{bottom:674.385000px;}
.y66{bottom:688.785000px;}
.ya6{bottom:688.965000px;}
.y13{bottom:697.065000px;}
.y42{bottom:697.785000px;}
.y65{bottom:712.185000px;}
.ya5{bottom:712.365000px;}
.y12{bottom:720.465000px;}
.y41{bottom:721.185000px;}
.y64{bottom:735.585000px;}
.y11{bottom:743.865000px;}
.y40{bottom:744.585000px;}
.ya4{bottom:744.765000px;}
.y63{bottom:758.985000px;}
.y10{bottom:767.265000px;}
.y3f{bottom:767.985000px;}
.ya3{bottom:768.165000px;}
.y62{bottom:782.385000px;}
.yf{bottom:790.665000px;}
.y3e{bottom:791.385000px;}
.ya2{bottom:791.565000px;}
.y61{bottom:805.785000px;}
.ye{bottom:814.065000px;}
.y3d{bottom:814.785000px;}
.ya1{bottom:814.965000px;}
.y60{bottom:829.185000px;}
.yd{bottom:837.465000px;}
.y3c{bottom:838.185000px;}
.ya0{bottom:838.365000px;}
.y5f{bottom:852.585000px;}
.y3b{bottom:861.585000px;}
.y9f{bottom:861.765000px;}
.yc{bottom:863.205000px;}
.y5e{bottom:875.985000px;}
.y3a{bottom:884.985000px;}
.y9e{bottom:885.165000px;}
.yb{bottom:886.605000px;}
.y5d{bottom:899.430000px;}
.y39{bottom:908.430000px;}
.y9d{bottom:908.610000px;}
.ya{bottom:909.510000px;}
.y38{bottom:931.830000px;}
.y9c{bottom:932.010000px;}
.y9{bottom:933.450000px;}
.y37{bottom:955.230000px;}
.y9b{bottom:955.410000px;}
.y8{bottom:965.310000px;}
.y36{bottom:978.630000px;}
.y9a{bottom:978.810000px;}
.y35{bottom:1002.030000px;}
.y99{bottom:1002.210000px;}
.y7{bottom:1012.110000px;}
.y34{bottom:1025.430000px;}
.y98{bottom:1032.450000px;}
.y33{bottom:1048.830000px;}
.y5{bottom:1051.170000px;}
.y32{bottom:1072.230000px;}
.y4{bottom:1081.950000px;}
.y31{bottom:1095.630000px;}
.y97{bottom:1108.590000px;}
.y3{bottom:1112.730000px;}
.y80{bottom:1118.490000px;}
.y30{bottom:1119.030000px;}
.y2f{bottom:1142.430000px;}
.y2{bottom:1143.690000px;}
.y2e{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y2d{bottom:1193.220000px;}
.hf{height:2.082656px;}
.h7{height:42.164648px;}
.h5{height:43.215117px;}
.ha{height:43.506914px;}
.h3{height:46.736719px;}
.hb{height:46.836000px;}
.h4{height:47.901094px;}
.h6{height:48.312422px;}
.h9{height:49.255313px;}
.h2{height:67.565039px;}
.h8{height:67.824844px;}
.hc{height:70.200000px;}
.hd{height:70.236000px;}
.he{height:93.636000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:146.376000px;}
.w6{width:180.570000px;}
.w3{width:209.775000px;}
.w7{width:210.810000px;}
.w4{width:237.090000px;}
.w8{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:1.080000px;}
.x10{left:7.785000px;}
.x1{left:54.179987px;}
.x6{left:56.340000px;}
.xc{left:79.559987px;}
.x2{left:80.999987px;}
.xd{left:106.595987px;}
.x3{left:108.035987px;}
.x4{left:135.035987px;}
.x5{left:162.029987px;}
.xb{left:181.649987px;}
.xe{left:191.370000px;}
.xf{left:264.810000px;}
.x8{left:268.275000px;}
.x9{left:507.705000px;}
.xa{left:656.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-4.496000pt;}
.ls15{letter-spacing:-1.184000pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls17{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016640pt;}
.ls18{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.454933pt;}
.ls19{letter-spacing:0.456533pt;}
.ls1c{letter-spacing:10.192640pt;}
.ls1d{letter-spacing:12.960000pt;}
.ls13{letter-spacing:13.600000pt;}
.ls2{letter-spacing:14.080000pt;}
.ls1{letter-spacing:14.661120pt;}
.ls0{letter-spacing:14.720000pt;}
.ls1b{letter-spacing:37.072640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls10{letter-spacing:56.891307pt;}
.ws8{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.736000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-894.469120pt;}
._7{margin-left:-513.751040pt;}
._b{margin-left:-15.922560pt;}
._c{margin-left:-13.929600pt;}
._4{margin-left:-7.301120pt;}
._f{margin-left:-5.946880pt;}
._9{margin-left:-4.677760pt;}
._a{margin-left:-3.415040pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._d{width:2.486827pt;}
._10{width:4.153813pt;}
._14{width:5.436800pt;}
._e{width:6.475733pt;}
._17{width:7.552000pt;}
._15{width:8.658560pt;}
._16{width:9.880320pt;}
._19{width:11.102080pt;}
._18{width:12.058240pt;}
._12{width:14.657493pt;}
._11{width:15.936000pt;}
._22{width:16.892160pt;}
._35{width:17.872853pt;}
._13{width:18.842027pt;}
._25{width:19.760640pt;}
._1b{width:20.800853pt;}
._1c{width:22.219520pt;}
._1e{width:23.532160pt;}
._1f{width:24.450560pt;}
._1d{width:26.188160pt;}
._21{width:27.303680pt;}
._20{width:28.366080pt;}
._23{width:30.074880pt;}
._26{width:31.287680pt;}
._33{width:35.218560pt;}
._2d{width:46.064000pt;}
._2e{width:46.958080pt;}
._2b{width:52.922880pt;}
._28{width:54.979200pt;}
._29{width:60.663040pt;}
._2a{width:72.358400pt;}
._38{width:76.439680pt;}
._36{width:92.203520pt;}
._37{width:98.812160pt;}
._24{width:105.390080pt;}
._31{width:112.410880pt;}
._30{width:113.995520pt;}
._34{width:122.716160pt;}
._2c{width:135.296640pt;}
._32{width:136.314880pt;}
._2f{width:166.828160pt;}
._27{width:260.769280pt;}
._1a{width:280.526720pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:5.600000pt;}
.yc3{bottom:5.626667pt;}
.y90{bottom:16.000000pt;}
.y89{bottom:16.026667pt;}
.y8e{bottom:26.400000pt;}
.y8a{bottom:26.426667pt;}
.yc0{bottom:29.946667pt;}
.y8f{bottom:36.800000pt;}
.y8d{bottom:47.200000pt;}
.yc2{bottom:47.226667pt;}
.y6{bottom:53.600000pt;}
.yc1{bottom:68.026667pt;}
.y5c{bottom:79.360000pt;}
.y96{bottom:87.200000pt;}
.ybe{bottom:89.120000pt;}
.y2c{bottom:89.600000pt;}
.y7f{bottom:92.160000pt;}
.y5b{bottom:100.160000pt;}
.ybd{bottom:109.920000pt;}
.y2b{bottom:110.400000pt;}
.y7e{bottom:112.480000pt;}
.y87{bottom:112.960000pt;}
.y5a{bottom:120.960000pt;}
.ybf{bottom:129.280000pt;}
.ybc{bottom:130.720000pt;}
.y2a{bottom:131.200000pt;}
.y7d{bottom:133.760000pt;}
.y59{bottom:141.786667pt;}
.ybb{bottom:151.546667pt;}
.y29{bottom:152.026667pt;}
.y7c{bottom:154.586667pt;}
.y95{bottom:154.906667pt;}
.y58{bottom:162.586667pt;}
.yba{bottom:172.346667pt;}
.y28{bottom:172.826667pt;}
.y7b{bottom:175.386667pt;}
.y57{bottom:183.386667pt;}
.yb9{bottom:193.146667pt;}
.y27{bottom:193.626667pt;}
.y7a{bottom:195.706667pt;}
.y86{bottom:196.186667pt;}
.y56{bottom:204.186667pt;}
.yb8{bottom:213.946667pt;}
.y26{bottom:214.426667pt;}
.y79{bottom:216.986667pt;}
.y94{bottom:222.746667pt;}
.y55{bottom:224.986667pt;}
.yb7{bottom:234.746667pt;}
.y25{bottom:235.226667pt;}
.y78{bottom:237.786667pt;}
.y54{bottom:245.786667pt;}
.yb6{bottom:255.546667pt;}
.y24{bottom:256.026667pt;}
.y77{bottom:258.106667pt;}
.y85{bottom:258.586667pt;}
.y53{bottom:266.586667pt;}
.yb5{bottom:276.346667pt;}
.y23{bottom:276.826667pt;}
.y76{bottom:279.386667pt;}
.y52{bottom:287.386667pt;}
.y93{bottom:290.426667pt;}
.yb4{bottom:297.146667pt;}
.y22{bottom:297.626667pt;}
.y75{bottom:300.186667pt;}
.y51{bottom:308.186667pt;}
.y21{bottom:318.426667pt;}
.y74{bottom:320.986667pt;}
.yb3{bottom:325.946667pt;}
.y50{bottom:328.986667pt;}
.y20{bottom:339.226667pt;}
.y73{bottom:341.786667pt;}
.yb2{bottom:346.746667pt;}
.y4f{bottom:349.786667pt;}
.y92{bottom:358.146667pt;}
.y1f{bottom:360.066667pt;}
.y72{bottom:362.146667pt;}
.y84{bottom:362.626667pt;}
.yb1{bottom:367.586667pt;}
.y4e{bottom:370.626667pt;}
.y1e{bottom:380.866667pt;}
.y71{bottom:383.426667pt;}
.yb0{bottom:388.386667pt;}
.y4d{bottom:391.426667pt;}
.y1d{bottom:403.586667pt;}
.y70{bottom:403.746667pt;}
.y83{bottom:404.226667pt;}
.yaf{bottom:409.186667pt;}
.y4c{bottom:412.226667pt;}
.y6f{bottom:425.026667pt;}
.y91{bottom:425.986667pt;}
.y1c{bottom:432.386667pt;}
.y4b{bottom:433.026667pt;}
.yae{bottom:437.986667pt;}
.y6e{bottom:445.826667pt;}
.y1b{bottom:453.186667pt;}
.y4a{bottom:453.826667pt;}
.yad{bottom:458.786667pt;}
.y6d{bottom:466.626667pt;}
.y1a{bottom:473.986667pt;}
.y49{bottom:474.626667pt;}
.yac{bottom:479.586667pt;}
.y6c{bottom:487.426667pt;}
.y8c{bottom:493.666667pt;}
.y19{bottom:494.786667pt;}
.y48{bottom:495.426667pt;}
.y6b{bottom:507.746667pt;}
.y82{bottom:508.226667pt;}
.yab{bottom:508.386667pt;}
.y18{bottom:515.586667pt;}
.y47{bottom:516.226667pt;}
.y6a{bottom:529.026667pt;}
.yaa{bottom:529.186667pt;}
.y17{bottom:536.386667pt;}
.y46{bottom:537.026667pt;}
.y69{bottom:549.826667pt;}
.ya9{bottom:549.986667pt;}
.y16{bottom:557.186667pt;}
.y45{bottom:557.826667pt;}
.y88{bottom:561.346667pt;}
.y68{bottom:570.626667pt;}
.ya8{bottom:570.786667pt;}
.y15{bottom:578.013333pt;}
.y44{bottom:578.653333pt;}
.y67{bottom:590.973333pt;}
.y81{bottom:591.453333pt;}
.ya7{bottom:591.613333pt;}
.y14{bottom:598.813333pt;}
.y43{bottom:599.453333pt;}
.y66{bottom:612.253333pt;}
.ya6{bottom:612.413333pt;}
.y13{bottom:619.613333pt;}
.y42{bottom:620.253333pt;}
.y65{bottom:633.053333pt;}
.ya5{bottom:633.213333pt;}
.y12{bottom:640.413333pt;}
.y41{bottom:641.053333pt;}
.y64{bottom:653.853333pt;}
.y11{bottom:661.213333pt;}
.y40{bottom:661.853333pt;}
.ya4{bottom:662.013333pt;}
.y63{bottom:674.653333pt;}
.y10{bottom:682.013333pt;}
.y3f{bottom:682.653333pt;}
.ya3{bottom:682.813333pt;}
.y62{bottom:695.453333pt;}
.yf{bottom:702.813333pt;}
.y3e{bottom:703.453333pt;}
.ya2{bottom:703.613333pt;}
.y61{bottom:716.253333pt;}
.ye{bottom:723.613333pt;}
.y3d{bottom:724.253333pt;}
.ya1{bottom:724.413333pt;}
.y60{bottom:737.053333pt;}
.yd{bottom:744.413333pt;}
.y3c{bottom:745.053333pt;}
.ya0{bottom:745.213333pt;}
.y5f{bottom:757.853333pt;}
.y3b{bottom:765.853333pt;}
.y9f{bottom:766.013333pt;}
.yc{bottom:767.293333pt;}
.y5e{bottom:778.653333pt;}
.y3a{bottom:786.653333pt;}
.y9e{bottom:786.813333pt;}
.yb{bottom:788.093333pt;}
.y5d{bottom:799.493333pt;}
.y39{bottom:807.493333pt;}
.y9d{bottom:807.653333pt;}
.ya{bottom:808.453333pt;}
.y38{bottom:828.293333pt;}
.y9c{bottom:828.453333pt;}
.y9{bottom:829.733333pt;}
.y37{bottom:849.093333pt;}
.y9b{bottom:849.253333pt;}
.y8{bottom:858.053333pt;}
.y36{bottom:869.893333pt;}
.y9a{bottom:870.053333pt;}
.y35{bottom:890.693333pt;}
.y99{bottom:890.853333pt;}
.y7{bottom:899.653333pt;}
.y34{bottom:911.493333pt;}
.y98{bottom:917.733333pt;}
.y33{bottom:932.293333pt;}
.y5{bottom:934.373333pt;}
.y32{bottom:953.093333pt;}
.y4{bottom:961.733333pt;}
.y31{bottom:973.893333pt;}
.y97{bottom:985.413333pt;}
.y3{bottom:989.093333pt;}
.y80{bottom:994.213333pt;}
.y30{bottom:994.693333pt;}
.y2f{bottom:1015.493333pt;}
.y2{bottom:1016.613333pt;}
.y2e{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y2d{bottom:1060.640000pt;}
.hf{height:1.851250pt;}
.h7{height:37.479688pt;}
.h5{height:38.413438pt;}
.ha{height:38.672812pt;}
.h3{height:41.543750pt;}
.hb{height:41.632000pt;}
.h4{height:42.578750pt;}
.h6{height:42.944375pt;}
.h9{height:43.782500pt;}
.h2{height:60.057813pt;}
.h8{height:60.288750pt;}
.hc{height:62.400000pt;}
.hd{height:62.432000pt;}
.he{height:83.232000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:130.112000pt;}
.w6{width:160.506667pt;}
.w3{width:186.466667pt;}
.w7{width:187.386667pt;}
.w4{width:210.746667pt;}
.w8{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:0.960000pt;}
.x10{left:6.920000pt;}
.x1{left:48.159988pt;}
.x6{left:50.080000pt;}
.xc{left:70.719988pt;}
.x2{left:71.999988pt;}
.xd{left:94.751988pt;}
.x3{left:96.031988pt;}
.x4{left:120.031988pt;}
.x5{left:144.026655pt;}
.xb{left:161.466655pt;}
.xe{left:170.106667pt;}
.xf{left:235.386667pt;}
.x8{left:238.466667pt;}
.x9{left:451.293333pt;}
.xa{left:583.333333pt;}
}




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